author
stringclasses
1 value
duration
int64
96
1.52k
description
stringlengths
115
4.59k
transcript
dict
audio_path
stringlengths
27
96
link
stringlengths
43
43
title
stringlengths
13
87
views
int64
5.11k
7.18M
Fireship
712
Vim is a keyboard-based text editor that can improve your productivity when writing code. Learn more in the Vim for VS Code course https://bit.ly/370N7Pr Special Thanks to Joe Previte! https://twitter.com/jsjoeio Vim history https://en.wikipedia.org/wiki/Vim_(text_editor) Vim cheatsheet https://vim.rtorr.com/ #vim #dev #100SecondsOfCode Install the quiz app 🤓 iOS https://itunes.apple.com/us/app/fireship/id1462592372?mt=8 Android https://play.google.com/store/apps/details?id=io.fireship.quizapp Upgrade to Fireship PRO at https://fireship.io/pro Use code lORhwXd2 for 25% off your first payment. My VS Code Theme - Atom One Dark - vscode-icons - Fira Code Font
{ "metadata": { "channels": 1, "created": "2024-02-04T05:57:43.651Z", "duration": 712.20245, "model_info": { "30089e05-99d1-4376-b32e-c263170674af": { "arch": "nova-2", "name": "2-general-nova", "version": "2024-01-09.29447" } }, "models": [ "30089e05-99d1-4376-b32e-c263170674af" ], "request_id": "17640972-128f-48ea-88f1-f6151cc6a411", "sha256": "92cdbeb507b6cb0a9347c078399a081caaa24f8ed3451282dba37b32d23e38c2", "summary_info": { "input_tokens": 2649, "model_uuid": "67875a7f-c9c4-48a0-aa55-5bdb8a91c34a", "output_tokens": 82 }, "transaction_key": "deprecated", "warnings": null }, "results": { "channels": [ { "alternatives": [ { "confidence": 0.9980469, "entities": null, "paragraphs": { "paragraphs": [ { "end": 25.44, "num_words": 88, "sentences": [ { "end": 5.52, "start": 0.24, "text": "Vim, a text editor for writing code where you navigate around the screen with a keyboard instead of a mouse." }, { "end": 10.6449995, "start": 5.52, "text": "It's based on the original Unix text editor VI, which came about in 19 76." }, { "end": 15.764999, "start": 10.945, "text": "Then vi improved or Vim followed it in 1991 with a bunch of improvements." }, { "end": 20.98, "start": 16.064999, "text": "But why in the age of modern c d e's would you ever wanna use a keyboard based text editor." }, { "end": 25.44, "start": 21.12, "text": "When you write code all day every day, your fingers should be glued to the keyboard at all times." } ], "speaker": 0, "start": 0.24 }, { "end": 44.28, "num_words": 70, "sentences": [ { "end": 28.205, "start": 25.44, "text": "Every time you touch the mouse, your sivity declines." }, { "end": 31.005001, "start": 28.345001, "text": "Learning to code with Vim is like learning to play an instrument." }, { "end": 36.36, "start": 31.065, "text": "It'll be painful at first, but that pain will lead to more precise and productive code editing in the future." }, { "end": 39.8, "start": 36.58, "text": "Vim runs in the terminal, and it's installed on almost every machine." }, { "end": 44.28, "start": 39.86, "text": "And at some point, you'll likely find yourself accidentally dropped into Vim with no way to escape." } ], "speaker": 0, "start": 25.44 }, { "end": 47.345, "num_words": 5, "sentences": [ { "end": 47.345, "start": 44.865, "text": "Let me out of here." } ], "speaker": 1, "start": 44.865 }, { "end": 63.555428, "num_words": 60, "sentences": [ { "end": 50.785, "start": 47.345, "text": "If you find yourself there, you can quit them by typing colon q." }, { "end": 52.545, "start": 50.785, "text": "That will close an unmodified file." }, { "end": 59.84, "start": 52.545, "text": "Or if it has been modified, You can use q bang to throw away your changes or colon w q to write the changes and then quit." }, { "end": 62.78, "start": 59.9, "text": "Now that we're out, let's use Vim to open up a file." }, { "end": 63.555428, "start": 62.78, "text": "Currently, c." } ], "speaker": 0, "start": 47.345 }, { "end": 92.14, "num_words": 112, "sentences": [ { "end": 69.80572, "start": 63.555428, "text": "We're in normal mode, but we can toggle between different modes like insert, visual, and command line depending on what we're trying to do." }, { "end": 74.41, "start": 69.80572, "text": "We can move around the text with the arrow keys or the letters h j k l." }, { "end": 79.93, "start": 74.41, "text": "If we find a character we want to delete, we can hit x or double d to quickly delete an entire line." }, { "end": 90.485, "start": 79.93, "text": "If that was a mistake, hit u to undo Now, currently the document is kind of hard to read, so let's add line numbers by running colon set number and now we can navigate to any line with colon number." }, { "end": 92.14, "start": 90.485, "text": "Now, if we want to change some text, 6." } ], "speaker": 0, "start": 63.555428 }, { "end": 119.535, "num_words": 107, "sentences": [ { "end": 97.44, "start": 92.14, "text": "We need to go into insert mode by hitting I and that frees up the keyboard for us to type into the document." }, { "end": 99.155, "start": 97.66, "text": "Once we're done modifying our code." }, { "end": 106.775, "start": 99.155, "text": "We can hit the escape key to go back to normal mode, but now, like any good developer, we need to copy and paste some code in here from Stack Overflow." }, { "end": 110.64, "start": 106.995, "text": "We can paste from the system clipboard by entering plus p into them." }, { "end": 119.535, "start": 110.64, "text": "And now that our software is complete, we can hit colon w to save it, then run the program directly from them with colon bang followed by the shell command we want to run." } ], "speaker": 0, "start": 92.14 }, { "end": 137.955, "num_words": 65, "sentences": [ { "end": 120.035, "start": 119.535, "text": "Congratulations." }, { "end": 123.475006, "start": 120.575005, "text": "You're no longer a sway dev, but a true software engineer." }, { "end": 130, "start": 123.535, "text": "This has been Vim in 100 seconds, but stay tuned because you don't need 2 ditch v s code to get the benefits of Vim." }, { "end": 137.955, "start": 130, "text": "That's why I invited a true expert and the instructor of the Vim for Versus Code course, Joe Prebitt, sit to take us beyond 100 seconds of Vim." } ], "speaker": 0, "start": 119.535 }, { "end": 164.535, "num_words": 80, "sentences": [ { "end": 140.19499, "start": 139.135, "text": "Hello, everyone." }, { "end": 151.78, "start": 140.415, "text": "I'm Joe, and I will be your guide as we go beyond 100 seconds To discuss why you should learn VIM and how you can leverage it inside your favorite editor, Versus Code." }, { "end": 154.58, "start": 152, "text": "First, let's talk about why you should learn VIM." }, { "end": 161.075, "start": 154.91501, "text": "Vim is an evergreen skill, meaning you can learn it once and the knowledge will last with you for the rest of your career." }, { "end": 164.535, "start": 161.075, "text": "It allows you to work faster and more efficiently within your editor." } ], "speaker": 1, "start": 139.135 }, { "end": 183.11, "num_words": 58, "sentences": [ { "end": 166.36, "start": 164.66, "text": "Here's a side by side comparison." }, { "end": 169.4, "start": 166.98, "text": "On the left, we have editing with Vim." }, { "end": 172.2, "start": 169.62, "text": "On the right, we have editing without Vim." }, { "end": 179.245, "start": 172.585, "text": "As you can see, VIM lets you do more from the keyboard, meaning you get to spend less time editing and more time coding." }, { "end": 183.11, "start": 179.30501, "text": "Now let's talk about How to set up Vim with Versus Code." } ], "speaker": 1, "start": 164.66 }, { "end": 207.04001, "num_words": 60, "sentences": [ { "end": 189.27, "start": 183.56999, "text": "Once you're inside Versus Code, head over to the extension panel and search Vim." }, { "end": 192.69499, "start": 189.97499, "text": "You should see the first extension called Vim." }, { "end": 201.04001, "start": 192.69499, "text": "And to make sure it's the right version, double check that it's vscodevim.vim, And it should have around 2,000,000 installations." }, { "end": 204.32, "start": 202.06, "text": "Go ahead and install this extension." }, { "end": 207.04001, "start": 204.7, "text": "The next thing we're going to do is set up key repeat." } ], "speaker": 1, "start": 183.56999 }, { "end": 240.37, "num_words": 81, "sentences": [ { "end": 211.545, "start": 207.60501, "text": "So head over to Google and look up vscode vim GitHub." }, { "end": 216.505, "start": 212.085, "text": "You should see the first link, which is a GitHub repository called vscode vim/vim." }, { "end": 221.64, "start": 217.46, "text": "There, you're gonna scroll down to the installation section." }, { "end": 227.235, "start": 222.18, "text": "In here, you'll see instructions for how to enable Key repeating." }, { "end": 240.37, "start": 228.175, "text": "This is a handy thing to add, especially when you're new to VIM because it'll allow you to hit the key And it will repeat as in if you were to hit j to move down." } ], "speaker": 1, "start": 207.60501 }, { "end": 258.76, "num_words": 42, "sentences": [ { "end": 243.06999, "start": 241.06999, "text": "Find your operating system." }, { "end": 244.05, "start": 243.06999, "text": "I'm on Mac." }, { "end": 246.665, "start": 244.485, "text": "And then run this in your terminal." }, { "end": 253.385, "start": 248.485, "text": "And now for the changes to take effect, you're going to want to restart Versus Code." }, { "end": 258.76, "start": 255.7, "text": "To verify that it worked, go ahead and create a new file." } ], "speaker": 1, "start": 241.06999 }, { "end": 278.51498, "num_words": 57, "sentences": [ { "end": 262.28, "start": 258.9, "text": "And now you should see that your cursor is a little bit wider." }, { "end": 264.655, "start": 262.655, "text": "Go ahead and hit I." }, { "end": 269.875, "start": 264.655, "text": "This will put us in insert mode and then hit return a bunch of times, then hit escape." }, { "end": 275.25, "start": 270.50998, "text": "And now try hitting and holding k and see if your cursor moves up." }, { "end": 278.51498, "start": 275.71, "text": "If it moves like this Pretty smooth." } ], "speaker": 1, "start": 258.9 }, { "end": 297.975, "num_words": 67, "sentences": [ { "end": 280.275, "start": 278.57498, "text": "Then you've enabled key repeating." }, { "end": 286.95, "start": 280.41498, "text": "If it gets stuck, then you may want to try restarting Versus Code again We're revisiting the installation instructions." }, { "end": 287.81, "start": 287.41, "text": "Great." }, { "end": 292.995, "start": 287.81, "text": "Now that we have our editor set up, I'd like to teach you a few different commands in Vim." }, { "end": 297.975, "start": 293.07498, "text": "So we'll review some of the ones that Jeff mentioned earlier in the video, and then we'll also learn a few new ones." } ], "speaker": 1, "start": 278.57498 }, { "end": 319.415, "num_words": 71, "sentences": [ { "end": 303.52002, "start": 298.115, "text": "So inside Versus code, go ahead and create a new file And save it as hello dotmd." }, { "end": 308.30002, "start": 304.54, "text": "Now what I want you to do is hit I to enter insert mode and hit returns." }, { "end": 311.495, "start": 308.30002, "text": "We add a few lines for us to work with and then hit escape." }, { "end": 311.875, "start": 311.635, "text": "Great." }, { "end": 319.415, "start": 311.875, "text": "So the first commands that we're going to talk about are for navigation and they will be h j k and l." } ], "speaker": 1, "start": 298.115 }, { "end": 332.725, "num_words": 44, "sentences": [ { "end": 321.54, "start": 319.69998, "text": "So right now, we're in command mode." }, { "end": 324.36, "start": 321.54, "text": "So if we hit k, we'll start moving up." }, { "end": 326.44, "start": 324.41998, "text": "If we hit j, we'll move down." }, { "end": 330.325, "start": 327.045, "text": "So remember, we just learned k for moving up." }, { "end": 332.725, "start": 330.325, "text": "I like to think of it as kicking a soccer ball up." } ], "speaker": 1, "start": 319.69998 }, { "end": 354.62, "num_words": 61, "sentences": [ { "end": 336.75, "start": 332.725, "text": "I'm kicking upwards on my editor and j for jumping down." }, { "end": 340.29, "start": 336.75, "text": "Use whatever mnemonic comes to mind to help you remember those." }, { "end": 344.135, "start": 341.07, "text": "The next, we'll talk about our h in l." }, { "end": 348.45502, "start": 344.135, "text": "So I'm gonna write hello world here and you can do the same." }, { "end": 354.62, "start": 348.45502, "text": "So again, the way that I did that was I for insert mode, start typing Hello, world." } ], "speaker": 1, "start": 332.725 }, { "end": 380.655, "num_words": 87, "sentences": [ { "end": 358.86, "start": 355, "text": "And then when you're done, hit escape, and you'll be back in command mode." }, { "end": 361.02, "start": 359, "text": "So the first one we'll talk about is h." }, { "end": 369.555, "start": 361.16, "text": "So if you hit h, You'll start moving to the left, as in you're moving to the beginning of the line, also the h in hello world." }, { "end": 376.49, "start": 370.07, "text": "Now, once we're there, if we wanna go back right, we start hitting l, and that will move us towards the l in world." }, { "end": 380.655, "start": 376.95502, "text": "So again, figure out a mnemonic that's going to help you remember those." } ], "speaker": 1, "start": 355 }, { "end": 397.67502, "num_words": 55, "sentences": [ { "end": 390.96, "start": 380.875, "text": "For me, I like to think of h as in I'm going home to the left And then l, you would think that would be l for left, but it's actually the opposite of that." }, { "end": 392.26, "start": 390.96, "text": "So l for right." }, { "end": 393.015, "start": 392.535, "text": "Great." }, { "end": 396.075, "start": 393.015, "text": "So now we're we're feeling comfortable with navigating in Vim." }, { "end": 397.67502, "start": 396.295, "text": "Again, we're in command mode." } ], "speaker": 1, "start": 380.875 }, { "end": 429.89502, "num_words": 82, "sentences": [ { "end": 403.56998, "start": 397.89502, "text": "We're moving up and down with j and k and left and right with h and l." }, { "end": 410.055, "start": 403.71, "text": "The other thing to to remember is if you take a look, pause for a second, look at your keyboard, see where the keys are on your keyboard." }, { "end": 413.895, "start": 410.435, "text": "You should see the h to the left of j and k." }, { "end": 415.47498, "start": 413.955, "text": "So that also helps me remember." }, { "end": 429.89502, "start": 415.47498, "text": "And then l So the other thing I wanna point out is you still have access to your mouse." } ], "speaker": 1, "start": 397.89502 }, { "end": 444.705, "num_words": 46, "sentences": [ { "end": 431.655, "start": 429.95502, "text": "So you can click to move around." }, { "end": 435.33502, "start": 432.195, "text": "So there's no need to worry about getting stuck in Vim." }, { "end": 437.11002, "start": 435.49, "text": "I'm sure you've heard horror stories." }, { "end": 439.19, "start": 437.33002, "text": "People not being able to exit them." }, { "end": 444.705, "start": 439.25, "text": "Luckily, using Vim inside of Versus Code, we're really just using the Vim key bindings." } ], "speaker": 1, "start": 429.95502 }, { "end": 454.87, "num_words": 37, "sentences": [ { "end": 445.82498, "start": 444.865, "text": "So we don't have to worry." }, { "end": 446.94498, "start": 445.82498, "text": "We can close a file." }, { "end": 447.76498, "start": 446.94498, "text": "We can navigate." }, { "end": 451.365, "start": 448.38498, "text": "Uh, no need to to fear being stuck in VIM." }, { "end": 454.87, "start": 451.66498, "text": "Now the next thing I want to point out is some editing commands." } ], "speaker": 1, "start": 444.865 }, { "end": 489.035, "num_words": 111, "sentences": [ { "end": 462.15, "start": 455.01, "text": "So we will talk about I, capital I, a and capital a for editing in a line." }, { "end": 468.16498, "start": 462.54498, "text": "So we're gonna go back to our hello world and you'll see right now the cursor is at the end of the line." }, { "end": 476.81, "start": 468.38498, "text": "If I hit shift I or capital I, It'll move me in insert mode at the beginning so I could write a word like, I don't know, Joe." }, { "end": 480.73, "start": 476.95, "text": "And then if I hit escape, I'm back in command mode where I can move around." }, { "end": 489.035, "start": 481.01498, "text": "So you'll notice the one thing that I wanna point out to a tip is a lot of Vim users remap their caps lock key to escape." } ], "speaker": 1, "start": 455.01 }, { "end": 509.48, "num_words": 71, "sentences": [ { "end": 493.95, "start": 489.255, "text": "So instead of Caps lock being caps lock when I hit the key, it actually is escape." }, { "end": 496.01, "start": 494.41, "text": "And so it's a lot more accessible." }, { "end": 496.65, "start": 496.01, "text": "It's closer." }, { "end": 501.695, "start": 496.65, "text": "It's right next to my pinky Rather than having to reach to the corner of the keyboard and hit escape." }, { "end": 509.48, "start": 501.99503, "text": "So that's one thing I'd encourage you to look into, uh, remapping your caps lock key to escape If you are serious about learning them." } ], "speaker": 1, "start": 489.255 }, { "end": 520.545, "num_words": 38, "sentences": [ { "end": 511.24, "start": 509.48, "text": "So we just covered capital I." }, { "end": 514.6, "start": 511.24, "text": "We know that lowercase I is insert mode." }, { "end": 515.1, "start": 514.6, "text": "Right?" }, { "end": 517.565, "start": 515.32495, "text": "So now what I want to talk about is lowercase a." }, { "end": 520.545, "start": 517.565, "text": "The thing that you gotta pay attention to here is the cursor." } ], "speaker": 1, "start": 509.48 }, { "end": 544.88995, "num_words": 75, "sentences": [ { "end": 523.89, "start": 521.165, "text": "Right now, it's on top of the exclamation point." }, { "end": 526.63, "start": 524.13, "text": "So if it hit I, it'll move to the left." }, { "end": 533.11, "start": 526.69, "text": "And now if I go back, now if I hit a, it'll enter into insert mode but after the cursor." }, { "end": 535.09503, "start": 533.395, "text": "So like this." }, { "end": 544.88995, "start": 535.635, "text": "So again, uh, if we have like a number 2 here and we want to add to the beginning and make it 22 will hit I that'll let us enter at the beginning." } ], "speaker": 1, "start": 521.165 }, { "end": 570.995, "num_words": 78, "sentences": [ { "end": 550.875, "start": 545.02997, "text": "And now if we want to add to the end, like say I wanted to add period 22." }, { "end": 554.795, "start": 550.935, "text": "So 22/22, then I can use lowercase a." }, { "end": 560.61, "start": 554.855, "text": "So those are very handy when you're Inserting letters or making changes, uh, in a line." }, { "end": 568.275, "start": 560.75, "text": "Now, the next one that I want to talk about is capital a And so this is like appending to the end of the line." }, { "end": 570.995, "start": 568.275, "text": "So you'll enter insert mode at the end of a line." } ], "speaker": 1, "start": 545.02997 }, { "end": 586.195, "num_words": 59, "sentences": [ { "end": 571.92, "start": 570.995, "text": "So here I am." }, { "end": 574.63995, "start": 572, "text": "Wanna add more exclamation points at the end of hello world." }, { "end": 579.51996, "start": 574.63995, "text": "So if I hit shift a, it will move the cursor to the end and it will enter into insert mode." }, { "end": 582.695, "start": 579.51996, "text": "So now that I can Enter a few exclamation points." }, { "end": 586.195, "start": 582.83496, "text": "Now if we go back to the beginning, we can do shift I." } ], "speaker": 1, "start": 570.995 }, { "end": 601.915, "num_words": 43, "sentences": [ { "end": 588.68, "start": 586.195, "text": "Now we're insert mode at the beginning of the line." }, { "end": 596.38, "start": 589, "text": "So as as you can see the I capital I a capital a are very handy for editing in a line." }, { "end": 597.355, "start": 596.855, "text": "Great." }, { "end": 599.035, "start": 597.415, "text": "Uh, we've talked about navigation." }, { "end": 601.915, "start": 599.415, "text": "We've talked about editing and align." } ], "speaker": 1, "start": 586.195 }, { "end": 621.905, "num_words": 66, "sentences": [ { "end": 606.70996, "start": 602.45496, "text": "Now, the last 2 that I want to talk about are x and r." }, { "end": 611.67, "start": 606.85, "text": "And these are handy for making changes while in command mode." }, { "end": 616.54504, "start": 611.73, "text": "If we go back up right here and so I wanna get to the beginning of the sentence." }, { "end": 619.885, "start": 616.685, "text": "So I'm gonna hit shift I, hit escape because I wanna be in command mode." }, { "end": 621.905, "start": 619.885, "text": "So you'll see that I have 4 j's." } ], "speaker": 1, "start": 602.45496 }, { "end": 632.22504, "num_words": 37, "sentences": [ { "end": 622.64996, "start": 622.32996, "text": "Right." }, { "end": 624.08997, "start": 622.64996, "text": "I don't really need all of those." }, { "end": 627.69, "start": 624.08997, "text": "So what we're going to do is actually use x to delete those." }, { "end": 629.69, "start": 627.69, "text": "So x is kind of like x out of character." }, { "end": 632.22504, "start": 629.69, "text": "So I'll hit it 3 times." } ], "speaker": 1, "start": 622.32996 }, { "end": 646.31, "num_words": 42, "sentences": [ { "end": 632.625, "start": 632.22504, "text": "123." }, { "end": 634.885, "start": 632.625, "text": "And now, I have 1 j, which is correct." }, { "end": 640.13, "start": 635.34503, "text": "So you can see, we're able to make edits without leaving command mode." }, { "end": 642.71, "start": 640.37, "text": "So we just talked about x for x ing out characters." }, { "end": 646.31, "start": 643.17, "text": "Now, let's talk about r for replacing characters." } ], "speaker": 1, "start": 632.22504 }, { "end": 667.375, "num_words": 65, "sentences": [ { "end": 656.30505, "start": 646.37, "text": "So I'm going to go to the h here And I want this to be capital, so I'll hit r and then shift h, uh, which is just a a capital h, and now it will replace it." }, { "end": 658.33, "start": 656.30505, "text": "And again, I haven't left command mode." }, { "end": 659.95, "start": 658.33, "text": "Here, let's see this for 22/22." }, { "end": 665.375, "start": 661.13, "text": "Let's change this to, uh, 52 22." }, { "end": 667.375, "start": 665.375, "text": "So we'll hit r and then 5." } ], "speaker": 1, "start": 646.37 }, { "end": 691.31, "num_words": 72, "sentences": [ { "end": 675.10004, "start": 667.375, "text": "And so, basically, what it does is it replaces the character under the cursor with the new character that you type in." }, { "end": 678.76, "start": 675.16003, "text": "So we've talked about navigation with h j k l." }, { "end": 683.65497, "start": 678.76, "text": "We've talked about editing in line with I, capital I, a, and capital a." }, { "end": 687.035, "start": 683.65497, "text": "And now I've talked about making changes on command mode with x and r." }, { "end": 691.31, "start": 687.335, "text": "I hope you enjoyed that brief introduction to Vim inside Versus code." } ], "speaker": 1, "start": 667.375 }, { "end": 708.195, "num_words": 52, "sentences": [ { "end": 697.25, "start": 691.31, "text": "If you'd like to learn more, head over to vim for v s code dot com and check out my course." }, { "end": 704.835, "start": 697.47003, "text": "It's got 100 exercises to help you learn how How to use Vim inside Versus Code, and we teach you 22 different commands." }, { "end": 708.195, "start": 705.295, "text": "Use the coupon code Fireship for $5 off." } ], "speaker": 1, "start": 691.31 }, { "end": 711.4775, "num_words": 12, "sentences": [ { "end": 711.4775, "start": 708.57745, "text": "Thanks for watching, and I will see you in the next one." } ], "speaker": 0, "start": 708.57745 } ], "transcript": "\nSpeaker 0: Vim, a text editor for writing code where you navigate around the screen with a keyboard instead of a mouse. It's based on the original Unix text editor VI, which came about in 19 76. Then vi improved or Vim followed it in 1991 with a bunch of improvements. But why in the age of modern c d e's would you ever wanna use a keyboard based text editor. When you write code all day every day, your fingers should be glued to the keyboard at all times.\n\nEvery time you touch the mouse, your sivity declines. Learning to code with Vim is like learning to play an instrument. It'll be painful at first, but that pain will lead to more precise and productive code editing in the future. Vim runs in the terminal, and it's installed on almost every machine. And at some point, you'll likely find yourself accidentally dropped into Vim with no way to escape.\n\nSpeaker 1: Let me out of here.\n\nSpeaker 0: If you find yourself there, you can quit them by typing colon q. That will close an unmodified file. Or if it has been modified, You can use q bang to throw away your changes or colon w q to write the changes and then quit. Now that we're out, let's use Vim to open up a file. Currently, c.\n\nWe're in normal mode, but we can toggle between different modes like insert, visual, and command line depending on what we're trying to do. We can move around the text with the arrow keys or the letters h j k l. If we find a character we want to delete, we can hit x or double d to quickly delete an entire line. If that was a mistake, hit u to undo Now, currently the document is kind of hard to read, so let's add line numbers by running colon set number and now we can navigate to any line with colon number. Now, if we want to change some text, 6.\n\nWe need to go into insert mode by hitting I and that frees up the keyboard for us to type into the document. Once we're done modifying our code. We can hit the escape key to go back to normal mode, but now, like any good developer, we need to copy and paste some code in here from Stack Overflow. We can paste from the system clipboard by entering plus p into them. And now that our software is complete, we can hit colon w to save it, then run the program directly from them with colon bang followed by the shell command we want to run.\n\nCongratulations. You're no longer a sway dev, but a true software engineer. This has been Vim in 100 seconds, but stay tuned because you don't need 2 ditch v s code to get the benefits of Vim. That's why I invited a true expert and the instructor of the Vim for Versus Code course, Joe Prebitt, sit to take us beyond 100 seconds of Vim.\n\nSpeaker 1: Hello, everyone. I'm Joe, and I will be your guide as we go beyond 100 seconds To discuss why you should learn VIM and how you can leverage it inside your favorite editor, Versus Code. First, let's talk about why you should learn VIM. Vim is an evergreen skill, meaning you can learn it once and the knowledge will last with you for the rest of your career. It allows you to work faster and more efficiently within your editor.\n\nHere's a side by side comparison. On the left, we have editing with Vim. On the right, we have editing without Vim. As you can see, VIM lets you do more from the keyboard, meaning you get to spend less time editing and more time coding. Now let's talk about How to set up Vim with Versus Code.\n\nOnce you're inside Versus Code, head over to the extension panel and search Vim. You should see the first extension called Vim. And to make sure it's the right version, double check that it's vscodevim.vim, And it should have around 2,000,000 installations. Go ahead and install this extension. The next thing we're going to do is set up key repeat.\n\nSo head over to Google and look up vscode vim GitHub. You should see the first link, which is a GitHub repository called vscode vim/vim. There, you're gonna scroll down to the installation section. In here, you'll see instructions for how to enable Key repeating. This is a handy thing to add, especially when you're new to VIM because it'll allow you to hit the key And it will repeat as in if you were to hit j to move down.\n\nFind your operating system. I'm on Mac. And then run this in your terminal. And now for the changes to take effect, you're going to want to restart Versus Code. To verify that it worked, go ahead and create a new file.\n\nAnd now you should see that your cursor is a little bit wider. Go ahead and hit I. This will put us in insert mode and then hit return a bunch of times, then hit escape. And now try hitting and holding k and see if your cursor moves up. If it moves like this Pretty smooth.\n\nThen you've enabled key repeating. If it gets stuck, then you may want to try restarting Versus Code again We're revisiting the installation instructions. Great. Now that we have our editor set up, I'd like to teach you a few different commands in Vim. So we'll review some of the ones that Jeff mentioned earlier in the video, and then we'll also learn a few new ones.\n\nSo inside Versus code, go ahead and create a new file And save it as hello dotmd. Now what I want you to do is hit I to enter insert mode and hit returns. We add a few lines for us to work with and then hit escape. Great. So the first commands that we're going to talk about are for navigation and they will be h j k and l.\n\nSo right now, we're in command mode. So if we hit k, we'll start moving up. If we hit j, we'll move down. So remember, we just learned k for moving up. I like to think of it as kicking a soccer ball up.\n\nI'm kicking upwards on my editor and j for jumping down. Use whatever mnemonic comes to mind to help you remember those. The next, we'll talk about our h in l. So I'm gonna write hello world here and you can do the same. So again, the way that I did that was I for insert mode, start typing Hello, world.\n\nAnd then when you're done, hit escape, and you'll be back in command mode. So the first one we'll talk about is h. So if you hit h, You'll start moving to the left, as in you're moving to the beginning of the line, also the h in hello world. Now, once we're there, if we wanna go back right, we start hitting l, and that will move us towards the l in world. So again, figure out a mnemonic that's going to help you remember those.\n\nFor me, I like to think of h as in I'm going home to the left And then l, you would think that would be l for left, but it's actually the opposite of that. So l for right. Great. So now we're we're feeling comfortable with navigating in Vim. Again, we're in command mode.\n\nWe're moving up and down with j and k and left and right with h and l. The other thing to to remember is if you take a look, pause for a second, look at your keyboard, see where the keys are on your keyboard. You should see the h to the left of j and k. So that also helps me remember. And then l So the other thing I wanna point out is you still have access to your mouse.\n\nSo you can click to move around. So there's no need to worry about getting stuck in Vim. I'm sure you've heard horror stories. People not being able to exit them. Luckily, using Vim inside of Versus Code, we're really just using the Vim key bindings.\n\nSo we don't have to worry. We can close a file. We can navigate. Uh, no need to to fear being stuck in VIM. Now the next thing I want to point out is some editing commands.\n\nSo we will talk about I, capital I, a and capital a for editing in a line. So we're gonna go back to our hello world and you'll see right now the cursor is at the end of the line. If I hit shift I or capital I, It'll move me in insert mode at the beginning so I could write a word like, I don't know, Joe. And then if I hit escape, I'm back in command mode where I can move around. So you'll notice the one thing that I wanna point out to a tip is a lot of Vim users remap their caps lock key to escape.\n\nSo instead of Caps lock being caps lock when I hit the key, it actually is escape. And so it's a lot more accessible. It's closer. It's right next to my pinky Rather than having to reach to the corner of the keyboard and hit escape. So that's one thing I'd encourage you to look into, uh, remapping your caps lock key to escape If you are serious about learning them.\n\nSo we just covered capital I. We know that lowercase I is insert mode. Right? So now what I want to talk about is lowercase a. The thing that you gotta pay attention to here is the cursor.\n\nRight now, it's on top of the exclamation point. So if it hit I, it'll move to the left. And now if I go back, now if I hit a, it'll enter into insert mode but after the cursor. So like this. So again, uh, if we have like a number 2 here and we want to add to the beginning and make it 22 will hit I that'll let us enter at the beginning.\n\nAnd now if we want to add to the end, like say I wanted to add period 22. So 22/22, then I can use lowercase a. So those are very handy when you're Inserting letters or making changes, uh, in a line. Now, the next one that I want to talk about is capital a And so this is like appending to the end of the line. So you'll enter insert mode at the end of a line.\n\nSo here I am. Wanna add more exclamation points at the end of hello world. So if I hit shift a, it will move the cursor to the end and it will enter into insert mode. So now that I can Enter a few exclamation points. Now if we go back to the beginning, we can do shift I.\n\nNow we're insert mode at the beginning of the line. So as as you can see the I capital I a capital a are very handy for editing in a line. Great. Uh, we've talked about navigation. We've talked about editing and align.\n\nNow, the last 2 that I want to talk about are x and r. And these are handy for making changes while in command mode. If we go back up right here and so I wanna get to the beginning of the sentence. So I'm gonna hit shift I, hit escape because I wanna be in command mode. So you'll see that I have 4 j's.\n\nRight. I don't really need all of those. So what we're going to do is actually use x to delete those. So x is kind of like x out of character. So I'll hit it 3 times.\n\n123. And now, I have 1 j, which is correct. So you can see, we're able to make edits without leaving command mode. So we just talked about x for x ing out characters. Now, let's talk about r for replacing characters.\n\nSo I'm going to go to the h here And I want this to be capital, so I'll hit r and then shift h, uh, which is just a a capital h, and now it will replace it. And again, I haven't left command mode. Here, let's see this for 22/22. Let's change this to, uh, 52 22. So we'll hit r and then 5.\n\nAnd so, basically, what it does is it replaces the character under the cursor with the new character that you type in. So we've talked about navigation with h j k l. We've talked about editing in line with I, capital I, a, and capital a. And now I've talked about making changes on command mode with x and r. I hope you enjoyed that brief introduction to Vim inside Versus code.\n\nIf you'd like to learn more, head over to vim for v s code dot com and check out my course. It's got 100 exercises to help you learn how How to use Vim inside Versus Code, and we teach you 22 different commands. Use the coupon code Fireship for $5 off.\n\nSpeaker 0: Thanks for watching, and I will see you in the next one." }, "summaries": null, "topics": [ { "end_word": 395, "start_word": 0, "text": "Vim, a text editor for writing code where you navigate around the screen with a keyboard instead of a mouse. It's based on the original Unix text editor VI, which came about in 19 76. Then vi improved or Vim followed it in 1991 with a bunch of improvements. But why in the age of modern c d e's would you ever wanna use a keyboard based text editor. When you write code all day every day, your fingers should be glued to the keyboard at all times. Every time you touch the mouse, your sivity declines. Learning to code with Vim is like learning to play an instrument. It'll be painful at first, but that pain will lead to more precise and productive code editing in the future. Vim runs in the terminal, and it's installed on almost every machine. And at some point, you'll likely find yourself accidentally dropped into Vim with no way to escape. Let me out of here. If you find yourself there, you can quit them by typing colon q. That will close an unmodified file. Or if it has been modified, You can use q bang to throw away your changes or colon w q to write the changes and then quit. Now that we're out, let's use Vim to open up a file. Currently, c. We're in normal mode, but we can toggle between different modes like insert, visual, and command line depending on what we're trying to do. We can move around the text with the arrow keys or the letters h j k l. If we find a character we want to delete, we can hit x or double d to quickly delete an entire line. If that was a mistake, hit u to undo Now, currently the document is kind of hard to read, so let's add line numbers by running colon set number and now we can navigate to any line with colon number. Now, if we want to change some text, 6. We need to go into insert mode by hitting I and that frees up the keyboard for us to type into the document. Once we're done modifying our code. We can hit the escape key to go back to normal mode, but now, like any good developer, we need to copy and paste some code in here from Stack Overflow.", "topics": [] }, { "end_word": 454, "start_word": 395, "text": "We can paste from the system clipboard by entering plus p into them. And now that our software is complete, we can hit colon w to save it, then run the program directly from them with colon bang followed by the shell command we want to run. Congratulations. You're no longer a sway dev, but a true software engineer.", "topics": [ { "confidence": 0.695283, "topic": "software" }, { "confidence": 0.0751414, "topic": "software development" }, { "confidence": 0.0078432085, "topic": "programming" } ] }, { "end_word": 507, "start_word": 454, "text": "This has been Vim in 100 seconds, but stay tuned because you don't need 2 ditch v s code to get the benefits of Vim. That's why I invited a true expert and the instructor of the Vim for Versus Code course, Joe Prebitt, sit to take us beyond 100 seconds of Vim.", "topics": [] }, { "end_word": 575, "start_word": 507, "text": "Hello, everyone. I'm Joe, and I will be your guide as we go beyond 100 seconds To discuss why you should learn VIM and how you can leverage it inside your favorite editor, Versus Code. First, let's talk about why you should learn VIM. Vim is an evergreen skill, meaning you can learn it once and the knowledge will last with you for the rest of your career.", "topics": [ { "confidence": 0.011557588, "topic": "deep learning" } ] }, { "end_word": 952, "start_word": 575, "text": "It allows you to work faster and more efficiently within your editor. Here's a side by side comparison. On the left, we have editing with Vim. On the right, we have editing without Vim. As you can see, VIM lets you do more from the keyboard, meaning you get to spend less time editing and more time coding. Now let's talk about How to set up Vim with Versus Code. Once you're inside Versus Code, head over to the extension panel and search Vim. You should see the first extension called Vim. And to make sure it's the right version, double check that it's vscodevim.vim, And it should have around 2,000,000 installations. Go ahead and install this extension. The next thing we're going to do is set up key repeat. So head over to Google and look up vscode vim GitHub. You should see the first link, which is a GitHub repository called vscode vim/vim. There, you're gonna scroll down to the installation section. In here, you'll see instructions for how to enable Key repeating. This is a handy thing to add, especially when you're new to VIM because it'll allow you to hit the key And it will repeat as in if you were to hit j to move down. Find your operating system. I'm on Mac. And then run this in your terminal. And now for the changes to take effect, you're going to want to restart Versus Code. To verify that it worked, go ahead and create a new file. And now you should see that your cursor is a little bit wider. Go ahead and hit I. This will put us in insert mode and then hit return a bunch of times, then hit escape. And now try hitting and holding k and see if your cursor moves up. If it moves like this Pretty smooth. Then you've enabled key repeating. If it gets stuck, then you may want to try restarting Versus Code again We're revisiting the installation instructions. Great. Now that we have our editor set up, I'd like to teach you a few different commands in Vim. So we'll review some of the ones that Jeff mentioned earlier in the video, and then we'll also learn a few new ones.", "topics": [] }, { "end_word": 1023, "start_word": 952, "text": "So inside Versus code, go ahead and create a new file And save it as hello dotmd. Now what I want you to do is hit I to enter insert mode and hit returns. We add a few lines for us to work with and then hit escape. Great. So the first commands that we're going to talk about are for navigation and they will be h j k and l.", "topics": [ { "confidence": 0.028986935, "topic": "programming" } ] }, { "end_word": 1435, "start_word": 1023, "text": "So right now, we're in command mode. So if we hit k, we'll start moving up. If we hit j, we'll move down. So remember, we just learned k for moving up. I like to think of it as kicking a soccer ball up. I'm kicking upwards on my editor and j for jumping down. Use whatever mnemonic comes to mind to help you remember those. The next, we'll talk about our h in l. So I'm gonna write hello world here and you can do the same. So again, the way that I did that was I for insert mode, start typing Hello, world. And then when you're done, hit escape, and you'll be back in command mode. So the first one we'll talk about is h. So if you hit h, You'll start moving to the left, as in you're moving to the beginning of the line, also the h in hello world. Now, once we're there, if we wanna go back right, we start hitting l, and that will move us towards the l in world. So again, figure out a mnemonic that's going to help you remember those. For me, I like to think of h as in I'm going home to the left And then l, you would think that would be l for left, but it's actually the opposite of that. So l for right. Great. So now we're we're feeling comfortable with navigating in Vim. Again, we're in command mode. We're moving up and down with j and k and left and right with h and l. The other thing to to remember is if you take a look, pause for a second, look at your keyboard, see where the keys are on your keyboard. You should see the h to the left of j and k. So that also helps me remember. And then l So the other thing I wanna point out is you still have access to your mouse. So you can click to move around. So there's no need to worry about getting stuck in Vim. I'm sure you've heard horror stories. People not being able to exit them. Luckily, using Vim inside of Versus Code, we're really just using the Vim key bindings. So we don't have to worry. We can close a file. We can navigate. Uh, no need to to fear being stuck in VIM. Now the next thing I want to point out is some editing commands.", "topics": [] }, { "end_word": 1503, "start_word": 1435, "text": "So we will talk about I, capital I, a and capital a for editing in a line. So we're gonna go back to our hello world and you'll see right now the cursor is at the end of the line. If I hit shift I or capital I, It'll move me in insert mode at the beginning so I could write a word like, I don't know, Joe.", "topics": [ { "confidence": 0.009677337, "topic": "writing" } ] }, { "end_word": 2256, "start_word": 1503, "text": "And then if I hit escape, I'm back in command mode where I can move around. So you'll notice the one thing that I wanna point out to a tip is a lot of Vim users remap their caps lock key to escape. So instead of Caps lock being caps lock when I hit the key, it actually is escape. And so it's a lot more accessible. It's closer. It's right next to my pinky Rather than having to reach to the corner of the keyboard and hit escape. So that's one thing I'd encourage you to look into, uh, remapping your caps lock key to escape If you are serious about learning them. So we just covered capital I. We know that lowercase I is insert mode. Right? So now what I want to talk about is lowercase a. The thing that you gotta pay attention to here is the cursor. Right now, it's on top of the exclamation point. So if it hit I, it'll move to the left. And now if I go back, now if I hit a, it'll enter into insert mode but after the cursor. So like this. So again, uh, if we have like a number 2 here and we want to add to the beginning and make it 22 will hit I that'll let us enter at the beginning. And now if we want to add to the end, like say I wanted to add period 22. So 22/22, then I can use lowercase a. So those are very handy when you're Inserting letters or making changes, uh, in a line. Now, the next one that I want to talk about is capital a And so this is like appending to the end of the line. So you'll enter insert mode at the end of a line. So here I am. Wanna add more exclamation points at the end of hello world. So if I hit shift a, it will move the cursor to the end and it will enter into insert mode. So now that I can Enter a few exclamation points. Now if we go back to the beginning, we can do shift I. Now we're insert mode at the beginning of the line. So as as you can see the I capital I a capital a are very handy for editing in a line. Great. Uh, we've talked about navigation. We've talked about editing and align. Now, the last 2 that I want to talk about are x and r. And these are handy for making changes while in command mode. If we go back up right here and so I wanna get to the beginning of the sentence. So I'm gonna hit shift I, hit escape because I wanna be in command mode. So you'll see that I have 4 j's. Right. I don't really need all of those. So what we're going to do is actually use x to delete those. So x is kind of like x out of character. So I'll hit it 3 times. 123. And now, I have 1 j, which is correct. So you can see, we're able to make edits without leaving command mode. So we just talked about x for x ing out characters. Now, let's talk about r for replacing characters. So I'm going to go to the h here And I want this to be capital, so I'll hit r and then shift h, uh, which is just a a capital h, and now it will replace it. And again, I haven't left command mode. Here, let's see this for 22/22. Let's change this to, uh, 52 22. So we'll hit r and then 5. And so, basically, what it does is it replaces the character under the cursor with the new character that you type in. So we've talked about navigation with h j k l. We've talked about editing in line with I, capital I, a, and capital a. And now I've talked about making changes on command mode with x and r. I hope you enjoyed that brief introduction to Vim inside Versus code. If you'd like to learn more, head over to vim for v s code dot com and check out my course. It's got 100 exercises to help you learn how How to use Vim inside Versus Code, and we teach you 22 different commands. Use the coupon code Fireship for $5 off. Thanks for watching, and I will see you in the next one.", "topics": [] } ], "transcript": "Vim, a text editor for writing code where you navigate around the screen with a keyboard instead of a mouse. It's based on the original Unix text editor VI, which came about in 19 76. Then vi improved or Vim followed it in 1991 with a bunch of improvements. But why in the age of modern c d e's would you ever wanna use a keyboard based text editor. When you write code all day every day, your fingers should be glued to the keyboard at all times. Every time you touch the mouse, your sivity declines. Learning to code with Vim is like learning to play an instrument. It'll be painful at first, but that pain will lead to more precise and productive code editing in the future. Vim runs in the terminal, and it's installed on almost every machine. And at some point, you'll likely find yourself accidentally dropped into Vim with no way to escape. Let me out of here. If you find yourself there, you can quit them by typing colon q. That will close an unmodified file. Or if it has been modified, You can use q bang to throw away your changes or colon w q to write the changes and then quit. Now that we're out, let's use Vim to open up a file. Currently, c. We're in normal mode, but we can toggle between different modes like insert, visual, and command line depending on what we're trying to do. We can move around the text with the arrow keys or the letters h j k l. If we find a character we want to delete, we can hit x or double d to quickly delete an entire line. If that was a mistake, hit u to undo Now, currently the document is kind of hard to read, so let's add line numbers by running colon set number and now we can navigate to any line with colon number. Now, if we want to change some text, 6. We need to go into insert mode by hitting I and that frees up the keyboard for us to type into the document. Once we're done modifying our code. We can hit the escape key to go back to normal mode, but now, like any good developer, we need to copy and paste some code in here from Stack Overflow. We can paste from the system clipboard by entering plus p into them. And now that our software is complete, we can hit colon w to save it, then run the program directly from them with colon bang followed by the shell command we want to run. Congratulations. You're no longer a sway dev, but a true software engineer. This has been Vim in 100 seconds, but stay tuned because you don't need 2 ditch v s code to get the benefits of Vim. That's why I invited a true expert and the instructor of the Vim for Versus Code course, Joe Prebitt, sit to take us beyond 100 seconds of Vim. Hello, everyone. I'm Joe, and I will be your guide as we go beyond 100 seconds To discuss why you should learn VIM and how you can leverage it inside your favorite editor, Versus Code. First, let's talk about why you should learn VIM. Vim is an evergreen skill, meaning you can learn it once and the knowledge will last with you for the rest of your career. It allows you to work faster and more efficiently within your editor. Here's a side by side comparison. On the left, we have editing with Vim. On the right, we have editing without Vim. As you can see, VIM lets you do more from the keyboard, meaning you get to spend less time editing and more time coding. Now let's talk about How to set up Vim with Versus Code. Once you're inside Versus Code, head over to the extension panel and search Vim. You should see the first extension called Vim. And to make sure it's the right version, double check that it's vscodevim.vim, And it should have around 2,000,000 installations. Go ahead and install this extension. The next thing we're going to do is set up key repeat. So head over to Google and look up vscode vim GitHub. You should see the first link, which is a GitHub repository called vscode vim/vim. There, you're gonna scroll down to the installation section. In here, you'll see instructions for how to enable Key repeating. This is a handy thing to add, especially when you're new to VIM because it'll allow you to hit the key And it will repeat as in if you were to hit j to move down. Find your operating system. I'm on Mac. And then run this in your terminal. And now for the changes to take effect, you're going to want to restart Versus Code. To verify that it worked, go ahead and create a new file. And now you should see that your cursor is a little bit wider. Go ahead and hit I. This will put us in insert mode and then hit return a bunch of times, then hit escape. And now try hitting and holding k and see if your cursor moves up. If it moves like this Pretty smooth. Then you've enabled key repeating. If it gets stuck, then you may want to try restarting Versus Code again We're revisiting the installation instructions. Great. Now that we have our editor set up, I'd like to teach you a few different commands in Vim. So we'll review some of the ones that Jeff mentioned earlier in the video, and then we'll also learn a few new ones. So inside Versus code, go ahead and create a new file And save it as hello dotmd. Now what I want you to do is hit I to enter insert mode and hit returns. We add a few lines for us to work with and then hit escape. Great. So the first commands that we're going to talk about are for navigation and they will be h j k and l. So right now, we're in command mode. So if we hit k, we'll start moving up. If we hit j, we'll move down. So remember, we just learned k for moving up. I like to think of it as kicking a soccer ball up. I'm kicking upwards on my editor and j for jumping down. Use whatever mnemonic comes to mind to help you remember those. The next, we'll talk about our h in l. So I'm gonna write hello world here and you can do the same. So again, the way that I did that was I for insert mode, start typing Hello, world. And then when you're done, hit escape, and you'll be back in command mode. So the first one we'll talk about is h. So if you hit h, You'll start moving to the left, as in you're moving to the beginning of the line, also the h in hello world. Now, once we're there, if we wanna go back right, we start hitting l, and that will move us towards the l in world. So again, figure out a mnemonic that's going to help you remember those. For me, I like to think of h as in I'm going home to the left And then l, you would think that would be l for left, but it's actually the opposite of that. So l for right. Great. So now we're we're feeling comfortable with navigating in Vim. Again, we're in command mode. We're moving up and down with j and k and left and right with h and l. The other thing to to remember is if you take a look, pause for a second, look at your keyboard, see where the keys are on your keyboard. You should see the h to the left of j and k. So that also helps me remember. And then l So the other thing I wanna point out is you still have access to your mouse. So you can click to move around. So there's no need to worry about getting stuck in Vim. I'm sure you've heard horror stories. People not being able to exit them. Luckily, using Vim inside of Versus Code, we're really just using the Vim key bindings. So we don't have to worry. We can close a file. We can navigate. Uh, no need to to fear being stuck in VIM. Now the next thing I want to point out is some editing commands. So we will talk about I, capital I, a and capital a for editing in a line. So we're gonna go back to our hello world and you'll see right now the cursor is at the end of the line. If I hit shift I or capital I, It'll move me in insert mode at the beginning so I could write a word like, I don't know, Joe. And then if I hit escape, I'm back in command mode where I can move around. So you'll notice the one thing that I wanna point out to a tip is a lot of Vim users remap their caps lock key to escape. So instead of Caps lock being caps lock when I hit the key, it actually is escape. And so it's a lot more accessible. It's closer. It's right next to my pinky Rather than having to reach to the corner of the keyboard and hit escape. So that's one thing I'd encourage you to look into, uh, remapping your caps lock key to escape If you are serious about learning them. So we just covered capital I. We know that lowercase I is insert mode. Right? So now what I want to talk about is lowercase a. The thing that you gotta pay attention to here is the cursor. Right now, it's on top of the exclamation point. So if it hit I, it'll move to the left. And now if I go back, now if I hit a, it'll enter into insert mode but after the cursor. So like this. So again, uh, if we have like a number 2 here and we want to add to the beginning and make it 22 will hit I that'll let us enter at the beginning. And now if we want to add to the end, like say I wanted to add period 22. So 22/22, then I can use lowercase a. So those are very handy when you're Inserting letters or making changes, uh, in a line. Now, the next one that I want to talk about is capital a And so this is like appending to the end of the line. So you'll enter insert mode at the end of a line. So here I am. Wanna add more exclamation points at the end of hello world. So if I hit shift a, it will move the cursor to the end and it will enter into insert mode. So now that I can Enter a few exclamation points. Now if we go back to the beginning, we can do shift I. Now we're insert mode at the beginning of the line. So as as you can see the I capital I a capital a are very handy for editing in a line. Great. Uh, we've talked about navigation. We've talked about editing and align. Now, the last 2 that I want to talk about are x and r. And these are handy for making changes while in command mode. If we go back up right here and so I wanna get to the beginning of the sentence. So I'm gonna hit shift I, hit escape because I wanna be in command mode. So you'll see that I have 4 j's. Right. I don't really need all of those. So what we're going to do is actually use x to delete those. So x is kind of like x out of character. So I'll hit it 3 times. 123. And now, I have 1 j, which is correct. So you can see, we're able to make edits without leaving command mode. So we just talked about x for x ing out characters. Now, let's talk about r for replacing characters. So I'm going to go to the h here And I want this to be capital, so I'll hit r and then shift h, uh, which is just a a capital h, and now it will replace it. And again, I haven't left command mode. Here, let's see this for 22/22. Let's change this to, uh, 52 22. So we'll hit r and then 5. And so, basically, what it does is it replaces the character under the cursor with the new character that you type in. So we've talked about navigation with h j k l. We've talked about editing in line with I, capital I, a, and capital a. And now I've talked about making changes on command mode with x and r. I hope you enjoyed that brief introduction to Vim inside Versus code. If you'd like to learn more, head over to vim for v s code dot com and check out my course. It's got 100 exercises to help you learn how How to use Vim inside Versus Code, and we teach you 22 different commands. Use the coupon code Fireship for $5 off. Thanks for watching, and I will see you in the next one.", "translations": null, "words": [ { "confidence": 0.7824707, "end": 0.71999997, "punctuated_word": "Vim,", "speaker": 0, "speaker_confidence": 0.8730469, "start": 0.24, "word": "vim" }, { "confidence": 0.9980469, "end": 0.96, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8730469, "start": 0.71999997, "word": "a" }, { "confidence": 0.99609375, "end": 1.1999999, "punctuated_word": "text", "speaker": 0, "speaker_confidence": 0.8730469, "start": 0.96, "word": "text" }, { "confidence": 1, "end": 1.5999999, "punctuated_word": "editor", "speaker": 0, "speaker_confidence": 0.8730469, "start": 1.1999999, "word": "editor" }, { "confidence": 0.99902344, "end": 1.76, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.8730469, "start": 1.5999999, "word": "for" }, { "confidence": 0.99902344, "end": 2.08, "punctuated_word": "writing", "speaker": 0, "speaker_confidence": 0.8730469, "start": 1.76, "word": "writing" }, { "confidence": 1, "end": 2.32, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.8730469, "start": 2.08, "word": "code" }, { "confidence": 0.95166016, "end": 2.56, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.8730469, "start": 2.32, "word": "where" }, { "confidence": 1, "end": 2.72, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.8730469, "start": 2.56, "word": "you" }, { "confidence": 1, "end": 3.04, "punctuated_word": "navigate", "speaker": 0, "speaker_confidence": 0.8730469, "start": 2.72, "word": "navigate" }, { "confidence": 0.99902344, "end": 3.1999998, "punctuated_word": "around", "speaker": 0, "speaker_confidence": 0.8730469, "start": 3.04, "word": "around" }, { "confidence": 0.9980469, "end": 3.36, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8730469, "start": 3.1999998, "word": "the" }, { "confidence": 1, "end": 3.6, "punctuated_word": "screen", "speaker": 0, "speaker_confidence": 0.8730469, "start": 3.36, "word": "screen" }, { "confidence": 1, "end": 3.76, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.8730469, "start": 3.6, "word": "with" }, { "confidence": 0.99609375, "end": 3.9199998, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8730469, "start": 3.76, "word": "a" }, { "confidence": 1, "end": 4.42, "punctuated_word": "keyboard", "speaker": 0, "speaker_confidence": 0.8730469, "start": 3.9199998, "word": "keyboard" }, { "confidence": 0.99316406, "end": 4.7999997, "punctuated_word": "instead", "speaker": 0, "speaker_confidence": 0.8730469, "start": 4.56, "word": "instead" }, { "confidence": 1, "end": 4.96, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8730469, "start": 4.7999997, "word": "of" }, { "confidence": 0.99902344, "end": 5.12, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8730469, "start": 4.96, "word": "a" }, { "confidence": 0.99853516, "end": 5.52, "punctuated_word": "mouse.", "speaker": 0, "speaker_confidence": 0.8730469, "start": 5.12, "word": "mouse" }, { "confidence": 0.9995117, "end": 5.7599998, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.8730469, "start": 5.52, "word": "it's" }, { "confidence": 1, "end": 6, "punctuated_word": "based", "speaker": 0, "speaker_confidence": 0.8730469, "start": 5.7599998, "word": "based" }, { "confidence": 1, "end": 6.16, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8730469, "start": 6, "word": "on" }, { "confidence": 1, "end": 6.3199997, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8730469, "start": 6.16, "word": "the" }, { "confidence": 1, "end": 6.72, "punctuated_word": "original", "speaker": 0, "speaker_confidence": 0.8730469, "start": 6.3199997, "word": "original" }, { "confidence": 0.72802734, "end": 7.12, "punctuated_word": "Unix", "speaker": 0, "speaker_confidence": 0.8730469, "start": 6.72, "word": "unix" }, { "confidence": 0.9716797, "end": 7.3599997, "punctuated_word": "text", "speaker": 0, "speaker_confidence": 0.8730469, "start": 7.12, "word": "text" }, { "confidence": 0.9980469, "end": 7.8399997, "punctuated_word": "editor", "speaker": 0, "speaker_confidence": 0.8730469, "start": 7.3599997, "word": "editor" }, { "confidence": 0.526001, "end": 8.34, "punctuated_word": "VI,", "speaker": 0, "speaker_confidence": 0.8730469, "start": 7.8399997, "word": "vi" }, { "confidence": 1, "end": 8.72, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.8730469, "start": 8.48, "word": "which" }, { "confidence": 1, "end": 8.96, "punctuated_word": "came", "speaker": 0, "speaker_confidence": 0.8730469, "start": 8.72, "word": "came" }, { "confidence": 0.99609375, "end": 9.28, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.8730469, "start": 8.96, "word": "about" }, { "confidence": 0.99121094, "end": 9.44, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8730469, "start": 9.28, "word": "in" }, { "confidence": 0.96972656, "end": 9.94, "punctuated_word": "19", "speaker": 0, "speaker_confidence": 0.8730469, "start": 9.44, "word": "19" }, { "confidence": 0.87524414, "end": 10.6449995, "punctuated_word": "76.", "speaker": 0, "speaker_confidence": 0.8730469, "start": 10.1449995, "word": "76" }, { "confidence": 0.99609375, "end": 11.344999, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.8730469, "start": 10.945, "word": "then" }, { "confidence": 0.93847656, "end": 11.665, "punctuated_word": "vi", "speaker": 0, "speaker_confidence": 0.8730469, "start": 11.344999, "word": "vi" }, { "confidence": 0.73876953, "end": 12.165, "punctuated_word": "improved", "speaker": 0, "speaker_confidence": 0.8730469, "start": 11.665, "word": "improved" }, { "confidence": 0.65966797, "end": 12.545, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.8730469, "start": 12.224999, "word": "or" }, { "confidence": 0.65234375, "end": 13.025, "punctuated_word": "Vim", "speaker": 0, "speaker_confidence": 0.8730469, "start": 12.545, "word": "vim" }, { "confidence": 0.9921875, "end": 13.344999, "punctuated_word": "followed", "speaker": 0, "speaker_confidence": 0.8730469, "start": 13.025, "word": "followed" }, { "confidence": 0.99316406, "end": 13.504999, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8730469, "start": 13.344999, "word": "it" }, { "confidence": 0.9980469, "end": 13.745, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8730469, "start": 13.504999, "word": "in" }, { "confidence": 0.90234375, "end": 14.245, "punctuated_word": "1991", "speaker": 0, "speaker_confidence": 0.8730469, "start": 13.745, "word": "1991" }, { "confidence": 0.99316406, "end": 14.785, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.8730469, "start": 14.545, "word": "with" }, { "confidence": 0.9980469, "end": 14.865, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8730469, "start": 14.785, "word": "a" }, { "confidence": 1, "end": 15.105, "punctuated_word": "bunch", "speaker": 0, "speaker_confidence": 0.8730469, "start": 14.865, "word": "bunch" }, { "confidence": 1, "end": 15.264999, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8730469, "start": 15.105, "word": "of" }, { "confidence": 0.83935547, "end": 15.764999, "punctuated_word": "improvements.", "speaker": 0, "speaker_confidence": 0.8730469, "start": 15.264999, "word": "improvements" }, { "confidence": 0.9941406, "end": 16.305, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.8730469, "start": 16.064999, "word": "but" }, { "confidence": 0.99609375, "end": 16.545, "punctuated_word": "why", "speaker": 0, "speaker_confidence": 0.8730469, "start": 16.305, "word": "why" }, { "confidence": 0.95703125, "end": 16.705, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8730469, "start": 16.545, "word": "in" }, { "confidence": 1, "end": 16.865, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8730469, "start": 16.705, "word": "the" }, { "confidence": 0.99902344, "end": 17.105, "punctuated_word": "age", "speaker": 0, "speaker_confidence": 0.8730469, "start": 16.865, "word": "age" }, { "confidence": 0.9980469, "end": 17.265, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8730469, "start": 17.105, "word": "of" }, { "confidence": 0.99609375, "end": 17.765, "punctuated_word": "modern", "speaker": 0, "speaker_confidence": 0.8730469, "start": 17.265, "word": "modern" }, { "confidence": 0.50341797, "end": 18, "punctuated_word": "c", "speaker": 0, "speaker_confidence": 0.8730469, "start": 17.84, "word": "c" }, { "confidence": 0.32788086, "end": 18.16, "punctuated_word": "d", "speaker": 0, "speaker_confidence": 0.8730469, "start": 18, "word": "d" }, { "confidence": 0.89819336, "end": 18.32, "punctuated_word": "e's", "speaker": 0, "speaker_confidence": 0.8730469, "start": 18.16, "word": "e's" }, { "confidence": 0.56347656, "end": 18.56, "punctuated_word": "would", "speaker": 0, "speaker_confidence": 0.8730469, "start": 18.32, "word": "would" }, { "confidence": 0.9980469, "end": 18.72, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.8730469, "start": 18.56, "word": "you" }, { "confidence": 0.99902344, "end": 18.880001, "punctuated_word": "ever", "speaker": 0, "speaker_confidence": 0.8730469, "start": 18.72, "word": "ever" }, { "confidence": 0.9248047, "end": 19.12, "punctuated_word": "wanna", "speaker": 0, "speaker_confidence": 0.8730469, "start": 18.880001, "word": "wanna" }, { "confidence": 0.9951172, "end": 19.36, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.8730469, "start": 19.12, "word": "use" }, { "confidence": 0.99609375, "end": 19.6, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8730469, "start": 19.36, "word": "a" }, { "confidence": 1, "end": 20, "punctuated_word": "keyboard", "speaker": 0, "speaker_confidence": 0.8730469, "start": 19.6, "word": "keyboard" }, { "confidence": 0.9951172, "end": 20.24, "punctuated_word": "based", "speaker": 0, "speaker_confidence": 0.8730469, "start": 20, "word": "based" }, { "confidence": 0.9970703, "end": 20.48, "punctuated_word": "text", "speaker": 0, "speaker_confidence": 0.8730469, "start": 20.24, "word": "text" }, { "confidence": 0.79956055, "end": 20.98, "punctuated_word": "editor.", "speaker": 0, "speaker_confidence": 0.8730469, "start": 20.48, "word": "editor" }, { "confidence": 0.9951172, "end": 21.28, "punctuated_word": "When", "speaker": 0, "speaker_confidence": 0.8730469, "start": 21.12, "word": "when" }, { "confidence": 0.99902344, "end": 21.36, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.8730469, "start": 21.28, "word": "you" }, { "confidence": 0.99609375, "end": 21.6, "punctuated_word": "write", "speaker": 0, "speaker_confidence": 0.8730469, "start": 21.36, "word": "write" }, { "confidence": 0.9980469, "end": 21.84, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.8730469, "start": 21.6, "word": "code" }, { "confidence": 0.9980469, "end": 22, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.8730469, "start": 21.84, "word": "all" }, { "confidence": 0.99902344, "end": 22.24, "punctuated_word": "day", "speaker": 0, "speaker_confidence": 0.8730469, "start": 22, "word": "day" }, { "confidence": 0.62646484, "end": 22.4, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 0.8730469, "start": 22.24, "word": "every" }, { "confidence": 0.99560547, "end": 22.720001, "punctuated_word": "day,", "speaker": 0, "speaker_confidence": 0.8730469, "start": 22.4, "word": "day" }, { "confidence": 0.9970703, "end": 22.96, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.8730469, "start": 22.720001, "word": "your" }, { "confidence": 0.97509766, "end": 23.28, "punctuated_word": "fingers", "speaker": 0, "speaker_confidence": 0.8730469, "start": 22.96, "word": "fingers" }, { "confidence": 0.99609375, "end": 23.400002, "punctuated_word": "should", "speaker": 0, "speaker_confidence": 0.8730469, "start": 23.28, "word": "should" }, { "confidence": 0.9892578, "end": 23.52, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.8730469, "start": 23.400002, "word": "be" }, { "confidence": 0.9980469, "end": 23.68, "punctuated_word": "glued", "speaker": 0, "speaker_confidence": 0.8730469, "start": 23.52, "word": "glued" }, { "confidence": 0.99316406, "end": 23.84, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8730469, "start": 23.68, "word": "to" }, { "confidence": 0.9873047, "end": 24, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8730469, "start": 23.84, "word": "the" }, { "confidence": 0.9980469, "end": 24.48, "punctuated_word": "keyboard", "speaker": 0, "speaker_confidence": 0.8730469, "start": 24, "word": "keyboard" }, { "confidence": 0.9790039, "end": 24.72, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.8730469, "start": 24.48, "word": "at" }, { "confidence": 0.99609375, "end": 24.96, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.8730469, "start": 24.72, "word": "all" }, { "confidence": 0.9951172, "end": 25.44, "punctuated_word": "times.", "speaker": 0, "speaker_confidence": 0.8730469, "start": 24.96, "word": "times" }, { "confidence": 0.9838867, "end": 25.68, "punctuated_word": "Every", "speaker": 0, "speaker_confidence": 0.8730469, "start": 25.44, "word": "every" }, { "confidence": 0.9892578, "end": 25.84, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.8730469, "start": 25.68, "word": "time" }, { "confidence": 0.9838867, "end": 26, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.8730469, "start": 25.84, "word": "you" }, { "confidence": 0.94628906, "end": 26.16, "punctuated_word": "touch", "speaker": 0, "speaker_confidence": 0.8730469, "start": 26, "word": "touch" }, { "confidence": 0.9394531, "end": 26.32, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8730469, "start": 26.16, "word": "the" }, { "confidence": 0.9916992, "end": 26.64, "punctuated_word": "mouse,", "speaker": 0, "speaker_confidence": 0.8730469, "start": 26.32, "word": "mouse" }, { "confidence": 0.56640625, "end": 27.14, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.8730469, "start": 26.64, "word": "your" }, { "confidence": 0.29614258, "end": 27.705, "punctuated_word": "sivity", "speaker": 0, "speaker_confidence": 0.8730469, "start": 27.225, "word": "sivity" }, { "confidence": 0.99658203, "end": 28.205, "punctuated_word": "declines.", "speaker": 0, "speaker_confidence": 0.8730469, "start": 27.705, "word": "declines" }, { "confidence": 1, "end": 28.665, "punctuated_word": "Learning", "speaker": 0, "speaker_confidence": 0.8730469, "start": 28.345001, "word": "learning" }, { "confidence": 0.984375, "end": 28.745, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8730469, "start": 28.665, "word": "to" }, { "confidence": 0.99902344, "end": 28.905, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.56347656, "start": 28.745, "word": "code" }, { "confidence": 0.99902344, "end": 29.065, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.56347656, "start": 28.905, "word": "with" }, { "confidence": 0.95410156, "end": 29.385, "punctuated_word": "Vim", "speaker": 0, "speaker_confidence": 0.56347656, "start": 29.065, "word": "vim" }, { "confidence": 0.9980469, "end": 29.545, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.56347656, "start": 29.385, "word": "is" }, { "confidence": 0.99902344, "end": 29.785, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.56347656, "start": 29.545, "word": "like" }, { "confidence": 1, "end": 30.025, "punctuated_word": "learning", "speaker": 0, "speaker_confidence": 0.56347656, "start": 29.785, "word": "learning" }, { "confidence": 0.921875, "end": 30.185001, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.56347656, "start": 30.025, "word": "to" }, { "confidence": 0.9980469, "end": 30.345001, "punctuated_word": "play", "speaker": 0, "speaker_confidence": 0.56347656, "start": 30.185001, "word": "play" }, { "confidence": 0.98535156, "end": 30.505001, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.56347656, "start": 30.345001, "word": "an" }, { "confidence": 0.99316406, "end": 31.005001, "punctuated_word": "instrument.", "speaker": 0, "speaker_confidence": 0.56347656, "start": 30.505001, "word": "instrument" }, { "confidence": 0.9946289, "end": 31.225, "punctuated_word": "It'll", "speaker": 0, "speaker_confidence": 0.56347656, "start": 31.065, "word": "it'll" }, { "confidence": 0.9970703, "end": 31.385, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.56347656, "start": 31.225, "word": "be" }, { "confidence": 1, "end": 31.785, "punctuated_word": "painful", "speaker": 0, "speaker_confidence": 0.56347656, "start": 31.385, "word": "painful" }, { "confidence": 0.9951172, "end": 31.945, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.56347656, "start": 31.785, "word": "at" }, { "confidence": 0.9284668, "end": 32.445, "punctuated_word": "first,", "speaker": 0, "speaker_confidence": 0.56347656, "start": 31.945, "word": "first" }, { "confidence": 0.9970703, "end": 32.665, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.56347656, "start": 32.505, "word": "but" }, { "confidence": 0.9980469, "end": 32.905, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.56347656, "start": 32.665, "word": "that" }, { "confidence": 1, "end": 33.225, "punctuated_word": "pain", "speaker": 0, "speaker_confidence": 0.56347656, "start": 32.905, "word": "pain" }, { "confidence": 0.99902344, "end": 33.385002, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.56347656, "start": 33.225, "word": "will" }, { "confidence": 1, "end": 33.545, "punctuated_word": "lead", "speaker": 0, "speaker_confidence": 0.47509766, "start": 33.385002, "word": "lead" }, { "confidence": 0.99902344, "end": 33.705, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.47509766, "start": 33.545, "word": "to" }, { "confidence": 0.9980469, "end": 33.945, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.47509766, "start": 33.705, "word": "more" }, { "confidence": 1, "end": 34.345, "punctuated_word": "precise", "speaker": 0, "speaker_confidence": 0.47509766, "start": 33.945, "word": "precise" }, { "confidence": 0.9980469, "end": 34.585, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.47509766, "start": 34.345, "word": "and" }, { "confidence": 1, "end": 34.985, "punctuated_word": "productive", "speaker": 0, "speaker_confidence": 0.47509766, "start": 34.585, "word": "productive" }, { "confidence": 0.99316406, "end": 35.38, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.47509766, "start": 34.985, "word": "code" }, { "confidence": 0.8310547, "end": 35.593334, "punctuated_word": "editing", "speaker": 0, "speaker_confidence": 0.81640625, "start": 35.460003, "word": "editing" }, { "confidence": 0.9838867, "end": 35.72667, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.81640625, "start": 35.593334, "word": "in" }, { "confidence": 0.9707031, "end": 35.86, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.81640625, "start": 35.72667, "word": "the" }, { "confidence": 0.99853516, "end": 36.36, "punctuated_word": "future.", "speaker": 0, "speaker_confidence": 0.81640625, "start": 35.86, "word": "future" }, { "confidence": 0.9580078, "end": 36.9, "punctuated_word": "Vim", "speaker": 0, "speaker_confidence": 0.81640625, "start": 36.58, "word": "vim" }, { "confidence": 0.9980469, "end": 37.14, "punctuated_word": "runs", "speaker": 0, "speaker_confidence": 0.81640625, "start": 36.9, "word": "runs" }, { "confidence": 0.97802734, "end": 37.22, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.81640625, "start": 37.14, "word": "in" }, { "confidence": 0.9970703, "end": 37.38, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.81640625, "start": 37.22, "word": "the" }, { "confidence": 0.76123047, "end": 37.780003, "punctuated_word": "terminal,", "speaker": 0, "speaker_confidence": 0.81640625, "start": 37.38, "word": "terminal" }, { "confidence": 1, "end": 37.940002, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.81640625, "start": 37.780003, "word": "and" }, { "confidence": 0.99609375, "end": 38.100002, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.81640625, "start": 37.940002, "word": "it's" }, { "confidence": 1, "end": 38.5, "punctuated_word": "installed", "speaker": 0, "speaker_confidence": 0.81640625, "start": 38.100002, "word": "installed" }, { "confidence": 0.99902344, "end": 38.74, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.81640625, "start": 38.5, "word": "on" }, { "confidence": 1, "end": 39.06, "punctuated_word": "almost", "speaker": 0, "speaker_confidence": 0.81640625, "start": 38.74, "word": "almost" }, { "confidence": 0.99902344, "end": 39.3, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 0.81640625, "start": 39.06, "word": "every" }, { "confidence": 0.9448242, "end": 39.8, "punctuated_word": "machine.", "speaker": 0, "speaker_confidence": 0.81640625, "start": 39.3, "word": "machine" }, { "confidence": 0.9951172, "end": 40.02, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.81640625, "start": 39.86, "word": "and" }, { "confidence": 0.9560547, "end": 40.100002, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.81640625, "start": 40.02, "word": "at" }, { "confidence": 1, "end": 40.260002, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.81640625, "start": 40.100002, "word": "some" }, { "confidence": 0.99194336, "end": 40.5, "punctuated_word": "point,", "speaker": 0, "speaker_confidence": 0.81640625, "start": 40.260002, "word": "point" }, { "confidence": 0.99560547, "end": 40.74, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 0.81640625, "start": 40.5, "word": "you'll" }, { "confidence": 0.99902344, "end": 41.06, "punctuated_word": "likely", "speaker": 0, "speaker_confidence": 0.81640625, "start": 40.74, "word": "likely" }, { "confidence": 1, "end": 41.22, "punctuated_word": "find", "speaker": 0, "speaker_confidence": 0.81640625, "start": 41.06, "word": "find" }, { "confidence": 1, "end": 41.620003, "punctuated_word": "yourself", "speaker": 0, "speaker_confidence": 0.81640625, "start": 41.22, "word": "yourself" }, { "confidence": 0.99609375, "end": 42.120003, "punctuated_word": "accidentally", "speaker": 0, "speaker_confidence": 0.81640625, "start": 41.620003, "word": "accidentally" }, { "confidence": 0.9892578, "end": 42.420002, "punctuated_word": "dropped", "speaker": 0, "speaker_confidence": 0.81640625, "start": 42.18, "word": "dropped" }, { "confidence": 0.94189453, "end": 42.74, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.81640625, "start": 42.420002, "word": "into" }, { "confidence": 0.9941406, "end": 43.14, "punctuated_word": "Vim", "speaker": 0, "speaker_confidence": 0.81640625, "start": 42.74, "word": "vim" }, { "confidence": 0.9086914, "end": 43.3, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.81640625, "start": 43.14, "word": "with" }, { "confidence": 1, "end": 43.46, "punctuated_word": "no", "speaker": 0, "speaker_confidence": 0.81640625, "start": 43.3, "word": "no" }, { "confidence": 1, "end": 43.7, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 0.81640625, "start": 43.46, "word": "way" }, { "confidence": 1, "end": 43.78, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.81640625, "start": 43.7, "word": "to" }, { "confidence": 0.9995117, "end": 44.28, "punctuated_word": "escape.", "speaker": 0, "speaker_confidence": 0.81640625, "start": 43.78, "word": "escape" }, { "confidence": 0.24597168, "end": 45.365, "punctuated_word": "Let", "speaker": 1, "speaker_confidence": 0, "start": 44.865, "word": "let" }, { "confidence": 0.97998047, "end": 46.305, "punctuated_word": "me", "speaker": 1, "speaker_confidence": 0, "start": 46.145, "word": "me" }, { "confidence": 0.78271484, "end": 46.625, "punctuated_word": "out", "speaker": 1, "speaker_confidence": 0, "start": 46.305, "word": "out" }, { "confidence": 0.7661133, "end": 46.865, "punctuated_word": "of", "speaker": 1, "speaker_confidence": 0, "start": 46.625, "word": "of" }, { "confidence": 0.97265625, "end": 47.345, "punctuated_word": "here.", "speaker": 1, "speaker_confidence": 0, "start": 46.865, "word": "here" }, { "confidence": 0.9941406, "end": 47.505, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.3359375, "start": 47.345, "word": "if" }, { "confidence": 0.99902344, "end": 47.665, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.3359375, "start": 47.505, "word": "you" }, { "confidence": 1, "end": 47.825, "punctuated_word": "find", "speaker": 0, "speaker_confidence": 0.3359375, "start": 47.665, "word": "find" }, { "confidence": 1, "end": 48.145, "punctuated_word": "yourself", "speaker": 0, "speaker_confidence": 0.3359375, "start": 47.825, "word": "yourself" }, { "confidence": 0.99365234, "end": 48.465, "punctuated_word": "there,", "speaker": 0, "speaker_confidence": 0.3359375, "start": 48.145, "word": "there" }, { "confidence": 1, "end": 48.625, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7109375, "start": 48.465, "word": "you" }, { "confidence": 0.9980469, "end": 48.785, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7109375, "start": 48.625, "word": "can" }, { "confidence": 1, "end": 49.025, "punctuated_word": "quit", "speaker": 0, "speaker_confidence": 0.7109375, "start": 48.785, "word": "quit" }, { "confidence": 0.6147461, "end": 49.265, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.7109375, "start": 49.025, "word": "them" }, { "confidence": 0.99902344, "end": 49.505, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.7109375, "start": 49.265, "word": "by" }, { "confidence": 0.99902344, "end": 49.985, "punctuated_word": "typing", "speaker": 0, "speaker_confidence": 0.7109375, "start": 49.505, "word": "typing" }, { "confidence": 0.9658203, "end": 50.305, "punctuated_word": "colon", "speaker": 0, "speaker_confidence": 0.7109375, "start": 49.985, "word": "colon" }, { "confidence": 0.798584, "end": 50.785, "punctuated_word": "q.", "speaker": 0, "speaker_confidence": 0.7109375, "start": 50.305, "word": "q" }, { "confidence": 0.99902344, "end": 50.945, "punctuated_word": "That", "speaker": 0, "speaker_confidence": 0.7109375, "start": 50.785, "word": "that" }, { "confidence": 1, "end": 51.105, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.7109375, "start": 50.945, "word": "will" }, { "confidence": 1, "end": 51.345, "punctuated_word": "close", "speaker": 0, "speaker_confidence": 0.7109375, "start": 51.105, "word": "close" }, { "confidence": 0.9941406, "end": 51.585, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.7109375, "start": 51.345, "word": "an" }, { "confidence": 0.9995117, "end": 52.085, "punctuated_word": "unmodified", "speaker": 0, "speaker_confidence": 0.7109375, "start": 51.585, "word": "unmodified" }, { "confidence": 0.7102051, "end": 52.545, "punctuated_word": "file.", "speaker": 0, "speaker_confidence": 0.7109375, "start": 52.225, "word": "file" }, { "confidence": 0.9980469, "end": 52.705, "punctuated_word": "Or", "speaker": 0, "speaker_confidence": 0.7109375, "start": 52.545, "word": "or" }, { "confidence": 0.9614258, "end": 52.864998, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.7109375, "start": 52.705, "word": "if" }, { "confidence": 0.99609375, "end": 52.945, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.7109375, "start": 52.864998, "word": "it" }, { "confidence": 1, "end": 53.105, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.6904297, "start": 52.945, "word": "has" }, { "confidence": 1, "end": 53.265, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.6904297, "start": 53.105, "word": "been" }, { "confidence": 0.99658203, "end": 53.765, "punctuated_word": "modified,", "speaker": 0, "speaker_confidence": 0.6904297, "start": 53.265, "word": "modified" }, { "confidence": 0.98828125, "end": 53.9, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.6904297, "start": 53.82, "word": "you" }, { "confidence": 1, "end": 54.14, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.6904297, "start": 53.9, "word": "can" }, { "confidence": 0.99902344, "end": 54.3, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.6904297, "start": 54.14, "word": "use" }, { "confidence": 0.7416992, "end": 54.62, "punctuated_word": "q", "speaker": 0, "speaker_confidence": 0.6904297, "start": 54.3, "word": "q" }, { "confidence": 0.8886719, "end": 54.94, "punctuated_word": "bang", "speaker": 0, "speaker_confidence": 0.6904297, "start": 54.62, "word": "bang" }, { "confidence": 0.984375, "end": 55.26, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6904297, "start": 54.94, "word": "to" }, { "confidence": 1, "end": 55.5, "punctuated_word": "throw", "speaker": 0, "speaker_confidence": 0.6904297, "start": 55.26, "word": "throw" }, { "confidence": 0.99902344, "end": 55.66, "punctuated_word": "away", "speaker": 0, "speaker_confidence": 0.6904297, "start": 55.5, "word": "away" }, { "confidence": 0.9980469, "end": 55.82, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.6904297, "start": 55.66, "word": "your" }, { "confidence": 0.9980469, "end": 56.32, "punctuated_word": "changes", "speaker": 0, "speaker_confidence": 0.6904297, "start": 55.82, "word": "changes" }, { "confidence": 0.8305664, "end": 56.78, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.6904297, "start": 56.54, "word": "or" }, { "confidence": 0.94189453, "end": 57.18, "punctuated_word": "colon", "speaker": 0, "speaker_confidence": 0.6904297, "start": 56.78, "word": "colon" }, { "confidence": 0.89208984, "end": 57.66, "punctuated_word": "w", "speaker": 0, "speaker_confidence": 0.6904297, "start": 57.18, "word": "w" }, { "confidence": 0.79248047, "end": 58.059998, "punctuated_word": "q", "speaker": 0, "speaker_confidence": 0.6904297, "start": 57.66, "word": "q" }, { "confidence": 0.99609375, "end": 58.22, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6904297, "start": 58.059998, "word": "to" }, { "confidence": 0.99902344, "end": 58.46, "punctuated_word": "write", "speaker": 0, "speaker_confidence": 0.6904297, "start": 58.22, "word": "write" }, { "confidence": 0.99902344, "end": 58.62, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6904297, "start": 58.46, "word": "the" }, { "confidence": 1, "end": 59.02, "punctuated_word": "changes", "speaker": 0, "speaker_confidence": 0.6904297, "start": 58.62, "word": "changes" }, { "confidence": 0.95947266, "end": 59.1, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6904297, "start": 59.02, "word": "and" }, { "confidence": 0.99902344, "end": 59.34, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.6904297, "start": 59.1, "word": "then" }, { "confidence": 0.94921875, "end": 59.84, "punctuated_word": "quit.", "speaker": 0, "speaker_confidence": 0.6904297, "start": 59.34, "word": "quit" }, { "confidence": 1, "end": 59.98, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.5751953, "start": 59.9, "word": "now" }, { "confidence": 0.9970703, "end": 60.14, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.5751953, "start": 59.98, "word": "that" }, { "confidence": 0.9995117, "end": 60.38, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.5751953, "start": 60.14, "word": "we're" }, { "confidence": 0.9975586, "end": 60.7, "punctuated_word": "out,", "speaker": 0, "speaker_confidence": 0.5751953, "start": 60.38, "word": "out" }, { "confidence": 1, "end": 61.02, "punctuated_word": "let's", "speaker": 0, "speaker_confidence": 0.5751953, "start": 60.7, "word": "let's" }, { "confidence": 1, "end": 61.26, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.5751953, "start": 61.02, "word": "use" }, { "confidence": 0.8535156, "end": 61.579998, "punctuated_word": "Vim", "speaker": 0, "speaker_confidence": 0.5751953, "start": 61.26, "word": "vim" }, { "confidence": 0.9980469, "end": 61.739998, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.5751953, "start": 61.579998, "word": "to" }, { "confidence": 1, "end": 62.059998, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.5751953, "start": 61.739998, "word": "open" }, { "confidence": 1, "end": 62.22, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.5751953, "start": 62.059998, "word": "up" }, { "confidence": 0.99902344, "end": 62.3, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.86572266, "start": 62.22, "word": "a" }, { "confidence": 1, "end": 62.78, "punctuated_word": "file.", "speaker": 0, "speaker_confidence": 0.86572266, "start": 62.3, "word": "file" }, { "confidence": 0.98706055, "end": 63.28, "punctuated_word": "Currently,", "speaker": 0, "speaker_confidence": 0.86572266, "start": 62.78, "word": "currently" }, { "confidence": 0.7375488, "end": 63.555428, "punctuated_word": "c.", "speaker": 0, "speaker_confidence": 0.86572266, "start": 63.295, "word": "c" }, { "confidence": 0.9980469, "end": 63.815857, "punctuated_word": "We're", "speaker": 0, "speaker_confidence": 0.86572266, "start": 63.555428, "word": "we're" }, { "confidence": 0.9614258, "end": 64.07629, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.86572266, "start": 63.815857, "word": "in" }, { "confidence": 0.9970703, "end": 64.336716, "punctuated_word": "normal", "speaker": 0, "speaker_confidence": 0.86572266, "start": 64.07629, "word": "normal" }, { "confidence": 0.95092773, "end": 64.597145, "punctuated_word": "mode,", "speaker": 0, "speaker_confidence": 0.86572266, "start": 64.336716, "word": "mode" }, { "confidence": 1, "end": 64.85757, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.86572266, "start": 64.597145, "word": "but" }, { "confidence": 1, "end": 65.118, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.86572266, "start": 64.85757, "word": "we" }, { "confidence": 1, "end": 65.378426, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.86572266, "start": 65.118, "word": "can" }, { "confidence": 1, "end": 65.638855, "punctuated_word": "toggle", "speaker": 0, "speaker_confidence": 0.86572266, "start": 65.378426, "word": "toggle" }, { "confidence": 0.99902344, "end": 65.899284, "punctuated_word": "between", "speaker": 0, "speaker_confidence": 0.86572266, "start": 65.638855, "word": "between" }, { "confidence": 1, "end": 66.15971, "punctuated_word": "different", "speaker": 0, "speaker_confidence": 0.86572266, "start": 65.899284, "word": "different" }, { "confidence": 1, "end": 66.42014, "punctuated_word": "modes", "speaker": 0, "speaker_confidence": 0.86572266, "start": 66.15971, "word": "modes" }, { "confidence": 0.87890625, "end": 66.68057, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.86572266, "start": 66.42014, "word": "like" }, { "confidence": 0.93066406, "end": 66.941, "punctuated_word": "insert,", "speaker": 0, "speaker_confidence": 0.86572266, "start": 66.68057, "word": "insert" }, { "confidence": 0.9885254, "end": 67.20143, "punctuated_word": "visual,", "speaker": 0, "speaker_confidence": 0.86572266, "start": 66.941, "word": "visual" }, { "confidence": 1, "end": 67.46186, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.86572266, "start": 67.20143, "word": "and" }, { "confidence": 0.99902344, "end": 67.72229, "punctuated_word": "command", "speaker": 0, "speaker_confidence": 0.86572266, "start": 67.46186, "word": "command" }, { "confidence": 0.99902344, "end": 67.98271, "punctuated_word": "line", "speaker": 0, "speaker_confidence": 0.86572266, "start": 67.72229, "word": "line" }, { "confidence": 0.8925781, "end": 68.24314, "punctuated_word": "depending", "speaker": 0, "speaker_confidence": 0.86572266, "start": 67.98271, "word": "depending" }, { "confidence": 1, "end": 68.50357, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.86572266, "start": 68.24314, "word": "on" }, { "confidence": 1, "end": 68.764, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.86572266, "start": 68.50357, "word": "what" }, { "confidence": 1, "end": 69.02443, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.86572266, "start": 68.764, "word": "we're" }, { "confidence": 1, "end": 69.28486, "punctuated_word": "trying", "speaker": 0, "speaker_confidence": 0.86572266, "start": 69.02443, "word": "trying" }, { "confidence": 0.99902344, "end": 69.54529, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.86572266, "start": 69.28486, "word": "to" }, { "confidence": 1, "end": 69.80572, "punctuated_word": "do.", "speaker": 0, "speaker_confidence": 0.86572266, "start": 69.54529, "word": "do" }, { "confidence": 1, "end": 70.06615, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.86572266, "start": 69.80572, "word": "we" }, { "confidence": 1, "end": 70.32658, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.86572266, "start": 70.06615, "word": "can" }, { "confidence": 1, "end": 70.587006, "punctuated_word": "move", "speaker": 0, "speaker_confidence": 0.86572266, "start": 70.32658, "word": "move" }, { "confidence": 1, "end": 70.84743, "punctuated_word": "around", "speaker": 0, "speaker_confidence": 0.86572266, "start": 70.587006, "word": "around" }, { "confidence": 1, "end": 71.10786, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.86572266, "start": 70.84743, "word": "the" }, { "confidence": 1, "end": 71.368286, "punctuated_word": "text", "speaker": 0, "speaker_confidence": 0.86572266, "start": 71.10786, "word": "text" }, { "confidence": 1, "end": 71.628716, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.86572266, "start": 71.368286, "word": "with" }, { "confidence": 0.9980469, "end": 71.889145, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.86572266, "start": 71.628716, "word": "the" }, { "confidence": 1, "end": 72.149574, "punctuated_word": "arrow", "speaker": 0, "speaker_confidence": 0.86572266, "start": 71.889145, "word": "arrow" }, { "confidence": 1, "end": 72.41, "punctuated_word": "keys", "speaker": 0, "speaker_confidence": 0.86572266, "start": 72.149574, "word": "keys" }, { "confidence": 0.46704102, "end": 72.73, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.86572266, "start": 72.490005, "word": "or" }, { "confidence": 0.99902344, "end": 72.810005, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.86572266, "start": 72.73, "word": "the" }, { "confidence": 0.9970703, "end": 73.310005, "punctuated_word": "letters", "speaker": 0, "speaker_confidence": 0.86572266, "start": 72.810005, "word": "letters" }, { "confidence": 0.8911133, "end": 73.61, "punctuated_word": "h", "speaker": 0, "speaker_confidence": 0.86572266, "start": 73.37, "word": "h" }, { "confidence": 0.52490234, "end": 73.770004, "punctuated_word": "j", "speaker": 0, "speaker_confidence": 0.86572266, "start": 73.61, "word": "j" }, { "confidence": 0.9428711, "end": 73.93, "punctuated_word": "k", "speaker": 0, "speaker_confidence": 0.86572266, "start": 73.770004, "word": "k" }, { "confidence": 0.9916992, "end": 74.41, "punctuated_word": "l.", "speaker": 0, "speaker_confidence": 0.86572266, "start": 73.93, "word": "l" }, { "confidence": 0.9970703, "end": 74.57001, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.86572266, "start": 74.41, "word": "if" }, { "confidence": 1, "end": 74.65, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.86572266, "start": 74.57001, "word": "we" }, { "confidence": 1, "end": 74.97, "punctuated_word": "find", "speaker": 0, "speaker_confidence": 0.86572266, "start": 74.65, "word": "find" }, { "confidence": 0.99902344, "end": 75.05, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.86572266, "start": 74.97, "word": "a" }, { "confidence": 1, "end": 75.53001, "punctuated_word": "character", "speaker": 0, "speaker_confidence": 0.86572266, "start": 75.05, "word": "character" }, { "confidence": 0.99121094, "end": 75.61, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.86572266, "start": 75.53001, "word": "we" }, { "confidence": 1, "end": 75.850006, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.86572266, "start": 75.61, "word": "want" }, { "confidence": 0.99902344, "end": 75.93, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.86572266, "start": 75.850006, "word": "to" }, { "confidence": 0.9428711, "end": 76.33, "punctuated_word": "delete,", "speaker": 0, "speaker_confidence": 0.86572266, "start": 75.93, "word": "delete" }, { "confidence": 1, "end": 76.41, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.86572266, "start": 76.33, "word": "we" }, { "confidence": 1, "end": 76.57001, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.86572266, "start": 76.41, "word": "can" }, { "confidence": 0.99609375, "end": 76.810005, "punctuated_word": "hit", "speaker": 0, "speaker_confidence": 0.86572266, "start": 76.57001, "word": "hit" }, { "confidence": 0.9863281, "end": 77.130005, "punctuated_word": "x", "speaker": 0, "speaker_confidence": 0.86572266, "start": 76.810005, "word": "x" }, { "confidence": 0.9614258, "end": 77.37, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.86572266, "start": 77.130005, "word": "or" }, { "confidence": 0.97802734, "end": 77.69, "punctuated_word": "double", "speaker": 0, "speaker_confidence": 0.86572266, "start": 77.37, "word": "double" }, { "confidence": 0.9892578, "end": 78.01, "punctuated_word": "d", "speaker": 0, "speaker_confidence": 0.86572266, "start": 77.69, "word": "d" }, { "confidence": 0.9980469, "end": 78.25, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.86572266, "start": 78.01, "word": "to" }, { "confidence": 1, "end": 78.57001, "punctuated_word": "quickly", "speaker": 0, "speaker_confidence": 0.86572266, "start": 78.25, "word": "quickly" }, { "confidence": 1, "end": 78.89001, "punctuated_word": "delete", "speaker": 0, "speaker_confidence": 0.86572266, "start": 78.57001, "word": "delete" }, { "confidence": 1, "end": 79.05, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.86572266, "start": 78.89001, "word": "an" }, { "confidence": 1, "end": 79.450005, "punctuated_word": "entire", "speaker": 0, "speaker_confidence": 0.86572266, "start": 79.05, "word": "entire" }, { "confidence": 0.99902344, "end": 79.93, "punctuated_word": "line.", "speaker": 0, "speaker_confidence": 0.86572266, "start": 79.450005, "word": "line" }, { "confidence": 0.9980469, "end": 80.090004, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.86572266, "start": 79.93, "word": "if" }, { "confidence": 1, "end": 80.170006, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.86572266, "start": 80.090004, "word": "that" }, { "confidence": 1, "end": 80.33, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.87597656, "start": 80.170006, "word": "was" }, { "confidence": 0.99609375, "end": 80.41, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.87597656, "start": 80.33, "word": "a" }, { "confidence": 0.9904785, "end": 80.91, "punctuated_word": "mistake,", "speaker": 0, "speaker_confidence": 0.87597656, "start": 80.41, "word": "mistake" }, { "confidence": 0.9980469, "end": 81.29, "punctuated_word": "hit", "speaker": 0, "speaker_confidence": 0.87597656, "start": 81.05, "word": "hit" }, { "confidence": 0.98828125, "end": 81.61, "punctuated_word": "u", "speaker": 0, "speaker_confidence": 0.87597656, "start": 81.29, "word": "u" }, { "confidence": 0.9970703, "end": 81.770004, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.87597656, "start": 81.61, "word": "to" }, { "confidence": 0.99902344, "end": 82.245, "punctuated_word": "undo", "speaker": 0, "speaker_confidence": 0.87597656, "start": 81.770004, "word": "undo" }, { "confidence": 0.8317871, "end": 82.725006, "punctuated_word": "Now,", "speaker": 0, "speaker_confidence": 0.87597656, "start": 82.485, "word": "now" }, { "confidence": 1, "end": 83.125, "punctuated_word": "currently", "speaker": 0, "speaker_confidence": 0.87597656, "start": 82.725006, "word": "currently" }, { "confidence": 0.56591797, "end": 83.285, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.87597656, "start": 83.125, "word": "the" }, { "confidence": 1, "end": 83.605, "punctuated_word": "document", "speaker": 0, "speaker_confidence": 0.87597656, "start": 83.285, "word": "document" }, { "confidence": 1, "end": 83.765, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.87597656, "start": 83.605, "word": "is" }, { "confidence": 0.95947266, "end": 84.005005, "punctuated_word": "kind", "speaker": 0, "speaker_confidence": 0.87597656, "start": 83.765, "word": "kind" }, { "confidence": 0.9980469, "end": 84.085, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.87597656, "start": 84.005005, "word": "of" }, { "confidence": 1, "end": 84.245, "punctuated_word": "hard", "speaker": 0, "speaker_confidence": 0.87597656, "start": 84.085, "word": "hard" }, { "confidence": 1, "end": 84.325005, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.87597656, "start": 84.245, "word": "to" }, { "confidence": 0.86157227, "end": 84.645004, "punctuated_word": "read,", "speaker": 0, "speaker_confidence": 0.87597656, "start": 84.325005, "word": "read" }, { "confidence": 0.99902344, "end": 84.885, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.87597656, "start": 84.645004, "word": "so" }, { "confidence": 0.99902344, "end": 85.125, "punctuated_word": "let's", "speaker": 0, "speaker_confidence": 0.87597656, "start": 84.885, "word": "let's" }, { "confidence": 1, "end": 85.365005, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.87597656, "start": 85.125, "word": "add" }, { "confidence": 0.9980469, "end": 85.605, "punctuated_word": "line", "speaker": 0, "speaker_confidence": 0.87597656, "start": 85.365005, "word": "line" }, { "confidence": 0.99902344, "end": 86.105, "punctuated_word": "numbers", "speaker": 0, "speaker_confidence": 0.87597656, "start": 85.605, "word": "numbers" }, { "confidence": 0.9980469, "end": 86.325005, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.87597656, "start": 86.165, "word": "by" }, { "confidence": 0.9838867, "end": 86.565, "punctuated_word": "running", "speaker": 0, "speaker_confidence": 0.87597656, "start": 86.325005, "word": "running" }, { "confidence": 0.9580078, "end": 86.965004, "punctuated_word": "colon", "speaker": 0, "speaker_confidence": 0.87597656, "start": 86.565, "word": "colon" }, { "confidence": 0.9760742, "end": 87.205, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.87597656, "start": 86.965004, "word": "set" }, { "confidence": 0.9819336, "end": 87.705, "punctuated_word": "number", "speaker": 0, "speaker_confidence": 0.87597656, "start": 87.205, "word": "number" }, { "confidence": 0.8071289, "end": 87.925, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.87597656, "start": 87.765, "word": "and" }, { "confidence": 0.97802734, "end": 88.085, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 0.87597656, "start": 87.925, "word": "now" }, { "confidence": 0.9707031, "end": 88.165, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.87597656, "start": 88.085, "word": "we" }, { "confidence": 0.99902344, "end": 88.325005, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.87597656, "start": 88.165, "word": "can" }, { "confidence": 1, "end": 88.725006, "punctuated_word": "navigate", "speaker": 0, "speaker_confidence": 0.87597656, "start": 88.325005, "word": "navigate" }, { "confidence": 1, "end": 88.885, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.87597656, "start": 88.725006, "word": "to" }, { "confidence": 0.9980469, "end": 89.125, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 0.87597656, "start": 88.885, "word": "any" }, { "confidence": 0.99902344, "end": 89.445, "punctuated_word": "line", "speaker": 0, "speaker_confidence": 0.87597656, "start": 89.125, "word": "line" }, { "confidence": 1, "end": 89.685005, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.87597656, "start": 89.445, "word": "with" }, { "confidence": 0.9902344, "end": 90.005005, "punctuated_word": "colon", "speaker": 0, "speaker_confidence": 0.87597656, "start": 89.685005, "word": "colon" }, { "confidence": 0.99853516, "end": 90.485, "punctuated_word": "number.", "speaker": 0, "speaker_confidence": 0.87597656, "start": 90.005005, "word": "number" }, { "confidence": 0.9790039, "end": 90.645004, "punctuated_word": "Now,", "speaker": 0, "speaker_confidence": 0.87597656, "start": 90.485, "word": "now" }, { "confidence": 0.99902344, "end": 90.805, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.87597656, "start": 90.645004, "word": "if" }, { "confidence": 0.9951172, "end": 90.965004, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.87597656, "start": 90.805, "word": "we" }, { "confidence": 0.99902344, "end": 91.125, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.87597656, "start": 90.965004, "word": "want" }, { "confidence": 0.99609375, "end": 91.285, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.87597656, "start": 91.125, "word": "to" }, { "confidence": 0.99902344, "end": 91.525, "punctuated_word": "change", "speaker": 0, "speaker_confidence": 0.87597656, "start": 91.285, "word": "change" }, { "confidence": 0.98291016, "end": 91.605, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.87597656, "start": 91.525, "word": "some" }, { "confidence": 0.94384766, "end": 91.9, "punctuated_word": "text,", "speaker": 0, "speaker_confidence": 0.87597656, "start": 91.605, "word": "text" }, { "confidence": 0.5891113, "end": 92.14, "punctuated_word": "6.", "speaker": 0, "speaker_confidence": 0.87597656, "start": 91.9, "word": "6" }, { "confidence": 0.9980469, "end": 92.22, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.87597656, "start": 92.14, "word": "we" }, { "confidence": 1, "end": 92.3, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.87597656, "start": 92.22, "word": "need" }, { "confidence": 1, "end": 92.380005, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.68652344, "start": 92.3, "word": "to" }, { "confidence": 1, "end": 92.54, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.68652344, "start": 92.380005, "word": "go" }, { "confidence": 0.99609375, "end": 92.94, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.68652344, "start": 92.54, "word": "into" }, { "confidence": 0.9428711, "end": 93.340004, "punctuated_word": "insert", "speaker": 0, "speaker_confidence": 0.68652344, "start": 92.94, "word": "insert" }, { "confidence": 0.99902344, "end": 93.66, "punctuated_word": "mode", "speaker": 0, "speaker_confidence": 0.68652344, "start": 93.340004, "word": "mode" }, { "confidence": 0.9980469, "end": 93.82, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.68652344, "start": 93.66, "word": "by" }, { "confidence": 1, "end": 94.14, "punctuated_word": "hitting", "speaker": 0, "speaker_confidence": 0.68652344, "start": 93.82, "word": "hitting" }, { "confidence": 0.90527344, "end": 94.54, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.68652344, "start": 94.14, "word": "i" }, { "confidence": 0.6928711, "end": 94.78, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.68652344, "start": 94.54, "word": "and" }, { "confidence": 0.9970703, "end": 94.94, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.68652344, "start": 94.78, "word": "that" }, { "confidence": 0.99853516, "end": 95.18, "punctuated_word": "frees", "speaker": 0, "speaker_confidence": 0.68652344, "start": 94.94, "word": "frees" }, { "confidence": 1, "end": 95.26, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.68652344, "start": 95.18, "word": "up" }, { "confidence": 1, "end": 95.42, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.68652344, "start": 95.26, "word": "the" }, { "confidence": 1, "end": 95.9, "punctuated_word": "keyboard", "speaker": 0, "speaker_confidence": 0.68652344, "start": 95.42, "word": "keyboard" }, { "confidence": 1, "end": 96.06, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.68652344, "start": 95.9, "word": "for" }, { "confidence": 1, "end": 96.3, "punctuated_word": "us", "speaker": 0, "speaker_confidence": 0.68652344, "start": 96.06, "word": "us" }, { "confidence": 1, "end": 96.380005, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.68652344, "start": 96.3, "word": "to" }, { "confidence": 1, "end": 96.62, "punctuated_word": "type", "speaker": 0, "speaker_confidence": 0.68652344, "start": 96.380005, "word": "type" }, { "confidence": 0.9941406, "end": 96.86, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.68652344, "start": 96.62, "word": "into" }, { "confidence": 1, "end": 96.94, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.50439453, "start": 96.86, "word": "the" }, { "confidence": 1, "end": 97.44, "punctuated_word": "document.", "speaker": 0, "speaker_confidence": 0.50439453, "start": 96.94, "word": "document" }, { "confidence": 1, "end": 97.9, "punctuated_word": "Once", "speaker": 0, "speaker_confidence": 0.50439453, "start": 97.66, "word": "once" }, { "confidence": 0.99560547, "end": 98.06, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.50439453, "start": 97.9, "word": "we're" }, { "confidence": 1, "end": 98.3, "punctuated_word": "done", "speaker": 0, "speaker_confidence": 0.50439453, "start": 98.06, "word": "done" }, { "confidence": 1, "end": 98.62, "punctuated_word": "modifying", "speaker": 0, "speaker_confidence": 0.50439453, "start": 98.3, "word": "modifying" }, { "confidence": 1, "end": 98.915, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.50439453, "start": 98.62, "word": "our" }, { "confidence": 0.56604004, "end": 99.155, "punctuated_word": "code.", "speaker": 0, "speaker_confidence": 0.50439453, "start": 98.915, "word": "code" }, { "confidence": 0.99902344, "end": 99.315, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.1484375, "start": 99.155, "word": "we" }, { "confidence": 1, "end": 99.395004, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.1484375, "start": 99.315, "word": "can" }, { "confidence": 1, "end": 99.555, "punctuated_word": "hit", "speaker": 0, "speaker_confidence": 0.1484375, "start": 99.395004, "word": "hit" }, { "confidence": 1, "end": 99.715004, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.1484375, "start": 99.555, "word": "the" }, { "confidence": 0.96972656, "end": 100.115, "punctuated_word": "escape", "speaker": 0, "speaker_confidence": 0.1484375, "start": 99.715004, "word": "escape" }, { "confidence": 1, "end": 100.515, "punctuated_word": "key", "speaker": 0, "speaker_confidence": 0.1484375, "start": 100.115, "word": "key" }, { "confidence": 1, "end": 100.595, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.81689453, "start": 100.515, "word": "to" }, { "confidence": 1, "end": 100.755, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.81689453, "start": 100.595, "word": "go" }, { "confidence": 1, "end": 100.915, "punctuated_word": "back", "speaker": 0, "speaker_confidence": 0.81689453, "start": 100.755, "word": "back" }, { "confidence": 1, "end": 101.155, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.81689453, "start": 100.915, "word": "to" }, { "confidence": 0.99902344, "end": 101.555, "punctuated_word": "normal", "speaker": 0, "speaker_confidence": 0.81689453, "start": 101.155, "word": "normal" }, { "confidence": 0.90527344, "end": 102.055, "punctuated_word": "mode,", "speaker": 0, "speaker_confidence": 0.81689453, "start": 101.555, "word": "mode" }, { "confidence": 0.99902344, "end": 102.355, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.81689453, "start": 102.115, "word": "but" }, { "confidence": 0.6899414, "end": 102.675, "punctuated_word": "now,", "speaker": 0, "speaker_confidence": 0.81689453, "start": 102.355, "word": "now" }, { "confidence": 1, "end": 102.915, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.81689453, "start": 102.675, "word": "like" }, { "confidence": 0.99121094, "end": 103.075, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 0.81689453, "start": 102.915, "word": "any" }, { "confidence": 0.9980469, "end": 103.315, "punctuated_word": "good", "speaker": 0, "speaker_confidence": 0.81689453, "start": 103.075, "word": "good" }, { "confidence": 0.9975586, "end": 103.795, "punctuated_word": "developer,", "speaker": 0, "speaker_confidence": 0.81689453, "start": 103.315, "word": "developer" }, { "confidence": 1, "end": 104.035, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.81689453, "start": 103.795, "word": "we" }, { "confidence": 1, "end": 104.195, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.81689453, "start": 104.035, "word": "need" }, { "confidence": 1, "end": 104.435, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.81689453, "start": 104.195, "word": "to" }, { "confidence": 1, "end": 104.675, "punctuated_word": "copy", "speaker": 0, "speaker_confidence": 0.81689453, "start": 104.435, "word": "copy" }, { "confidence": 1, "end": 104.835, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.81689453, "start": 104.675, "word": "and" }, { "confidence": 1, "end": 105.075, "punctuated_word": "paste", "speaker": 0, "speaker_confidence": 0.81689453, "start": 104.835, "word": "paste" }, { "confidence": 1, "end": 105.235, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.81689453, "start": 105.075, "word": "some" }, { "confidence": 1, "end": 105.395004, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.81689453, "start": 105.235, "word": "code" }, { "confidence": 1, "end": 105.555, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.81689453, "start": 105.395004, "word": "in" }, { "confidence": 1, "end": 105.795, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0.81689453, "start": 105.555, "word": "here" }, { "confidence": 1, "end": 106.035, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.81689453, "start": 105.795, "word": "from" }, { "confidence": 0.97314453, "end": 106.275, "punctuated_word": "Stack", "speaker": 0, "speaker_confidence": 0.81689453, "start": 106.035, "word": "stack" }, { "confidence": 0.9951172, "end": 106.775, "punctuated_word": "Overflow.", "speaker": 0, "speaker_confidence": 0.81689453, "start": 106.275, "word": "overflow" }, { "confidence": 1, "end": 107.155, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.81689453, "start": 106.995, "word": "we" }, { "confidence": 1, "end": 107.235, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.81689453, "start": 107.155, "word": "can" }, { "confidence": 0.9980469, "end": 107.555, "punctuated_word": "paste", "speaker": 0, "speaker_confidence": 0.81689453, "start": 107.235, "word": "paste" }, { "confidence": 1, "end": 107.715004, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.81689453, "start": 107.555, "word": "from" }, { "confidence": 1, "end": 107.795, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.71972656, "start": 107.715004, "word": "the" }, { "confidence": 0.9951172, "end": 108.115, "punctuated_word": "system", "speaker": 0, "speaker_confidence": 0.71972656, "start": 107.795, "word": "system" }, { "confidence": 0.9980469, "end": 108.615, "punctuated_word": "clipboard", "speaker": 0, "speaker_confidence": 0.71972656, "start": 108.115, "word": "clipboard" }, { "confidence": 0.9873047, "end": 108.96, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.71972656, "start": 108.8, "word": "by" }, { "confidence": 0.9980469, "end": 109.200005, "punctuated_word": "entering", "speaker": 0, "speaker_confidence": 0.71972656, "start": 108.96, "word": "entering" }, { "confidence": 0.9604492, "end": 109.6, "punctuated_word": "plus", "speaker": 0, "speaker_confidence": 0.71972656, "start": 109.200005, "word": "plus" }, { "confidence": 0.94189453, "end": 109.92, "punctuated_word": "p", "speaker": 0, "speaker_confidence": 0.71972656, "start": 109.6, "word": "p" }, { "confidence": 0.7583008, "end": 110.24, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.71972656, "start": 109.92, "word": "into" }, { "confidence": 0.7993164, "end": 110.64, "punctuated_word": "them.", "speaker": 0, "speaker_confidence": 0.71972656, "start": 110.24, "word": "them" }, { "confidence": 0.99902344, "end": 110.8, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.71972656, "start": 110.64, "word": "and" }, { "confidence": 1, "end": 110.96, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 0.71972656, "start": 110.8, "word": "now" }, { "confidence": 1, "end": 111.200005, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.71972656, "start": 110.96, "word": "that" }, { "confidence": 1, "end": 111.28, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.71972656, "start": 111.200005, "word": "our" }, { "confidence": 1, "end": 111.6, "punctuated_word": "software", "speaker": 0, "speaker_confidence": 0.71972656, "start": 111.28, "word": "software" }, { "confidence": 0.9951172, "end": 111.840004, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.71972656, "start": 111.6, "word": "is" }, { "confidence": 0.99853516, "end": 112.24, "punctuated_word": "complete,", "speaker": 0, "speaker_confidence": 0.71972656, "start": 111.840004, "word": "complete" }, { "confidence": 1, "end": 112.4, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.71972656, "start": 112.24, "word": "we" }, { "confidence": 1, "end": 112.56, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.71972656, "start": 112.4, "word": "can" }, { "confidence": 1, "end": 112.72, "punctuated_word": "hit", "speaker": 0, "speaker_confidence": 0.71972656, "start": 112.56, "word": "hit" }, { "confidence": 0.96533203, "end": 113.200005, "punctuated_word": "colon", "speaker": 0, "speaker_confidence": 0.71972656, "start": 112.72, "word": "colon" }, { "confidence": 0.984375, "end": 113.520004, "punctuated_word": "w", "speaker": 0, "speaker_confidence": 0.71972656, "start": 113.200005, "word": "w" }, { "confidence": 0.9951172, "end": 113.68, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.71972656, "start": 113.520004, "word": "to" }, { "confidence": 1, "end": 113.92, "punctuated_word": "save", "speaker": 0, "speaker_confidence": 0.71972656, "start": 113.68, "word": "save" }, { "confidence": 0.9226074, "end": 114.42, "punctuated_word": "it,", "speaker": 0, "speaker_confidence": 0.71972656, "start": 113.92, "word": "it" }, { "confidence": 1, "end": 114.64, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.71972656, "start": 114.48, "word": "then" }, { "confidence": 1, "end": 114.8, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.71972656, "start": 114.64, "word": "run" }, { "confidence": 1, "end": 114.96, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.71972656, "start": 114.8, "word": "the" }, { "confidence": 1, "end": 115.44, "punctuated_word": "program", "speaker": 0, "speaker_confidence": 0.71972656, "start": 114.96, "word": "program" }, { "confidence": 1, "end": 115.840004, "punctuated_word": "directly", "speaker": 0, "speaker_confidence": 0.71972656, "start": 115.44, "word": "directly" }, { "confidence": 1, "end": 116.08, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.71972656, "start": 115.840004, "word": "from" }, { "confidence": 0.91259766, "end": 116.48, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.71972656, "start": 116.08, "word": "them" }, { "confidence": 0.97998047, "end": 116.72, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.71972656, "start": 116.48, "word": "with" }, { "confidence": 0.99609375, "end": 117.12, "punctuated_word": "colon", "speaker": 0, "speaker_confidence": 0.71972656, "start": 116.72, "word": "colon" }, { "confidence": 0.99121094, "end": 117.535, "punctuated_word": "bang", "speaker": 0, "speaker_confidence": 0.71972656, "start": 117.12, "word": "bang" }, { "confidence": 0.9838867, "end": 117.855, "punctuated_word": "followed", "speaker": 0, "speaker_confidence": 0.71972656, "start": 117.615005, "word": "followed" }, { "confidence": 1, "end": 117.935005, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.71972656, "start": 117.855, "word": "by" }, { "confidence": 0.99902344, "end": 118.01501, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.71972656, "start": 117.935005, "word": "the" }, { "confidence": 0.94921875, "end": 118.415, "punctuated_word": "shell", "speaker": 0, "speaker_confidence": 0.7001953, "start": 118.01501, "word": "shell" }, { "confidence": 0.99902344, "end": 118.65501, "punctuated_word": "command", "speaker": 0, "speaker_confidence": 0.7001953, "start": 118.415, "word": "command" }, { "confidence": 0.95410156, "end": 118.815, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.7001953, "start": 118.65501, "word": "we" }, { "confidence": 0.99902344, "end": 118.935, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.7001953, "start": 118.815, "word": "want" }, { "confidence": 1, "end": 119.055, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7001953, "start": 118.935, "word": "to" }, { "confidence": 0.9995117, "end": 119.535, "punctuated_word": "run.", "speaker": 0, "speaker_confidence": 0.7001953, "start": 119.055, "word": "run" }, { "confidence": 0.92285156, "end": 120.035, "punctuated_word": "Congratulations.", "speaker": 0, "speaker_confidence": 0.7001953, "start": 119.535, "word": "congratulations" }, { "confidence": 0.9995117, "end": 120.735, "punctuated_word": "You're", "speaker": 0, "speaker_confidence": 0.7001953, "start": 120.575005, "word": "you're" }, { "confidence": 0.9980469, "end": 120.895004, "punctuated_word": "no", "speaker": 0, "speaker_confidence": 0.7001953, "start": 120.735, "word": "no" }, { "confidence": 1, "end": 121.135, "punctuated_word": "longer", "speaker": 0, "speaker_confidence": 0.7001953, "start": 120.895004, "word": "longer" }, { "confidence": 0.9980469, "end": 121.295006, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7001953, "start": 121.135, "word": "a" }, { "confidence": 0.37817383, "end": 121.535, "punctuated_word": "sway", "speaker": 0, "speaker_confidence": 0.7001953, "start": 121.295006, "word": "sway" }, { "confidence": 0.89160156, "end": 121.855, "punctuated_word": "dev,", "speaker": 0, "speaker_confidence": 0.7001953, "start": 121.535, "word": "dev" }, { "confidence": 1, "end": 122.095, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.7001953, "start": 121.855, "word": "but" }, { "confidence": 1, "end": 122.255005, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7001953, "start": 122.095, "word": "a" }, { "confidence": 0.99902344, "end": 122.575005, "punctuated_word": "true", "speaker": 0, "speaker_confidence": 0.7001953, "start": 122.255005, "word": "true" }, { "confidence": 0.99902344, "end": 122.975006, "punctuated_word": "software", "speaker": 0, "speaker_confidence": 0.7001953, "start": 122.575005, "word": "software" }, { "confidence": 1, "end": 123.475006, "punctuated_word": "engineer.", "speaker": 0, "speaker_confidence": 0.7001953, "start": 122.975006, "word": "engineer" }, { "confidence": 1, "end": 123.69501, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.7001953, "start": 123.535, "word": "this" }, { "confidence": 0.9980469, "end": 123.855, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.7001953, "start": 123.69501, "word": "has" }, { "confidence": 1, "end": 124.095, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.7001953, "start": 123.855, "word": "been" }, { "confidence": 0.94189453, "end": 124.415, "punctuated_word": "Vim", "speaker": 0, "speaker_confidence": 0.7001953, "start": 124.095, "word": "vim" }, { "confidence": 0.97314453, "end": 124.65501, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7001953, "start": 124.415, "word": "in" }, { "confidence": 0.94921875, "end": 125.055, "punctuated_word": "100", "speaker": 0, "speaker_confidence": 0.7001953, "start": 124.65501, "word": "100" }, { "confidence": 0.83081055, "end": 125.555, "punctuated_word": "seconds,", "speaker": 0, "speaker_confidence": 0.7001953, "start": 125.055, "word": "seconds" }, { "confidence": 0.99902344, "end": 126.095, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.7001953, "start": 125.775, "word": "but" }, { "confidence": 0.99902344, "end": 126.255005, "punctuated_word": "stay", "speaker": 0, "speaker_confidence": 0.7001953, "start": 126.095, "word": "stay" }, { "confidence": 1, "end": 126.65501, "punctuated_word": "tuned", "speaker": 0, "speaker_confidence": 0.7001953, "start": 126.255005, "word": "tuned" }, { "confidence": 0.77246094, "end": 126.895004, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.7001953, "start": 126.65501, "word": "because" }, { "confidence": 0.9980469, "end": 127.055, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7001953, "start": 126.895004, "word": "you" }, { "confidence": 0.9995117, "end": 127.215004, "punctuated_word": "don't", "speaker": 0, "speaker_confidence": 0.7001953, "start": 127.055, "word": "don't" }, { "confidence": 0.99609375, "end": 127.52, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.7001953, "start": 127.215004, "word": "need" }, { "confidence": 0.7158203, "end": 127.68, "punctuated_word": "2", "speaker": 0, "speaker_confidence": 0.7001953, "start": 127.52, "word": "2" }, { "confidence": 0.40454102, "end": 127.84, "punctuated_word": "ditch", "speaker": 0, "speaker_confidence": 0.7001953, "start": 127.68, "word": "ditch" }, { "confidence": 0.59765625, "end": 128, "punctuated_word": "v", "speaker": 0, "speaker_confidence": 0.7001953, "start": 127.84, "word": "v" }, { "confidence": 0.9790039, "end": 128.23999, "punctuated_word": "s", "speaker": 0, "speaker_confidence": 0.7001953, "start": 128, "word": "s" }, { "confidence": 0.9770508, "end": 128.56, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.7001953, "start": 128.23999, "word": "code" }, { "confidence": 0.98828125, "end": 128.72, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7001953, "start": 128.56, "word": "to" }, { "confidence": 1, "end": 128.95999, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.7001953, "start": 128.72, "word": "get" }, { "confidence": 0.99902344, "end": 129.04, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7001953, "start": 128.95999, "word": "the" }, { "confidence": 1, "end": 129.44, "punctuated_word": "benefits", "speaker": 0, "speaker_confidence": 0.7001953, "start": 129.04, "word": "benefits" }, { "confidence": 0.99902344, "end": 129.59999, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7001953, "start": 129.44, "word": "of" }, { "confidence": 0.8847656, "end": 130, "punctuated_word": "Vim.", "speaker": 0, "speaker_confidence": 0.7001953, "start": 129.59999, "word": "vim" }, { "confidence": 1, "end": 130.23999, "punctuated_word": "That's", "speaker": 0, "speaker_confidence": 0.7001953, "start": 130, "word": "that's" }, { "confidence": 1, "end": 130.48, "punctuated_word": "why", "speaker": 0, "speaker_confidence": 0.7001953, "start": 130.23999, "word": "why" }, { "confidence": 0.9980469, "end": 130.56, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.7001953, "start": 130.48, "word": "i" }, { "confidence": 0.99902344, "end": 130.95999, "punctuated_word": "invited", "speaker": 0, "speaker_confidence": 0.7001953, "start": 130.56, "word": "invited" }, { "confidence": 0.99902344, "end": 131.12, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7001953, "start": 130.95999, "word": "a" }, { "confidence": 0.99902344, "end": 131.44, "punctuated_word": "true", "speaker": 0, "speaker_confidence": 0.7001953, "start": 131.12, "word": "true" }, { "confidence": 1, "end": 131.84, "punctuated_word": "expert", "speaker": 0, "speaker_confidence": 0.7001953, "start": 131.44, "word": "expert" }, { "confidence": 0.97509766, "end": 132.08, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7001953, "start": 131.84, "word": "and" }, { "confidence": 0.9951172, "end": 132.23999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7001953, "start": 132.08, "word": "the" }, { "confidence": 0.99902344, "end": 132.72, "punctuated_word": "instructor", "speaker": 0, "speaker_confidence": 0.7001953, "start": 132.23999, "word": "instructor" }, { "confidence": 0.99609375, "end": 132.87999, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7001953, "start": 132.72, "word": "of" }, { "confidence": 0.9921875, "end": 133.04, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7001953, "start": 132.87999, "word": "the" }, { "confidence": 0.9536133, "end": 133.36, "punctuated_word": "Vim", "speaker": 0, "speaker_confidence": 0.7001953, "start": 133.04, "word": "vim" }, { "confidence": 0.8935547, "end": 133.51999, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.7001953, "start": 133.36, "word": "for" }, { "confidence": 0.47460938, "end": 133.84, "punctuated_word": "Versus", "speaker": 0, "speaker_confidence": 0.7001953, "start": 133.51999, "word": "versus" }, { "confidence": 0.7661133, "end": 134, "punctuated_word": "Code", "speaker": 0, "speaker_confidence": 0.7001953, "start": 133.84, "word": "code" }, { "confidence": 0.9165039, "end": 134.5, "punctuated_word": "course,", "speaker": 0, "speaker_confidence": 0.7001953, "start": 134, "word": "course" }, { "confidence": 0.86865234, "end": 134.8, "punctuated_word": "Joe", "speaker": 0, "speaker_confidence": 0.7001953, "start": 134.56, "word": "joe" }, { "confidence": 0.71795654, "end": 135.135, "punctuated_word": "Prebitt,", "speaker": 0, "speaker_confidence": 0.7001953, "start": 134.8, "word": "prebitt" }, { "confidence": 0.5449219, "end": 135.375, "punctuated_word": "sit", "speaker": 0, "speaker_confidence": 0.7001953, "start": 135.135, "word": "sit" }, { "confidence": 0.69873047, "end": 135.61499, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7001953, "start": 135.375, "word": "to" }, { "confidence": 0.99902344, "end": 135.935, "punctuated_word": "take", "speaker": 0, "speaker_confidence": 0.7001953, "start": 135.61499, "word": "take" }, { "confidence": 0.9970703, "end": 136.095, "punctuated_word": "us", "speaker": 0, "speaker_confidence": 0.7001953, "start": 135.935, "word": "us" }, { "confidence": 0.9970703, "end": 136.33499, "punctuated_word": "beyond", "speaker": 0, "speaker_confidence": 0.32128906, "start": 136.095, "word": "beyond" }, { "confidence": 0.9428711, "end": 136.81499, "punctuated_word": "100", "speaker": 0, "speaker_confidence": 0.32128906, "start": 136.33499, "word": "100" }, { "confidence": 0.9970703, "end": 137.215, "punctuated_word": "seconds", "speaker": 0, "speaker_confidence": 0.32128906, "start": 136.81499, "word": "seconds" }, { "confidence": 0.99316406, "end": 137.455, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.32128906, "start": 137.215, "word": "of" }, { "confidence": 0.9211426, "end": 137.955, "punctuated_word": "Vim.", "speaker": 0, "speaker_confidence": 0.32128906, "start": 137.455, "word": "vim" }, { "confidence": 0.8684082, "end": 139.635, "punctuated_word": "Hello,", "speaker": 1, "speaker_confidence": 0.57470703, "start": 139.135, "word": "hello" }, { "confidence": 0.9995117, "end": 140.19499, "punctuated_word": "everyone.", "speaker": 1, "speaker_confidence": 0.57470703, "start": 139.69499, "word": "everyone" }, { "confidence": 0.99902344, "end": 140.735, "punctuated_word": "I'm", "speaker": 1, "speaker_confidence": 0.57470703, "start": 140.415, "word": "i'm" }, { "confidence": 0.8017578, "end": 141.215, "punctuated_word": "Joe,", "speaker": 1, "speaker_confidence": 0.57470703, "start": 140.735, "word": "joe" }, { "confidence": 1, "end": 141.45499, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.57470703, "start": 141.215, "word": "and" }, { "confidence": 1, "end": 141.61499, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.57470703, "start": 141.45499, "word": "i" }, { "confidence": 1, "end": 141.855, "punctuated_word": "will", "speaker": 1, "speaker_confidence": 0.57470703, "start": 141.61499, "word": "will" }, { "confidence": 1, "end": 142.015, "punctuated_word": "be", "speaker": 1, "speaker_confidence": 0.57470703, "start": 141.855, "word": "be" }, { "confidence": 1, "end": 142.33499, "punctuated_word": "your", "speaker": 1, "speaker_confidence": 0.57470703, "start": 142.015, "word": "your" }, { "confidence": 1, "end": 142.81499, "punctuated_word": "guide", "speaker": 1, "speaker_confidence": 0.57470703, "start": 142.33499, "word": "guide" }, { "confidence": 0.9873047, "end": 143.055, "punctuated_word": "as", "speaker": 1, "speaker_confidence": 0.57470703, "start": 142.81499, "word": "as" }, { "confidence": 1, "end": 143.135, "punctuated_word": "we", "speaker": 1, "speaker_confidence": 0.57470703, "start": 143.055, "word": "we" }, { "confidence": 1, "end": 143.375, "punctuated_word": "go", "speaker": 1, "speaker_confidence": 0.8701172, "start": 143.135, "word": "go" }, { "confidence": 0.9921875, "end": 143.855, "punctuated_word": "beyond", "speaker": 1, "speaker_confidence": 0.8701172, "start": 143.375, "word": "beyond" }, { "confidence": 0.95947266, "end": 144.355, "punctuated_word": "100", "speaker": 1, "speaker_confidence": 0.8701172, "start": 143.855, "word": "100" }, { "confidence": 0.9970703, "end": 144.915, "punctuated_word": "seconds", "speaker": 1, "speaker_confidence": 0.8701172, "start": 144.415, "word": "seconds" }, { "confidence": 0.98535156, "end": 145.44, "punctuated_word": "To", "speaker": 1, "speaker_confidence": 0.8701172, "start": 145.2, "word": "to" }, { "confidence": 1, "end": 145.94, "punctuated_word": "discuss", "speaker": 1, "speaker_confidence": 0.8701172, "start": 145.44, "word": "discuss" }, { "confidence": 0.99609375, "end": 146.31999, "punctuated_word": "why", "speaker": 1, "speaker_confidence": 0.8701172, "start": 146, "word": "why" }, { "confidence": 0.99609375, "end": 146.4, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.8701172, "start": 146.31999, "word": "you" }, { "confidence": 1, "end": 146.64, "punctuated_word": "should", "speaker": 1, "speaker_confidence": 0.8701172, "start": 146.4, "word": "should" }, { "confidence": 1, "end": 146.95999, "punctuated_word": "learn", "speaker": 1, "speaker_confidence": 0.8701172, "start": 146.64, "word": "learn" }, { "confidence": 0.73205566, "end": 147.45999, "punctuated_word": "VIM", "speaker": 1, "speaker_confidence": 0.8701172, "start": 146.95999, "word": "vim" }, { "confidence": 0.9472656, "end": 147.68, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.8701172, "start": 147.51999, "word": "and" }, { "confidence": 1, "end": 147.92, "punctuated_word": "how", "speaker": 1, "speaker_confidence": 0.8701172, "start": 147.68, "word": "how" }, { "confidence": 1, "end": 148, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.8701172, "start": 147.92, "word": "you" }, { "confidence": 1, "end": 148.23999, "punctuated_word": "can", "speaker": 1, "speaker_confidence": 0.8701172, "start": 148, "word": "can" }, { "confidence": 1, "end": 148.56, "punctuated_word": "leverage", "speaker": 1, "speaker_confidence": 0.8701172, "start": 148.23999, "word": "leverage" }, { "confidence": 0.99902344, "end": 148.87999, "punctuated_word": "it", "speaker": 1, "speaker_confidence": 0.8701172, "start": 148.56, "word": "it" }, { "confidence": 1, "end": 149.36, "punctuated_word": "inside", "speaker": 1, "speaker_confidence": 0.8701172, "start": 148.87999, "word": "inside" }, { "confidence": 0.9970703, "end": 149.68, "punctuated_word": "your", "speaker": 1, "speaker_confidence": 0.8701172, "start": 149.36, "word": "your" }, { "confidence": 1, "end": 150, "punctuated_word": "favorite", "speaker": 1, "speaker_confidence": 0.8701172, "start": 149.68, "word": "favorite" }, { "confidence": 0.8066406, "end": 150.5, "punctuated_word": "editor,", "speaker": 1, "speaker_confidence": 0.8701172, "start": 150, "word": "editor" }, { "confidence": 0.4580078, "end": 151.28, "punctuated_word": "Versus", "speaker": 1, "speaker_confidence": 0.8701172, "start": 150.79999, "word": "versus" }, { "confidence": 0.7988281, "end": 151.78, "punctuated_word": "Code.", "speaker": 1, "speaker_confidence": 0.8701172, "start": 151.28, "word": "code" }, { "confidence": 0.81591797, "end": 152.4, "punctuated_word": "First,", "speaker": 1, "speaker_confidence": 0.8701172, "start": 152, "word": "first" }, { "confidence": 0.99853516, "end": 152.72, "punctuated_word": "let's", "speaker": 1, "speaker_confidence": 0.8701172, "start": 152.4, "word": "let's" }, { "confidence": 1, "end": 152.95999, "punctuated_word": "talk", "speaker": 1, "speaker_confidence": 0.8701172, "start": 152.72, "word": "talk" }, { "confidence": 1, "end": 153.28, "punctuated_word": "about", "speaker": 1, "speaker_confidence": 0.8701172, "start": 152.95999, "word": "about" }, { "confidence": 1, "end": 153.51999, "punctuated_word": "why", "speaker": 1, "speaker_confidence": 0.8701172, "start": 153.28, "word": "why" }, { "confidence": 0.9951172, "end": 153.68, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.8701172, "start": 153.51999, "word": "you" }, { "confidence": 1, "end": 153.84, "punctuated_word": "should", "speaker": 1, "speaker_confidence": 0.8701172, "start": 153.68, "word": "should" }, { "confidence": 0.99902344, "end": 154.08, "punctuated_word": "learn", "speaker": 1, "speaker_confidence": 0.8701172, "start": 153.84, "word": "learn" }, { "confidence": 0.9744466, "end": 154.58, "punctuated_word": "VIM.", "speaker": 1, "speaker_confidence": 0.8701172, "start": 154.08, "word": "vim" }, { "confidence": 0.9277344, "end": 155.075, "punctuated_word": "Vim", "speaker": 1, "speaker_confidence": 0.42382812, "start": 154.91501, "word": "vim" }, { "confidence": 0.9980469, "end": 155.395, "punctuated_word": "is", "speaker": 1, "speaker_confidence": 0.42382812, "start": 155.075, "word": "is" }, { "confidence": 1, "end": 155.55501, "punctuated_word": "an", "speaker": 1, "speaker_confidence": 0.42382812, "start": 155.395, "word": "an" }, { "confidence": 0.9951172, "end": 156.05501, "punctuated_word": "evergreen", "speaker": 1, "speaker_confidence": 0.42382812, "start": 155.55501, "word": "evergreen" }, { "confidence": 0.8005371, "end": 156.615, "punctuated_word": "skill,", "speaker": 1, "speaker_confidence": 0.42382812, "start": 156.115, "word": "skill" }, { "confidence": 0.9970703, "end": 157.155, "punctuated_word": "meaning", "speaker": 1, "speaker_confidence": 0.42382812, "start": 156.755, "word": "meaning" }, { "confidence": 0.98095703, "end": 157.235, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.42382812, "start": 157.155, "word": "you" }, { "confidence": 0.99902344, "end": 157.395, "punctuated_word": "can", "speaker": 1, "speaker_confidence": 0.6591797, "start": 157.235, "word": "can" }, { "confidence": 1, "end": 157.55501, "punctuated_word": "learn", "speaker": 1, "speaker_confidence": 0.6591797, "start": 157.395, "word": "learn" }, { "confidence": 0.89746094, "end": 157.715, "punctuated_word": "it", "speaker": 1, "speaker_confidence": 0.6591797, "start": 157.55501, "word": "it" }, { "confidence": 1, "end": 158.035, "punctuated_word": "once", "speaker": 1, "speaker_confidence": 0.6591797, "start": 157.715, "word": "once" }, { "confidence": 0.95703125, "end": 158.195, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.6591797, "start": 158.035, "word": "and" }, { "confidence": 0.9951172, "end": 158.435, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.6591797, "start": 158.195, "word": "the" }, { "confidence": 1, "end": 158.755, "punctuated_word": "knowledge", "speaker": 1, "speaker_confidence": 0.6591797, "start": 158.435, "word": "knowledge" }, { "confidence": 1, "end": 158.91501, "punctuated_word": "will", "speaker": 1, "speaker_confidence": 0.6591797, "start": 158.755, "word": "will" }, { "confidence": 1, "end": 159.155, "punctuated_word": "last", "speaker": 1, "speaker_confidence": 0.6591797, "start": 158.91501, "word": "last" }, { "confidence": 1, "end": 159.395, "punctuated_word": "with", "speaker": 1, "speaker_confidence": 0.6591797, "start": 159.155, "word": "with" }, { "confidence": 1, "end": 159.715, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.6591797, "start": 159.395, "word": "you" }, { "confidence": 0.99609375, "end": 159.955, "punctuated_word": "for", "speaker": 1, "speaker_confidence": 0.6591797, "start": 159.715, "word": "for" }, { "confidence": 1, "end": 160.035, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.6591797, "start": 159.955, "word": "the" }, { "confidence": 1, "end": 160.275, "punctuated_word": "rest", "speaker": 1, "speaker_confidence": 0.6591797, "start": 160.035, "word": "rest" }, { "confidence": 1, "end": 160.355, "punctuated_word": "of", "speaker": 1, "speaker_confidence": 0.6591797, "start": 160.275, "word": "of" }, { "confidence": 1, "end": 160.595, "punctuated_word": "your", "speaker": 1, "speaker_confidence": 0.6591797, "start": 160.355, "word": "your" }, { "confidence": 0.95751953, "end": 161.075, "punctuated_word": "career.", "speaker": 1, "speaker_confidence": 0.6591797, "start": 160.595, "word": "career" }, { "confidence": 0.99609375, "end": 161.235, "punctuated_word": "It", "speaker": 1, "speaker_confidence": 0.5024414, "start": 161.075, "word": "it" }, { "confidence": 1, "end": 161.55501, "punctuated_word": "allows", "speaker": 1, "speaker_confidence": 0.5024414, "start": 161.235, "word": "allows" }, { "confidence": 1, "end": 161.795, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.5024414, "start": 161.55501, "word": "you" }, { "confidence": 1, "end": 161.955, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.5024414, "start": 161.795, "word": "to" }, { "confidence": 1, "end": 162.115, "punctuated_word": "work", "speaker": 1, "speaker_confidence": 0.5024414, "start": 161.955, "word": "work" }, { "confidence": 0.9970703, "end": 162.515, "punctuated_word": "faster", "speaker": 1, "speaker_confidence": 0.5024414, "start": 162.115, "word": "faster" }, { "confidence": 0.9980469, "end": 162.595, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.5024414, "start": 162.515, "word": "and" }, { "confidence": 1, "end": 162.835, "punctuated_word": "more", "speaker": 1, "speaker_confidence": 0.5024414, "start": 162.595, "word": "more" }, { "confidence": 1, "end": 163.335, "punctuated_word": "efficiently", "speaker": 1, "speaker_confidence": 0.5024414, "start": 162.835, "word": "efficiently" }, { "confidence": 1, "end": 163.875, "punctuated_word": "within", "speaker": 1, "speaker_confidence": 0.5024414, "start": 163.55501, "word": "within" }, { "confidence": 1, "end": 164.035, "punctuated_word": "your", "speaker": 1, "speaker_confidence": 0.5024414, "start": 163.875, "word": "your" }, { "confidence": 0.9980469, "end": 164.535, "punctuated_word": "editor.", "speaker": 1, "speaker_confidence": 0.5024414, "start": 164.035, "word": "editor" }, { "confidence": 0.95336914, "end": 164.98, "punctuated_word": "Here's", "speaker": 1, "speaker_confidence": 0.58984375, "start": 164.66, "word": "here's" }, { "confidence": 0.97998047, "end": 165.06, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.58984375, "start": 164.98, "word": "a" }, { "confidence": 0.99902344, "end": 165.46, "punctuated_word": "side", "speaker": 1, "speaker_confidence": 0.58984375, "start": 165.06, "word": "side" }, { "confidence": 0.99902344, "end": 165.54001, "punctuated_word": "by", "speaker": 1, "speaker_confidence": 0.58984375, "start": 165.46, "word": "by" }, { "confidence": 1, "end": 165.86, "punctuated_word": "side", "speaker": 1, "speaker_confidence": 0.58984375, "start": 165.54001, "word": "side" }, { "confidence": 0.9995117, "end": 166.36, "punctuated_word": "comparison.", "speaker": 1, "speaker_confidence": 0.58984375, "start": 165.86, "word": "comparison" }, { "confidence": 0.9970703, "end": 167.14, "punctuated_word": "On", "speaker": 1, "speaker_confidence": 0.58984375, "start": 166.98, "word": "on" }, { "confidence": 1, "end": 167.3, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.58984375, "start": 167.14, "word": "the" }, { "confidence": 0.99609375, "end": 167.78, "punctuated_word": "left,", "speaker": 1, "speaker_confidence": 0.58984375, "start": 167.3, "word": "left" }, { "confidence": 1, "end": 167.94, "punctuated_word": "we", "speaker": 1, "speaker_confidence": 0.58984375, "start": 167.78, "word": "we" }, { "confidence": 1, "end": 168.26, "punctuated_word": "have", "speaker": 1, "speaker_confidence": 0.58984375, "start": 167.94, "word": "have" }, { "confidence": 0.99316406, "end": 168.66, "punctuated_word": "editing", "speaker": 1, "speaker_confidence": 0.58984375, "start": 168.26, "word": "editing" }, { "confidence": 0.9980469, "end": 168.9, "punctuated_word": "with", "speaker": 1, "speaker_confidence": 0.58984375, "start": 168.66, "word": "with" }, { "confidence": 0.9807129, "end": 169.4, "punctuated_word": "Vim.", "speaker": 1, "speaker_confidence": 0.58984375, "start": 168.9, "word": "vim" }, { "confidence": 0.9970703, "end": 169.78, "punctuated_word": "On", "speaker": 1, "speaker_confidence": 0.58984375, "start": 169.62, "word": "on" }, { "confidence": 1, "end": 169.94, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.58984375, "start": 169.78, "word": "the" }, { "confidence": 0.99853516, "end": 170.26, "punctuated_word": "right,", "speaker": 1, "speaker_confidence": 0.58984375, "start": 169.94, "word": "right" }, { "confidence": 1, "end": 170.5, "punctuated_word": "we", "speaker": 1, "speaker_confidence": 0.58984375, "start": 170.26, "word": "we" }, { "confidence": 1, "end": 170.82, "punctuated_word": "have", "speaker": 1, "speaker_confidence": 0.58984375, "start": 170.5, "word": "have" }, { "confidence": 0.99902344, "end": 171.3, "punctuated_word": "editing", "speaker": 1, "speaker_confidence": 0.58984375, "start": 170.82, "word": "editing" }, { "confidence": 1, "end": 171.7, "punctuated_word": "without", "speaker": 1, "speaker_confidence": 0.58984375, "start": 171.3, "word": "without" }, { "confidence": 0.99853516, "end": 172.2, "punctuated_word": "Vim.", "speaker": 1, "speaker_confidence": 0.58984375, "start": 171.7, "word": "vim" }, { "confidence": 0.9980469, "end": 172.705, "punctuated_word": "As", "speaker": 1, "speaker_confidence": 0.6274414, "start": 172.585, "word": "as" }, { "confidence": 1, "end": 172.825, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.6274414, "start": 172.705, "word": "you" }, { "confidence": 1, "end": 173.145, "punctuated_word": "can", "speaker": 1, "speaker_confidence": 0.6274414, "start": 172.825, "word": "can" }, { "confidence": 0.9980469, "end": 173.645, "punctuated_word": "see,", "speaker": 1, "speaker_confidence": 0.6274414, "start": 173.145, "word": "see" }, { "confidence": 0.7384033, "end": 174.025, "punctuated_word": "VIM", "speaker": 1, "speaker_confidence": 0.6274414, "start": 173.705, "word": "vim" }, { "confidence": 0.99609375, "end": 174.185, "punctuated_word": "lets", "speaker": 1, "speaker_confidence": 0.6274414, "start": 174.025, "word": "lets" }, { "confidence": 1, "end": 174.345, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.6274414, "start": 174.185, "word": "you" }, { "confidence": 0.99902344, "end": 174.585, "punctuated_word": "do", "speaker": 1, "speaker_confidence": 0.6274414, "start": 174.345, "word": "do" }, { "confidence": 1, "end": 174.745, "punctuated_word": "more", "speaker": 1, "speaker_confidence": 0.6274414, "start": 174.585, "word": "more" }, { "confidence": 1, "end": 174.985, "punctuated_word": "from", "speaker": 1, "speaker_confidence": 0.6274414, "start": 174.745, "word": "from" }, { "confidence": 1, "end": 175.145, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.6274414, "start": 174.985, "word": "the" }, { "confidence": 0.9108887, "end": 175.625, "punctuated_word": "keyboard,", "speaker": 1, "speaker_confidence": 0.6274414, "start": 175.145, "word": "keyboard" }, { "confidence": 1, "end": 175.945, "punctuated_word": "meaning", "speaker": 1, "speaker_confidence": 0.6274414, "start": 175.625, "word": "meaning" }, { "confidence": 0.98828125, "end": 176.105, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.6274414, "start": 175.945, "word": "you" }, { "confidence": 1, "end": 176.265, "punctuated_word": "get", "speaker": 1, "speaker_confidence": 0.6274414, "start": 176.105, "word": "get" }, { "confidence": 1, "end": 176.425, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.6274414, "start": 176.265, "word": "to" }, { "confidence": 1, "end": 176.745, "punctuated_word": "spend", "speaker": 1, "speaker_confidence": 0.6274414, "start": 176.425, "word": "spend" }, { "confidence": 1, "end": 176.985, "punctuated_word": "less", "speaker": 1, "speaker_confidence": 0.6274414, "start": 176.745, "word": "less" }, { "confidence": 1, "end": 177.485, "punctuated_word": "time", "speaker": 1, "speaker_confidence": 0.6274414, "start": 176.985, "word": "time" }, { "confidence": 0.99902344, "end": 178.105, "punctuated_word": "editing", "speaker": 1, "speaker_confidence": 0.6274414, "start": 177.625, "word": "editing" }, { "confidence": 0.99121094, "end": 178.345, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.6274414, "start": 178.105, "word": "and" }, { "confidence": 0.99902344, "end": 178.505, "punctuated_word": "more", "speaker": 1, "speaker_confidence": 0.6274414, "start": 178.345, "word": "more" }, { "confidence": 1, "end": 178.745, "punctuated_word": "time", "speaker": 1, "speaker_confidence": 0.6274414, "start": 178.505, "word": "time" }, { "confidence": 0.9995117, "end": 179.245, "punctuated_word": "coding.", "speaker": 1, "speaker_confidence": 0.6274414, "start": 178.745, "word": "coding" }, { "confidence": 0.99902344, "end": 179.545, "punctuated_word": "Now", "speaker": 1, "speaker_confidence": 0.60009766, "start": 179.30501, "word": "now" }, { "confidence": 0.90771484, "end": 179.785, "punctuated_word": "let's", "speaker": 1, "speaker_confidence": 0.60009766, "start": 179.545, "word": "let's" }, { "confidence": 1, "end": 180.025, "punctuated_word": "talk", "speaker": 1, "speaker_confidence": 0.60009766, "start": 179.785, "word": "talk" }, { "confidence": 1, "end": 180.525, "punctuated_word": "about", "speaker": 1, "speaker_confidence": 0.60009766, "start": 180.025, "word": "about" }, { "confidence": 0.9892578, "end": 180.77, "punctuated_word": "How", "speaker": 1, "speaker_confidence": 0.60009766, "start": 180.61, "word": "how" }, { "confidence": 0.99609375, "end": 181.01, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.60009766, "start": 180.77, "word": "to" }, { "confidence": 0.94140625, "end": 181.33, "punctuated_word": "set", "speaker": 1, "speaker_confidence": 0.60009766, "start": 181.01, "word": "set" }, { "confidence": 0.9970703, "end": 181.49, "punctuated_word": "up", "speaker": 1, "speaker_confidence": 0.60009766, "start": 181.33, "word": "up" }, { "confidence": 0.7714844, "end": 181.89, "punctuated_word": "Vim", "speaker": 1, "speaker_confidence": 0.60009766, "start": 181.49, "word": "vim" }, { "confidence": 0.9892578, "end": 182.20999, "punctuated_word": "with", "speaker": 1, "speaker_confidence": 0.60009766, "start": 181.89, "word": "with" }, { "confidence": 0.88671875, "end": 182.61, "punctuated_word": "Versus", "speaker": 1, "speaker_confidence": 0.60009766, "start": 182.20999, "word": "versus" }, { "confidence": 0.96606445, "end": 183.11, "punctuated_word": "Code.", "speaker": 1, "speaker_confidence": 0.60009766, "start": 182.61, "word": "code" }, { "confidence": 0.9980469, "end": 183.81, "punctuated_word": "Once", "speaker": 1, "speaker_confidence": 0.4477539, "start": 183.56999, "word": "once" }, { "confidence": 0.99853516, "end": 184.05, "punctuated_word": "you're", "speaker": 1, "speaker_confidence": 0.4477539, "start": 183.81, "word": "you're" }, { "confidence": 1, "end": 184.37, "punctuated_word": "inside", "speaker": 1, "speaker_confidence": 0.4477539, "start": 184.05, "word": "inside" }, { "confidence": 0.9951172, "end": 184.77, "punctuated_word": "Versus", "speaker": 1, "speaker_confidence": 0.4477539, "start": 184.37, "word": "versus" }, { "confidence": 0.9880371, "end": 185.27, "punctuated_word": "Code,", "speaker": 1, "speaker_confidence": 0.4477539, "start": 184.77, "word": "code" }, { "confidence": 1, "end": 185.89, "punctuated_word": "head", "speaker": 1, "speaker_confidence": 0.42089844, "start": 185.56999, "word": "head" }, { "confidence": 1, "end": 186.05, "punctuated_word": "over", "speaker": 1, "speaker_confidence": 0.42089844, "start": 185.89, "word": "over" }, { "confidence": 0.99902344, "end": 186.20999, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.42089844, "start": 186.05, "word": "to" }, { "confidence": 1, "end": 186.45, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.42089844, "start": 186.20999, "word": "the" }, { "confidence": 0.9506836, "end": 186.93, "punctuated_word": "extension", "speaker": 1, "speaker_confidence": 0.42089844, "start": 186.45, "word": "extension" }, { "confidence": 1, "end": 187.43, "punctuated_word": "panel", "speaker": 1, "speaker_confidence": 0.42089844, "start": 186.93, "word": "panel" }, { "confidence": 0.9819336, "end": 188.05, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.6113281, "start": 187.81, "word": "and" }, { "confidence": 1, "end": 188.55, "punctuated_word": "search", "speaker": 1, "speaker_confidence": 0.6113281, "start": 188.05, "word": "search" }, { "confidence": 0.84814453, "end": 189.27, "punctuated_word": "Vim.", "speaker": 1, "speaker_confidence": 0.6113281, "start": 188.77, "word": "vim" }, { "confidence": 0.99609375, "end": 190.135, "punctuated_word": "You", "speaker": 1, "speaker_confidence": 0.6113281, "start": 189.97499, "word": "you" }, { "confidence": 1, "end": 190.455, "punctuated_word": "should", "speaker": 1, "speaker_confidence": 0.6113281, "start": 190.135, "word": "should" }, { "confidence": 1, "end": 190.775, "punctuated_word": "see", "speaker": 1, "speaker_confidence": 0.6113281, "start": 190.455, "word": "see" }, { "confidence": 1, "end": 190.935, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.6113281, "start": 190.775, "word": "the" }, { "confidence": 0.70214844, "end": 191.25499, "punctuated_word": "first", "speaker": 1, "speaker_confidence": 0.6113281, "start": 190.935, "word": "first" }, { "confidence": 0.99609375, "end": 191.75499, "punctuated_word": "extension", "speaker": 1, "speaker_confidence": 0.6113281, "start": 191.25499, "word": "extension" }, { "confidence": 0.9951172, "end": 192.215, "punctuated_word": "called", "speaker": 1, "speaker_confidence": 0.6113281, "start": 191.815, "word": "called" }, { "confidence": 0.73583984, "end": 192.69499, "punctuated_word": "Vim.", "speaker": 1, "speaker_confidence": 0.6113281, "start": 192.215, "word": "vim" }, { "confidence": 0.99902344, "end": 192.935, "punctuated_word": "And", "speaker": 1, "speaker_confidence": 0.6113281, "start": 192.69499, "word": "and" }, { "confidence": 0.97265625, "end": 193.015, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.6113281, "start": 192.935, "word": "to" }, { "confidence": 1, "end": 193.17499, "punctuated_word": "make", "speaker": 1, "speaker_confidence": 0.7084961, "start": 193.015, "word": "make" }, { "confidence": 1, "end": 193.33499, "punctuated_word": "sure", "speaker": 1, "speaker_confidence": 0.7084961, "start": 193.17499, "word": "sure" }, { "confidence": 1, "end": 193.575, "punctuated_word": "it's", "speaker": 1, "speaker_confidence": 0.7084961, "start": 193.33499, "word": "it's" }, { "confidence": 1, "end": 193.655, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.7084961, "start": 193.575, "word": "the" }, { "confidence": 1, "end": 193.89499, "punctuated_word": "right", "speaker": 1, "speaker_confidence": 0.7084961, "start": 193.655, "word": "right" }, { "confidence": 0.9980469, "end": 194.39499, "punctuated_word": "version,", "speaker": 1, "speaker_confidence": 0.7084961, "start": 193.89499, "word": "version" }, { "confidence": 1, "end": 195.015, "punctuated_word": "double", "speaker": 1, "speaker_confidence": 0.7084961, "start": 194.69499, "word": "double" }, { "confidence": 0.99902344, "end": 195.33499, "punctuated_word": "check", "speaker": 1, "speaker_confidence": 0.7084961, "start": 195.015, "word": "check" }, { "confidence": 1, "end": 195.495, "punctuated_word": "that", "speaker": 1, "speaker_confidence": 0.7084961, "start": 195.33499, "word": "that" }, { "confidence": 0.99853516, "end": 195.97499, "punctuated_word": "it's", "speaker": 1, "speaker_confidence": 0.7084961, "start": 195.495, "word": "it's" }, { "confidence": 0.8044705, "end": 196.47499, "punctuated_word": "vscodevim.vim,", "speaker": 1, "speaker_confidence": 0.7084961, "start": 195.97499, "word": "vscodevim.vim" }, { "confidence": 0.92089844, "end": 198.54001, "punctuated_word": "And", "speaker": 1, "speaker_confidence": 0.6845703, "start": 198.3, "word": "and" }, { "confidence": 0.99902344, "end": 198.7, "punctuated_word": "it", "speaker": 1, "speaker_confidence": 0.6845703, "start": 198.54001, "word": "it" }, { "confidence": 1, "end": 198.94, "punctuated_word": "should", "speaker": 1, "speaker_confidence": 0.6845703, "start": 198.7, "word": "should" }, { "confidence": 1, "end": 199.26, "punctuated_word": "have", "speaker": 1, "speaker_confidence": 0.6845703, "start": 198.94, "word": "have" }, { "confidence": 1, "end": 199.76, "punctuated_word": "around", "speaker": 1, "speaker_confidence": 0.6845703, "start": 199.26, "word": "around" }, { "confidence": 0.9790039, "end": 200.32, "punctuated_word": "2,000,000", "speaker": 1, "speaker_confidence": 0.6845703, "start": 199.82, "word": "2,000,000" }, { "confidence": 0.99560547, "end": 201.04001, "punctuated_word": "installations.", "speaker": 1, "speaker_confidence": 0.6845703, "start": 200.54001, "word": "installations" }, { "confidence": 1, "end": 202.22, "punctuated_word": "Go", "speaker": 1, "speaker_confidence": 0.546875, "start": 202.06, "word": "go" }, { "confidence": 1, "end": 202.54001, "punctuated_word": "ahead", "speaker": 1, "speaker_confidence": 0.546875, "start": 202.22, "word": "ahead" }, { "confidence": 1, "end": 202.86, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.546875, "start": 202.54001, "word": "and" }, { "confidence": 1, "end": 203.36, "punctuated_word": "install", "speaker": 1, "speaker_confidence": 0.546875, "start": 202.86, "word": "install" }, { "confidence": 1, "end": 203.82, "punctuated_word": "this", "speaker": 1, "speaker_confidence": 0.546875, "start": 203.42, "word": "this" }, { "confidence": 1, "end": 204.32, "punctuated_word": "extension.", "speaker": 1, "speaker_confidence": 0.546875, "start": 203.82, "word": "extension" }, { "confidence": 1, "end": 204.86, "punctuated_word": "The", "speaker": 1, "speaker_confidence": 0.30371094, "start": 204.7, "word": "the" }, { "confidence": 1, "end": 205.02, "punctuated_word": "next", "speaker": 1, "speaker_confidence": 0.30371094, "start": 204.86, "word": "next" }, { "confidence": 1, "end": 205.18001, "punctuated_word": "thing", "speaker": 1, "speaker_confidence": 0.30371094, "start": 205.02, "word": "thing" }, { "confidence": 1, "end": 205.42, "punctuated_word": "we're", "speaker": 1, "speaker_confidence": 0.30371094, "start": 205.18001, "word": "we're" }, { "confidence": 1, "end": 205.58, "punctuated_word": "going", "speaker": 1, "speaker_confidence": 0.30371094, "start": 205.42, "word": "going" }, { "confidence": 1, "end": 205.66, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.8095703, "start": 205.58, "word": "to" }, { "confidence": 1, "end": 205.82, "punctuated_word": "do", "speaker": 1, "speaker_confidence": 0.8095703, "start": 205.66, "word": "do" }, { "confidence": 1, "end": 205.98, "punctuated_word": "is", "speaker": 1, "speaker_confidence": 0.8095703, "start": 205.82, "word": "is" }, { "confidence": 0.9873047, "end": 206.14, "punctuated_word": "set", "speaker": 1, "speaker_confidence": 0.8095703, "start": 205.98, "word": "set" }, { "confidence": 1, "end": 206.3, "punctuated_word": "up", "speaker": 1, "speaker_confidence": 0.8095703, "start": 206.14, "word": "up" }, { "confidence": 0.9819336, "end": 206.54001, "punctuated_word": "key", "speaker": 1, "speaker_confidence": 0.8095703, "start": 206.3, "word": "key" }, { "confidence": 0.9550781, "end": 207.04001, "punctuated_word": "repeat.", "speaker": 1, "speaker_confidence": 0.8095703, "start": 206.54001, "word": "repeat" }, { "confidence": 0.99902344, "end": 207.765, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.8095703, "start": 207.60501, "word": "so" }, { "confidence": 0.99902344, "end": 207.845, "punctuated_word": "head", "speaker": 1, "speaker_confidence": 0.8095703, "start": 207.765, "word": "head" }, { "confidence": 1, "end": 208.085, "punctuated_word": "over", "speaker": 1, "speaker_confidence": 0.8095703, "start": 207.845, "word": "over" }, { "confidence": 1, "end": 208.32501, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.8095703, "start": 208.085, "word": "to" }, { "confidence": 0.9902344, "end": 208.82501, "punctuated_word": "Google", "speaker": 1, "speaker_confidence": 0.8095703, "start": 208.32501, "word": "google" }, { "confidence": 0.97509766, "end": 209.365, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.8095703, "start": 209.125, "word": "and" }, { "confidence": 0.97998047, "end": 209.60501, "punctuated_word": "look", "speaker": 1, "speaker_confidence": 0.8095703, "start": 209.365, "word": "look" }, { "confidence": 1, "end": 210.005, "punctuated_word": "up", "speaker": 1, "speaker_confidence": 0.8095703, "start": 209.60501, "word": "up" }, { "confidence": 0.7389323, "end": 210.505, "punctuated_word": "vscode", "speaker": 1, "speaker_confidence": 0.8095703, "start": 210.005, "word": "vscode" }, { "confidence": 0.64453125, "end": 211.045, "punctuated_word": "vim", "speaker": 1, "speaker_confidence": 0.8095703, "start": 210.725, "word": "vim" }, { "confidence": 0.8339844, "end": 211.545, "punctuated_word": "GitHub.", "speaker": 1, "speaker_confidence": 0.8095703, "start": 211.045, "word": "github" }, { "confidence": 0.9980469, "end": 212.24501, "punctuated_word": "You", "speaker": 1, "speaker_confidence": 0.8095703, "start": 212.085, "word": "you" }, { "confidence": 1, "end": 212.485, "punctuated_word": "should", "speaker": 1, "speaker_confidence": 0.8095703, "start": 212.24501, "word": "should" }, { "confidence": 1, "end": 212.725, "punctuated_word": "see", "speaker": 1, "speaker_confidence": 0.8095703, "start": 212.485, "word": "see" }, { "confidence": 1, "end": 212.88501, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.8095703, "start": 212.725, "word": "the" }, { "confidence": 0.93847656, "end": 213.125, "punctuated_word": "first", "speaker": 1, "speaker_confidence": 0.8095703, "start": 212.88501, "word": "first" }, { "confidence": 0.9436035, "end": 213.60501, "punctuated_word": "link,", "speaker": 1, "speaker_confidence": 0.8095703, "start": 213.125, "word": "link" }, { "confidence": 1, "end": 213.765, "punctuated_word": "which", "speaker": 1, "speaker_confidence": 0.8095703, "start": 213.60501, "word": "which" }, { "confidence": 1, "end": 214.005, "punctuated_word": "is", "speaker": 1, "speaker_confidence": 0.8095703, "start": 213.765, "word": "is" }, { "confidence": 0.9980469, "end": 214.085, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.8095703, "start": 214.005, "word": "a" }, { "confidence": 0.97509766, "end": 214.485, "punctuated_word": "GitHub", "speaker": 1, "speaker_confidence": 0.8095703, "start": 214.085, "word": "github" }, { "confidence": 0.9980469, "end": 214.985, "punctuated_word": "repository", "speaker": 1, "speaker_confidence": 0.8095703, "start": 214.485, "word": "repository" }, { "confidence": 0.9980469, "end": 215.365, "punctuated_word": "called", "speaker": 1, "speaker_confidence": 0.8095703, "start": 215.045, "word": "called" }, { "confidence": 0.9485677, "end": 215.865, "punctuated_word": "vscode", "speaker": 1, "speaker_confidence": 0.8095703, "start": 215.365, "word": "vscode" }, { "confidence": 0.86572266, "end": 216.505, "punctuated_word": "vim/vim.", "speaker": 1, "speaker_confidence": 0.8095703, "start": 216.005, "word": "vim/vim" }, { "confidence": 0.83691406, "end": 217.78, "punctuated_word": "There,", "speaker": 1, "speaker_confidence": 0.8095703, "start": 217.46, "word": "there" }, { "confidence": 1, "end": 218.02, "punctuated_word": "you're", "speaker": 1, "speaker_confidence": 0.8095703, "start": 217.78, "word": "you're" }, { "confidence": 0.7685547, "end": 218.34, "punctuated_word": "gonna", "speaker": 1, "speaker_confidence": 0.8095703, "start": 218.02, "word": "gonna" }, { "confidence": 0.99609375, "end": 218.66, "punctuated_word": "scroll", "speaker": 1, "speaker_confidence": 0.8095703, "start": 218.34, "word": "scroll" }, { "confidence": 1, "end": 219.16, "punctuated_word": "down", "speaker": 1, "speaker_confidence": 0.8095703, "start": 218.66, "word": "down" }, { "confidence": 0.9980469, "end": 220.18, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.8095703, "start": 220.02, "word": "to" }, { "confidence": 1, "end": 220.5, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.8095703, "start": 220.18, "word": "the" }, { "confidence": 0.99121094, "end": 221, "punctuated_word": "installation", "speaker": 1, "speaker_confidence": 0.8095703, "start": 220.5, "word": "installation" }, { "confidence": 0.9797363, "end": 221.64, "punctuated_word": "section.", "speaker": 1, "speaker_confidence": 0.8095703, "start": 221.14, "word": "section" }, { "confidence": 0.91845703, "end": 222.42, "punctuated_word": "In", "speaker": 1, "speaker_confidence": 0.8095703, "start": 222.18, "word": "in" }, { "confidence": 0.9890137, "end": 222.92, "punctuated_word": "here,", "speaker": 1, "speaker_confidence": 0.8095703, "start": 222.42, "word": "here" }, { "confidence": 1, "end": 223.54, "punctuated_word": "you'll", "speaker": 1, "speaker_confidence": 0.8095703, "start": 223.22, "word": "you'll" }, { "confidence": 1, "end": 224.02, "punctuated_word": "see", "speaker": 1, "speaker_confidence": 0.8095703, "start": 223.54, "word": "see" }, { "confidence": 1, "end": 224.52, "punctuated_word": "instructions", "speaker": 1, "speaker_confidence": 0.8095703, "start": 224.02, "word": "instructions" }, { "confidence": 1, "end": 225.06, "punctuated_word": "for", "speaker": 1, "speaker_confidence": 0.9140625, "start": 224.81999, "word": "for" }, { "confidence": 1, "end": 225.3, "punctuated_word": "how", "speaker": 1, "speaker_confidence": 0.9140625, "start": 225.06, "word": "how" }, { "confidence": 1, "end": 225.45999, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.9140625, "start": 225.3, "word": "to" }, { "confidence": 1, "end": 225.95999, "punctuated_word": "enable", "speaker": 1, "speaker_confidence": 0.9140625, "start": 225.45999, "word": "enable" }, { "confidence": 0.96972656, "end": 226.735, "punctuated_word": "Key", "speaker": 1, "speaker_confidence": 0.9140625, "start": 226.49501, "word": "key" }, { "confidence": 0.9951172, "end": 227.235, "punctuated_word": "repeating.", "speaker": 1, "speaker_confidence": 0.9140625, "start": 226.735, "word": "repeating" }, { "confidence": 0.99902344, "end": 228.41501, "punctuated_word": "This", "speaker": 1, "speaker_confidence": 0.9140625, "start": 228.175, "word": "this" }, { "confidence": 1, "end": 228.49501, "punctuated_word": "is", "speaker": 1, "speaker_confidence": 0.9140625, "start": 228.41501, "word": "is" }, { "confidence": 1, "end": 228.735, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.9140625, "start": 228.49501, "word": "a" }, { "confidence": 1, "end": 229.21501, "punctuated_word": "handy", "speaker": 1, "speaker_confidence": 0.9140625, "start": 228.735, "word": "handy" }, { "confidence": 1, "end": 229.695, "punctuated_word": "thing", "speaker": 1, "speaker_confidence": 0.9140625, "start": 229.21501, "word": "thing" }, { "confidence": 1, "end": 229.935, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.9140625, "start": 229.695, "word": "to" }, { "confidence": 0.9279785, "end": 230.435, "punctuated_word": "add,", "speaker": 1, "speaker_confidence": 0.9140625, "start": 229.935, "word": "add" }, { "confidence": 1, "end": 231.05501, "punctuated_word": "especially", "speaker": 1, "speaker_confidence": 0.9140625, "start": 230.57501, "word": "especially" }, { "confidence": 0.99902344, "end": 231.21501, "punctuated_word": "when", "speaker": 1, "speaker_confidence": 0.9140625, "start": 231.05501, "word": "when" }, { "confidence": 0.99902344, "end": 231.455, "punctuated_word": "you're", "speaker": 1, "speaker_confidence": 0.9140625, "start": 231.21501, "word": "you're" }, { "confidence": 1, "end": 231.615, "punctuated_word": "new", "speaker": 1, "speaker_confidence": 0.9140625, "start": 231.455, "word": "new" }, { "confidence": 0.9951172, "end": 231.77501, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.9140625, "start": 231.615, "word": "to" }, { "confidence": 0.78808594, "end": 232.27501, "punctuated_word": "VIM", "speaker": 1, "speaker_confidence": 0.9140625, "start": 231.77501, "word": "vim" }, { "confidence": 0.8461914, "end": 232.735, "punctuated_word": "because", "speaker": 1, "speaker_confidence": 0.9140625, "start": 232.335, "word": "because" }, { "confidence": 0.81640625, "end": 232.975, "punctuated_word": "it'll", "speaker": 1, "speaker_confidence": 0.9140625, "start": 232.735, "word": "it'll" }, { "confidence": 1, "end": 233.295, "punctuated_word": "allow", "speaker": 1, "speaker_confidence": 0.9140625, "start": 232.975, "word": "allow" }, { "confidence": 1, "end": 233.615, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.9140625, "start": 233.295, "word": "you" }, { "confidence": 1, "end": 234.115, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.9140625, "start": 233.615, "word": "to" }, { "confidence": 1, "end": 234.49501, "punctuated_word": "hit", "speaker": 1, "speaker_confidence": 0.9140625, "start": 234.335, "word": "hit" }, { "confidence": 1, "end": 234.735, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.9140625, "start": 234.49501, "word": "the" }, { "confidence": 1, "end": 235.235, "punctuated_word": "key", "speaker": 1, "speaker_confidence": 0.9140625, "start": 234.735, "word": "key" }, { "confidence": 0.9580078, "end": 235.55, "punctuated_word": "And", "speaker": 1, "speaker_confidence": 0.9140625, "start": 235.39, "word": "and" }, { "confidence": 0.9892578, "end": 235.70999, "punctuated_word": "it", "speaker": 1, "speaker_confidence": 0.9140625, "start": 235.55, "word": "it" }, { "confidence": 0.9951172, "end": 235.95, "punctuated_word": "will", "speaker": 1, "speaker_confidence": 0.9140625, "start": 235.70999, "word": "will" }, { "confidence": 1, "end": 236.45, "punctuated_word": "repeat", "speaker": 1, "speaker_confidence": 0.9140625, "start": 235.95, "word": "repeat" }, { "confidence": 0.46875, "end": 237.23, "punctuated_word": "as", "speaker": 1, "speaker_confidence": 0.9140625, "start": 236.98999, "word": "as" }, { "confidence": 0.99902344, "end": 237.39, "punctuated_word": "in", "speaker": 1, "speaker_confidence": 0.9140625, "start": 237.23, "word": "in" }, { "confidence": 0.9790039, "end": 237.55, "punctuated_word": "if", "speaker": 1, "speaker_confidence": 0.9140625, "start": 237.39, "word": "if" }, { "confidence": 1, "end": 237.70999, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.9140625, "start": 237.55, "word": "you" }, { "confidence": 1, "end": 237.87, "punctuated_word": "were", "speaker": 1, "speaker_confidence": 0.9140625, "start": 237.70999, "word": "were" }, { "confidence": 1, "end": 237.95, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.9140625, "start": 237.87, "word": "to" }, { "confidence": 1, "end": 238.45, "punctuated_word": "hit", "speaker": 1, "speaker_confidence": 0.9140625, "start": 237.95, "word": "hit" }, { "confidence": 0.98828125, "end": 239.39, "punctuated_word": "j", "speaker": 1, "speaker_confidence": 0.9140625, "start": 238.91, "word": "j" }, { "confidence": 0.99609375, "end": 239.55, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.9140625, "start": 239.39, "word": "to" }, { "confidence": 1, "end": 239.87, "punctuated_word": "move", "speaker": 1, "speaker_confidence": 0.9140625, "start": 239.55, "word": "move" }, { "confidence": 0.9616699, "end": 240.37, "punctuated_word": "down.", "speaker": 1, "speaker_confidence": 0.9140625, "start": 239.87, "word": "down" }, { "confidence": 0.9980469, "end": 241.55, "punctuated_word": "Find", "speaker": 1, "speaker_confidence": 0.9140625, "start": 241.06999, "word": "find" }, { "confidence": 1, "end": 242.05, "punctuated_word": "your", "speaker": 1, "speaker_confidence": 0.9140625, "start": 241.55, "word": "your" }, { "confidence": 1, "end": 242.59, "punctuated_word": "operating", "speaker": 1, "speaker_confidence": 0.9140625, "start": 242.11, "word": "operating" }, { "confidence": 0.93725586, "end": 243.06999, "punctuated_word": "system.", "speaker": 1, "speaker_confidence": 0.9140625, "start": 242.59, "word": "system" }, { "confidence": 1, "end": 243.31, "punctuated_word": "I'm", "speaker": 1, "speaker_confidence": 0.9140625, "start": 243.06999, "word": "i'm" }, { "confidence": 1, "end": 243.55, "punctuated_word": "on", "speaker": 1, "speaker_confidence": 0.9140625, "start": 243.31, "word": "on" }, { "confidence": 0.7607422, "end": 244.05, "punctuated_word": "Mac.", "speaker": 1, "speaker_confidence": 0.9140625, "start": 243.55, "word": "mac" }, { "confidence": 0.9741211, "end": 244.72499, "punctuated_word": "And", "speaker": 1, "speaker_confidence": 0.9140625, "start": 244.485, "word": "and" }, { "confidence": 1, "end": 244.965, "punctuated_word": "then", "speaker": 1, "speaker_confidence": 0.9140625, "start": 244.72499, "word": "then" }, { "confidence": 0.99902344, "end": 245.28499, "punctuated_word": "run", "speaker": 1, "speaker_confidence": 0.9140625, "start": 244.965, "word": "run" }, { "confidence": 1, "end": 245.78499, "punctuated_word": "this", "speaker": 1, "speaker_confidence": 0.9140625, "start": 245.28499, "word": "this" }, { "confidence": 1, "end": 245.92499, "punctuated_word": "in", "speaker": 1, "speaker_confidence": 0.9140625, "start": 245.845, "word": "in" }, { "confidence": 1, "end": 246.165, "punctuated_word": "your", "speaker": 1, "speaker_confidence": 0.9140625, "start": 245.92499, "word": "your" }, { "confidence": 0.99365234, "end": 246.665, "punctuated_word": "terminal.", "speaker": 1, "speaker_confidence": 0.9140625, "start": 246.165, "word": "terminal" }, { "confidence": 0.99902344, "end": 248.64499, "punctuated_word": "And", "speaker": 1, "speaker_confidence": 0.46679688, "start": 248.485, "word": "and" }, { "confidence": 0.99902344, "end": 248.885, "punctuated_word": "now", "speaker": 1, "speaker_confidence": 0.46679688, "start": 248.64499, "word": "now" }, { "confidence": 0.9892578, "end": 249.045, "punctuated_word": "for", "speaker": 1, "speaker_confidence": 0.46679688, "start": 248.885, "word": "for" }, { "confidence": 1, "end": 249.205, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.46679688, "start": 249.045, "word": "the" }, { "confidence": 1, "end": 249.685, "punctuated_word": "changes", "speaker": 1, "speaker_confidence": 0.46679688, "start": 249.205, "word": "changes" }, { "confidence": 0.9902344, "end": 249.845, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.46679688, "start": 249.685, "word": "to" }, { "confidence": 1, "end": 250.08499, "punctuated_word": "take", "speaker": 1, "speaker_confidence": 0.46679688, "start": 249.845, "word": "take" }, { "confidence": 0.99316406, "end": 250.485, "punctuated_word": "effect,", "speaker": 1, "speaker_confidence": 0.46679688, "start": 250.08499, "word": "effect" }, { "confidence": 1, "end": 250.72499, "punctuated_word": "you're", "speaker": 1, "speaker_confidence": 0.64404297, "start": 250.485, "word": "you're" }, { "confidence": 1, "end": 250.885, "punctuated_word": "going", "speaker": 1, "speaker_confidence": 0.64404297, "start": 250.72499, "word": "going" }, { "confidence": 1, "end": 251.045, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.64404297, "start": 250.885, "word": "to" }, { "confidence": 1, "end": 251.28499, "punctuated_word": "want", "speaker": 1, "speaker_confidence": 0.64404297, "start": 251.045, "word": "want" }, { "confidence": 1, "end": 251.44499, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.64404297, "start": 251.28499, "word": "to" }, { "confidence": 1, "end": 251.94499, "punctuated_word": "restart", "speaker": 1, "speaker_confidence": 0.64404297, "start": 251.44499, "word": "restart" }, { "confidence": 0.5292969, "end": 252.885, "punctuated_word": "Versus", "speaker": 1, "speaker_confidence": 0.64404297, "start": 252.485, "word": "versus" }, { "confidence": 0.7404785, "end": 253.385, "punctuated_word": "Code.", "speaker": 1, "speaker_confidence": 0.64404297, "start": 252.885, "word": "code" }, { "confidence": 0.9980469, "end": 255.94, "punctuated_word": "To", "speaker": 1, "speaker_confidence": 0.7246094, "start": 255.7, "word": "to" }, { "confidence": 1, "end": 256.42, "punctuated_word": "verify", "speaker": 1, "speaker_confidence": 0.7246094, "start": 255.94, "word": "verify" }, { "confidence": 1, "end": 256.66, "punctuated_word": "that", "speaker": 1, "speaker_confidence": 0.7246094, "start": 256.42, "word": "that" }, { "confidence": 1, "end": 256.82, "punctuated_word": "it", "speaker": 1, "speaker_confidence": 0.7246094, "start": 256.66, "word": "it" }, { "confidence": 0.99658203, "end": 257.22, "punctuated_word": "worked,", "speaker": 1, "speaker_confidence": 0.7246094, "start": 256.82, "word": "worked" }, { "confidence": 1, "end": 257.3, "punctuated_word": "go", "speaker": 1, "speaker_confidence": 0.7246094, "start": 257.22, "word": "go" }, { "confidence": 1, "end": 257.54, "punctuated_word": "ahead", "speaker": 1, "speaker_confidence": 0.7246094, "start": 257.3, "word": "ahead" }, { "confidence": 1, "end": 257.7, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.7246094, "start": 257.54, "word": "and" }, { "confidence": 1, "end": 257.94, "punctuated_word": "create", "speaker": 1, "speaker_confidence": 0.7246094, "start": 257.7, "word": "create" }, { "confidence": 1, "end": 258.1, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.7246094, "start": 257.94, "word": "a" }, { "confidence": 1, "end": 258.26, "punctuated_word": "new", "speaker": 1, "speaker_confidence": 0.7246094, "start": 258.1, "word": "new" }, { "confidence": 0.9020996, "end": 258.76, "punctuated_word": "file.", "speaker": 1, "speaker_confidence": 0.7246094, "start": 258.26, "word": "file" }, { "confidence": 0.99902344, "end": 259.06, "punctuated_word": "And", "speaker": 1, "speaker_confidence": 0.7246094, "start": 258.9, "word": "and" }, { "confidence": 0.63671875, "end": 259.3, "punctuated_word": "now", "speaker": 1, "speaker_confidence": 0.7246094, "start": 259.06, "word": "now" }, { "confidence": 0.7158203, "end": 259.46, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.7246094, "start": 259.3, "word": "you" }, { "confidence": 1, "end": 259.78, "punctuated_word": "should", "speaker": 1, "speaker_confidence": 0.7246094, "start": 259.46, "word": "should" }, { "confidence": 1, "end": 260.18, "punctuated_word": "see", "speaker": 1, "speaker_confidence": 0.7246094, "start": 259.78, "word": "see" }, { "confidence": 1, "end": 260.42, "punctuated_word": "that", "speaker": 1, "speaker_confidence": 0.7246094, "start": 260.18, "word": "that" }, { "confidence": 1, "end": 260.66, "punctuated_word": "your", "speaker": 1, "speaker_confidence": 0.7246094, "start": 260.42, "word": "your" }, { "confidence": 1, "end": 261.06, "punctuated_word": "cursor", "speaker": 1, "speaker_confidence": 0.7246094, "start": 260.66, "word": "cursor" }, { "confidence": 1, "end": 261.3, "punctuated_word": "is", "speaker": 1, "speaker_confidence": 0.7246094, "start": 261.06, "word": "is" }, { "confidence": 1, "end": 261.38, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.7246094, "start": 261.3, "word": "a" }, { "confidence": 1, "end": 261.54, "punctuated_word": "little", "speaker": 1, "speaker_confidence": 0.7246094, "start": 261.38, "word": "little" }, { "confidence": 1, "end": 261.78, "punctuated_word": "bit", "speaker": 1, "speaker_confidence": 0.7246094, "start": 261.54, "word": "bit" }, { "confidence": 0.9995117, "end": 262.28, "punctuated_word": "wider.", "speaker": 1, "speaker_confidence": 0.7246094, "start": 261.78, "word": "wider" }, { "confidence": 0.9980469, "end": 262.815, "punctuated_word": "Go", "speaker": 1, "speaker_confidence": 0.43017578, "start": 262.655, "word": "go" }, { "confidence": 1, "end": 263.315, "punctuated_word": "ahead", "speaker": 1, "speaker_confidence": 0.43017578, "start": 262.815, "word": "ahead" }, { "confidence": 0.9980469, "end": 263.855, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.43017578, "start": 263.535, "word": "and" }, { "confidence": 0.9980469, "end": 264.17502, "punctuated_word": "hit", "speaker": 1, "speaker_confidence": 0.43017578, "start": 263.855, "word": "hit" }, { "confidence": 0.88842773, "end": 264.655, "punctuated_word": "I.", "speaker": 1, "speaker_confidence": 0.43017578, "start": 264.17502, "word": "i" }, { "confidence": 0.99902344, "end": 264.975, "punctuated_word": "This", "speaker": 1, "speaker_confidence": 0.43017578, "start": 264.655, "word": "this" }, { "confidence": 0.99902344, "end": 265.135, "punctuated_word": "will", "speaker": 1, "speaker_confidence": 0.43017578, "start": 264.975, "word": "will" }, { "confidence": 1, "end": 265.295, "punctuated_word": "put", "speaker": 1, "speaker_confidence": 0.43017578, "start": 265.135, "word": "put" }, { "confidence": 0.9980469, "end": 265.375, "punctuated_word": "us", "speaker": 1, "speaker_confidence": 0.8095703, "start": 265.295, "word": "us" }, { "confidence": 0.9580078, "end": 265.61502, "punctuated_word": "in", "speaker": 1, "speaker_confidence": 0.8095703, "start": 265.375, "word": "in" }, { "confidence": 0.9970703, "end": 265.935, "punctuated_word": "insert", "speaker": 1, "speaker_confidence": 0.8095703, "start": 265.61502, "word": "insert" }, { "confidence": 0.99902344, "end": 266.435, "punctuated_word": "mode", "speaker": 1, "speaker_confidence": 0.8095703, "start": 265.935, "word": "mode" }, { "confidence": 0.8491211, "end": 266.73502, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.8095703, "start": 266.575, "word": "and" }, { "confidence": 1, "end": 266.89502, "punctuated_word": "then", "speaker": 1, "speaker_confidence": 0.8095703, "start": 266.73502, "word": "then" }, { "confidence": 0.9980469, "end": 267.215, "punctuated_word": "hit", "speaker": 1, "speaker_confidence": 0.8095703, "start": 266.89502, "word": "hit" }, { "confidence": 1, "end": 267.535, "punctuated_word": "return", "speaker": 1, "speaker_confidence": 0.8095703, "start": 267.215, "word": "return" }, { "confidence": 0.9970703, "end": 267.61502, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.8095703, "start": 267.535, "word": "a" }, { "confidence": 1, "end": 267.855, "punctuated_word": "bunch", "speaker": 1, "speaker_confidence": 0.8095703, "start": 267.61502, "word": "bunch" }, { "confidence": 0.91015625, "end": 267.935, "punctuated_word": "of", "speaker": 1, "speaker_confidence": 0.8095703, "start": 267.855, "word": "of" }, { "confidence": 0.74853516, "end": 268.435, "punctuated_word": "times,", "speaker": 1, "speaker_confidence": 0.8095703, "start": 267.935, "word": "times" }, { "confidence": 0.99902344, "end": 269.05502, "punctuated_word": "then", "speaker": 1, "speaker_confidence": 0.8095703, "start": 268.815, "word": "then" }, { "confidence": 1, "end": 269.375, "punctuated_word": "hit", "speaker": 1, "speaker_confidence": 0.8095703, "start": 269.05502, "word": "hit" }, { "confidence": 0.7369385, "end": 269.875, "punctuated_word": "escape.", "speaker": 1, "speaker_confidence": 0.8095703, "start": 269.375, "word": "escape" }, { "confidence": 0.9892578, "end": 270.75, "punctuated_word": "And", "speaker": 1, "speaker_confidence": 0.8095703, "start": 270.50998, "word": "and" }, { "confidence": 0.9248047, "end": 270.99, "punctuated_word": "now", "speaker": 1, "speaker_confidence": 0.8095703, "start": 270.75, "word": "now" }, { "confidence": 0.6748047, "end": 271.38998, "punctuated_word": "try", "speaker": 1, "speaker_confidence": 0.8095703, "start": 270.99, "word": "try" }, { "confidence": 1, "end": 271.88998, "punctuated_word": "hitting", "speaker": 1, "speaker_confidence": 0.8095703, "start": 271.38998, "word": "hitting" }, { "confidence": 0.9980469, "end": 272.27, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.8095703, "start": 272.03, "word": "and" }, { "confidence": 1, "end": 272.77, "punctuated_word": "holding", "speaker": 1, "speaker_confidence": 0.8095703, "start": 272.27, "word": "holding" }, { "confidence": 0.9873047, "end": 273.47, "punctuated_word": "k", "speaker": 1, "speaker_confidence": 0.8095703, "start": 272.99, "word": "k" }, { "confidence": 0.98535156, "end": 273.62997, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.8095703, "start": 273.47, "word": "and" }, { "confidence": 1, "end": 273.78998, "punctuated_word": "see", "speaker": 1, "speaker_confidence": 0.8095703, "start": 273.62997, "word": "see" }, { "confidence": 1, "end": 273.87, "punctuated_word": "if", "speaker": 1, "speaker_confidence": 0.60595703, "start": 273.78998, "word": "if" }, { "confidence": 0.99902344, "end": 274.11, "punctuated_word": "your", "speaker": 1, "speaker_confidence": 0.60595703, "start": 273.87, "word": "your" }, { "confidence": 1, "end": 274.43, "punctuated_word": "cursor", "speaker": 1, "speaker_confidence": 0.60595703, "start": 274.11, "word": "cursor" }, { "confidence": 1, "end": 274.75, "punctuated_word": "moves", "speaker": 1, "speaker_confidence": 0.60595703, "start": 274.43, "word": "moves" }, { "confidence": 0.9995117, "end": 275.25, "punctuated_word": "up.", "speaker": 1, "speaker_confidence": 0.60595703, "start": 274.75, "word": "up" }, { "confidence": 0.9951172, "end": 275.87, "punctuated_word": "If", "speaker": 1, "speaker_confidence": 0.60595703, "start": 275.71, "word": "if" }, { "confidence": 1, "end": 276.11, "punctuated_word": "it", "speaker": 1, "speaker_confidence": 0.60595703, "start": 275.87, "word": "it" }, { "confidence": 1, "end": 276.59, "punctuated_word": "moves", "speaker": 1, "speaker_confidence": 0.60595703, "start": 276.11, "word": "moves" }, { "confidence": 1, "end": 276.83, "punctuated_word": "like", "speaker": 1, "speaker_confidence": 0.60595703, "start": 276.59, "word": "like" }, { "confidence": 1, "end": 277.33, "punctuated_word": "this", "speaker": 1, "speaker_confidence": 0.60595703, "start": 276.83, "word": "this" }, { "confidence": 0.9604492, "end": 278.01498, "punctuated_word": "Pretty", "speaker": 1, "speaker_confidence": 0.671875, "start": 277.775, "word": "pretty" }, { "confidence": 0.7453613, "end": 278.51498, "punctuated_word": "smooth.", "speaker": 1, "speaker_confidence": 0.671875, "start": 278.01498, "word": "smooth" }, { "confidence": 0.99121094, "end": 278.815, "punctuated_word": "Then", "speaker": 1, "speaker_confidence": 0.671875, "start": 278.57498, "word": "then" }, { "confidence": 0.9555664, "end": 278.97498, "punctuated_word": "you've", "speaker": 1, "speaker_confidence": 0.671875, "start": 278.815, "word": "you've" }, { "confidence": 0.9770508, "end": 279.455, "punctuated_word": "enabled", "speaker": 1, "speaker_confidence": 0.671875, "start": 278.97498, "word": "enabled" }, { "confidence": 0.9951172, "end": 279.775, "punctuated_word": "key", "speaker": 1, "speaker_confidence": 0.671875, "start": 279.455, "word": "key" }, { "confidence": 0.99853516, "end": 280.275, "punctuated_word": "repeating.", "speaker": 1, "speaker_confidence": 0.671875, "start": 279.775, "word": "repeating" }, { "confidence": 0.9970703, "end": 280.57498, "punctuated_word": "If", "speaker": 1, "speaker_confidence": 0.671875, "start": 280.41498, "word": "if" }, { "confidence": 1, "end": 280.735, "punctuated_word": "it", "speaker": 1, "speaker_confidence": 0.671875, "start": 280.57498, "word": "it" }, { "confidence": 0.99902344, "end": 281.055, "punctuated_word": "gets", "speaker": 1, "speaker_confidence": 0.671875, "start": 280.735, "word": "gets" }, { "confidence": 0.99194336, "end": 281.555, "punctuated_word": "stuck,", "speaker": 1, "speaker_confidence": 0.671875, "start": 281.055, "word": "stuck" }, { "confidence": 1, "end": 282.01498, "punctuated_word": "then", "speaker": 1, "speaker_confidence": 0.71191406, "start": 281.85498, "word": "then" }, { "confidence": 1, "end": 282.175, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.71191406, "start": 282.01498, "word": "you" }, { "confidence": 1, "end": 282.41498, "punctuated_word": "may", "speaker": 1, "speaker_confidence": 0.71191406, "start": 282.175, "word": "may" }, { "confidence": 1, "end": 282.655, "punctuated_word": "want", "speaker": 1, "speaker_confidence": 0.71191406, "start": 282.41498, "word": "want" }, { "confidence": 0.99902344, "end": 282.735, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.71191406, "start": 282.655, "word": "to" }, { "confidence": 1, "end": 283.055, "punctuated_word": "try", "speaker": 1, "speaker_confidence": 0.71191406, "start": 282.735, "word": "try" }, { "confidence": 1, "end": 283.555, "punctuated_word": "restarting", "speaker": 1, "speaker_confidence": 0.71191406, "start": 283.055, "word": "restarting" }, { "confidence": 0.79248047, "end": 283.935, "punctuated_word": "Versus", "speaker": 1, "speaker_confidence": 0.71191406, "start": 283.615, "word": "versus" }, { "confidence": 0.75146484, "end": 284.095, "punctuated_word": "Code", "speaker": 1, "speaker_confidence": 0.71191406, "start": 283.935, "word": "code" }, { "confidence": 0.99902344, "end": 284.595, "punctuated_word": "again", "speaker": 1, "speaker_confidence": 0.71191406, "start": 284.095, "word": "again" }, { "confidence": 0.8000488, "end": 285.09, "punctuated_word": "We're", "speaker": 1, "speaker_confidence": 0.71191406, "start": 284.93, "word": "we're" }, { "confidence": 1, "end": 285.59, "punctuated_word": "revisiting", "speaker": 1, "speaker_confidence": 0.71191406, "start": 285.09, "word": "revisiting" }, { "confidence": 0.93408203, "end": 285.81, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.71191406, "start": 285.73, "word": "the" }, { "confidence": 1, "end": 286.31, "punctuated_word": "installation", "speaker": 1, "speaker_confidence": 0.71191406, "start": 285.81, "word": "installation" }, { "confidence": 0.9980469, "end": 286.95, "punctuated_word": "instructions.", "speaker": 1, "speaker_confidence": 0.71191406, "start": 286.45, "word": "instructions" }, { "confidence": 0.9880371, "end": 287.81, "punctuated_word": "Great.", "speaker": 1, "speaker_confidence": 0.64941406, "start": 287.41, "word": "great" }, { "confidence": 0.99902344, "end": 288.05, "punctuated_word": "Now", "speaker": 1, "speaker_confidence": 0.64941406, "start": 287.81, "word": "now" }, { "confidence": 0.97265625, "end": 288.21, "punctuated_word": "that", "speaker": 1, "speaker_confidence": 0.64941406, "start": 288.05, "word": "that" }, { "confidence": 1, "end": 288.37, "punctuated_word": "we", "speaker": 1, "speaker_confidence": 0.64941406, "start": 288.21, "word": "we" }, { "confidence": 1, "end": 288.53, "punctuated_word": "have", "speaker": 1, "speaker_confidence": 0.64941406, "start": 288.37, "word": "have" }, { "confidence": 1, "end": 288.69, "punctuated_word": "our", "speaker": 1, "speaker_confidence": 0.64941406, "start": 288.53, "word": "our" }, { "confidence": 0.80566406, "end": 289.17, "punctuated_word": "editor", "speaker": 1, "speaker_confidence": 0.64941406, "start": 288.69, "word": "editor" }, { "confidence": 0.7421875, "end": 289.33002, "punctuated_word": "set", "speaker": 1, "speaker_confidence": 0.64941406, "start": 289.17, "word": "set" }, { "confidence": 0.97802734, "end": 289.81, "punctuated_word": "up,", "speaker": 1, "speaker_confidence": 0.64941406, "start": 289.33002, "word": "up" }, { "confidence": 0.9995117, "end": 290.05, "punctuated_word": "I'd", "speaker": 1, "speaker_confidence": 0.64941406, "start": 289.81, "word": "i'd" }, { "confidence": 1, "end": 290.29, "punctuated_word": "like", "speaker": 1, "speaker_confidence": 0.64941406, "start": 290.05, "word": "like" }, { "confidence": 1, "end": 290.61002, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.64941406, "start": 290.29, "word": "to" }, { "confidence": 1, "end": 290.85, "punctuated_word": "teach", "speaker": 1, "speaker_confidence": 0.64941406, "start": 290.61002, "word": "teach" }, { "confidence": 1, "end": 291.17, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.64941406, "start": 290.85, "word": "you" }, { "confidence": 1, "end": 291.33002, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.64941406, "start": 291.17, "word": "a" }, { "confidence": 1, "end": 291.57, "punctuated_word": "few", "speaker": 1, "speaker_confidence": 0.64941406, "start": 291.33002, "word": "few" }, { "confidence": 1, "end": 291.97, "punctuated_word": "different", "speaker": 1, "speaker_confidence": 0.64941406, "start": 291.57, "word": "different" }, { "confidence": 1, "end": 292.29, "punctuated_word": "commands", "speaker": 1, "speaker_confidence": 0.7602539, "start": 291.97, "word": "commands" }, { "confidence": 0.97802734, "end": 292.53, "punctuated_word": "in", "speaker": 1, "speaker_confidence": 0.7602539, "start": 292.29, "word": "in" }, { "confidence": 0.8527832, "end": 292.995, "punctuated_word": "Vim.", "speaker": 1, "speaker_confidence": 0.7602539, "start": 292.53, "word": "vim" }, { "confidence": 0.99902344, "end": 293.155, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.7602539, "start": 293.07498, "word": "so" }, { "confidence": 0.9970703, "end": 293.395, "punctuated_word": "we'll", "speaker": 1, "speaker_confidence": 0.7602539, "start": 293.155, "word": "we'll" }, { "confidence": 1, "end": 293.715, "punctuated_word": "review", "speaker": 1, "speaker_confidence": 0.7602539, "start": 293.395, "word": "review" }, { "confidence": 1, "end": 293.835, "punctuated_word": "some", "speaker": 1, "speaker_confidence": 0.7602539, "start": 293.715, "word": "some" }, { "confidence": 1, "end": 293.955, "punctuated_word": "of", "speaker": 1, "speaker_confidence": 0.7602539, "start": 293.835, "word": "of" }, { "confidence": 1, "end": 294.035, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.7602539, "start": 293.955, "word": "the" }, { "confidence": 1, "end": 294.35498, "punctuated_word": "ones", "speaker": 1, "speaker_confidence": 0.7602539, "start": 294.035, "word": "ones" }, { "confidence": 1, "end": 294.51498, "punctuated_word": "that", "speaker": 1, "speaker_confidence": 0.7602539, "start": 294.35498, "word": "that" }, { "confidence": 0.9560547, "end": 294.835, "punctuated_word": "Jeff", "speaker": 1, "speaker_confidence": 0.7602539, "start": 294.51498, "word": "jeff" }, { "confidence": 1, "end": 295.235, "punctuated_word": "mentioned", "speaker": 1, "speaker_confidence": 0.7602539, "start": 294.835, "word": "mentioned" }, { "confidence": 1, "end": 295.555, "punctuated_word": "earlier", "speaker": 1, "speaker_confidence": 0.7602539, "start": 295.235, "word": "earlier" }, { "confidence": 1, "end": 295.635, "punctuated_word": "in", "speaker": 1, "speaker_confidence": 0.7602539, "start": 295.555, "word": "in" }, { "confidence": 1, "end": 295.715, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.7602539, "start": 295.635, "word": "the" }, { "confidence": 0.80810547, "end": 296.195, "punctuated_word": "video,", "speaker": 1, "speaker_confidence": 0.7602539, "start": 295.715, "word": "video" }, { "confidence": 1, "end": 296.435, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.7602539, "start": 296.195, "word": "and" }, { "confidence": 0.9760742, "end": 296.595, "punctuated_word": "then", "speaker": 1, "speaker_confidence": 0.7602539, "start": 296.435, "word": "then" }, { "confidence": 0.99365234, "end": 296.755, "punctuated_word": "we'll", "speaker": 1, "speaker_confidence": 0.7602539, "start": 296.595, "word": "we'll" }, { "confidence": 1, "end": 296.995, "punctuated_word": "also", "speaker": 1, "speaker_confidence": 0.7602539, "start": 296.755, "word": "also" }, { "confidence": 1, "end": 297.155, "punctuated_word": "learn", "speaker": 1, "speaker_confidence": 0.7602539, "start": 296.995, "word": "learn" }, { "confidence": 1, "end": 297.235, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.7602539, "start": 297.155, "word": "a" }, { "confidence": 1, "end": 297.395, "punctuated_word": "few", "speaker": 1, "speaker_confidence": 0.7817383, "start": 297.235, "word": "few" }, { "confidence": 1, "end": 297.475, "punctuated_word": "new", "speaker": 1, "speaker_confidence": 0.7817383, "start": 297.395, "word": "new" }, { "confidence": 1, "end": 297.975, "punctuated_word": "ones.", "speaker": 1, "speaker_confidence": 0.7817383, "start": 297.475, "word": "ones" }, { "confidence": 1, "end": 298.435, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.7817383, "start": 298.115, "word": "so" }, { "confidence": 0.9980469, "end": 298.915, "punctuated_word": "inside", "speaker": 1, "speaker_confidence": 0.7817383, "start": 298.435, "word": "inside" }, { "confidence": 0.64990234, "end": 299.235, "punctuated_word": "Versus", "speaker": 1, "speaker_confidence": 0.7817383, "start": 298.915, "word": "versus" }, { "confidence": 0.7504883, "end": 299.555, "punctuated_word": "code,", "speaker": 1, "speaker_confidence": 0.7817383, "start": 299.235, "word": "code" }, { "confidence": 1, "end": 299.715, "punctuated_word": "go", "speaker": 1, "speaker_confidence": 0.7817383, "start": 299.555, "word": "go" }, { "confidence": 1, "end": 300.035, "punctuated_word": "ahead", "speaker": 1, "speaker_confidence": 0.7817383, "start": 299.715, "word": "ahead" }, { "confidence": 1, "end": 300.195, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.7817383, "start": 300.035, "word": "and" }, { "confidence": 1, "end": 300.51498, "punctuated_word": "create", "speaker": 1, "speaker_confidence": 0.7817383, "start": 300.195, "word": "create" }, { "confidence": 1, "end": 300.675, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.7817383, "start": 300.51498, "word": "a" }, { "confidence": 1, "end": 300.915, "punctuated_word": "new", "speaker": 1, "speaker_confidence": 0.7817383, "start": 300.675, "word": "new" }, { "confidence": 1, "end": 301.415, "punctuated_word": "file", "speaker": 1, "speaker_confidence": 0.7817383, "start": 300.915, "word": "file" }, { "confidence": 0.81396484, "end": 301.82, "punctuated_word": "And", "speaker": 1, "speaker_confidence": 0.7817383, "start": 301.58002, "word": "and" }, { "confidence": 0.99902344, "end": 301.98, "punctuated_word": "save", "speaker": 1, "speaker_confidence": 0.7817383, "start": 301.82, "word": "save" }, { "confidence": 0.99902344, "end": 302.30002, "punctuated_word": "it", "speaker": 1, "speaker_confidence": 0.7817383, "start": 301.98, "word": "it" }, { "confidence": 1, "end": 302.54, "punctuated_word": "as", "speaker": 1, "speaker_confidence": 0.7817383, "start": 302.30002, "word": "as" }, { "confidence": 0.93603516, "end": 303.02002, "punctuated_word": "hello", "speaker": 1, "speaker_confidence": 0.7817383, "start": 302.54, "word": "hello" }, { "confidence": 0.6977539, "end": 303.52002, "punctuated_word": "dotmd.", "speaker": 1, "speaker_confidence": 0.7817383, "start": 303.02002, "word": "dotmd" }, { "confidence": 0.99609375, "end": 304.7, "punctuated_word": "Now", "speaker": 1, "speaker_confidence": 0.7451172, "start": 304.54, "word": "now" }, { "confidence": 0.90625, "end": 304.86002, "punctuated_word": "what", "speaker": 1, "speaker_confidence": 0.7451172, "start": 304.7, "word": "what" }, { "confidence": 0.9980469, "end": 304.94, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.7451172, "start": 304.86002, "word": "i" }, { "confidence": 0.99902344, "end": 305.02002, "punctuated_word": "want", "speaker": 1, "speaker_confidence": 0.7451172, "start": 304.94, "word": "want" }, { "confidence": 0.99121094, "end": 305.26, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.7451172, "start": 305.02002, "word": "you" }, { "confidence": 0.9760742, "end": 305.5, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.7451172, "start": 305.26, "word": "to" }, { "confidence": 0.9941406, "end": 305.58002, "punctuated_word": "do", "speaker": 1, "speaker_confidence": 0.7451172, "start": 305.5, "word": "do" }, { "confidence": 0.9980469, "end": 305.74002, "punctuated_word": "is", "speaker": 1, "speaker_confidence": 0.7451172, "start": 305.58002, "word": "is" }, { "confidence": 0.99902344, "end": 305.98, "punctuated_word": "hit", "speaker": 1, "speaker_confidence": 0.7451172, "start": 305.74002, "word": "hit" }, { "confidence": 0.8198242, "end": 306.22, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.7451172, "start": 305.98, "word": "i" }, { "confidence": 0.9980469, "end": 306.38, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.7451172, "start": 306.22, "word": "to" }, { "confidence": 0.99902344, "end": 306.7, "punctuated_word": "enter", "speaker": 1, "speaker_confidence": 0.7451172, "start": 306.38, "word": "enter" }, { "confidence": 0.99609375, "end": 307.02002, "punctuated_word": "insert", "speaker": 1, "speaker_confidence": 0.7451172, "start": 306.7, "word": "insert" }, { "confidence": 0.99902344, "end": 307.5, "punctuated_word": "mode", "speaker": 1, "speaker_confidence": 0.7451172, "start": 307.02002, "word": "mode" }, { "confidence": 0.8535156, "end": 307.66, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.7451172, "start": 307.5, "word": "and" }, { "confidence": 1, "end": 307.90002, "punctuated_word": "hit", "speaker": 1, "speaker_confidence": 0.7451172, "start": 307.66, "word": "hit" }, { "confidence": 0.86987305, "end": 308.30002, "punctuated_word": "returns.", "speaker": 1, "speaker_confidence": 0.7451172, "start": 307.90002, "word": "returns" }, { "confidence": 0.97265625, "end": 308.54, "punctuated_word": "We", "speaker": 1, "speaker_confidence": 0.7451172, "start": 308.30002, "word": "we" }, { "confidence": 0.9970703, "end": 308.7, "punctuated_word": "add", "speaker": 1, "speaker_confidence": 0.7451172, "start": 308.54, "word": "add" }, { "confidence": 1, "end": 308.86002, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.7451172, "start": 308.7, "word": "a" }, { "confidence": 1, "end": 309.02002, "punctuated_word": "few", "speaker": 1, "speaker_confidence": 0.7451172, "start": 308.86002, "word": "few" }, { "confidence": 1, "end": 309.52002, "punctuated_word": "lines", "speaker": 1, "speaker_confidence": 0.7451172, "start": 309.02002, "word": "lines" }, { "confidence": 0.7626953, "end": 309.875, "punctuated_word": "for", "speaker": 1, "speaker_confidence": 0.7451172, "start": 309.715, "word": "for" }, { "confidence": 0.9902344, "end": 310.035, "punctuated_word": "us", "speaker": 1, "speaker_confidence": 0.7451172, "start": 309.875, "word": "us" }, { "confidence": 0.98828125, "end": 310.075, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.7451172, "start": 310.035, "word": "to" }, { "confidence": 1, "end": 310.11502, "punctuated_word": "work", "speaker": 1, "speaker_confidence": 0.7451172, "start": 310.075, "word": "work" }, { "confidence": 0.99902344, "end": 310.515, "punctuated_word": "with", "speaker": 1, "speaker_confidence": 0.6147461, "start": 310.11502, "word": "with" }, { "confidence": 0.9091797, "end": 310.67502, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.6147461, "start": 310.515, "word": "and" }, { "confidence": 0.99902344, "end": 310.83502, "punctuated_word": "then", "speaker": 1, "speaker_confidence": 0.6147461, "start": 310.67502, "word": "then" }, { "confidence": 0.99902344, "end": 310.995, "punctuated_word": "hit", "speaker": 1, "speaker_confidence": 0.6147461, "start": 310.83502, "word": "hit" }, { "confidence": 0.9863281, "end": 311.495, "punctuated_word": "escape.", "speaker": 1, "speaker_confidence": 0.6147461, "start": 310.995, "word": "escape" }, { "confidence": 0.97998047, "end": 311.875, "punctuated_word": "Great.", "speaker": 1, "speaker_confidence": 0.6254883, "start": 311.635, "word": "great" }, { "confidence": 0.9980469, "end": 312.11502, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.6254883, "start": 311.875, "word": "so" }, { "confidence": 0.99316406, "end": 312.27502, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.6254883, "start": 312.11502, "word": "the" }, { "confidence": 0.8911133, "end": 312.77502, "punctuated_word": "first", "speaker": 1, "speaker_confidence": 0.6254883, "start": 312.27502, "word": "first" }, { "confidence": 0.9951172, "end": 313.23502, "punctuated_word": "commands", "speaker": 1, "speaker_confidence": 0.6254883, "start": 312.83502, "word": "commands" }, { "confidence": 1, "end": 313.39502, "punctuated_word": "that", "speaker": 1, "speaker_confidence": 0.6254883, "start": 313.23502, "word": "that" }, { "confidence": 0.99902344, "end": 313.635, "punctuated_word": "we're", "speaker": 1, "speaker_confidence": 0.6254883, "start": 313.39502, "word": "we're" }, { "confidence": 1, "end": 313.875, "punctuated_word": "going", "speaker": 1, "speaker_confidence": 0.6254883, "start": 313.635, "word": "going" }, { "confidence": 1, "end": 314.375, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.6254883, "start": 313.875, "word": "to" }, { "confidence": 1, "end": 314.67502, "punctuated_word": "talk", "speaker": 1, "speaker_confidence": 0.6254883, "start": 314.435, "word": "talk" }, { "confidence": 1, "end": 315.17502, "punctuated_word": "about", "speaker": 1, "speaker_confidence": 0.6254883, "start": 314.67502, "word": "about" }, { "confidence": 0.96875, "end": 315.475, "punctuated_word": "are", "speaker": 1, "speaker_confidence": 0.75683594, "start": 315.315, "word": "are" }, { "confidence": 0.99902344, "end": 315.715, "punctuated_word": "for", "speaker": 1, "speaker_confidence": 0.75683594, "start": 315.475, "word": "for" }, { "confidence": 0.99609375, "end": 316.215, "punctuated_word": "navigation", "speaker": 1, "speaker_confidence": 0.75683594, "start": 315.715, "word": "navigation" }, { "confidence": 0.8852539, "end": 316.755, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.75683594, "start": 316.515, "word": "and" }, { "confidence": 1, "end": 316.995, "punctuated_word": "they", "speaker": 1, "speaker_confidence": 0.75683594, "start": 316.755, "word": "they" }, { "confidence": 1, "end": 317.155, "punctuated_word": "will", "speaker": 1, "speaker_confidence": 0.75683594, "start": 316.995, "word": "will" }, { "confidence": 0.9951172, "end": 317.655, "punctuated_word": "be", "speaker": 1, "speaker_confidence": 0.75683594, "start": 317.155, "word": "be" }, { "confidence": 0.9194336, "end": 318.035, "punctuated_word": "h", "speaker": 1, "speaker_confidence": 0.75683594, "start": 317.715, "word": "h" }, { "confidence": 0.64990234, "end": 318.355, "punctuated_word": "j", "speaker": 1, "speaker_confidence": 0.75683594, "start": 318.035, "word": "j" }, { "confidence": 0.7519531, "end": 318.595, "punctuated_word": "k", "speaker": 1, "speaker_confidence": 0.75683594, "start": 318.355, "word": "k" }, { "confidence": 0.8720703, "end": 318.915, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.75683594, "start": 318.595, "word": "and" }, { "confidence": 0.97558594, "end": 319.415, "punctuated_word": "l.", "speaker": 1, "speaker_confidence": 0.75683594, "start": 318.915, "word": "l" }, { "confidence": 1, "end": 319.94, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.75683594, "start": 319.69998, "word": "so" }, { "confidence": 0.9790039, "end": 320.1, "punctuated_word": "right", "speaker": 1, "speaker_confidence": 0.75683594, "start": 319.94, "word": "right" }, { "confidence": 0.8166504, "end": 320.34, "punctuated_word": "now,", "speaker": 1, "speaker_confidence": 0.75683594, "start": 320.1, "word": "now" }, { "confidence": 1, "end": 320.5, "punctuated_word": "we're", "speaker": 1, "speaker_confidence": 0.75683594, "start": 320.34, "word": "we're" }, { "confidence": 1, "end": 320.82, "punctuated_word": "in", "speaker": 1, "speaker_confidence": 0.75683594, "start": 320.5, "word": "in" }, { "confidence": 0.9970703, "end": 321.13998, "punctuated_word": "command", "speaker": 1, "speaker_confidence": 0.75683594, "start": 320.82, "word": "command" }, { "confidence": 0.99853516, "end": 321.54, "punctuated_word": "mode.", "speaker": 1, "speaker_confidence": 0.75683594, "start": 321.13998, "word": "mode" }, { "confidence": 1, "end": 321.69998, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.421875, "start": 321.54, "word": "so" }, { "confidence": 1, "end": 321.86, "punctuated_word": "if", "speaker": 1, "speaker_confidence": 0.421875, "start": 321.69998, "word": "if" }, { "confidence": 1, "end": 321.94, "punctuated_word": "we", "speaker": 1, "speaker_confidence": 0.421875, "start": 321.86, "word": "we" }, { "confidence": 1, "end": 322.26, "punctuated_word": "hit", "speaker": 1, "speaker_confidence": 0.421875, "start": 321.94, "word": "hit" }, { "confidence": 0.9975586, "end": 322.76, "punctuated_word": "k,", "speaker": 1, "speaker_confidence": 0.421875, "start": 322.26, "word": "k" }, { "confidence": 0.99902344, "end": 323.13998, "punctuated_word": "we'll", "speaker": 1, "speaker_confidence": 0.421875, "start": 322.97998, "word": "we'll" }, { "confidence": 1, "end": 323.46, "punctuated_word": "start", "speaker": 1, "speaker_confidence": 0.421875, "start": 323.13998, "word": "start" }, { "confidence": 1, "end": 323.86, "punctuated_word": "moving", "speaker": 1, "speaker_confidence": 0.421875, "start": 323.46, "word": "moving" }, { "confidence": 0.9980469, "end": 324.36, "punctuated_word": "up.", "speaker": 1, "speaker_confidence": 0.421875, "start": 323.86, "word": "up" }, { "confidence": 0.9951172, "end": 324.58, "punctuated_word": "If", "speaker": 1, "speaker_confidence": 0.4091797, "start": 324.41998, "word": "if" }, { "confidence": 1, "end": 324.74, "punctuated_word": "we", "speaker": 1, "speaker_confidence": 0.4091797, "start": 324.58, "word": "we" }, { "confidence": 1, "end": 324.97998, "punctuated_word": "hit", "speaker": 1, "speaker_confidence": 0.4091797, "start": 324.74, "word": "hit" }, { "confidence": 0.9980469, "end": 325.46, "punctuated_word": "j,", "speaker": 1, "speaker_confidence": 0.4091797, "start": 324.97998, "word": "j" }, { "confidence": 0.9995117, "end": 325.69998, "punctuated_word": "we'll", "speaker": 1, "speaker_confidence": 0.4091797, "start": 325.46, "word": "we'll" }, { "confidence": 1, "end": 325.94, "punctuated_word": "move", "speaker": 1, "speaker_confidence": 0.4091797, "start": 325.69998, "word": "move" }, { "confidence": 1, "end": 326.44, "punctuated_word": "down.", "speaker": 1, "speaker_confidence": 0.4091797, "start": 325.94, "word": "down" }, { "confidence": 1, "end": 327.20502, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.6303711, "start": 327.045, "word": "so" }, { "confidence": 0.9082031, "end": 327.70502, "punctuated_word": "remember,", "speaker": 1, "speaker_confidence": 0.6303711, "start": 327.20502, "word": "remember" }, { "confidence": 1, "end": 328.005, "punctuated_word": "we", "speaker": 1, "speaker_confidence": 0.6303711, "start": 327.845, "word": "we" }, { "confidence": 1, "end": 328.48502, "punctuated_word": "just", "speaker": 1, "speaker_confidence": 0.6303711, "start": 328.005, "word": "just" }, { "confidence": 1, "end": 328.98502, "punctuated_word": "learned", "speaker": 1, "speaker_confidence": 0.6303711, "start": 328.48502, "word": "learned" }, { "confidence": 0.98828125, "end": 329.36502, "punctuated_word": "k", "speaker": 1, "speaker_confidence": 0.6303711, "start": 329.045, "word": "k" }, { "confidence": 0.99121094, "end": 329.605, "punctuated_word": "for", "speaker": 1, "speaker_confidence": 0.6303711, "start": 329.36502, "word": "for" }, { "confidence": 0.99902344, "end": 329.92502, "punctuated_word": "moving", "speaker": 1, "speaker_confidence": 0.6303711, "start": 329.605, "word": "moving" }, { "confidence": 0.9719238, "end": 330.325, "punctuated_word": "up.", "speaker": 1, "speaker_confidence": 0.6303711, "start": 329.92502, "word": "up" }, { "confidence": 1, "end": 330.565, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.6303711, "start": 330.325, "word": "i" }, { "confidence": 0.9951172, "end": 330.725, "punctuated_word": "like", "speaker": 1, "speaker_confidence": 0.6303711, "start": 330.565, "word": "like" }, { "confidence": 1, "end": 330.805, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.6303711, "start": 330.725, "word": "to" }, { "confidence": 1, "end": 330.965, "punctuated_word": "think", "speaker": 1, "speaker_confidence": 0.6303711, "start": 330.805, "word": "think" }, { "confidence": 1, "end": 331.045, "punctuated_word": "of", "speaker": 1, "speaker_confidence": 0.77734375, "start": 330.965, "word": "of" }, { "confidence": 1, "end": 331.20502, "punctuated_word": "it", "speaker": 1, "speaker_confidence": 0.77734375, "start": 331.045, "word": "it" }, { "confidence": 0.9970703, "end": 331.445, "punctuated_word": "as", "speaker": 1, "speaker_confidence": 0.77734375, "start": 331.20502, "word": "as" }, { "confidence": 0.99902344, "end": 331.765, "punctuated_word": "kicking", "speaker": 1, "speaker_confidence": 0.77734375, "start": 331.445, "word": "kicking" }, { "confidence": 0.98535156, "end": 331.845, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.77734375, "start": 331.765, "word": "a" }, { "confidence": 1, "end": 332.165, "punctuated_word": "soccer", "speaker": 1, "speaker_confidence": 0.77734375, "start": 331.845, "word": "soccer" }, { "confidence": 0.9980469, "end": 332.405, "punctuated_word": "ball", "speaker": 1, "speaker_confidence": 0.77734375, "start": 332.165, "word": "ball" }, { "confidence": 0.9387207, "end": 332.725, "punctuated_word": "up.", "speaker": 1, "speaker_confidence": 0.77734375, "start": 332.405, "word": "up" }, { "confidence": 0.9995117, "end": 332.965, "punctuated_word": "I'm", "speaker": 1, "speaker_confidence": 0.77734375, "start": 332.725, "word": "i'm" }, { "confidence": 0.99902344, "end": 333.445, "punctuated_word": "kicking", "speaker": 1, "speaker_confidence": 0.77734375, "start": 332.965, "word": "kicking" }, { "confidence": 1, "end": 333.92502, "punctuated_word": "upwards", "speaker": 1, "speaker_confidence": 0.77734375, "start": 333.445, "word": "upwards" }, { "confidence": 0.9970703, "end": 334.085, "punctuated_word": "on", "speaker": 1, "speaker_confidence": 0.77734375, "start": 333.92502, "word": "on" }, { "confidence": 1, "end": 334.245, "punctuated_word": "my", "speaker": 1, "speaker_confidence": 0.77734375, "start": 334.085, "word": "my" }, { "confidence": 0.99902344, "end": 334.745, "punctuated_word": "editor", "speaker": 1, "speaker_confidence": 0.77734375, "start": 334.245, "word": "editor" }, { "confidence": 0.41870117, "end": 335.39, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.77734375, "start": 335.07, "word": "and" }, { "confidence": 0.94970703, "end": 335.63, "punctuated_word": "j", "speaker": 1, "speaker_confidence": 0.77734375, "start": 335.39, "word": "j" }, { "confidence": 0.9770508, "end": 335.95, "punctuated_word": "for", "speaker": 1, "speaker_confidence": 0.77734375, "start": 335.63, "word": "for" }, { "confidence": 0.99902344, "end": 336.27, "punctuated_word": "jumping", "speaker": 1, "speaker_confidence": 0.77734375, "start": 335.95, "word": "jumping" }, { "confidence": 0.95874023, "end": 336.75, "punctuated_word": "down.", "speaker": 1, "speaker_confidence": 0.77734375, "start": 336.27, "word": "down" }, { "confidence": 0.9892578, "end": 337.07, "punctuated_word": "Use", "speaker": 1, "speaker_confidence": 0.77734375, "start": 336.75, "word": "use" }, { "confidence": 0.99902344, "end": 337.47, "punctuated_word": "whatever", "speaker": 1, "speaker_confidence": 0.77734375, "start": 337.07, "word": "whatever" }, { "confidence": 0.9671224, "end": 337.95, "punctuated_word": "mnemonic", "speaker": 1, "speaker_confidence": 0.77734375, "start": 337.47, "word": "mnemonic" }, { "confidence": 0.99902344, "end": 338.11002, "punctuated_word": "comes", "speaker": 1, "speaker_confidence": 0.77734375, "start": 337.95, "word": "comes" }, { "confidence": 1, "end": 338.27, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.77734375, "start": 338.11002, "word": "to" }, { "confidence": 1, "end": 338.59, "punctuated_word": "mind", "speaker": 1, "speaker_confidence": 0.77734375, "start": 338.27, "word": "mind" }, { "confidence": 0.9951172, "end": 338.67, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.46289062, "start": 338.59, "word": "to" }, { "confidence": 1, "end": 338.83002, "punctuated_word": "help", "speaker": 1, "speaker_confidence": 0.46289062, "start": 338.67, "word": "help" }, { "confidence": 1, "end": 339.33002, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.46289062, "start": 338.83002, "word": "you" }, { "confidence": 0.99902344, "end": 339.79, "punctuated_word": "remember", "speaker": 1, "speaker_confidence": 0.46289062, "start": 339.47, "word": "remember" }, { "confidence": 0.99658203, "end": 340.29, "punctuated_word": "those.", "speaker": 1, "speaker_confidence": 0.46289062, "start": 339.79, "word": "those" }, { "confidence": 0.9506836, "end": 341.31, "punctuated_word": "The", "speaker": 1, "speaker_confidence": 0.67285156, "start": 341.07, "word": "the" }, { "confidence": 0.8095703, "end": 341.81, "punctuated_word": "next,", "speaker": 1, "speaker_confidence": 0.67285156, "start": 341.31, "word": "next" }, { "confidence": 0.9995117, "end": 342.19, "punctuated_word": "we'll", "speaker": 1, "speaker_confidence": 0.67285156, "start": 341.95, "word": "we'll" }, { "confidence": 1, "end": 342.43, "punctuated_word": "talk", "speaker": 1, "speaker_confidence": 0.67285156, "start": 342.19, "word": "talk" }, { "confidence": 1, "end": 342.83002, "punctuated_word": "about", "speaker": 1, "speaker_confidence": 0.67285156, "start": 342.43, "word": "about" }, { "confidence": 0.8354492, "end": 343.23, "punctuated_word": "our", "speaker": 1, "speaker_confidence": 0.67285156, "start": 342.83002, "word": "our" }, { "confidence": 0.9838867, "end": 343.575, "punctuated_word": "h", "speaker": 1, "speaker_confidence": 0.67285156, "start": 343.23, "word": "h" }, { "confidence": 0.6538086, "end": 343.975, "punctuated_word": "in", "speaker": 1, "speaker_confidence": 0.67285156, "start": 343.655, "word": "in" }, { "confidence": 0.96655273, "end": 344.135, "punctuated_word": "l.", "speaker": 1, "speaker_confidence": 0.67285156, "start": 343.975, "word": "l" }, { "confidence": 0.9970703, "end": 344.45502, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.67285156, "start": 344.135, "word": "so" }, { "confidence": 0.99365234, "end": 344.535, "punctuated_word": "I'm", "speaker": 1, "speaker_confidence": 0.67285156, "start": 344.45502, "word": "i'm" }, { "confidence": 0.8305664, "end": 344.77502, "punctuated_word": "gonna", "speaker": 1, "speaker_confidence": 0.92089844, "start": 344.535, "word": "gonna" }, { "confidence": 0.9941406, "end": 345.27502, "punctuated_word": "write", "speaker": 1, "speaker_confidence": 0.92089844, "start": 344.77502, "word": "write" }, { "confidence": 0.6269531, "end": 345.815, "punctuated_word": "hello", "speaker": 1, "speaker_confidence": 0.92089844, "start": 345.49503, "word": "hello" }, { "confidence": 0.91845703, "end": 346.135, "punctuated_word": "world", "speaker": 1, "speaker_confidence": 0.92089844, "start": 345.815, "word": "world" }, { "confidence": 0.9941406, "end": 346.635, "punctuated_word": "here", "speaker": 1, "speaker_confidence": 0.92089844, "start": 346.135, "word": "here" }, { "confidence": 0.50927734, "end": 347.655, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.92089844, "start": 347.33502, "word": "and" }, { "confidence": 0.99902344, "end": 347.815, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.92089844, "start": 347.655, "word": "you" }, { "confidence": 1, "end": 347.975, "punctuated_word": "can", "speaker": 1, "speaker_confidence": 0.92089844, "start": 347.815, "word": "can" }, { "confidence": 1, "end": 348.05502, "punctuated_word": "do", "speaker": 1, "speaker_confidence": 0.92089844, "start": 347.975, "word": "do" }, { "confidence": 1, "end": 348.21503, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.92089844, "start": 348.05502, "word": "the" }, { "confidence": 0.9628906, "end": 348.45502, "punctuated_word": "same.", "speaker": 1, "speaker_confidence": 0.92089844, "start": 348.21503, "word": "same" }, { "confidence": 1, "end": 348.95502, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.92089844, "start": 348.45502, "word": "so" }, { "confidence": 0.8808594, "end": 349.575, "punctuated_word": "again,", "speaker": 1, "speaker_confidence": 0.92089844, "start": 349.255, "word": "again" }, { "confidence": 1, "end": 349.655, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.92089844, "start": 349.575, "word": "the" }, { "confidence": 1, "end": 349.89502, "punctuated_word": "way", "speaker": 1, "speaker_confidence": 0.92089844, "start": 349.655, "word": "way" }, { "confidence": 1, "end": 350.05502, "punctuated_word": "that", "speaker": 1, "speaker_confidence": 0.92089844, "start": 349.89502, "word": "that" }, { "confidence": 1, "end": 350.135, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.92089844, "start": 350.05502, "word": "i" }, { "confidence": 1, "end": 350.295, "punctuated_word": "did", "speaker": 1, "speaker_confidence": 0.92089844, "start": 350.135, "word": "did" }, { "confidence": 0.9980469, "end": 350.535, "punctuated_word": "that", "speaker": 1, "speaker_confidence": 0.92089844, "start": 350.295, "word": "that" }, { "confidence": 0.9980469, "end": 351.035, "punctuated_word": "was", "speaker": 1, "speaker_confidence": 0.92089844, "start": 350.535, "word": "was" }, { "confidence": 0.5151367, "end": 351.33502, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.92089844, "start": 351.17502, "word": "i" }, { "confidence": 0.9873047, "end": 351.575, "punctuated_word": "for", "speaker": 1, "speaker_confidence": 0.92089844, "start": 351.33502, "word": "for" }, { "confidence": 0.99902344, "end": 351.975, "punctuated_word": "insert", "speaker": 1, "speaker_confidence": 0.92089844, "start": 351.575, "word": "insert" }, { "confidence": 0.8828125, "end": 352.45502, "punctuated_word": "mode,", "speaker": 1, "speaker_confidence": 0.92089844, "start": 351.975, "word": "mode" }, { "confidence": 0.9980469, "end": 352.77502, "punctuated_word": "start", "speaker": 1, "speaker_confidence": 0.92089844, "start": 352.45502, "word": "start" }, { "confidence": 1, "end": 353.27502, "punctuated_word": "typing", "speaker": 1, "speaker_confidence": 0.92089844, "start": 352.77502, "word": "typing" }, { "confidence": 0.82299805, "end": 354.12, "punctuated_word": "Hello,", "speaker": 1, "speaker_confidence": 0.92089844, "start": 353.8, "word": "hello" }, { "confidence": 0.9543457, "end": 354.62, "punctuated_word": "world.", "speaker": 1, "speaker_confidence": 0.92089844, "start": 354.12, "word": "world" }, { "confidence": 0.9980469, "end": 355.16, "punctuated_word": "And", "speaker": 1, "speaker_confidence": 0.92089844, "start": 355, "word": "and" }, { "confidence": 1, "end": 355.32, "punctuated_word": "then", "speaker": 1, "speaker_confidence": 0.92089844, "start": 355.16, "word": "then" }, { "confidence": 0.99121094, "end": 355.48, "punctuated_word": "when", "speaker": 1, "speaker_confidence": 0.92089844, "start": 355.32, "word": "when" }, { "confidence": 1, "end": 355.72, "punctuated_word": "you're", "speaker": 1, "speaker_confidence": 0.92089844, "start": 355.48, "word": "you're" }, { "confidence": 0.98168945, "end": 356.04, "punctuated_word": "done,", "speaker": 1, "speaker_confidence": 0.92089844, "start": 355.72, "word": "done" }, { "confidence": 1, "end": 356.28, "punctuated_word": "hit", "speaker": 1, "speaker_confidence": 0.92089844, "start": 356.04, "word": "hit" }, { "confidence": 0.8034668, "end": 356.78, "punctuated_word": "escape,", "speaker": 1, "speaker_confidence": 0.92089844, "start": 356.28, "word": "escape" }, { "confidence": 1, "end": 357.32, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.92089844, "start": 357.16, "word": "and" }, { "confidence": 1, "end": 357.56, "punctuated_word": "you'll", "speaker": 1, "speaker_confidence": 0.92089844, "start": 357.32, "word": "you'll" }, { "confidence": 1, "end": 357.72, "punctuated_word": "be", "speaker": 1, "speaker_confidence": 0.92089844, "start": 357.56, "word": "be" }, { "confidence": 1, "end": 357.8, "punctuated_word": "back", "speaker": 1, "speaker_confidence": 0.92089844, "start": 357.72, "word": "back" }, { "confidence": 0.9921875, "end": 358.04, "punctuated_word": "in", "speaker": 1, "speaker_confidence": 0.92089844, "start": 357.8, "word": "in" }, { "confidence": 0.9980469, "end": 358.36, "punctuated_word": "command", "speaker": 1, "speaker_confidence": 0.92089844, "start": 358.04, "word": "command" }, { "confidence": 0.9946289, "end": 358.86, "punctuated_word": "mode.", "speaker": 1, "speaker_confidence": 0.92089844, "start": 358.36, "word": "mode" }, { "confidence": 0.99902344, "end": 359.08, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.5332031, "start": 359, "word": "so" }, { "confidence": 1, "end": 359.24, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.5332031, "start": 359.08, "word": "the" }, { "confidence": 0.9951172, "end": 359.48, "punctuated_word": "first", "speaker": 1, "speaker_confidence": 0.5332031, "start": 359.24, "word": "first" }, { "confidence": 0.9790039, "end": 359.63998, "punctuated_word": "one", "speaker": 1, "speaker_confidence": 0.5332031, "start": 359.48, "word": "one" }, { "confidence": 0.9885254, "end": 359.8, "punctuated_word": "we'll", "speaker": 1, "speaker_confidence": 0.5332031, "start": 359.63998, "word": "we'll" }, { "confidence": 1, "end": 359.96, "punctuated_word": "talk", "speaker": 1, "speaker_confidence": 0.5332031, "start": 359.8, "word": "talk" }, { "confidence": 1, "end": 360.28, "punctuated_word": "about", "speaker": 1, "speaker_confidence": 0.5332031, "start": 359.96, "word": "about" }, { "confidence": 1, "end": 360.52, "punctuated_word": "is", "speaker": 1, "speaker_confidence": 0.5332031, "start": 360.28, "word": "is" }, { "confidence": 0.99560547, "end": 361.02, "punctuated_word": "h.", "speaker": 1, "speaker_confidence": 0.5332031, "start": 360.52, "word": "h" }, { "confidence": 1, "end": 361.56, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.5332031, "start": 361.16, "word": "so" }, { "confidence": 0.9980469, "end": 361.72, "punctuated_word": "if", "speaker": 1, "speaker_confidence": 0.5332031, "start": 361.56, "word": "if" }, { "confidence": 1, "end": 361.8, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.53222656, "start": 361.72, "word": "you" }, { "confidence": 1, "end": 362.12, "punctuated_word": "hit", "speaker": 1, "speaker_confidence": 0.53222656, "start": 361.8, "word": "hit" }, { "confidence": 0.9975586, "end": 362.62, "punctuated_word": "h,", "speaker": 1, "speaker_confidence": 0.53222656, "start": 362.12, "word": "h" }, { "confidence": 0.99658203, "end": 362.97498, "punctuated_word": "You'll", "speaker": 1, "speaker_confidence": 0.53222656, "start": 362.81497, "word": "you'll" }, { "confidence": 1, "end": 363.215, "punctuated_word": "start", "speaker": 1, "speaker_confidence": 0.53222656, "start": 362.97498, "word": "start" }, { "confidence": 0.9980469, "end": 363.455, "punctuated_word": "moving", "speaker": 1, "speaker_confidence": 0.53222656, "start": 363.215, "word": "moving" }, { "confidence": 0.99902344, "end": 363.615, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.53222656, "start": 363.455, "word": "to" }, { "confidence": 0.99902344, "end": 363.69498, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.8154297, "start": 363.615, "word": "the" }, { "confidence": 0.69177246, "end": 364.19498, "punctuated_word": "left,", "speaker": 1, "speaker_confidence": 0.8154297, "start": 363.69498, "word": "left" }, { "confidence": 0.9951172, "end": 364.81497, "punctuated_word": "as", "speaker": 1, "speaker_confidence": 0.8154297, "start": 364.57498, "word": "as" }, { "confidence": 0.99902344, "end": 364.97498, "punctuated_word": "in", "speaker": 1, "speaker_confidence": 0.8154297, "start": 364.81497, "word": "in" }, { "confidence": 0.98999023, "end": 365.13498, "punctuated_word": "you're", "speaker": 1, "speaker_confidence": 0.8154297, "start": 364.97498, "word": "you're" }, { "confidence": 1, "end": 365.375, "punctuated_word": "moving", "speaker": 1, "speaker_confidence": 0.8154297, "start": 365.13498, "word": "moving" }, { "confidence": 1, "end": 365.455, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.8154297, "start": 365.375, "word": "to" }, { "confidence": 1, "end": 365.615, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.8154297, "start": 365.455, "word": "the" }, { "confidence": 1, "end": 366.01498, "punctuated_word": "beginning", "speaker": 1, "speaker_confidence": 0.8154297, "start": 365.615, "word": "beginning" }, { "confidence": 1, "end": 366.09497, "punctuated_word": "of", "speaker": 1, "speaker_confidence": 0.8154297, "start": 366.01498, "word": "of" }, { "confidence": 1, "end": 366.335, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.8154297, "start": 366.09497, "word": "the" }, { "confidence": 0.7976074, "end": 366.835, "punctuated_word": "line,", "speaker": 1, "speaker_confidence": 0.8154297, "start": 366.335, "word": "line" }, { "confidence": 0.99902344, "end": 367.53497, "punctuated_word": "also", "speaker": 1, "speaker_confidence": 0.8154297, "start": 367.29498, "word": "also" }, { "confidence": 0.94921875, "end": 367.935, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.8154297, "start": 367.53497, "word": "the" }, { "confidence": 0.99316406, "end": 368.335, "punctuated_word": "h", "speaker": 1, "speaker_confidence": 0.8154297, "start": 367.935, "word": "h" }, { "confidence": 0.99609375, "end": 368.655, "punctuated_word": "in", "speaker": 1, "speaker_confidence": 0.8154297, "start": 368.335, "word": "in" }, { "confidence": 0.84472656, "end": 369.055, "punctuated_word": "hello", "speaker": 1, "speaker_confidence": 0.8154297, "start": 368.655, "word": "hello" }, { "confidence": 0.8828125, "end": 369.555, "punctuated_word": "world.", "speaker": 1, "speaker_confidence": 0.8154297, "start": 369.055, "word": "world" }, { "confidence": 0.9387207, "end": 370.23, "punctuated_word": "Now,", "speaker": 1, "speaker_confidence": 0.8154297, "start": 370.07, "word": "now" }, { "confidence": 1, "end": 370.63, "punctuated_word": "once", "speaker": 1, "speaker_confidence": 0.8154297, "start": 370.23, "word": "once" }, { "confidence": 0.9995117, "end": 370.79, "punctuated_word": "we're", "speaker": 1, "speaker_confidence": 0.8154297, "start": 370.63, "word": "we're" }, { "confidence": 0.96118164, "end": 371.03, "punctuated_word": "there,", "speaker": 1, "speaker_confidence": 0.8154297, "start": 370.79, "word": "there" }, { "confidence": 0.99902344, "end": 371.19, "punctuated_word": "if", "speaker": 1, "speaker_confidence": 0.8154297, "start": 371.03, "word": "if" }, { "confidence": 0.9980469, "end": 371.35, "punctuated_word": "we", "speaker": 1, "speaker_confidence": 0.8154297, "start": 371.19, "word": "we" }, { "confidence": 0.64746094, "end": 371.59, "punctuated_word": "wanna", "speaker": 1, "speaker_confidence": 0.8154297, "start": 371.35, "word": "wanna" }, { "confidence": 0.9970703, "end": 371.75, "punctuated_word": "go", "speaker": 1, "speaker_confidence": 0.8154297, "start": 371.59, "word": "go" }, { "confidence": 1, "end": 371.99, "punctuated_word": "back", "speaker": 1, "speaker_confidence": 0.8154297, "start": 371.75, "word": "back" }, { "confidence": 0.9873047, "end": 372.49, "punctuated_word": "right,", "speaker": 1, "speaker_confidence": 0.8154297, "start": 371.99, "word": "right" }, { "confidence": 1, "end": 372.95, "punctuated_word": "we", "speaker": 1, "speaker_confidence": 0.8154297, "start": 372.71, "word": "we" }, { "confidence": 0.9980469, "end": 373.19, "punctuated_word": "start", "speaker": 1, "speaker_confidence": 0.8154297, "start": 372.95, "word": "start" }, { "confidence": 0.99121094, "end": 373.59, "punctuated_word": "hitting", "speaker": 1, "speaker_confidence": 0.8154297, "start": 373.19, "word": "hitting" }, { "confidence": 0.72595215, "end": 373.99, "punctuated_word": "l,", "speaker": 1, "speaker_confidence": 0.8154297, "start": 373.59, "word": "l" }, { "confidence": 1, "end": 374.15, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.57177734, "start": 373.99, "word": "and" }, { "confidence": 1, "end": 374.31, "punctuated_word": "that", "speaker": 1, "speaker_confidence": 0.57177734, "start": 374.15, "word": "that" }, { "confidence": 1, "end": 374.47, "punctuated_word": "will", "speaker": 1, "speaker_confidence": 0.57177734, "start": 374.31, "word": "will" }, { "confidence": 1, "end": 374.63, "punctuated_word": "move", "speaker": 1, "speaker_confidence": 0.57177734, "start": 374.47, "word": "move" }, { "confidence": 1, "end": 374.79, "punctuated_word": "us", "speaker": 1, "speaker_confidence": 0.57177734, "start": 374.63, "word": "us" }, { "confidence": 1, "end": 375.19, "punctuated_word": "towards", "speaker": 1, "speaker_confidence": 0.57177734, "start": 374.79, "word": "towards" }, { "confidence": 0.99902344, "end": 375.51, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.57177734, "start": 375.19, "word": "the" }, { "confidence": 0.9560547, "end": 375.75, "punctuated_word": "l", "speaker": 1, "speaker_confidence": 0.57177734, "start": 375.51, "word": "l" }, { "confidence": 0.89208984, "end": 375.99, "punctuated_word": "in", "speaker": 1, "speaker_confidence": 0.57177734, "start": 375.75, "word": "in" }, { "confidence": 0.95410156, "end": 376.49, "punctuated_word": "world.", "speaker": 1, "speaker_confidence": 0.57177734, "start": 375.99, "word": "world" }, { "confidence": 0.9970703, "end": 377.11502, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.58935547, "start": 376.95502, "word": "so" }, { "confidence": 0.7648926, "end": 377.515, "punctuated_word": "again,", "speaker": 1, "speaker_confidence": 0.58935547, "start": 377.11502, "word": "again" }, { "confidence": 1, "end": 377.755, "punctuated_word": "figure", "speaker": 1, "speaker_confidence": 0.58935547, "start": 377.515, "word": "figure" }, { "confidence": 1, "end": 377.99503, "punctuated_word": "out", "speaker": 1, "speaker_confidence": 0.58935547, "start": 377.755, "word": "out" }, { "confidence": 1, "end": 378.155, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.58935547, "start": 377.99503, "word": "a" }, { "confidence": 0.94970703, "end": 378.655, "punctuated_word": "mnemonic", "speaker": 1, "speaker_confidence": 0.58935547, "start": 378.155, "word": "mnemonic" }, { "confidence": 0.9970703, "end": 379.035, "punctuated_word": "that's", "speaker": 1, "speaker_confidence": 0.58935547, "start": 378.795, "word": "that's" }, { "confidence": 1, "end": 379.27502, "punctuated_word": "going", "speaker": 1, "speaker_confidence": 0.58935547, "start": 379.035, "word": "going" }, { "confidence": 1, "end": 379.355, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.58935547, "start": 379.27502, "word": "to" }, { "confidence": 1, "end": 379.595, "punctuated_word": "help", "speaker": 1, "speaker_confidence": 0.7597656, "start": 379.355, "word": "help" }, { "confidence": 1, "end": 379.83502, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.7597656, "start": 379.595, "word": "you" }, { "confidence": 1, "end": 380.155, "punctuated_word": "remember", "speaker": 1, "speaker_confidence": 0.7597656, "start": 379.83502, "word": "remember" }, { "confidence": 0.97436523, "end": 380.655, "punctuated_word": "those.", "speaker": 1, "speaker_confidence": 0.7597656, "start": 380.155, "word": "those" }, { "confidence": 1, "end": 381.035, "punctuated_word": "For", "speaker": 1, "speaker_confidence": 0.7597656, "start": 380.875, "word": "for" }, { "confidence": 0.9904785, "end": 381.535, "punctuated_word": "me,", "speaker": 1, "speaker_confidence": 0.7597656, "start": 381.035, "word": "me" }, { "confidence": 1, "end": 381.99503, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.7597656, "start": 381.83502, "word": "i" }, { "confidence": 0.9980469, "end": 382.155, "punctuated_word": "like", "speaker": 1, "speaker_confidence": 0.7597656, "start": 381.99503, "word": "like" }, { "confidence": 1, "end": 382.23502, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.7597656, "start": 382.155, "word": "to" }, { "confidence": 1, "end": 382.475, "punctuated_word": "think", "speaker": 1, "speaker_confidence": 0.7597656, "start": 382.23502, "word": "think" }, { "confidence": 1, "end": 382.71503, "punctuated_word": "of", "speaker": 1, "speaker_confidence": 0.7597656, "start": 382.475, "word": "of" }, { "confidence": 0.97802734, "end": 383.035, "punctuated_word": "h", "speaker": 1, "speaker_confidence": 0.7597656, "start": 382.71503, "word": "h" }, { "confidence": 0.9604492, "end": 383.195, "punctuated_word": "as", "speaker": 1, "speaker_confidence": 0.7597656, "start": 383.035, "word": "as" }, { "confidence": 0.9838867, "end": 383.43503, "punctuated_word": "in", "speaker": 1, "speaker_confidence": 0.7597656, "start": 383.195, "word": "in" }, { "confidence": 0.9807129, "end": 383.595, "punctuated_word": "I'm", "speaker": 1, "speaker_confidence": 0.7597656, "start": 383.43503, "word": "i'm" }, { "confidence": 1, "end": 383.83502, "punctuated_word": "going", "speaker": 1, "speaker_confidence": 0.7597656, "start": 383.595, "word": "going" }, { "confidence": 0.99902344, "end": 384.23502, "punctuated_word": "home", "speaker": 1, "speaker_confidence": 0.7597656, "start": 383.83502, "word": "home" }, { "confidence": 1, "end": 384.39502, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.7597656, "start": 384.23502, "word": "to" }, { "confidence": 1, "end": 384.55502, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.7597656, "start": 384.39502, "word": "the" }, { "confidence": 0.9980469, "end": 385.05502, "punctuated_word": "left", "speaker": 1, "speaker_confidence": 0.7597656, "start": 384.55502, "word": "left" }, { "confidence": 0.8178711, "end": 385.68, "punctuated_word": "And", "speaker": 1, "speaker_confidence": 0.7597656, "start": 385.52, "word": "and" }, { "confidence": 0.9863281, "end": 386.18, "punctuated_word": "then", "speaker": 1, "speaker_confidence": 0.7597656, "start": 385.68, "word": "then" }, { "confidence": 0.65844727, "end": 386.72, "punctuated_word": "l,", "speaker": 1, "speaker_confidence": 0.7597656, "start": 386.63998, "word": "l" }, { "confidence": 0.9980469, "end": 386.88, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.33154297, "start": 386.72, "word": "you" }, { "confidence": 0.99902344, "end": 387.04, "punctuated_word": "would", "speaker": 1, "speaker_confidence": 0.33154297, "start": 386.88, "word": "would" }, { "confidence": 1, "end": 387.36, "punctuated_word": "think", "speaker": 1, "speaker_confidence": 0.33154297, "start": 387.04, "word": "think" }, { "confidence": 0.9970703, "end": 387.44, "punctuated_word": "that", "speaker": 1, "speaker_confidence": 0.33154297, "start": 387.36, "word": "that" }, { "confidence": 0.99902344, "end": 387.94, "punctuated_word": "would", "speaker": 1, "speaker_confidence": 0.33154297, "start": 387.44, "word": "would" }, { "confidence": 0.99902344, "end": 388.48, "punctuated_word": "be", "speaker": 1, "speaker_confidence": 0.33154297, "start": 388.32, "word": "be" }, { "confidence": 0.97998047, "end": 388.72, "punctuated_word": "l", "speaker": 1, "speaker_confidence": 0.89746094, "start": 388.48, "word": "l" }, { "confidence": 0.9951172, "end": 388.96, "punctuated_word": "for", "speaker": 1, "speaker_confidence": 0.89746094, "start": 388.72, "word": "for" }, { "confidence": 0.9645996, "end": 389.2, "punctuated_word": "left,", "speaker": 1, "speaker_confidence": 0.89746094, "start": 388.96, "word": "left" }, { "confidence": 0.99902344, "end": 389.44, "punctuated_word": "but", "speaker": 1, "speaker_confidence": 0.89746094, "start": 389.2, "word": "but" }, { "confidence": 0.9980469, "end": 389.6, "punctuated_word": "it's", "speaker": 1, "speaker_confidence": 0.89746094, "start": 389.44, "word": "it's" }, { "confidence": 0.9902344, "end": 390.08, "punctuated_word": "actually", "speaker": 1, "speaker_confidence": 0.89746094, "start": 389.6, "word": "actually" }, { "confidence": 0.9902344, "end": 390.32, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.89746094, "start": 390.08, "word": "the" }, { "confidence": 1, "end": 390.63998, "punctuated_word": "opposite", "speaker": 1, "speaker_confidence": 0.89746094, "start": 390.32, "word": "opposite" }, { "confidence": 1, "end": 390.72, "punctuated_word": "of", "speaker": 1, "speaker_confidence": 0.89746094, "start": 390.63998, "word": "of" }, { "confidence": 0.8244629, "end": 390.96, "punctuated_word": "that.", "speaker": 1, "speaker_confidence": 0.89746094, "start": 390.72, "word": "that" }, { "confidence": 0.99609375, "end": 391.28, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.89746094, "start": 390.96, "word": "so" }, { "confidence": 0.9326172, "end": 391.52, "punctuated_word": "l", "speaker": 1, "speaker_confidence": 0.89746094, "start": 391.28, "word": "l" }, { "confidence": 0.9941406, "end": 391.76, "punctuated_word": "for", "speaker": 1, "speaker_confidence": 0.89746094, "start": 391.52, "word": "for" }, { "confidence": 0.9814453, "end": 392.26, "punctuated_word": "right.", "speaker": 1, "speaker_confidence": 0.89746094, "start": 391.76, "word": "right" }, { "confidence": 0.98706055, "end": 393.015, "punctuated_word": "Great.", "speaker": 1, "speaker_confidence": 0.89746094, "start": 392.535, "word": "great" }, { "confidence": 0.9951172, "end": 393.255, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.89746094, "start": 393.015, "word": "so" }, { "confidence": 0.94384766, "end": 393.415, "punctuated_word": "now", "speaker": 1, "speaker_confidence": 0.89746094, "start": 393.255, "word": "now" }, { "confidence": 0.80444336, "end": 393.73502, "punctuated_word": "we're", "speaker": 1, "speaker_confidence": 0.89746094, "start": 393.415, "word": "we're" }, { "confidence": 0.9399414, "end": 393.975, "punctuated_word": "we're", "speaker": 1, "speaker_confidence": 0.89746094, "start": 393.73502, "word": "we're" }, { "confidence": 0.9980469, "end": 394.295, "punctuated_word": "feeling", "speaker": 1, "speaker_confidence": 0.89746094, "start": 393.975, "word": "feeling" }, { "confidence": 1, "end": 394.695, "punctuated_word": "comfortable", "speaker": 1, "speaker_confidence": 0.89746094, "start": 394.295, "word": "comfortable" }, { "confidence": 1, "end": 394.93503, "punctuated_word": "with", "speaker": 1, "speaker_confidence": 0.89746094, "start": 394.695, "word": "with" }, { "confidence": 0.99902344, "end": 395.415, "punctuated_word": "navigating", "speaker": 1, "speaker_confidence": 0.89746094, "start": 394.93503, "word": "navigating" }, { "confidence": 0.97509766, "end": 395.575, "punctuated_word": "in", "speaker": 1, "speaker_confidence": 0.89746094, "start": 395.415, "word": "in" }, { "confidence": 0.8112793, "end": 396.075, "punctuated_word": "Vim.", "speaker": 1, "speaker_confidence": 0.89746094, "start": 395.575, "word": "vim" }, { "confidence": 0.9489746, "end": 396.535, "punctuated_word": "Again,", "speaker": 1, "speaker_confidence": 0.89746094, "start": 396.295, "word": "again" }, { "confidence": 0.9970703, "end": 396.695, "punctuated_word": "we're", "speaker": 1, "speaker_confidence": 0.89746094, "start": 396.535, "word": "we're" }, { "confidence": 0.9970703, "end": 396.855, "punctuated_word": "in", "speaker": 1, "speaker_confidence": 0.89746094, "start": 396.695, "word": "in" }, { "confidence": 0.9970703, "end": 397.17502, "punctuated_word": "command", "speaker": 1, "speaker_confidence": 0.89746094, "start": 396.855, "word": "command" }, { "confidence": 0.9370117, "end": 397.67502, "punctuated_word": "mode.", "speaker": 1, "speaker_confidence": 0.89746094, "start": 397.17502, "word": "mode" }, { "confidence": 0.98999023, "end": 398.05502, "punctuated_word": "We're", "speaker": 1, "speaker_confidence": 0.89746094, "start": 397.89502, "word": "we're" }, { "confidence": 0.9980469, "end": 398.45502, "punctuated_word": "moving", "speaker": 1, "speaker_confidence": 0.89746094, "start": 398.05502, "word": "moving" }, { "confidence": 1, "end": 398.695, "punctuated_word": "up", "speaker": 1, "speaker_confidence": 0.89746094, "start": 398.45502, "word": "up" }, { "confidence": 0.99902344, "end": 398.855, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.89746094, "start": 398.695, "word": "and" }, { "confidence": 1, "end": 399.095, "punctuated_word": "down", "speaker": 1, "speaker_confidence": 0.89746094, "start": 398.855, "word": "down" }, { "confidence": 0.9980469, "end": 399.55, "punctuated_word": "with", "speaker": 1, "speaker_confidence": 0.89746094, "start": 399.095, "word": "with" }, { "confidence": 0.51220703, "end": 400.37, "punctuated_word": "j", "speaker": 1, "speaker_confidence": 0.89746094, "start": 399.87, "word": "j" }, { "confidence": 0.86328125, "end": 401.07, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.89746094, "start": 400.83, "word": "and" }, { "confidence": 0.94970703, "end": 401.31, "punctuated_word": "k", "speaker": 1, "speaker_confidence": 0.89746094, "start": 401.07, "word": "k" }, { "confidence": 0.9277344, "end": 401.47, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.89746094, "start": 401.31, "word": "and" }, { "confidence": 0.98291016, "end": 401.71, "punctuated_word": "left", "speaker": 1, "speaker_confidence": 0.89746094, "start": 401.47, "word": "left" }, { "confidence": 0.9873047, "end": 402.03, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.89746094, "start": 401.71, "word": "and" }, { "confidence": 0.9921875, "end": 402.27, "punctuated_word": "right", "speaker": 1, "speaker_confidence": 0.89746094, "start": 402.03, "word": "right" }, { "confidence": 0.9951172, "end": 402.66998, "punctuated_word": "with", "speaker": 1, "speaker_confidence": 0.89746094, "start": 402.27, "word": "with" }, { "confidence": 0.74316406, "end": 402.83, "punctuated_word": "h", "speaker": 1, "speaker_confidence": 0.89746094, "start": 402.66998, "word": "h" }, { "confidence": 0.9350586, "end": 403.06998, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.89746094, "start": 402.83, "word": "and" }, { "confidence": 0.8730469, "end": 403.56998, "punctuated_word": "l.", "speaker": 1, "speaker_confidence": 0.89746094, "start": 403.06998, "word": "l" }, { "confidence": 0.97314453, "end": 403.78998, "punctuated_word": "The", "speaker": 1, "speaker_confidence": 0.47705078, "start": 403.71, "word": "the" }, { "confidence": 0.97802734, "end": 404.03, "punctuated_word": "other", "speaker": 1, "speaker_confidence": 0.47705078, "start": 403.78998, "word": "other" }, { "confidence": 1, "end": 404.19, "punctuated_word": "thing", "speaker": 1, "speaker_confidence": 0.47705078, "start": 404.03, "word": "thing" }, { "confidence": 0.9970703, "end": 404.50998, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.47705078, "start": 404.19, "word": "to" }, { "confidence": 0.6982422, "end": 404.59, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.47705078, "start": 404.50998, "word": "to" }, { "confidence": 0.99902344, "end": 404.90997, "punctuated_word": "remember", "speaker": 1, "speaker_confidence": 0.47705078, "start": 404.59, "word": "remember" }, { "confidence": 0.9970703, "end": 405.15, "punctuated_word": "is", "speaker": 1, "speaker_confidence": 0.47705078, "start": 404.90997, "word": "is" }, { "confidence": 0.91845703, "end": 405.22998, "punctuated_word": "if", "speaker": 1, "speaker_confidence": 0.47705078, "start": 405.15, "word": "if" }, { "confidence": 1, "end": 405.38998, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.47705078, "start": 405.22998, "word": "you" }, { "confidence": 1, "end": 405.55, "punctuated_word": "take", "speaker": 1, "speaker_confidence": 0.47705078, "start": 405.38998, "word": "take" }, { "confidence": 1, "end": 405.62997, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.81103516, "start": 405.55, "word": "a" }, { "confidence": 0.7937012, "end": 406.11, "punctuated_word": "look,", "speaker": 1, "speaker_confidence": 0.81103516, "start": 405.62997, "word": "look" }, { "confidence": 0.99902344, "end": 406.43, "punctuated_word": "pause", "speaker": 1, "speaker_confidence": 0.81103516, "start": 406.11, "word": "pause" }, { "confidence": 0.9980469, "end": 406.59, "punctuated_word": "for", "speaker": 1, "speaker_confidence": 0.81103516, "start": 406.43, "word": "for" }, { "confidence": 0.99902344, "end": 406.75, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.81103516, "start": 406.59, "word": "a" }, { "confidence": 0.90722656, "end": 407.22998, "punctuated_word": "second,", "speaker": 1, "speaker_confidence": 0.81103516, "start": 406.75, "word": "second" }, { "confidence": 0.9980469, "end": 407.38998, "punctuated_word": "look", "speaker": 1, "speaker_confidence": 0.81103516, "start": 407.22998, "word": "look" }, { "confidence": 0.99902344, "end": 407.55, "punctuated_word": "at", "speaker": 1, "speaker_confidence": 0.81103516, "start": 407.38998, "word": "at" }, { "confidence": 0.9941406, "end": 407.78998, "punctuated_word": "your", "speaker": 1, "speaker_confidence": 0.81103516, "start": 407.55, "word": "your" }, { "confidence": 0.9729004, "end": 408.27, "punctuated_word": "keyboard,", "speaker": 1, "speaker_confidence": 0.81103516, "start": 407.78998, "word": "keyboard" }, { "confidence": 0.9980469, "end": 408.43, "punctuated_word": "see", "speaker": 1, "speaker_confidence": 0.81103516, "start": 408.27, "word": "see" }, { "confidence": 0.9980469, "end": 408.66998, "punctuated_word": "where", "speaker": 1, "speaker_confidence": 0.81103516, "start": 408.43, "word": "where" }, { "confidence": 0.99609375, "end": 408.83, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.81103516, "start": 408.66998, "word": "the" }, { "confidence": 0.9980469, "end": 409.06998, "punctuated_word": "keys", "speaker": 1, "speaker_confidence": 0.81103516, "start": 408.83, "word": "keys" }, { "confidence": 0.9633789, "end": 409.235, "punctuated_word": "are", "speaker": 1, "speaker_confidence": 0.81103516, "start": 409.06998, "word": "are" }, { "confidence": 0.8173828, "end": 409.395, "punctuated_word": "on", "speaker": 1, "speaker_confidence": 0.81103516, "start": 409.235, "word": "on" }, { "confidence": 0.9970703, "end": 409.555, "punctuated_word": "your", "speaker": 1, "speaker_confidence": 0.81103516, "start": 409.395, "word": "your" }, { "confidence": 0.82373047, "end": 410.055, "punctuated_word": "keyboard.", "speaker": 1, "speaker_confidence": 0.81103516, "start": 409.555, "word": "keyboard" }, { "confidence": 0.9970703, "end": 410.59497, "punctuated_word": "You", "speaker": 1, "speaker_confidence": 0.81103516, "start": 410.435, "word": "you" }, { "confidence": 1, "end": 410.835, "punctuated_word": "should", "speaker": 1, "speaker_confidence": 0.81103516, "start": 410.59497, "word": "should" }, { "confidence": 1, "end": 411.155, "punctuated_word": "see", "speaker": 1, "speaker_confidence": 0.81103516, "start": 410.835, "word": "see" }, { "confidence": 1, "end": 411.395, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.81103516, "start": 411.155, "word": "the" }, { "confidence": 0.77246094, "end": 411.895, "punctuated_word": "h", "speaker": 1, "speaker_confidence": 0.81103516, "start": 411.395, "word": "h" }, { "confidence": 0.9902344, "end": 412.35498, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.81103516, "start": 412.19498, "word": "to" }, { "confidence": 1, "end": 412.51498, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.81103516, "start": 412.35498, "word": "the" }, { "confidence": 0.9951172, "end": 412.835, "punctuated_word": "left", "speaker": 1, "speaker_confidence": 0.81103516, "start": 412.51498, "word": "left" }, { "confidence": 1, "end": 413.07498, "punctuated_word": "of", "speaker": 1, "speaker_confidence": 0.81103516, "start": 412.835, "word": "of" }, { "confidence": 0.6118164, "end": 413.31497, "punctuated_word": "j", "speaker": 1, "speaker_confidence": 0.81103516, "start": 413.07498, "word": "j" }, { "confidence": 0.7602539, "end": 413.395, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.81103516, "start": 413.31497, "word": "and" }, { "confidence": 0.9025879, "end": 413.895, "punctuated_word": "k.", "speaker": 1, "speaker_confidence": 0.81103516, "start": 413.395, "word": "k" }, { "confidence": 0.9980469, "end": 414.115, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.81103516, "start": 413.955, "word": "so" }, { "confidence": 1, "end": 414.35498, "punctuated_word": "that", "speaker": 1, "speaker_confidence": 0.81103516, "start": 414.115, "word": "that" }, { "confidence": 1, "end": 414.59497, "punctuated_word": "also", "speaker": 1, "speaker_confidence": 0.81103516, "start": 414.35498, "word": "also" }, { "confidence": 1, "end": 414.91498, "punctuated_word": "helps", "speaker": 1, "speaker_confidence": 0.81103516, "start": 414.59497, "word": "helps" }, { "confidence": 0.9003906, "end": 415.07498, "punctuated_word": "me", "speaker": 1, "speaker_confidence": 0.81103516, "start": 414.91498, "word": "me" }, { "confidence": 0.80737305, "end": 415.47498, "punctuated_word": "remember.", "speaker": 1, "speaker_confidence": 0.81103516, "start": 415.07498, "word": "remember" }, { "confidence": 0.99902344, "end": 415.715, "punctuated_word": "And", "speaker": 1, "speaker_confidence": 0.81103516, "start": 415.47498, "word": "and" }, { "confidence": 1, "end": 416.115, "punctuated_word": "then", "speaker": 1, "speaker_confidence": 0.81103516, "start": 415.715, "word": "then" }, { "confidence": 0.78027344, "end": 416.615, "punctuated_word": "l", "speaker": 1, "speaker_confidence": 0.81103516, "start": 416.115, "word": "l" }, { "confidence": 0.99902344, "end": 426.475, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.80859375, "start": 426.435, "word": "so" }, { "confidence": 0.9951172, "end": 426.515, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.80859375, "start": 426.475, "word": "the" }, { "confidence": 0.9970703, "end": 426.755, "punctuated_word": "other", "speaker": 1, "speaker_confidence": 0.80859375, "start": 426.515, "word": "other" }, { "confidence": 0.99902344, "end": 426.83502, "punctuated_word": "thing", "speaker": 1, "speaker_confidence": 0.80859375, "start": 426.755, "word": "thing" }, { "confidence": 0.9980469, "end": 427.075, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.80859375, "start": 426.83502, "word": "i" }, { "confidence": 0.50683594, "end": 427.315, "punctuated_word": "wanna", "speaker": 1, "speaker_confidence": 0.80859375, "start": 427.075, "word": "wanna" }, { "confidence": 0.98535156, "end": 427.475, "punctuated_word": "point", "speaker": 1, "speaker_confidence": 0.80859375, "start": 427.315, "word": "point" }, { "confidence": 0.99902344, "end": 427.875, "punctuated_word": "out", "speaker": 1, "speaker_confidence": 0.80859375, "start": 427.475, "word": "out" }, { "confidence": 0.99316406, "end": 428.11502, "punctuated_word": "is", "speaker": 1, "speaker_confidence": 0.80859375, "start": 427.875, "word": "is" }, { "confidence": 0.9941406, "end": 428.27502, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.80859375, "start": 428.11502, "word": "you" }, { "confidence": 1, "end": 428.515, "punctuated_word": "still", "speaker": 1, "speaker_confidence": 0.80859375, "start": 428.27502, "word": "still" }, { "confidence": 0.99902344, "end": 428.67502, "punctuated_word": "have", "speaker": 1, "speaker_confidence": 0.80859375, "start": 428.515, "word": "have" }, { "confidence": 1, "end": 428.99503, "punctuated_word": "access", "speaker": 1, "speaker_confidence": 0.80859375, "start": 428.67502, "word": "access" }, { "confidence": 1, "end": 429.155, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.80859375, "start": 428.99503, "word": "to" }, { "confidence": 1, "end": 429.39502, "punctuated_word": "your", "speaker": 1, "speaker_confidence": 0.80859375, "start": 429.155, "word": "your" }, { "confidence": 0.842041, "end": 429.89502, "punctuated_word": "mouse.", "speaker": 1, "speaker_confidence": 0.80859375, "start": 429.39502, "word": "mouse" }, { "confidence": 0.9980469, "end": 430.195, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.80859375, "start": 429.95502, "word": "so" }, { "confidence": 0.99316406, "end": 430.27502, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.80859375, "start": 430.195, "word": "you" }, { "confidence": 1, "end": 430.515, "punctuated_word": "can", "speaker": 1, "speaker_confidence": 0.80859375, "start": 430.27502, "word": "can" }, { "confidence": 1, "end": 430.83502, "punctuated_word": "click", "speaker": 1, "speaker_confidence": 0.80859375, "start": 430.515, "word": "click" }, { "confidence": 1, "end": 430.915, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.80859375, "start": 430.83502, "word": "to" }, { "confidence": 1, "end": 431.155, "punctuated_word": "move", "speaker": 1, "speaker_confidence": 0.80859375, "start": 430.915, "word": "move" }, { "confidence": 0.96240234, "end": 431.655, "punctuated_word": "around.", "speaker": 1, "speaker_confidence": 0.80859375, "start": 431.155, "word": "around" }, { "confidence": 0.99902344, "end": 432.435, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.80859375, "start": 432.195, "word": "so" }, { "confidence": 0.9975586, "end": 432.83502, "punctuated_word": "there's", "speaker": 1, "speaker_confidence": 0.80859375, "start": 432.435, "word": "there's" }, { "confidence": 1, "end": 433.075, "punctuated_word": "no", "speaker": 1, "speaker_confidence": 0.80859375, "start": 432.83502, "word": "no" }, { "confidence": 1, "end": 433.23502, "punctuated_word": "need", "speaker": 1, "speaker_confidence": 0.80859375, "start": 433.075, "word": "need" }, { "confidence": 1, "end": 433.39502, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.80859375, "start": 433.23502, "word": "to" }, { "confidence": 1, "end": 433.635, "punctuated_word": "worry", "speaker": 1, "speaker_confidence": 0.80859375, "start": 433.39502, "word": "worry" }, { "confidence": 1, "end": 433.875, "punctuated_word": "about", "speaker": 1, "speaker_confidence": 0.80859375, "start": 433.635, "word": "about" }, { "confidence": 1, "end": 434.195, "punctuated_word": "getting", "speaker": 1, "speaker_confidence": 0.80859375, "start": 433.875, "word": "getting" }, { "confidence": 1, "end": 434.595, "punctuated_word": "stuck", "speaker": 1, "speaker_confidence": 0.80859375, "start": 434.195, "word": "stuck" }, { "confidence": 1, "end": 434.83502, "punctuated_word": "in", "speaker": 1, "speaker_confidence": 0.80859375, "start": 434.595, "word": "in" }, { "confidence": 0.88671875, "end": 435.33502, "punctuated_word": "Vim.", "speaker": 1, "speaker_confidence": 0.80859375, "start": 434.83502, "word": "vim" }, { "confidence": 0.9980469, "end": 435.65, "punctuated_word": "I'm", "speaker": 1, "speaker_confidence": 0.80859375, "start": 435.49, "word": "i'm" }, { "confidence": 1, "end": 435.70334, "punctuated_word": "sure", "speaker": 1, "speaker_confidence": 0.80859375, "start": 435.65, "word": "sure" }, { "confidence": 0.9980469, "end": 435.75665, "punctuated_word": "you've", "speaker": 1, "speaker_confidence": 0.80859375, "start": 435.70334, "word": "you've" }, { "confidence": 1, "end": 435.81, "punctuated_word": "heard", "speaker": 1, "speaker_confidence": 0.8408203, "start": 435.75665, "word": "heard" }, { "confidence": 0.99609375, "end": 436.31, "punctuated_word": "horror", "speaker": 1, "speaker_confidence": 0.8408203, "start": 435.81, "word": "horror" }, { "confidence": 0.76293945, "end": 437.11002, "punctuated_word": "stories.", "speaker": 1, "speaker_confidence": 0.8408203, "start": 436.61002, "word": "stories" }, { "confidence": 0.99902344, "end": 437.57, "punctuated_word": "People", "speaker": 1, "speaker_confidence": 0.8408203, "start": 437.33002, "word": "people" }, { "confidence": 0.9902344, "end": 437.81, "punctuated_word": "not", "speaker": 1, "speaker_confidence": 0.8408203, "start": 437.57, "word": "not" }, { "confidence": 0.9350586, "end": 437.97, "punctuated_word": "being", "speaker": 1, "speaker_confidence": 0.8408203, "start": 437.81, "word": "being" }, { "confidence": 1, "end": 438.21, "punctuated_word": "able", "speaker": 1, "speaker_confidence": 0.8408203, "start": 437.97, "word": "able" }, { "confidence": 1, "end": 438.37, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.8408203, "start": 438.21, "word": "to" }, { "confidence": 0.96972656, "end": 438.69, "punctuated_word": "exit", "speaker": 1, "speaker_confidence": 0.8408203, "start": 438.37, "word": "exit" }, { "confidence": 0.986084, "end": 439.19, "punctuated_word": "them.", "speaker": 1, "speaker_confidence": 0.8408203, "start": 438.69, "word": "them" }, { "confidence": 0.9067383, "end": 439.75, "punctuated_word": "Luckily,", "speaker": 1, "speaker_confidence": 0.8408203, "start": 439.25, "word": "luckily" }, { "confidence": 0.99902344, "end": 440.53, "punctuated_word": "using", "speaker": 1, "speaker_confidence": 0.8408203, "start": 440.21, "word": "using" }, { "confidence": 0.515625, "end": 440.85, "punctuated_word": "Vim", "speaker": 1, "speaker_confidence": 0.8408203, "start": 440.53, "word": "vim" }, { "confidence": 0.90625, "end": 441.17, "punctuated_word": "inside", "speaker": 1, "speaker_confidence": 0.8408203, "start": 440.85, "word": "inside" }, { "confidence": 0.7866211, "end": 441.33002, "punctuated_word": "of", "speaker": 1, "speaker_confidence": 0.8408203, "start": 441.17, "word": "of" }, { "confidence": 0.7265625, "end": 441.65, "punctuated_word": "Versus", "speaker": 1, "speaker_confidence": 0.8408203, "start": 441.33002, "word": "versus" }, { "confidence": 0.654541, "end": 442.15, "punctuated_word": "Code,", "speaker": 1, "speaker_confidence": 0.8408203, "start": 441.65, "word": "code" }, { "confidence": 0.9921875, "end": 442.45, "punctuated_word": "we're", "speaker": 1, "speaker_confidence": 0.8408203, "start": 442.21, "word": "we're" }, { "confidence": 1, "end": 442.69, "punctuated_word": "really", "speaker": 1, "speaker_confidence": 0.8408203, "start": 442.45, "word": "really" }, { "confidence": 1, "end": 442.93, "punctuated_word": "just", "speaker": 1, "speaker_confidence": 0.8408203, "start": 442.69, "word": "just" }, { "confidence": 1, "end": 443.43, "punctuated_word": "using", "speaker": 1, "speaker_confidence": 0.8408203, "start": 442.93, "word": "using" }, { "confidence": 0.8540039, "end": 443.73, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.8408203, "start": 443.57, "word": "the" }, { "confidence": 0.8989258, "end": 444.05, "punctuated_word": "Vim", "speaker": 1, "speaker_confidence": 0.8408203, "start": 443.73, "word": "vim" }, { "confidence": 0.87158203, "end": 444.21, "punctuated_word": "key", "speaker": 1, "speaker_confidence": 0.8408203, "start": 444.05, "word": "key" }, { "confidence": 0.88012695, "end": 444.705, "punctuated_word": "bindings.", "speaker": 1, "speaker_confidence": 0.8408203, "start": 444.21, "word": "bindings" }, { "confidence": 0.9941406, "end": 445.025, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.6635742, "start": 444.865, "word": "so" }, { "confidence": 0.97509766, "end": 445.10498, "punctuated_word": "we", "speaker": 1, "speaker_confidence": 0.6635742, "start": 445.025, "word": "we" }, { "confidence": 1, "end": 445.345, "punctuated_word": "don't", "speaker": 1, "speaker_confidence": 0.6635742, "start": 445.10498, "word": "don't" }, { "confidence": 1, "end": 445.50497, "punctuated_word": "have", "speaker": 1, "speaker_confidence": 0.6635742, "start": 445.345, "word": "have" }, { "confidence": 0.99902344, "end": 445.585, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.6635742, "start": 445.50497, "word": "to" }, { "confidence": 0.890625, "end": 445.82498, "punctuated_word": "worry.", "speaker": 1, "speaker_confidence": 0.6635742, "start": 445.585, "word": "worry" }, { "confidence": 1, "end": 445.985, "punctuated_word": "We", "speaker": 1, "speaker_confidence": 0.6635742, "start": 445.82498, "word": "we" }, { "confidence": 1, "end": 446.22498, "punctuated_word": "can", "speaker": 1, "speaker_confidence": 0.6635742, "start": 445.985, "word": "can" }, { "confidence": 1, "end": 446.54498, "punctuated_word": "close", "speaker": 1, "speaker_confidence": 0.6635742, "start": 446.22498, "word": "close" }, { "confidence": 0.8959961, "end": 446.705, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.6635742, "start": 446.54498, "word": "a" }, { "confidence": 0.91381836, "end": 446.94498, "punctuated_word": "file.", "speaker": 1, "speaker_confidence": 0.6635742, "start": 446.705, "word": "file" }, { "confidence": 1, "end": 447.10498, "punctuated_word": "We", "speaker": 1, "speaker_confidence": 0.6635742, "start": 446.94498, "word": "we" }, { "confidence": 1, "end": 447.26498, "punctuated_word": "can", "speaker": 1, "speaker_confidence": 0.6635742, "start": 447.10498, "word": "can" }, { "confidence": 0.7871094, "end": 447.76498, "punctuated_word": "navigate.", "speaker": 1, "speaker_confidence": 0.6635742, "start": 447.26498, "word": "navigate" }, { "confidence": 0.9399414, "end": 448.705, "punctuated_word": "Uh,", "speaker": 1, "speaker_confidence": 0.64697266, "start": 448.38498, "word": "uh" }, { "confidence": 0.9614258, "end": 448.78497, "punctuated_word": "no", "speaker": 1, "speaker_confidence": 0.64697266, "start": 448.705, "word": "no" }, { "confidence": 1, "end": 449.025, "punctuated_word": "need", "speaker": 1, "speaker_confidence": 0.64697266, "start": 448.78497, "word": "need" }, { "confidence": 1, "end": 449.425, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.64697266, "start": 449.025, "word": "to" }, { "confidence": 0.99121094, "end": 449.66498, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.64697266, "start": 449.425, "word": "to" }, { "confidence": 0.99902344, "end": 449.985, "punctuated_word": "fear", "speaker": 1, "speaker_confidence": 0.64697266, "start": 449.66498, "word": "fear" }, { "confidence": 0.99902344, "end": 450.305, "punctuated_word": "being", "speaker": 1, "speaker_confidence": 0.64697266, "start": 449.985, "word": "being" }, { "confidence": 1, "end": 450.705, "punctuated_word": "stuck", "speaker": 1, "speaker_confidence": 0.64697266, "start": 450.305, "word": "stuck" }, { "confidence": 0.9448242, "end": 450.865, "punctuated_word": "in", "speaker": 1, "speaker_confidence": 0.64697266, "start": 450.705, "word": "in" }, { "confidence": 0.7616374, "end": 451.365, "punctuated_word": "VIM.", "speaker": 1, "speaker_confidence": 0.64697266, "start": 450.865, "word": "vim" }, { "confidence": 0.9921875, "end": 451.82498, "punctuated_word": "Now", "speaker": 1, "speaker_confidence": 0.47607422, "start": 451.66498, "word": "now" }, { "confidence": 0.5620117, "end": 451.905, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.47607422, "start": 451.82498, "word": "the" }, { "confidence": 1, "end": 452.145, "punctuated_word": "next", "speaker": 1, "speaker_confidence": 0.47607422, "start": 451.905, "word": "next" }, { "confidence": 1, "end": 452.38498, "punctuated_word": "thing", "speaker": 1, "speaker_confidence": 0.47607422, "start": 452.145, "word": "thing" }, { "confidence": 0.9980469, "end": 452.465, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.47607422, "start": 452.38498, "word": "i" }, { "confidence": 0.5390625, "end": 452.705, "punctuated_word": "want", "speaker": 1, "speaker_confidence": 0.47607422, "start": 452.465, "word": "want" }, { "confidence": 0.99902344, "end": 452.78497, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.47607422, "start": 452.705, "word": "to" }, { "confidence": 1, "end": 452.94498, "punctuated_word": "point", "speaker": 1, "speaker_confidence": 0.5078125, "start": 452.78497, "word": "point" }, { "confidence": 1, "end": 453.25, "punctuated_word": "out", "speaker": 1, "speaker_confidence": 0.5078125, "start": 452.94498, "word": "out" }, { "confidence": 0.46118164, "end": 453.65, "punctuated_word": "is", "speaker": 1, "speaker_confidence": 0.5078125, "start": 453.33, "word": "is" }, { "confidence": 0.94140625, "end": 453.73, "punctuated_word": "some", "speaker": 1, "speaker_confidence": 0.5078125, "start": 453.65, "word": "some" }, { "confidence": 0.99902344, "end": 454.23, "punctuated_word": "editing", "speaker": 1, "speaker_confidence": 0.5078125, "start": 453.73, "word": "editing" }, { "confidence": 0.97143555, "end": 454.87, "punctuated_word": "commands.", "speaker": 1, "speaker_confidence": 0.5078125, "start": 454.37, "word": "commands" }, { "confidence": 0.99902344, "end": 455.25, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.6899414, "start": 455.01, "word": "so" }, { "confidence": 0.9951172, "end": 455.41, "punctuated_word": "we", "speaker": 1, "speaker_confidence": 0.6899414, "start": 455.25, "word": "we" }, { "confidence": 0.99902344, "end": 455.73, "punctuated_word": "will", "speaker": 1, "speaker_confidence": 0.6899414, "start": 455.41, "word": "will" }, { "confidence": 1, "end": 455.89, "punctuated_word": "talk", "speaker": 1, "speaker_confidence": 0.6899414, "start": 455.73, "word": "talk" }, { "confidence": 1, "end": 456.39, "punctuated_word": "about", "speaker": 1, "speaker_confidence": 0.6899414, "start": 455.89, "word": "about" }, { "confidence": 0.54919434, "end": 456.95, "punctuated_word": "I,", "speaker": 1, "speaker_confidence": 0.6899414, "start": 456.45, "word": "i" }, { "confidence": 0.9394531, "end": 457.49, "punctuated_word": "capital", "speaker": 1, "speaker_confidence": 0.6899414, "start": 457.09, "word": "capital" }, { "confidence": 0.69628906, "end": 457.99, "punctuated_word": "I,", "speaker": 1, "speaker_confidence": 0.6899414, "start": 457.49, "word": "i" }, { "confidence": 0.9135742, "end": 458.79, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.6899414, "start": 458.29, "word": "a" }, { "confidence": 0.6425781, "end": 459.49, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.6899414, "start": 459.25, "word": "and" }, { "confidence": 0.97265625, "end": 459.89, "punctuated_word": "capital", "speaker": 1, "speaker_confidence": 0.6899414, "start": 459.49, "word": "capital" }, { "confidence": 0.9863281, "end": 460.39, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.6899414, "start": 459.89, "word": "a" }, { "confidence": 0.8642578, "end": 460.77, "punctuated_word": "for", "speaker": 1, "speaker_confidence": 0.6899414, "start": 460.45, "word": "for" }, { "confidence": 0.9980469, "end": 461.27, "punctuated_word": "editing", "speaker": 1, "speaker_confidence": 0.6899414, "start": 460.77, "word": "editing" }, { "confidence": 0.9448242, "end": 461.57, "punctuated_word": "in", "speaker": 1, "speaker_confidence": 0.6899414, "start": 461.33, "word": "in" }, { "confidence": 0.88964844, "end": 461.65, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.6899414, "start": 461.57, "word": "a" }, { "confidence": 0.9970703, "end": 462.15, "punctuated_word": "line.", "speaker": 1, "speaker_confidence": 0.6899414, "start": 461.65, "word": "line" }, { "confidence": 0.9970703, "end": 462.705, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.30810547, "start": 462.54498, "word": "so" }, { "confidence": 0.98339844, "end": 462.785, "punctuated_word": "we're", "speaker": 1, "speaker_confidence": 0.30810547, "start": 462.705, "word": "we're" }, { "confidence": 0.96435547, "end": 463.10498, "punctuated_word": "gonna", "speaker": 1, "speaker_confidence": 0.30810547, "start": 462.785, "word": "gonna" }, { "confidence": 0.9921875, "end": 463.26498, "punctuated_word": "go", "speaker": 1, "speaker_confidence": 0.30810547, "start": 463.10498, "word": "go" }, { "confidence": 1, "end": 463.505, "punctuated_word": "back", "speaker": 1, "speaker_confidence": 0.30810547, "start": 463.26498, "word": "back" }, { "confidence": 1, "end": 463.585, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.6923828, "start": 463.505, "word": "to" }, { "confidence": 0.99902344, "end": 463.745, "punctuated_word": "our", "speaker": 1, "speaker_confidence": 0.6923828, "start": 463.585, "word": "our" }, { "confidence": 0.88720703, "end": 464.145, "punctuated_word": "hello", "speaker": 1, "speaker_confidence": 0.6923828, "start": 463.745, "word": "hello" }, { "confidence": 0.90722656, "end": 464.645, "punctuated_word": "world", "speaker": 1, "speaker_confidence": 0.6923828, "start": 464.145, "word": "world" }, { "confidence": 0.7944336, "end": 465.285, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.6923828, "start": 464.785, "word": "and" }, { "confidence": 0.9980469, "end": 465.66498, "punctuated_word": "you'll", "speaker": 1, "speaker_confidence": 0.6923828, "start": 465.425, "word": "you'll" }, { "confidence": 1, "end": 465.82498, "punctuated_word": "see", "speaker": 1, "speaker_confidence": 0.6923828, "start": 465.66498, "word": "see" }, { "confidence": 0.9970703, "end": 465.985, "punctuated_word": "right", "speaker": 1, "speaker_confidence": 0.6923828, "start": 465.82498, "word": "right" }, { "confidence": 1, "end": 466.225, "punctuated_word": "now", "speaker": 1, "speaker_confidence": 0.6923828, "start": 465.985, "word": "now" }, { "confidence": 0.8642578, "end": 466.38498, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.6923828, "start": 466.225, "word": "the" }, { "confidence": 0.9326172, "end": 466.785, "punctuated_word": "cursor", "speaker": 1, "speaker_confidence": 0.6923828, "start": 466.38498, "word": "cursor" }, { "confidence": 0.9658203, "end": 466.865, "punctuated_word": "is", "speaker": 1, "speaker_confidence": 0.6923828, "start": 466.785, "word": "is" }, { "confidence": 0.94140625, "end": 467.10498, "punctuated_word": "at", "speaker": 1, "speaker_confidence": 0.6923828, "start": 466.865, "word": "at" }, { "confidence": 0.9980469, "end": 467.26498, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.6923828, "start": 467.10498, "word": "the" }, { "confidence": 1, "end": 467.425, "punctuated_word": "end", "speaker": 1, "speaker_confidence": 0.6923828, "start": 467.26498, "word": "end" }, { "confidence": 0.99902344, "end": 467.585, "punctuated_word": "of", "speaker": 1, "speaker_confidence": 0.6923828, "start": 467.425, "word": "of" }, { "confidence": 0.8457031, "end": 467.66498, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.6484375, "start": 467.585, "word": "the" }, { "confidence": 0.9921875, "end": 468.16498, "punctuated_word": "line.", "speaker": 1, "speaker_confidence": 0.6484375, "start": 467.66498, "word": "line" }, { "confidence": 0.99316406, "end": 468.705, "punctuated_word": "If", "speaker": 1, "speaker_confidence": 0.6484375, "start": 468.38498, "word": "if" }, { "confidence": 0.97509766, "end": 468.785, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.6484375, "start": 468.705, "word": "i" }, { "confidence": 0.99902344, "end": 469.26498, "punctuated_word": "hit", "speaker": 1, "speaker_confidence": 0.6484375, "start": 468.785, "word": "hit" }, { "confidence": 0.98095703, "end": 469.66498, "punctuated_word": "shift", "speaker": 1, "speaker_confidence": 0.6484375, "start": 469.26498, "word": "shift" }, { "confidence": 0.7373047, "end": 469.82498, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.6484375, "start": 469.66498, "word": "i" }, { "confidence": 0.97998047, "end": 470.065, "punctuated_word": "or", "speaker": 1, "speaker_confidence": 0.6484375, "start": 469.82498, "word": "or" }, { "confidence": 0.9482422, "end": 470.465, "punctuated_word": "capital", "speaker": 1, "speaker_confidence": 0.6484375, "start": 470.065, "word": "capital" }, { "confidence": 0.8359375, "end": 470.79, "punctuated_word": "I,", "speaker": 1, "speaker_confidence": 0.6484375, "start": 470.465, "word": "i" }, { "confidence": 0.9970703, "end": 471.11002, "punctuated_word": "It'll", "speaker": 1, "speaker_confidence": 0.6484375, "start": 470.87, "word": "it'll" }, { "confidence": 0.99902344, "end": 471.27002, "punctuated_word": "move", "speaker": 1, "speaker_confidence": 0.6484375, "start": 471.11002, "word": "move" }, { "confidence": 1, "end": 471.75, "punctuated_word": "me", "speaker": 1, "speaker_confidence": 0.6484375, "start": 471.27002, "word": "me" }, { "confidence": 0.9941406, "end": 471.99002, "punctuated_word": "in", "speaker": 1, "speaker_confidence": 0.6484375, "start": 471.75, "word": "in" }, { "confidence": 0.9970703, "end": 472.39, "punctuated_word": "insert", "speaker": 1, "speaker_confidence": 0.6484375, "start": 471.99002, "word": "insert" }, { "confidence": 0.99902344, "end": 472.63, "punctuated_word": "mode", "speaker": 1, "speaker_confidence": 0.6484375, "start": 472.39, "word": "mode" }, { "confidence": 0.99902344, "end": 472.71002, "punctuated_word": "at", "speaker": 1, "speaker_confidence": 0.60498047, "start": 472.63, "word": "at" }, { "confidence": 1, "end": 472.79, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.60498047, "start": 472.71002, "word": "the" }, { "confidence": 1, "end": 473.29, "punctuated_word": "beginning", "speaker": 1, "speaker_confidence": 0.60498047, "start": 472.79, "word": "beginning" }, { "confidence": 0.51171875, "end": 473.59, "punctuated_word": "so", "speaker": 1, "speaker_confidence": 0.60498047, "start": 473.43002, "word": "so" }, { "confidence": 0.9980469, "end": 473.67, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.60498047, "start": 473.59, "word": "i" }, { "confidence": 0.96875, "end": 473.83002, "punctuated_word": "could", "speaker": 1, "speaker_confidence": 0.60498047, "start": 473.67, "word": "could" }, { "confidence": 1, "end": 473.99002, "punctuated_word": "write", "speaker": 1, "speaker_confidence": 0.60498047, "start": 473.83002, "word": "write" }, { "confidence": 1, "end": 474.15, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.60498047, "start": 473.99002, "word": "a" }, { "confidence": 1, "end": 474.47, "punctuated_word": "word", "speaker": 1, "speaker_confidence": 0.60498047, "start": 474.15, "word": "word" }, { "confidence": 0.8022461, "end": 474.97, "punctuated_word": "like,", "speaker": 1, "speaker_confidence": 0.60498047, "start": 474.47, "word": "like" }, { "confidence": 0.9980469, "end": 475.43002, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.60498047, "start": 475.35, "word": "i" }, { "confidence": 0.99902344, "end": 475.67, "punctuated_word": "don't", "speaker": 1, "speaker_confidence": 0.60498047, "start": 475.43002, "word": "don't" }, { "confidence": 0.9741211, "end": 476.17, "punctuated_word": "know,", "speaker": 1, "speaker_confidence": 0.60498047, "start": 475.67, "word": "know" }, { "confidence": 0.9589844, "end": 476.81, "punctuated_word": "Joe.", "speaker": 1, "speaker_confidence": 0.60498047, "start": 476.31, "word": "joe" }, { "confidence": 0.9970703, "end": 477.19, "punctuated_word": "And", "speaker": 1, "speaker_confidence": 0.7246094, "start": 476.95, "word": "and" }, { "confidence": 0.99609375, "end": 477.27002, "punctuated_word": "then", "speaker": 1, "speaker_confidence": 0.7246094, "start": 477.19, "word": "then" }, { "confidence": 0.9194336, "end": 477.51, "punctuated_word": "if", "speaker": 1, "speaker_confidence": 0.7246094, "start": 477.27002, "word": "if" }, { "confidence": 0.99902344, "end": 477.59, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.7246094, "start": 477.51, "word": "i" }, { "confidence": 0.99902344, "end": 477.83002, "punctuated_word": "hit", "speaker": 1, "speaker_confidence": 0.7246094, "start": 477.59, "word": "hit" }, { "confidence": 0.9682617, "end": 478.23, "punctuated_word": "escape,", "speaker": 1, "speaker_confidence": 0.7246094, "start": 477.83002, "word": "escape" }, { "confidence": 1, "end": 478.39, "punctuated_word": "I'm", "speaker": 1, "speaker_confidence": 0.7246094, "start": 478.23, "word": "i'm" }, { "confidence": 1, "end": 478.63, "punctuated_word": "back", "speaker": 1, "speaker_confidence": 0.7246094, "start": 478.39, "word": "back" }, { "confidence": 1, "end": 478.79, "punctuated_word": "in", "speaker": 1, "speaker_confidence": 0.7246094, "start": 478.63, "word": "in" }, { "confidence": 0.99609375, "end": 479.19, "punctuated_word": "command", "speaker": 1, "speaker_confidence": 0.7246094, "start": 478.79, "word": "command" }, { "confidence": 0.99902344, "end": 479.51, "punctuated_word": "mode", "speaker": 1, "speaker_confidence": 0.7246094, "start": 479.19, "word": "mode" }, { "confidence": 0.97998047, "end": 479.75, "punctuated_word": "where", "speaker": 1, "speaker_confidence": 0.7246094, "start": 479.51, "word": "where" }, { "confidence": 0.99902344, "end": 479.83002, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.7246094, "start": 479.75, "word": "i" }, { "confidence": 1, "end": 479.99002, "punctuated_word": "can", "speaker": 1, "speaker_confidence": 0.7246094, "start": 479.83002, "word": "can" }, { "confidence": 1, "end": 480.23, "punctuated_word": "move", "speaker": 1, "speaker_confidence": 0.7246094, "start": 479.99002, "word": "move" }, { "confidence": 0.99902344, "end": 480.73, "punctuated_word": "around.", "speaker": 1, "speaker_confidence": 0.7246094, "start": 480.23, "word": "around" }, { "confidence": 0.984375, "end": 481.175, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.5004883, "start": 481.01498, "word": "so" }, { "confidence": 0.98950195, "end": 481.335, "punctuated_word": "you'll", "speaker": 1, "speaker_confidence": 0.5004883, "start": 481.175, "word": "you'll" }, { "confidence": 0.99902344, "end": 481.835, "punctuated_word": "notice", "speaker": 1, "speaker_confidence": 0.5004883, "start": 481.335, "word": "notice" }, { "confidence": 0.8432617, "end": 482.455, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.5004883, "start": 482.13498, "word": "the" }, { "confidence": 0.73583984, "end": 482.615, "punctuated_word": "one", "speaker": 1, "speaker_confidence": 0.5004883, "start": 482.455, "word": "one" }, { "confidence": 1, "end": 482.935, "punctuated_word": "thing", "speaker": 1, "speaker_confidence": 0.5004883, "start": 482.615, "word": "thing" }, { "confidence": 1, "end": 483.095, "punctuated_word": "that", "speaker": 1, "speaker_confidence": 0.5004883, "start": 482.935, "word": "that" }, { "confidence": 0.99902344, "end": 483.255, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.5004883, "start": 483.095, "word": "i" }, { "confidence": 0.5576172, "end": 483.495, "punctuated_word": "wanna", "speaker": 1, "speaker_confidence": 0.5004883, "start": 483.255, "word": "wanna" }, { "confidence": 0.99316406, "end": 483.735, "punctuated_word": "point", "speaker": 1, "speaker_confidence": 0.5004883, "start": 483.495, "word": "point" }, { "confidence": 0.99902344, "end": 483.815, "punctuated_word": "out", "speaker": 1, "speaker_confidence": 0.3828125, "start": 483.735, "word": "out" }, { "confidence": 0.73095703, "end": 484.055, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.3828125, "start": 483.815, "word": "to" }, { "confidence": 0.82714844, "end": 484.29498, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.3828125, "start": 484.055, "word": "a" }, { "confidence": 0.99902344, "end": 484.775, "punctuated_word": "tip", "speaker": 1, "speaker_confidence": 0.3828125, "start": 484.29498, "word": "tip" }, { "confidence": 0.94189453, "end": 485.01498, "punctuated_word": "is", "speaker": 1, "speaker_confidence": 0.3828125, "start": 484.775, "word": "is" }, { "confidence": 0.98095703, "end": 485.175, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.3828125, "start": 485.01498, "word": "a" }, { "confidence": 1, "end": 485.255, "punctuated_word": "lot", "speaker": 1, "speaker_confidence": 0.70214844, "start": 485.175, "word": "lot" }, { "confidence": 1, "end": 485.57498, "punctuated_word": "of", "speaker": 1, "speaker_confidence": 0.70214844, "start": 485.255, "word": "of" }, { "confidence": 0.50341797, "end": 485.815, "punctuated_word": "Vim", "speaker": 1, "speaker_confidence": 0.70214844, "start": 485.57498, "word": "vim" }, { "confidence": 0.99121094, "end": 486.315, "punctuated_word": "users", "speaker": 1, "speaker_confidence": 0.70214844, "start": 485.815, "word": "users" }, { "confidence": 0.98950195, "end": 487.035, "punctuated_word": "remap", "speaker": 1, "speaker_confidence": 0.70214844, "start": 486.535, "word": "remap" }, { "confidence": 0.98828125, "end": 487.57498, "punctuated_word": "their", "speaker": 1, "speaker_confidence": 0.70214844, "start": 487.255, "word": "their" }, { "confidence": 0.9790039, "end": 487.815, "punctuated_word": "caps", "speaker": 1, "speaker_confidence": 0.70214844, "start": 487.57498, "word": "caps" }, { "confidence": 0.9716797, "end": 488.055, "punctuated_word": "lock", "speaker": 1, "speaker_confidence": 0.70214844, "start": 487.815, "word": "lock" }, { "confidence": 0.9980469, "end": 488.29498, "punctuated_word": "key", "speaker": 1, "speaker_confidence": 0.70214844, "start": 488.055, "word": "key" }, { "confidence": 1, "end": 488.535, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.70214844, "start": 488.29498, "word": "to" }, { "confidence": 0.99609375, "end": 489.035, "punctuated_word": "escape.", "speaker": 1, "speaker_confidence": 0.70214844, "start": 488.535, "word": "escape" }, { "confidence": 0.9970703, "end": 489.41498, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.70214844, "start": 489.255, "word": "so" }, { "confidence": 0.99316406, "end": 489.735, "punctuated_word": "instead", "speaker": 1, "speaker_confidence": 0.70214844, "start": 489.41498, "word": "instead" }, { "confidence": 1, "end": 490.235, "punctuated_word": "of", "speaker": 1, "speaker_confidence": 0.70214844, "start": 489.735, "word": "of" }, { "confidence": 0.67333984, "end": 490.73, "punctuated_word": "Caps", "speaker": 1, "speaker_confidence": 0.70214844, "start": 490.49, "word": "caps" }, { "confidence": 0.796875, "end": 491.13, "punctuated_word": "lock", "speaker": 1, "speaker_confidence": 0.70214844, "start": 490.73, "word": "lock" }, { "confidence": 0.8911133, "end": 491.37, "punctuated_word": "being", "speaker": 1, "speaker_confidence": 0.70214844, "start": 491.13, "word": "being" }, { "confidence": 0.9902344, "end": 491.61, "punctuated_word": "caps", "speaker": 1, "speaker_confidence": 0.70214844, "start": 491.37, "word": "caps" }, { "confidence": 0.9873047, "end": 491.77, "punctuated_word": "lock", "speaker": 1, "speaker_confidence": 0.70214844, "start": 491.61, "word": "lock" }, { "confidence": 0.8701172, "end": 492.01, "punctuated_word": "when", "speaker": 1, "speaker_confidence": 0.70214844, "start": 491.77, "word": "when" }, { "confidence": 0.87841797, "end": 492.09, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.70214844, "start": 492.01, "word": "i" }, { "confidence": 1, "end": 492.17, "punctuated_word": "hit", "speaker": 1, "speaker_confidence": 0.5209961, "start": 492.09, "word": "hit" }, { "confidence": 1, "end": 492.33, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.5209961, "start": 492.17, "word": "the" }, { "confidence": 0.9543457, "end": 492.57, "punctuated_word": "key,", "speaker": 1, "speaker_confidence": 0.5209961, "start": 492.33, "word": "key" }, { "confidence": 0.99902344, "end": 492.81, "punctuated_word": "it", "speaker": 1, "speaker_confidence": 0.5209961, "start": 492.57, "word": "it" }, { "confidence": 0.9902344, "end": 493.29, "punctuated_word": "actually", "speaker": 1, "speaker_confidence": 0.5209961, "start": 492.81, "word": "actually" }, { "confidence": 0.99902344, "end": 493.45, "punctuated_word": "is", "speaker": 1, "speaker_confidence": 0.5209961, "start": 493.29, "word": "is" }, { "confidence": 0.767334, "end": 493.95, "punctuated_word": "escape.", "speaker": 1, "speaker_confidence": 0.5209961, "start": 493.45, "word": "escape" }, { "confidence": 0.9980469, "end": 494.57, "punctuated_word": "And", "speaker": 1, "speaker_confidence": 0.77246094, "start": 494.41, "word": "and" }, { "confidence": 0.97998047, "end": 494.73, "punctuated_word": "so", "speaker": 1, "speaker_confidence": 0.77246094, "start": 494.57, "word": "so" }, { "confidence": 0.8640137, "end": 494.97, "punctuated_word": "it's", "speaker": 1, "speaker_confidence": 0.77246094, "start": 494.73, "word": "it's" }, { "confidence": 1, "end": 495.05, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.77246094, "start": 494.97, "word": "a" }, { "confidence": 1, "end": 495.29, "punctuated_word": "lot", "speaker": 1, "speaker_confidence": 0.77246094, "start": 495.05, "word": "lot" }, { "confidence": 1, "end": 495.53, "punctuated_word": "more", "speaker": 1, "speaker_confidence": 0.77246094, "start": 495.29, "word": "more" }, { "confidence": 0.9802246, "end": 496.01, "punctuated_word": "accessible.", "speaker": 1, "speaker_confidence": 0.77246094, "start": 495.53, "word": "accessible" }, { "confidence": 0.99853516, "end": 496.25, "punctuated_word": "It's", "speaker": 1, "speaker_confidence": 0.77246094, "start": 496.01, "word": "it's" }, { "confidence": 0.9736328, "end": 496.65, "punctuated_word": "closer.", "speaker": 1, "speaker_confidence": 0.77246094, "start": 496.25, "word": "closer" }, { "confidence": 0.99902344, "end": 496.81, "punctuated_word": "It's", "speaker": 1, "speaker_confidence": 0.77246094, "start": 496.65, "word": "it's" }, { "confidence": 1, "end": 496.97, "punctuated_word": "right", "speaker": 1, "speaker_confidence": 0.77246094, "start": 496.81, "word": "right" }, { "confidence": 1, "end": 497.21, "punctuated_word": "next", "speaker": 1, "speaker_confidence": 0.77246094, "start": 496.97, "word": "next" }, { "confidence": 1, "end": 497.29, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.77246094, "start": 497.21, "word": "to" }, { "confidence": 1, "end": 497.45, "punctuated_word": "my", "speaker": 1, "speaker_confidence": 0.77246094, "start": 497.29, "word": "my" }, { "confidence": 0.93066406, "end": 497.95, "punctuated_word": "pinky", "speaker": 1, "speaker_confidence": 0.77246094, "start": 497.45, "word": "pinky" }, { "confidence": 0.9614258, "end": 498.475, "punctuated_word": "Rather", "speaker": 1, "speaker_confidence": 0.77246094, "start": 498.23502, "word": "rather" }, { "confidence": 0.99902344, "end": 498.55502, "punctuated_word": "than", "speaker": 1, "speaker_confidence": 0.77246094, "start": 498.475, "word": "than" }, { "confidence": 1, "end": 498.95502, "punctuated_word": "having", "speaker": 1, "speaker_confidence": 0.77246094, "start": 498.55502, "word": "having" }, { "confidence": 0.984375, "end": 499.035, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.77246094, "start": 498.95502, "word": "to" }, { "confidence": 1, "end": 499.355, "punctuated_word": "reach", "speaker": 1, "speaker_confidence": 0.77246094, "start": 499.035, "word": "reach" }, { "confidence": 0.99902344, "end": 499.515, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.77246094, "start": 499.355, "word": "to" }, { "confidence": 0.99902344, "end": 499.755, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.77246094, "start": 499.515, "word": "the" }, { "confidence": 0.99902344, "end": 500.155, "punctuated_word": "corner", "speaker": 1, "speaker_confidence": 0.77246094, "start": 499.755, "word": "corner" }, { "confidence": 0.9951172, "end": 500.23502, "punctuated_word": "of", "speaker": 1, "speaker_confidence": 0.77246094, "start": 500.155, "word": "of" }, { "confidence": 0.99902344, "end": 500.39502, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.77246094, "start": 500.23502, "word": "the" }, { "confidence": 1, "end": 500.795, "punctuated_word": "keyboard", "speaker": 1, "speaker_confidence": 0.77246094, "start": 500.39502, "word": "keyboard" }, { "confidence": 0.9970703, "end": 501.035, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.77246094, "start": 500.795, "word": "and" }, { "confidence": 0.99316406, "end": 501.195, "punctuated_word": "hit", "speaker": 1, "speaker_confidence": 0.77246094, "start": 501.035, "word": "hit" }, { "confidence": 0.9951172, "end": 501.695, "punctuated_word": "escape.", "speaker": 1, "speaker_confidence": 0.77246094, "start": 501.195, "word": "escape" }, { "confidence": 0.9970703, "end": 502.155, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.5361328, "start": 501.99503, "word": "so" }, { "confidence": 0.99609375, "end": 502.315, "punctuated_word": "that's", "speaker": 1, "speaker_confidence": 0.5361328, "start": 502.155, "word": "that's" }, { "confidence": 0.9760742, "end": 502.475, "punctuated_word": "one", "speaker": 1, "speaker_confidence": 0.5361328, "start": 502.315, "word": "one" }, { "confidence": 1, "end": 502.635, "punctuated_word": "thing", "speaker": 1, "speaker_confidence": 0.5361328, "start": 502.475, "word": "thing" }, { "confidence": 0.9785156, "end": 502.875, "punctuated_word": "I'd", "speaker": 1, "speaker_confidence": 0.5361328, "start": 502.635, "word": "i'd" }, { "confidence": 0.99902344, "end": 503.27502, "punctuated_word": "encourage", "speaker": 1, "speaker_confidence": 0.5361328, "start": 502.875, "word": "encourage" }, { "confidence": 0.99902344, "end": 503.515, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.5361328, "start": 503.27502, "word": "you" }, { "confidence": 0.99902344, "end": 503.67502, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.5361328, "start": 503.515, "word": "to" }, { "confidence": 1, "end": 503.83502, "punctuated_word": "look", "speaker": 1, "speaker_confidence": 0.5361328, "start": 503.67502, "word": "look" }, { "confidence": 0.85839844, "end": 504.33502, "punctuated_word": "into,", "speaker": 1, "speaker_confidence": 0.5361328, "start": 503.83502, "word": "into" }, { "confidence": 0.9921875, "end": 505.035, "punctuated_word": "uh,", "speaker": 1, "speaker_confidence": 0.94433594, "start": 504.71503, "word": "uh" }, { "confidence": 0.9980469, "end": 505.515, "punctuated_word": "remapping", "speaker": 1, "speaker_confidence": 0.94433594, "start": 505.035, "word": "remapping" }, { "confidence": 0.99609375, "end": 505.83502, "punctuated_word": "your", "speaker": 1, "speaker_confidence": 0.94433594, "start": 505.515, "word": "your" }, { "confidence": 0.9316406, "end": 506.075, "punctuated_word": "caps", "speaker": 1, "speaker_confidence": 0.94433594, "start": 505.83502, "word": "caps" }, { "confidence": 0.9667969, "end": 506.315, "punctuated_word": "lock", "speaker": 1, "speaker_confidence": 0.94433594, "start": 506.075, "word": "lock" }, { "confidence": 0.9892578, "end": 506.55502, "punctuated_word": "key", "speaker": 1, "speaker_confidence": 0.94433594, "start": 506.315, "word": "key" }, { "confidence": 0.99902344, "end": 506.71503, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.94433594, "start": 506.55502, "word": "to" }, { "confidence": 0.99902344, "end": 507.16, "punctuated_word": "escape", "speaker": 1, "speaker_confidence": 0.94433594, "start": 506.71503, "word": "escape" }, { "confidence": 0.9550781, "end": 507.48, "punctuated_word": "If", "speaker": 1, "speaker_confidence": 0.94433594, "start": 507.32, "word": "if" }, { "confidence": 0.9970703, "end": 507.64, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.94433594, "start": 507.48, "word": "you" }, { "confidence": 0.36816406, "end": 507.88, "punctuated_word": "are", "speaker": 1, "speaker_confidence": 0.94433594, "start": 507.64, "word": "are" }, { "confidence": 1, "end": 508.12, "punctuated_word": "serious", "speaker": 1, "speaker_confidence": 0.94433594, "start": 507.88, "word": "serious" }, { "confidence": 0.99902344, "end": 508.44, "punctuated_word": "about", "speaker": 1, "speaker_confidence": 0.94433594, "start": 508.12, "word": "about" }, { "confidence": 1, "end": 508.94, "punctuated_word": "learning", "speaker": 1, "speaker_confidence": 0.94433594, "start": 508.44, "word": "learning" }, { "confidence": 0.6619873, "end": 509.48, "punctuated_word": "them.", "speaker": 1, "speaker_confidence": 0.94433594, "start": 509.32, "word": "them" }, { "confidence": 0.984375, "end": 509.64, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.94433594, "start": 509.48, "word": "so" }, { "confidence": 0.7651367, "end": 509.72, "punctuated_word": "we", "speaker": 1, "speaker_confidence": 0.94433594, "start": 509.64, "word": "we" }, { "confidence": 1, "end": 509.96, "punctuated_word": "just", "speaker": 1, "speaker_confidence": 0.94433594, "start": 509.72, "word": "just" }, { "confidence": 1, "end": 510.46, "punctuated_word": "covered", "speaker": 1, "speaker_confidence": 0.94433594, "start": 509.96, "word": "covered" }, { "confidence": 0.97265625, "end": 511, "punctuated_word": "capital", "speaker": 1, "speaker_confidence": 0.94433594, "start": 510.52, "word": "capital" }, { "confidence": 0.8496094, "end": 511.24, "punctuated_word": "I.", "speaker": 1, "speaker_confidence": 0.94433594, "start": 511, "word": "i" }, { "confidence": 0.9941406, "end": 511.4, "punctuated_word": "We", "speaker": 1, "speaker_confidence": 0.94433594, "start": 511.24, "word": "we" }, { "confidence": 1, "end": 511.64, "punctuated_word": "know", "speaker": 1, "speaker_confidence": 0.94433594, "start": 511.4, "word": "know" }, { "confidence": 1, "end": 511.96, "punctuated_word": "that", "speaker": 1, "speaker_confidence": 0.94433594, "start": 511.64, "word": "that" }, { "confidence": 0.9592285, "end": 512.45996, "punctuated_word": "lowercase", "speaker": 1, "speaker_confidence": 0.94433594, "start": 511.96, "word": "lowercase" }, { "confidence": 0.9370117, "end": 513.18, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.94433594, "start": 512.68, "word": "i" }, { "confidence": 0.99121094, "end": 513.8, "punctuated_word": "is", "speaker": 1, "speaker_confidence": 0.94433594, "start": 513.4, "word": "is" }, { "confidence": 0.9902344, "end": 514.2, "punctuated_word": "insert", "speaker": 1, "speaker_confidence": 0.94433594, "start": 513.8, "word": "insert" }, { "confidence": 0.98095703, "end": 514.6, "punctuated_word": "mode.", "speaker": 1, "speaker_confidence": 0.94433594, "start": 514.2, "word": "mode" }, { "confidence": 0.98291016, "end": 515.1, "punctuated_word": "Right?", "speaker": 1, "speaker_confidence": 0.94433594, "start": 514.6, "word": "right" }, { "confidence": 0.9902344, "end": 515.485, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.94433594, "start": 515.32495, "word": "so" }, { "confidence": 0.9838867, "end": 515.64496, "punctuated_word": "now", "speaker": 1, "speaker_confidence": 0.94433594, "start": 515.485, "word": "now" }, { "confidence": 0.7583008, "end": 515.805, "punctuated_word": "what", "speaker": 1, "speaker_confidence": 0.94433594, "start": 515.64496, "word": "what" }, { "confidence": 0.9970703, "end": 515.88495, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.48339844, "start": 515.805, "word": "i" }, { "confidence": 0.6357422, "end": 516.005, "punctuated_word": "want", "speaker": 1, "speaker_confidence": 0.48339844, "start": 515.88495, "word": "want" }, { "confidence": 0.9970703, "end": 516.125, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.48339844, "start": 516.005, "word": "to" }, { "confidence": 1, "end": 516.285, "punctuated_word": "talk", "speaker": 1, "speaker_confidence": 0.48339844, "start": 516.125, "word": "talk" }, { "confidence": 1, "end": 516.445, "punctuated_word": "about", "speaker": 1, "speaker_confidence": 0.48339844, "start": 516.285, "word": "about" }, { "confidence": 0.99902344, "end": 516.685, "punctuated_word": "is", "speaker": 1, "speaker_confidence": 0.48339844, "start": 516.445, "word": "is" }, { "confidence": 0.8691406, "end": 517.165, "punctuated_word": "lowercase", "speaker": 1, "speaker_confidence": 0.48339844, "start": 516.685, "word": "lowercase" }, { "confidence": 0.98339844, "end": 517.565, "punctuated_word": "a.", "speaker": 1, "speaker_confidence": 0.48339844, "start": 517.165, "word": "a" }, { "confidence": 0.9921875, "end": 517.64496, "punctuated_word": "The", "speaker": 1, "speaker_confidence": 0.55371094, "start": 517.565, "word": "the" }, { "confidence": 1, "end": 517.88495, "punctuated_word": "thing", "speaker": 1, "speaker_confidence": 0.55371094, "start": 517.64496, "word": "thing" }, { "confidence": 0.9970703, "end": 517.96497, "punctuated_word": "that", "speaker": 1, "speaker_confidence": 0.55371094, "start": 517.88495, "word": "that" }, { "confidence": 1, "end": 518.125, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.55371094, "start": 517.96497, "word": "you" }, { "confidence": 0.52490234, "end": 518.365, "punctuated_word": "gotta", "speaker": 1, "speaker_confidence": 0.55371094, "start": 518.125, "word": "gotta" }, { "confidence": 0.9790039, "end": 518.52496, "punctuated_word": "pay", "speaker": 1, "speaker_confidence": 0.55371094, "start": 518.365, "word": "pay" }, { "confidence": 1, "end": 518.845, "punctuated_word": "attention", "speaker": 1, "speaker_confidence": 0.55371094, "start": 518.52496, "word": "attention" }, { "confidence": 0.9980469, "end": 519.08496, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.55371094, "start": 518.845, "word": "to" }, { "confidence": 0.99902344, "end": 519.58496, "punctuated_word": "here", "speaker": 1, "speaker_confidence": 0.55371094, "start": 519.08496, "word": "here" }, { "confidence": 0.98291016, "end": 519.88495, "punctuated_word": "is", "speaker": 1, "speaker_confidence": 0.55371094, "start": 519.725, "word": "is" }, { "confidence": 1, "end": 520.045, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.55371094, "start": 519.88495, "word": "the" }, { "confidence": 0.9980469, "end": 520.545, "punctuated_word": "cursor.", "speaker": 1, "speaker_confidence": 0.55371094, "start": 520.045, "word": "cursor" }, { "confidence": 0.9921875, "end": 521.40497, "punctuated_word": "Right", "speaker": 1, "speaker_confidence": 0.6171875, "start": 521.165, "word": "right" }, { "confidence": 0.83691406, "end": 521.64496, "punctuated_word": "now,", "speaker": 1, "speaker_confidence": 0.6171875, "start": 521.40497, "word": "now" }, { "confidence": 0.99853516, "end": 521.88495, "punctuated_word": "it's", "speaker": 1, "speaker_confidence": 0.6171875, "start": 521.64496, "word": "it's" }, { "confidence": 1, "end": 522.125, "punctuated_word": "on", "speaker": 1, "speaker_confidence": 0.6171875, "start": 521.88495, "word": "on" }, { "confidence": 1, "end": 522.52496, "punctuated_word": "top", "speaker": 1, "speaker_confidence": 0.6171875, "start": 522.125, "word": "top" }, { "confidence": 1, "end": 522.605, "punctuated_word": "of", "speaker": 1, "speaker_confidence": 0.6171875, "start": 522.52496, "word": "of" }, { "confidence": 1, "end": 522.845, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.6171875, "start": 522.605, "word": "the" }, { "confidence": 0.99902344, "end": 523.345, "punctuated_word": "exclamation", "speaker": 1, "speaker_confidence": 0.6171875, "start": 522.845, "word": "exclamation" }, { "confidence": 0.98217773, "end": 523.89, "punctuated_word": "point.", "speaker": 1, "speaker_confidence": 0.6171875, "start": 523.40497, "word": "point" }, { "confidence": 0.97802734, "end": 524.37, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.6196289, "start": 524.13, "word": "so" }, { "confidence": 0.9941406, "end": 524.45, "punctuated_word": "if", "speaker": 1, "speaker_confidence": 0.6196289, "start": 524.37, "word": "if" }, { "confidence": 0.62060547, "end": 524.61, "punctuated_word": "it", "speaker": 1, "speaker_confidence": 0.6196289, "start": 524.45, "word": "it" }, { "confidence": 0.9970703, "end": 525.01, "punctuated_word": "hit", "speaker": 1, "speaker_confidence": 0.6196289, "start": 524.61, "word": "hit" }, { "confidence": 0.90527344, "end": 525.33, "punctuated_word": "I,", "speaker": 1, "speaker_confidence": 0.6196289, "start": 525.01, "word": "i" }, { "confidence": 0.9970703, "end": 525.65, "punctuated_word": "it'll", "speaker": 1, "speaker_confidence": 0.6196289, "start": 525.33, "word": "it'll" }, { "confidence": 0.99902344, "end": 525.81, "punctuated_word": "move", "speaker": 1, "speaker_confidence": 0.6196289, "start": 525.65, "word": "move" }, { "confidence": 1, "end": 525.97003, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.6196289, "start": 525.81, "word": "to" }, { "confidence": 1, "end": 526.13, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.6196289, "start": 525.97003, "word": "the" }, { "confidence": 0.96972656, "end": 526.63, "punctuated_word": "left.", "speaker": 1, "speaker_confidence": 0.6196289, "start": 526.13, "word": "left" }, { "confidence": 0.99316406, "end": 526.85004, "punctuated_word": "And", "speaker": 1, "speaker_confidence": 0.6196289, "start": 526.69, "word": "and" }, { "confidence": 0.9428711, "end": 527.01, "punctuated_word": "now", "speaker": 1, "speaker_confidence": 0.6196289, "start": 526.85004, "word": "now" }, { "confidence": 0.6713867, "end": 527.17004, "punctuated_word": "if", "speaker": 1, "speaker_confidence": 0.6196289, "start": 527.01, "word": "if" }, { "confidence": 0.99902344, "end": 527.25, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.4501953, "start": 527.17004, "word": "i" }, { "confidence": 1, "end": 527.49, "punctuated_word": "go", "speaker": 1, "speaker_confidence": 0.4501953, "start": 527.25, "word": "go" }, { "confidence": 0.8444824, "end": 527.99, "punctuated_word": "back,", "speaker": 1, "speaker_confidence": 0.4501953, "start": 527.49, "word": "back" }, { "confidence": 0.99902344, "end": 528.37, "punctuated_word": "now", "speaker": 1, "speaker_confidence": 0.4501953, "start": 528.13, "word": "now" }, { "confidence": 0.93359375, "end": 528.53, "punctuated_word": "if", "speaker": 1, "speaker_confidence": 0.4501953, "start": 528.37, "word": "if" }, { "confidence": 0.99609375, "end": 528.61, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.4501953, "start": 528.53, "word": "i" }, { "confidence": 1, "end": 529.01, "punctuated_word": "hit", "speaker": 1, "speaker_confidence": 0.7084961, "start": 528.61, "word": "hit" }, { "confidence": 0.9785156, "end": 529.33, "punctuated_word": "a,", "speaker": 1, "speaker_confidence": 0.7084961, "start": 529.01, "word": "a" }, { "confidence": 0.9970703, "end": 529.81, "punctuated_word": "it'll", "speaker": 1, "speaker_confidence": 0.7084961, "start": 529.33, "word": "it'll" }, { "confidence": 0.99902344, "end": 530.29004, "punctuated_word": "enter", "speaker": 1, "speaker_confidence": 0.7084961, "start": 529.81, "word": "enter" }, { "confidence": 0.99902344, "end": 530.69, "punctuated_word": "into", "speaker": 1, "speaker_confidence": 0.7084961, "start": 530.29004, "word": "into" }, { "confidence": 1, "end": 531.09, "punctuated_word": "insert", "speaker": 1, "speaker_confidence": 0.7084961, "start": 530.69, "word": "insert" }, { "confidence": 0.99902344, "end": 531.57, "punctuated_word": "mode", "speaker": 1, "speaker_confidence": 0.7084961, "start": 531.09, "word": "mode" }, { "confidence": 0.55371094, "end": 532.05, "punctuated_word": "but", "speaker": 1, "speaker_confidence": 0.7084961, "start": 531.57, "word": "but" }, { "confidence": 0.99902344, "end": 532.45, "punctuated_word": "after", "speaker": 1, "speaker_confidence": 0.7084961, "start": 532.05, "word": "after" }, { "confidence": 1, "end": 532.61, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.7084961, "start": 532.45, "word": "the" }, { "confidence": 0.96655273, "end": 533.11, "punctuated_word": "cursor.", "speaker": 1, "speaker_confidence": 0.7084961, "start": 532.61, "word": "cursor" }, { "confidence": 0.99121094, "end": 533.895, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.7084961, "start": 533.395, "word": "so" }, { "confidence": 0.8964844, "end": 534.59503, "punctuated_word": "like", "speaker": 1, "speaker_confidence": 0.7084961, "start": 534.35504, "word": "like" }, { "confidence": 0.9807129, "end": 535.09503, "punctuated_word": "this.", "speaker": 1, "speaker_confidence": 0.7084961, "start": 534.59503, "word": "this" }, { "confidence": 0.9980469, "end": 535.79504, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.66552734, "start": 535.635, "word": "so" }, { "confidence": 0.85595703, "end": 536.29504, "punctuated_word": "again,", "speaker": 1, "speaker_confidence": 0.66552734, "start": 535.79504, "word": "again" }, { "confidence": 0.99853516, "end": 536.59503, "punctuated_word": "uh,", "speaker": 1, "speaker_confidence": 0.66552734, "start": 536.35504, "word": "uh" }, { "confidence": 0.9970703, "end": 536.835, "punctuated_word": "if", "speaker": 1, "speaker_confidence": 0.66552734, "start": 536.59503, "word": "if" }, { "confidence": 1, "end": 536.995, "punctuated_word": "we", "speaker": 1, "speaker_confidence": 0.66552734, "start": 536.835, "word": "we" }, { "confidence": 1, "end": 537.395, "punctuated_word": "have", "speaker": 1, "speaker_confidence": 0.66552734, "start": 536.995, "word": "have" }, { "confidence": 0.7866211, "end": 537.635, "punctuated_word": "like", "speaker": 1, "speaker_confidence": 0.66552734, "start": 537.395, "word": "like" }, { "confidence": 0.9970703, "end": 537.79504, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.66552734, "start": 537.635, "word": "a" }, { "confidence": 1, "end": 538.195, "punctuated_word": "number", "speaker": 1, "speaker_confidence": 0.66552734, "start": 537.79504, "word": "number" }, { "confidence": 0.96777344, "end": 538.515, "punctuated_word": "2", "speaker": 1, "speaker_confidence": 0.66552734, "start": 538.195, "word": "2" }, { "confidence": 1, "end": 538.91504, "punctuated_word": "here", "speaker": 1, "speaker_confidence": 0.66552734, "start": 538.515, "word": "here" }, { "confidence": 0.984375, "end": 539.155, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.66552734, "start": 538.91504, "word": "and" }, { "confidence": 1, "end": 539.395, "punctuated_word": "we", "speaker": 1, "speaker_confidence": 0.66552734, "start": 539.155, "word": "we" }, { "confidence": 1, "end": 539.635, "punctuated_word": "want", "speaker": 1, "speaker_confidence": 0.66552734, "start": 539.395, "word": "want" }, { "confidence": 0.99902344, "end": 539.875, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.66552734, "start": 539.635, "word": "to" }, { "confidence": 1, "end": 540.115, "punctuated_word": "add", "speaker": 1, "speaker_confidence": 0.66552734, "start": 539.875, "word": "add" }, { "confidence": 0.99609375, "end": 540.275, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.66552734, "start": 540.115, "word": "to" }, { "confidence": 1, "end": 540.35504, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.61621094, "start": 540.275, "word": "the" }, { "confidence": 1, "end": 540.85504, "punctuated_word": "beginning", "speaker": 1, "speaker_confidence": 0.61621094, "start": 540.35504, "word": "beginning" }, { "confidence": 0.9980469, "end": 541.155, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.61621094, "start": 540.995, "word": "and" }, { "confidence": 1, "end": 541.395, "punctuated_word": "make", "speaker": 1, "speaker_confidence": 0.61621094, "start": 541.155, "word": "make" }, { "confidence": 0.9980469, "end": 541.67, "punctuated_word": "it", "speaker": 1, "speaker_confidence": 0.61621094, "start": 541.395, "word": "it" }, { "confidence": 0.8935547, "end": 542.23, "punctuated_word": "22", "speaker": 1, "speaker_confidence": 0.61621094, "start": 541.91, "word": "22" }, { "confidence": 0.3635254, "end": 542.55, "punctuated_word": "will", "speaker": 1, "speaker_confidence": 0.61621094, "start": 542.23, "word": "will" }, { "confidence": 0.98828125, "end": 542.79, "punctuated_word": "hit", "speaker": 1, "speaker_confidence": 0.61621094, "start": 542.55, "word": "hit" }, { "confidence": 0.69433594, "end": 543.26996, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.61621094, "start": 542.79, "word": "i" }, { "confidence": 0.66503906, "end": 543.58997, "punctuated_word": "that'll", "speaker": 1, "speaker_confidence": 0.61621094, "start": 543.26996, "word": "that'll" }, { "confidence": 0.99609375, "end": 543.75, "punctuated_word": "let", "speaker": 1, "speaker_confidence": 0.61621094, "start": 543.58997, "word": "let" }, { "confidence": 1, "end": 543.91, "punctuated_word": "us", "speaker": 1, "speaker_confidence": 0.61621094, "start": 543.75, "word": "us" }, { "confidence": 0.7651367, "end": 544.06995, "punctuated_word": "enter", "speaker": 1, "speaker_confidence": 0.61621094, "start": 543.91, "word": "enter" }, { "confidence": 0.6777344, "end": 544.23, "punctuated_word": "at", "speaker": 1, "speaker_confidence": 0.61621094, "start": 544.06995, "word": "at" }, { "confidence": 0.9980469, "end": 544.38995, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.61621094, "start": 544.23, "word": "the" }, { "confidence": 0.8552246, "end": 544.88995, "punctuated_word": "beginning.", "speaker": 1, "speaker_confidence": 0.61621094, "start": 544.38995, "word": "beginning" }, { "confidence": 0.9970703, "end": 545.19, "punctuated_word": "And", "speaker": 1, "speaker_confidence": 0.47607422, "start": 545.02997, "word": "and" }, { "confidence": 0.984375, "end": 545.35, "punctuated_word": "now", "speaker": 1, "speaker_confidence": 0.47607422, "start": 545.19, "word": "now" }, { "confidence": 0.8935547, "end": 545.58997, "punctuated_word": "if", "speaker": 1, "speaker_confidence": 0.47607422, "start": 545.35, "word": "if" }, { "confidence": 1, "end": 545.75, "punctuated_word": "we", "speaker": 1, "speaker_confidence": 0.47607422, "start": 545.58997, "word": "we" }, { "confidence": 0.99609375, "end": 545.99, "punctuated_word": "want", "speaker": 1, "speaker_confidence": 0.47607422, "start": 545.75, "word": "want" }, { "confidence": 1, "end": 546.14996, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.47607422, "start": 545.99, "word": "to" }, { "confidence": 1, "end": 546.38995, "punctuated_word": "add", "speaker": 1, "speaker_confidence": 0.47607422, "start": 546.14996, "word": "add" }, { "confidence": 1, "end": 546.47, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.47607422, "start": 546.38995, "word": "to" }, { "confidence": 1, "end": 546.63, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.40771484, "start": 546.47, "word": "the" }, { "confidence": 0.75805664, "end": 547.13, "punctuated_word": "end,", "speaker": 1, "speaker_confidence": 0.40771484, "start": 546.63, "word": "end" }, { "confidence": 0.98828125, "end": 547.43, "punctuated_word": "like", "speaker": 1, "speaker_confidence": 0.40771484, "start": 547.19, "word": "like" }, { "confidence": 0.9111328, "end": 547.58997, "punctuated_word": "say", "speaker": 1, "speaker_confidence": 0.40771484, "start": 547.43, "word": "say" }, { "confidence": 0.9140625, "end": 547.67, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.40771484, "start": 547.58997, "word": "i" }, { "confidence": 1, "end": 548.07, "punctuated_word": "wanted", "speaker": 1, "speaker_confidence": 0.6435547, "start": 547.67, "word": "wanted" }, { "confidence": 1, "end": 548.23, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.6435547, "start": 548.07, "word": "to" }, { "confidence": 1, "end": 548.73, "punctuated_word": "add", "speaker": 1, "speaker_confidence": 0.6435547, "start": 548.23, "word": "add" }, { "confidence": 0.97509766, "end": 550.315, "punctuated_word": "period", "speaker": 1, "speaker_confidence": 0.6435547, "start": 549.815, "word": "period" }, { "confidence": 0.8496094, "end": 550.875, "punctuated_word": "22.", "speaker": 1, "speaker_confidence": 0.6435547, "start": 550.375, "word": "22" }, { "confidence": 0.9951172, "end": 551.335, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.6435547, "start": 550.935, "word": "so" }, { "confidence": 0.5515137, "end": 551.835, "punctuated_word": "22/22,", "speaker": 1, "speaker_confidence": 0.6435547, "start": 551.335, "word": "22/22" }, { "confidence": 0.9970703, "end": 553.095, "punctuated_word": "then", "speaker": 1, "speaker_confidence": 0.6435547, "start": 552.775, "word": "then" }, { "confidence": 0.97314453, "end": 553.255, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.6381836, "start": 553.095, "word": "i" }, { "confidence": 1, "end": 553.415, "punctuated_word": "can", "speaker": 1, "speaker_confidence": 0.6381836, "start": 553.255, "word": "can" }, { "confidence": 0.99902344, "end": 553.815, "punctuated_word": "use", "speaker": 1, "speaker_confidence": 0.6381836, "start": 553.415, "word": "use" }, { "confidence": 0.9482422, "end": 554.295, "punctuated_word": "lowercase", "speaker": 1, "speaker_confidence": 0.6381836, "start": 553.815, "word": "lowercase" }, { "confidence": 0.9655762, "end": 554.795, "punctuated_word": "a.", "speaker": 1, "speaker_confidence": 0.6381836, "start": 554.295, "word": "a" }, { "confidence": 0.9970703, "end": 555.095, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.6381836, "start": 554.855, "word": "so" }, { "confidence": 0.94970703, "end": 555.335, "punctuated_word": "those", "speaker": 1, "speaker_confidence": 0.6381836, "start": 555.095, "word": "those" }, { "confidence": 1, "end": 555.495, "punctuated_word": "are", "speaker": 1, "speaker_confidence": 0.6381836, "start": 555.335, "word": "are" }, { "confidence": 1, "end": 555.65497, "punctuated_word": "very", "speaker": 1, "speaker_confidence": 0.6982422, "start": 555.495, "word": "very" }, { "confidence": 1, "end": 556.055, "punctuated_word": "handy", "speaker": 1, "speaker_confidence": 0.6982422, "start": 555.65497, "word": "handy" }, { "confidence": 0.99902344, "end": 556.21497, "punctuated_word": "when", "speaker": 1, "speaker_confidence": 0.6982422, "start": 556.055, "word": "when" }, { "confidence": 0.99902344, "end": 556.51, "punctuated_word": "you're", "speaker": 1, "speaker_confidence": 0.6982422, "start": 556.21497, "word": "you're" }, { "confidence": 0.8334961, "end": 557.15, "punctuated_word": "Inserting", "speaker": 1, "speaker_confidence": 0.6982422, "start": 556.67, "word": "inserting" }, { "confidence": 0.99316406, "end": 557.65, "punctuated_word": "letters", "speaker": 1, "speaker_confidence": 0.6982422, "start": 557.15, "word": "letters" }, { "confidence": 0.9970703, "end": 558.27, "punctuated_word": "or", "speaker": 1, "speaker_confidence": 0.6982422, "start": 558.03, "word": "or" }, { "confidence": 0.99902344, "end": 558.67, "punctuated_word": "making", "speaker": 1, "speaker_confidence": 0.6982422, "start": 558.27, "word": "making" }, { "confidence": 0.9641113, "end": 559.17, "punctuated_word": "changes,", "speaker": 1, "speaker_confidence": 0.6982422, "start": 558.67, "word": "changes" }, { "confidence": 1, "end": 559.87, "punctuated_word": "uh,", "speaker": 1, "speaker_confidence": 0.6982422, "start": 559.63, "word": "uh" }, { "confidence": 0.98535156, "end": 560.03, "punctuated_word": "in", "speaker": 1, "speaker_confidence": 0.6982422, "start": 559.87, "word": "in" }, { "confidence": 0.94140625, "end": 560.11, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.765625, "start": 560.03, "word": "a" }, { "confidence": 0.99853516, "end": 560.61, "punctuated_word": "line.", "speaker": 1, "speaker_confidence": 0.765625, "start": 560.11, "word": "line" }, { "confidence": 0.9667969, "end": 561.07, "punctuated_word": "Now,", "speaker": 1, "speaker_confidence": 0.765625, "start": 560.75, "word": "now" }, { "confidence": 1, "end": 561.39, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.765625, "start": 561.07, "word": "the" }, { "confidence": 1, "end": 561.71, "punctuated_word": "next", "speaker": 1, "speaker_confidence": 0.765625, "start": 561.39, "word": "next" }, { "confidence": 0.9921875, "end": 561.87, "punctuated_word": "one", "speaker": 1, "speaker_confidence": 0.765625, "start": 561.71, "word": "one" }, { "confidence": 0.9980469, "end": 562.03, "punctuated_word": "that", "speaker": 1, "speaker_confidence": 0.765625, "start": 561.87, "word": "that" }, { "confidence": 0.9951172, "end": 562.19, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.765625, "start": 562.03, "word": "i" }, { "confidence": 0.51171875, "end": 562.31, "punctuated_word": "want", "speaker": 1, "speaker_confidence": 0.765625, "start": 562.19, "word": "want" }, { "confidence": 0.99902344, "end": 562.43, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.765625, "start": 562.31, "word": "to" }, { "confidence": 1, "end": 562.67, "punctuated_word": "talk", "speaker": 1, "speaker_confidence": 0.765625, "start": 562.43, "word": "talk" }, { "confidence": 1, "end": 563.15, "punctuated_word": "about", "speaker": 1, "speaker_confidence": 0.765625, "start": 562.67, "word": "about" }, { "confidence": 0.99902344, "end": 563.55, "punctuated_word": "is", "speaker": 1, "speaker_confidence": 0.765625, "start": 563.15, "word": "is" }, { "confidence": 0.96435547, "end": 564.03, "punctuated_word": "capital", "speaker": 1, "speaker_confidence": 0.765625, "start": 563.55, "word": "capital" }, { "confidence": 0.9580078, "end": 564.515, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.765625, "start": 564.03, "word": "a" }, { "confidence": 0.9819336, "end": 564.91504, "punctuated_word": "And", "speaker": 1, "speaker_confidence": 0.765625, "start": 564.675, "word": "and" }, { "confidence": 0.92089844, "end": 565.235, "punctuated_word": "so", "speaker": 1, "speaker_confidence": 0.765625, "start": 564.91504, "word": "so" }, { "confidence": 0.7138672, "end": 565.735, "punctuated_word": "this", "speaker": 1, "speaker_confidence": 0.765625, "start": 565.235, "word": "this" }, { "confidence": 0.9951172, "end": 566.515, "punctuated_word": "is", "speaker": 1, "speaker_confidence": 0.765625, "start": 566.195, "word": "is" }, { "confidence": 0.91015625, "end": 566.835, "punctuated_word": "like", "speaker": 1, "speaker_confidence": 0.765625, "start": 566.515, "word": "like" }, { "confidence": 0.86816406, "end": 567.315, "punctuated_word": "appending", "speaker": 1, "speaker_confidence": 0.765625, "start": 566.835, "word": "appending" }, { "confidence": 1, "end": 567.47504, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.765625, "start": 567.315, "word": "to" }, { "confidence": 0.99902344, "end": 567.555, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.765625, "start": 567.47504, "word": "the" }, { "confidence": 1, "end": 567.715, "punctuated_word": "end", "speaker": 1, "speaker_confidence": 0.765625, "start": 567.555, "word": "end" }, { "confidence": 1, "end": 567.79504, "punctuated_word": "of", "speaker": 1, "speaker_confidence": 0.765625, "start": 567.715, "word": "of" }, { "confidence": 0.9980469, "end": 567.955, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.63964844, "start": 567.79504, "word": "the" }, { "confidence": 0.94555664, "end": 568.275, "punctuated_word": "line.", "speaker": 1, "speaker_confidence": 0.63964844, "start": 567.955, "word": "line" }, { "confidence": 0.9970703, "end": 568.435, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.63964844, "start": 568.275, "word": "so" }, { "confidence": 0.9707031, "end": 568.675, "punctuated_word": "you'll", "speaker": 1, "speaker_confidence": 0.63964844, "start": 568.435, "word": "you'll" }, { "confidence": 1, "end": 569.075, "punctuated_word": "enter", "speaker": 1, "speaker_confidence": 0.63964844, "start": 568.675, "word": "enter" }, { "confidence": 0.99902344, "end": 569.395, "punctuated_word": "insert", "speaker": 1, "speaker_confidence": 0.63964844, "start": 569.075, "word": "insert" }, { "confidence": 0.99902344, "end": 569.895, "punctuated_word": "mode", "speaker": 1, "speaker_confidence": 0.63964844, "start": 569.395, "word": "mode" }, { "confidence": 0.9970703, "end": 570.275, "punctuated_word": "at", "speaker": 1, "speaker_confidence": 0.36767578, "start": 570.195, "word": "at" }, { "confidence": 1, "end": 570.435, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.36767578, "start": 570.275, "word": "the" }, { "confidence": 1, "end": 570.59503, "punctuated_word": "end", "speaker": 1, "speaker_confidence": 0.36767578, "start": 570.435, "word": "end" }, { "confidence": 1, "end": 570.675, "punctuated_word": "of", "speaker": 1, "speaker_confidence": 0.36767578, "start": 570.59503, "word": "of" }, { "confidence": 0.58935547, "end": 570.755, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.36767578, "start": 570.675, "word": "a" }, { "confidence": 0.9926758, "end": 570.995, "punctuated_word": "line.", "speaker": 1, "speaker_confidence": 0.36767578, "start": 570.755, "word": "line" }, { "confidence": 0.9980469, "end": 571.235, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.6699219, "start": 570.995, "word": "so" }, { "confidence": 0.90771484, "end": 571.395, "punctuated_word": "here", "speaker": 1, "speaker_confidence": 0.6699219, "start": 571.235, "word": "here" }, { "confidence": 0.9790039, "end": 571.555, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.6699219, "start": 571.395, "word": "i" }, { "confidence": 0.70043945, "end": 571.92, "punctuated_word": "am.", "speaker": 1, "speaker_confidence": 0.6699219, "start": 571.555, "word": "am" }, { "confidence": 0.6015625, "end": 572.32, "punctuated_word": "Wanna", "speaker": 1, "speaker_confidence": 0.6699219, "start": 572, "word": "wanna" }, { "confidence": 0.99902344, "end": 572.39996, "punctuated_word": "add", "speaker": 1, "speaker_confidence": 0.6699219, "start": 572.32, "word": "add" }, { "confidence": 0.99902344, "end": 572.63995, "punctuated_word": "more", "speaker": 1, "speaker_confidence": 0.6699219, "start": 572.39996, "word": "more" }, { "confidence": 0.99853516, "end": 573.13995, "punctuated_word": "exclamation", "speaker": 1, "speaker_confidence": 0.6699219, "start": 572.63995, "word": "exclamation" }, { "confidence": 0.99902344, "end": 573.44, "punctuated_word": "points", "speaker": 1, "speaker_confidence": 0.6699219, "start": 573.2, "word": "points" }, { "confidence": 0.9951172, "end": 573.6, "punctuated_word": "at", "speaker": 1, "speaker_confidence": 0.6699219, "start": 573.44, "word": "at" }, { "confidence": 0.99902344, "end": 573.68, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.47753906, "start": 573.6, "word": "the" }, { "confidence": 1, "end": 573.83997, "punctuated_word": "end", "speaker": 1, "speaker_confidence": 0.47753906, "start": 573.68, "word": "end" }, { "confidence": 1, "end": 574, "punctuated_word": "of", "speaker": 1, "speaker_confidence": 0.47753906, "start": 573.83997, "word": "of" }, { "confidence": 0.7319336, "end": 574.24, "punctuated_word": "hello", "speaker": 1, "speaker_confidence": 0.47753906, "start": 574, "word": "hello" }, { "confidence": 0.8955078, "end": 574.63995, "punctuated_word": "world.", "speaker": 1, "speaker_confidence": 0.47753906, "start": 574.24, "word": "world" }, { "confidence": 0.9921875, "end": 574.8, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.47753906, "start": 574.63995, "word": "so" }, { "confidence": 0.9614258, "end": 575.04, "punctuated_word": "if", "speaker": 1, "speaker_confidence": 0.47753906, "start": 574.8, "word": "if" }, { "confidence": 0.9951172, "end": 575.12, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.48535156, "start": 575.04, "word": "i" }, { "confidence": 1, "end": 575.6, "punctuated_word": "hit", "speaker": 1, "speaker_confidence": 0.48535156, "start": 575.12, "word": "hit" }, { "confidence": 0.9941406, "end": 576, "punctuated_word": "shift", "speaker": 1, "speaker_confidence": 0.48535156, "start": 575.6, "word": "shift" }, { "confidence": 0.9875488, "end": 576.24, "punctuated_word": "a,", "speaker": 1, "speaker_confidence": 0.48535156, "start": 576, "word": "a" }, { "confidence": 0.9970703, "end": 576.48, "punctuated_word": "it", "speaker": 1, "speaker_confidence": 0.48535156, "start": 576.24, "word": "it" }, { "confidence": 0.99902344, "end": 576.72, "punctuated_word": "will", "speaker": 1, "speaker_confidence": 0.48535156, "start": 576.48, "word": "will" }, { "confidence": 1, "end": 576.88, "punctuated_word": "move", "speaker": 1, "speaker_confidence": 0.48535156, "start": 576.72, "word": "move" }, { "confidence": 1, "end": 576.95996, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.48535156, "start": 576.88, "word": "the" }, { "confidence": 1, "end": 577.36, "punctuated_word": "cursor", "speaker": 1, "speaker_confidence": 0.48535156, "start": 576.95996, "word": "cursor" }, { "confidence": 1, "end": 577.44, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.48535156, "start": 577.36, "word": "to" }, { "confidence": 1, "end": 577.51996, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.48535156, "start": 577.44, "word": "the" }, { "confidence": 1, "end": 577.83997, "punctuated_word": "end", "speaker": 1, "speaker_confidence": 0.6879883, "start": 577.51996, "word": "end" }, { "confidence": 0.90234375, "end": 578, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.6879883, "start": 577.83997, "word": "and" }, { "confidence": 1, "end": 578.07996, "punctuated_word": "it", "speaker": 1, "speaker_confidence": 0.6879883, "start": 578, "word": "it" }, { "confidence": 1, "end": 578.32, "punctuated_word": "will", "speaker": 1, "speaker_confidence": 0.6879883, "start": 578.07996, "word": "will" }, { "confidence": 1, "end": 578.63995, "punctuated_word": "enter", "speaker": 1, "speaker_confidence": 0.6879883, "start": 578.32, "word": "enter" }, { "confidence": 0.99902344, "end": 578.95996, "punctuated_word": "into", "speaker": 1, "speaker_confidence": 0.6879883, "start": 578.63995, "word": "into" }, { "confidence": 0.99902344, "end": 579.27997, "punctuated_word": "insert", "speaker": 1, "speaker_confidence": 0.6879883, "start": 578.95996, "word": "insert" }, { "confidence": 0.8210449, "end": 579.51996, "punctuated_word": "mode.", "speaker": 1, "speaker_confidence": 0.6879883, "start": 579.27997, "word": "mode" }, { "confidence": 0.99316406, "end": 579.76, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.6879883, "start": 579.51996, "word": "so" }, { "confidence": 0.89990234, "end": 579.92, "punctuated_word": "now", "speaker": 1, "speaker_confidence": 0.6879883, "start": 579.76, "word": "now" }, { "confidence": 0.91748047, "end": 580.07996, "punctuated_word": "that", "speaker": 1, "speaker_confidence": 0.6879883, "start": 579.92, "word": "that" }, { "confidence": 0.9873047, "end": 580.16, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.6879883, "start": 580.07996, "word": "i" }, { "confidence": 1, "end": 580.66, "punctuated_word": "can", "speaker": 1, "speaker_confidence": 0.6879883, "start": 580.16, "word": "can" }, { "confidence": 0.96533203, "end": 581.15497, "punctuated_word": "Enter", "speaker": 1, "speaker_confidence": 0.55371094, "start": 580.915, "word": "enter" }, { "confidence": 0.9980469, "end": 581.315, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.55371094, "start": 581.15497, "word": "a" }, { "confidence": 0.99902344, "end": 581.635, "punctuated_word": "few", "speaker": 1, "speaker_confidence": 0.55371094, "start": 581.315, "word": "few" }, { "confidence": 0.98706055, "end": 582.135, "punctuated_word": "exclamation", "speaker": 1, "speaker_confidence": 0.55371094, "start": 581.635, "word": "exclamation" }, { "confidence": 0.9975586, "end": 582.695, "punctuated_word": "points.", "speaker": 1, "speaker_confidence": 0.55371094, "start": 582.195, "word": "points" }, { "confidence": 0.9980469, "end": 582.995, "punctuated_word": "Now", "speaker": 1, "speaker_confidence": 0.43554688, "start": 582.83496, "word": "now" }, { "confidence": 0.7480469, "end": 583.15497, "punctuated_word": "if", "speaker": 1, "speaker_confidence": 0.43554688, "start": 582.995, "word": "if" }, { "confidence": 1, "end": 583.235, "punctuated_word": "we", "speaker": 1, "speaker_confidence": 0.43554688, "start": 583.15497, "word": "we" }, { "confidence": 1, "end": 583.475, "punctuated_word": "go", "speaker": 1, "speaker_confidence": 0.43554688, "start": 583.235, "word": "go" }, { "confidence": 1, "end": 583.635, "punctuated_word": "back", "speaker": 1, "speaker_confidence": 0.43554688, "start": 583.475, "word": "back" }, { "confidence": 1, "end": 583.795, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.43554688, "start": 583.635, "word": "to" }, { "confidence": 1, "end": 583.875, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.43554688, "start": 583.795, "word": "the" }, { "confidence": 0.9880371, "end": 584.375, "punctuated_word": "beginning,", "speaker": 1, "speaker_confidence": 0.43554688, "start": 583.875, "word": "beginning" }, { "confidence": 0.9921875, "end": 584.995, "punctuated_word": "we", "speaker": 1, "speaker_confidence": 0.69970703, "start": 584.83496, "word": "we" }, { "confidence": 1, "end": 585.15497, "punctuated_word": "can", "speaker": 1, "speaker_confidence": 0.69970703, "start": 584.995, "word": "can" }, { "confidence": 1, "end": 585.39496, "punctuated_word": "do", "speaker": 1, "speaker_confidence": 0.69970703, "start": 585.15497, "word": "do" }, { "confidence": 0.9902344, "end": 585.795, "punctuated_word": "shift", "speaker": 1, "speaker_confidence": 0.69970703, "start": 585.39496, "word": "shift" }, { "confidence": 0.9001465, "end": 586.195, "punctuated_word": "I.", "speaker": 1, "speaker_confidence": 0.69970703, "start": 585.795, "word": "i" }, { "confidence": 0.99902344, "end": 586.355, "punctuated_word": "Now", "speaker": 1, "speaker_confidence": 0.69970703, "start": 586.195, "word": "now" }, { "confidence": 0.9147949, "end": 586.675, "punctuated_word": "we're", "speaker": 1, "speaker_confidence": 0.69970703, "start": 586.355, "word": "we're" }, { "confidence": 0.9614258, "end": 587.075, "punctuated_word": "insert", "speaker": 1, "speaker_confidence": 0.69970703, "start": 586.675, "word": "insert" }, { "confidence": 0.9980469, "end": 587.39496, "punctuated_word": "mode", "speaker": 1, "speaker_confidence": 0.69970703, "start": 587.075, "word": "mode" }, { "confidence": 0.9980469, "end": 587.555, "punctuated_word": "at", "speaker": 1, "speaker_confidence": 0.69970703, "start": 587.39496, "word": "at" }, { "confidence": 1, "end": 587.635, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.26171875, "start": 587.555, "word": "the" }, { "confidence": 1, "end": 588.035, "punctuated_word": "beginning", "speaker": 1, "speaker_confidence": 0.26171875, "start": 587.635, "word": "beginning" }, { "confidence": 0.9902344, "end": 588.115, "punctuated_word": "of", "speaker": 1, "speaker_confidence": 0.26171875, "start": 588.035, "word": "of" }, { "confidence": 0.9980469, "end": 588.195, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.26171875, "start": 588.115, "word": "the" }, { "confidence": 0.98046875, "end": 588.68, "punctuated_word": "line.", "speaker": 1, "speaker_confidence": 0.26171875, "start": 588.195, "word": "line" }, { "confidence": 0.2902832, "end": 589.16, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.5024414, "start": 589, "word": "so" }, { "confidence": 0.81591797, "end": 589.48, "punctuated_word": "as", "speaker": 1, "speaker_confidence": 0.5024414, "start": 589.16, "word": "as" }, { "confidence": 0.67529297, "end": 589.64, "punctuated_word": "as", "speaker": 1, "speaker_confidence": 0.5024414, "start": 589.48, "word": "as" }, { "confidence": 0.9951172, "end": 589.72, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.5024414, "start": 589.64, "word": "you" }, { "confidence": 0.9980469, "end": 589.88, "punctuated_word": "can", "speaker": 1, "speaker_confidence": 0.5024414, "start": 589.72, "word": "can" }, { "confidence": 0.9980469, "end": 590.38, "punctuated_word": "see", "speaker": 1, "speaker_confidence": 0.5024414, "start": 589.88, "word": "see" }, { "confidence": 0.5209961, "end": 591.08, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.5024414, "start": 590.6, "word": "the" }, { "confidence": 0.66748047, "end": 591.32, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.5024414, "start": 591.08, "word": "i" }, { "confidence": 0.7089844, "end": 591.82, "punctuated_word": "capital", "speaker": 1, "speaker_confidence": 0.5024414, "start": 591.32, "word": "capital" }, { "confidence": 0.8305664, "end": 592.38, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.5024414, "start": 591.88, "word": "i" }, { "confidence": 0.82177734, "end": 592.68, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.5024414, "start": 592.6, "word": "a" }, { "confidence": 0.96533203, "end": 593.18, "punctuated_word": "capital", "speaker": 1, "speaker_confidence": 0.63916016, "start": 592.68, "word": "capital" }, { "confidence": 0.98095703, "end": 593.56, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.63916016, "start": 593.32, "word": "a" }, { "confidence": 0.9482422, "end": 593.8, "punctuated_word": "are", "speaker": 1, "speaker_confidence": 0.63916016, "start": 593.56, "word": "are" }, { "confidence": 1, "end": 593.96, "punctuated_word": "very", "speaker": 1, "speaker_confidence": 0.63916016, "start": 593.8, "word": "very" }, { "confidence": 1, "end": 594.46, "punctuated_word": "handy", "speaker": 1, "speaker_confidence": 0.63916016, "start": 593.96, "word": "handy" }, { "confidence": 1, "end": 594.76, "punctuated_word": "for", "speaker": 1, "speaker_confidence": 0.63916016, "start": 594.52, "word": "for" }, { "confidence": 1, "end": 595.26, "punctuated_word": "editing", "speaker": 1, "speaker_confidence": 0.63916016, "start": 594.76, "word": "editing" }, { "confidence": 1, "end": 595.64, "punctuated_word": "in", "speaker": 1, "speaker_confidence": 0.63916016, "start": 595.48, "word": "in" }, { "confidence": 0.99902344, "end": 595.88, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.63916016, "start": 595.64, "word": "a" }, { "confidence": 0.98950195, "end": 596.38, "punctuated_word": "line.", "speaker": 1, "speaker_confidence": 0.63916016, "start": 595.88, "word": "line" }, { "confidence": 0.98339844, "end": 597.355, "punctuated_word": "Great.", "speaker": 1, "speaker_confidence": 0.7416992, "start": 596.855, "word": "great" }, { "confidence": 0.9326172, "end": 597.57495, "punctuated_word": "Uh,", "speaker": 1, "speaker_confidence": 0.7416992, "start": 597.415, "word": "uh" }, { "confidence": 0.9785156, "end": 597.815, "punctuated_word": "we've", "speaker": 1, "speaker_confidence": 0.7416992, "start": 597.57495, "word": "we've" }, { "confidence": 1, "end": 598.055, "punctuated_word": "talked", "speaker": 1, "speaker_confidence": 0.7416992, "start": 597.815, "word": "talked" }, { "confidence": 1, "end": 598.535, "punctuated_word": "about", "speaker": 1, "speaker_confidence": 0.7416992, "start": 598.055, "word": "about" }, { "confidence": 0.87768555, "end": 599.035, "punctuated_word": "navigation.", "speaker": 1, "speaker_confidence": 0.7416992, "start": 598.535, "word": "navigation" }, { "confidence": 0.99853516, "end": 599.735, "punctuated_word": "We've", "speaker": 1, "speaker_confidence": 0.7416992, "start": 599.415, "word": "we've" }, { "confidence": 0.99902344, "end": 599.975, "punctuated_word": "talked", "speaker": 1, "speaker_confidence": 0.7416992, "start": 599.735, "word": "talked" }, { "confidence": 0.99902344, "end": 600.475, "punctuated_word": "about", "speaker": 1, "speaker_confidence": 0.7416992, "start": 599.975, "word": "about" }, { "confidence": 0.99902344, "end": 601.25494, "punctuated_word": "editing", "speaker": 1, "speaker_confidence": 0.7416992, "start": 600.77496, "word": "editing" }, { "confidence": 0.5317383, "end": 601.415, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.7416992, "start": 601.25494, "word": "and" }, { "confidence": 0.92749023, "end": 601.915, "punctuated_word": "align.", "speaker": 1, "speaker_confidence": 0.7416992, "start": 601.415, "word": "align" }, { "confidence": 0.9562988, "end": 602.77496, "punctuated_word": "Now,", "speaker": 1, "speaker_confidence": 0.7416992, "start": 602.45496, "word": "now" }, { "confidence": 1, "end": 603.27496, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.7416992, "start": 602.77496, "word": "the" }, { "confidence": 1, "end": 603.65497, "punctuated_word": "last", "speaker": 1, "speaker_confidence": 0.7416992, "start": 603.33496, "word": "last" }, { "confidence": 0.7919922, "end": 603.815, "punctuated_word": "2", "speaker": 1, "speaker_confidence": 0.7416992, "start": 603.65497, "word": "2" }, { "confidence": 1, "end": 603.975, "punctuated_word": "that", "speaker": 1, "speaker_confidence": 0.7416992, "start": 603.815, "word": "that" }, { "confidence": 0.99902344, "end": 604.055, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.47070312, "start": 603.975, "word": "i" }, { "confidence": 0.6508789, "end": 604.295, "punctuated_word": "want", "speaker": 1, "speaker_confidence": 0.47070312, "start": 604.055, "word": "want" }, { "confidence": 0.99902344, "end": 604.375, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.47070312, "start": 604.295, "word": "to" }, { "confidence": 1, "end": 604.615, "punctuated_word": "talk", "speaker": 1, "speaker_confidence": 0.47070312, "start": 604.375, "word": "talk" }, { "confidence": 1, "end": 605.01495, "punctuated_word": "about", "speaker": 1, "speaker_confidence": 0.47070312, "start": 604.615, "word": "about" }, { "confidence": 0.97509766, "end": 605.41, "punctuated_word": "are", "speaker": 1, "speaker_confidence": 0.47070312, "start": 605.01495, "word": "are" }, { "confidence": 0.7895508, "end": 605.88995, "punctuated_word": "x", "speaker": 1, "speaker_confidence": 0.7480469, "start": 605.64996, "word": "x" }, { "confidence": 0.97314453, "end": 606.20996, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.7480469, "start": 605.88995, "word": "and" }, { "confidence": 0.91430664, "end": 606.70996, "punctuated_word": "r.", "speaker": 1, "speaker_confidence": 0.7480469, "start": 606.20996, "word": "r" }, { "confidence": 0.9873047, "end": 607.08997, "punctuated_word": "And", "speaker": 1, "speaker_confidence": 0.7480469, "start": 606.85, "word": "and" }, { "confidence": 0.89501953, "end": 607.25, "punctuated_word": "these", "speaker": 1, "speaker_confidence": 0.7480469, "start": 607.08997, "word": "these" }, { "confidence": 1, "end": 607.41, "punctuated_word": "are", "speaker": 1, "speaker_confidence": 0.7480469, "start": 607.25, "word": "are" }, { "confidence": 0.9980469, "end": 607.81, "punctuated_word": "handy", "speaker": 1, "speaker_confidence": 0.7480469, "start": 607.41, "word": "handy" }, { "confidence": 1, "end": 608.31, "punctuated_word": "for", "speaker": 1, "speaker_confidence": 0.7480469, "start": 607.81, "word": "for" }, { "confidence": 0.99902344, "end": 609.08997, "punctuated_word": "making", "speaker": 1, "speaker_confidence": 0.7480469, "start": 608.61, "word": "making" }, { "confidence": 1, "end": 609.58997, "punctuated_word": "changes", "speaker": 1, "speaker_confidence": 0.7480469, "start": 609.08997, "word": "changes" }, { "confidence": 0.9921875, "end": 610.29, "punctuated_word": "while", "speaker": 1, "speaker_confidence": 0.7480469, "start": 609.88995, "word": "while" }, { "confidence": 1, "end": 610.76996, "punctuated_word": "in", "speaker": 1, "speaker_confidence": 0.7480469, "start": 610.29, "word": "in" }, { "confidence": 0.9921875, "end": 611.17, "punctuated_word": "command", "speaker": 1, "speaker_confidence": 0.7480469, "start": 610.76996, "word": "command" }, { "confidence": 0.9526367, "end": 611.67, "punctuated_word": "mode.", "speaker": 1, "speaker_confidence": 0.7480469, "start": 611.17, "word": "mode" }, { "confidence": 0.9770508, "end": 611.97, "punctuated_word": "If", "speaker": 1, "speaker_confidence": 0.4609375, "start": 611.73, "word": "if" }, { "confidence": 1, "end": 612.20996, "punctuated_word": "we", "speaker": 1, "speaker_confidence": 0.4609375, "start": 611.97, "word": "we" }, { "confidence": 1, "end": 612.44995, "punctuated_word": "go", "speaker": 1, "speaker_confidence": 0.4609375, "start": 612.20996, "word": "go" }, { "confidence": 1, "end": 612.76996, "punctuated_word": "back", "speaker": 1, "speaker_confidence": 0.4609375, "start": 612.44995, "word": "back" }, { "confidence": 1, "end": 613.17, "punctuated_word": "up", "speaker": 1, "speaker_confidence": 0.4609375, "start": 612.76996, "word": "up" }, { "confidence": 0.9902344, "end": 613.49, "punctuated_word": "right", "speaker": 1, "speaker_confidence": 0.4609375, "start": 613.17, "word": "right" }, { "confidence": 1, "end": 613.99, "punctuated_word": "here", "speaker": 1, "speaker_confidence": 0.4609375, "start": 613.49, "word": "here" }, { "confidence": 0.48706055, "end": 614.61, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.4609375, "start": 614.12994, "word": "and" }, { "confidence": 0.5439453, "end": 614.765, "punctuated_word": "so", "speaker": 1, "speaker_confidence": 0.4609375, "start": 614.61, "word": "so" }, { "confidence": 0.99902344, "end": 615.085, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.4609375, "start": 614.925, "word": "i" }, { "confidence": 0.5996094, "end": 615.16504, "punctuated_word": "wanna", "speaker": 1, "speaker_confidence": 0.4609375, "start": 615.085, "word": "wanna" }, { "confidence": 0.99316406, "end": 615.245, "punctuated_word": "get", "speaker": 1, "speaker_confidence": 0.4609375, "start": 615.16504, "word": "get" }, { "confidence": 0.9980469, "end": 615.325, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.67041016, "start": 615.245, "word": "to" }, { "confidence": 0.96777344, "end": 615.405, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.67041016, "start": 615.325, "word": "the" }, { "confidence": 1, "end": 615.805, "punctuated_word": "beginning", "speaker": 1, "speaker_confidence": 0.67041016, "start": 615.405, "word": "beginning" }, { "confidence": 0.9951172, "end": 615.965, "punctuated_word": "of", "speaker": 1, "speaker_confidence": 0.67041016, "start": 615.805, "word": "of" }, { "confidence": 0.9404297, "end": 616.04504, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.67041016, "start": 615.965, "word": "the" }, { "confidence": 0.8256836, "end": 616.54504, "punctuated_word": "sentence.", "speaker": 1, "speaker_confidence": 0.67041016, "start": 616.04504, "word": "sentence" }, { "confidence": 0.9580078, "end": 616.84503, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.67041016, "start": 616.685, "word": "so" }, { "confidence": 0.9189453, "end": 616.925, "punctuated_word": "I'm", "speaker": 1, "speaker_confidence": 0.67041016, "start": 616.84503, "word": "i'm" }, { "confidence": 0.9160156, "end": 617.085, "punctuated_word": "gonna", "speaker": 1, "speaker_confidence": 0.67041016, "start": 616.925, "word": "gonna" }, { "confidence": 0.9951172, "end": 617.245, "punctuated_word": "hit", "speaker": 1, "speaker_confidence": 0.67041016, "start": 617.085, "word": "hit" }, { "confidence": 0.98828125, "end": 617.565, "punctuated_word": "shift", "speaker": 1, "speaker_confidence": 0.67041016, "start": 617.245, "word": "shift" }, { "confidence": 0.7351074, "end": 617.805, "punctuated_word": "I,", "speaker": 1, "speaker_confidence": 0.67041016, "start": 617.565, "word": "i" }, { "confidence": 0.9970703, "end": 618.04504, "punctuated_word": "hit", "speaker": 1, "speaker_confidence": 0.67041016, "start": 617.805, "word": "hit" }, { "confidence": 0.99316406, "end": 618.445, "punctuated_word": "escape", "speaker": 1, "speaker_confidence": 0.67041016, "start": 618.04504, "word": "escape" }, { "confidence": 0.5761719, "end": 618.765, "punctuated_word": "because", "speaker": 1, "speaker_confidence": 0.67041016, "start": 618.445, "word": "because" }, { "confidence": 0.9980469, "end": 618.84503, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.67041016, "start": 618.765, "word": "i" }, { "confidence": 0.88183594, "end": 619.005, "punctuated_word": "wanna", "speaker": 1, "speaker_confidence": 0.59033203, "start": 618.84503, "word": "wanna" }, { "confidence": 0.9970703, "end": 619.245, "punctuated_word": "be", "speaker": 1, "speaker_confidence": 0.59033203, "start": 619.005, "word": "be" }, { "confidence": 0.9892578, "end": 619.325, "punctuated_word": "in", "speaker": 1, "speaker_confidence": 0.59033203, "start": 619.245, "word": "in" }, { "confidence": 0.9980469, "end": 619.645, "punctuated_word": "command", "speaker": 1, "speaker_confidence": 0.59033203, "start": 619.325, "word": "command" }, { "confidence": 0.9758301, "end": 619.885, "punctuated_word": "mode.", "speaker": 1, "speaker_confidence": 0.59033203, "start": 619.645, "word": "mode" }, { "confidence": 0.99121094, "end": 620.125, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.59033203, "start": 619.885, "word": "so" }, { "confidence": 0.9970703, "end": 620.28503, "punctuated_word": "you'll", "speaker": 1, "speaker_confidence": 0.59033203, "start": 620.125, "word": "you'll" }, { "confidence": 1, "end": 620.525, "punctuated_word": "see", "speaker": 1, "speaker_confidence": 0.59033203, "start": 620.28503, "word": "see" }, { "confidence": 1, "end": 620.685, "punctuated_word": "that", "speaker": 1, "speaker_confidence": 0.59033203, "start": 620.525, "word": "that" }, { "confidence": 0.99902344, "end": 620.765, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.7167969, "start": 620.685, "word": "i" }, { "confidence": 1, "end": 621.005, "punctuated_word": "have", "speaker": 1, "speaker_confidence": 0.7167969, "start": 620.765, "word": "have" }, { "confidence": 0.92089844, "end": 621.405, "punctuated_word": "4", "speaker": 1, "speaker_confidence": 0.7167969, "start": 621.005, "word": "4" }, { "confidence": 0.92626953, "end": 621.905, "punctuated_word": "j's.", "speaker": 1, "speaker_confidence": 0.7167969, "start": 621.405, "word": "j's" }, { "confidence": 0.9187012, "end": 622.64996, "punctuated_word": "Right.", "speaker": 1, "speaker_confidence": 0.7167969, "start": 622.32996, "word": "right" }, { "confidence": 0.93115234, "end": 622.81, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.7167969, "start": 622.64996, "word": "i" }, { "confidence": 1, "end": 623.05, "punctuated_word": "don't", "speaker": 1, "speaker_confidence": 0.7167969, "start": 622.81, "word": "don't" }, { "confidence": 1, "end": 623.29, "punctuated_word": "really", "speaker": 1, "speaker_confidence": 0.7167969, "start": 623.05, "word": "really" }, { "confidence": 0.9980469, "end": 623.45, "punctuated_word": "need", "speaker": 1, "speaker_confidence": 0.7167969, "start": 623.29, "word": "need" }, { "confidence": 1, "end": 623.69, "punctuated_word": "all", "speaker": 1, "speaker_confidence": 0.7167969, "start": 623.45, "word": "all" }, { "confidence": 1, "end": 623.85, "punctuated_word": "of", "speaker": 1, "speaker_confidence": 0.7167969, "start": 623.69, "word": "of" }, { "confidence": 0.9160156, "end": 624.08997, "punctuated_word": "those.", "speaker": 1, "speaker_confidence": 0.7167969, "start": 623.85, "word": "those" }, { "confidence": 1, "end": 624.17, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.7167969, "start": 624.08997, "word": "so" }, { "confidence": 0.92578125, "end": 624.32996, "punctuated_word": "what", "speaker": 1, "speaker_confidence": 0.7167969, "start": 624.17, "word": "what" }, { "confidence": 1, "end": 624.49, "punctuated_word": "we're", "speaker": 1, "speaker_confidence": 0.7167969, "start": 624.32996, "word": "we're" }, { "confidence": 0.99902344, "end": 624.61, "punctuated_word": "going", "speaker": 1, "speaker_confidence": 0.7167969, "start": 624.49, "word": "going" }, { "confidence": 0.99902344, "end": 624.73, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.6459961, "start": 624.61, "word": "to" }, { "confidence": 1, "end": 625.23, "punctuated_word": "do", "speaker": 1, "speaker_confidence": 0.6459961, "start": 624.73, "word": "do" }, { "confidence": 0.99609375, "end": 625.61, "punctuated_word": "is", "speaker": 1, "speaker_confidence": 0.6459961, "start": 625.37, "word": "is" }, { "confidence": 0.9892578, "end": 625.93, "punctuated_word": "actually", "speaker": 1, "speaker_confidence": 0.6459961, "start": 625.61, "word": "actually" }, { "confidence": 0.9970703, "end": 626.32996, "punctuated_word": "use", "speaker": 1, "speaker_confidence": 0.6459961, "start": 625.93, "word": "use" }, { "confidence": 0.98828125, "end": 626.73, "punctuated_word": "x", "speaker": 1, "speaker_confidence": 0.6459961, "start": 626.32996, "word": "x" }, { "confidence": 1, "end": 626.88995, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.6459961, "start": 626.73, "word": "to" }, { "confidence": 1, "end": 627.29, "punctuated_word": "delete", "speaker": 1, "speaker_confidence": 0.6459961, "start": 626.88995, "word": "delete" }, { "confidence": 0.9890137, "end": 627.69, "punctuated_word": "those.", "speaker": 1, "speaker_confidence": 0.6459961, "start": 627.29, "word": "those" }, { "confidence": 0.9980469, "end": 627.93, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.6459961, "start": 627.69, "word": "so" }, { "confidence": 0.96875, "end": 628.17, "punctuated_word": "x", "speaker": 1, "speaker_confidence": 0.6459961, "start": 627.93, "word": "x" }, { "confidence": 0.9980469, "end": 628.32996, "punctuated_word": "is", "speaker": 1, "speaker_confidence": 0.6459961, "start": 628.17, "word": "is" }, { "confidence": 0.99316406, "end": 628.49, "punctuated_word": "kind", "speaker": 1, "speaker_confidence": 0.6459961, "start": 628.32996, "word": "kind" }, { "confidence": 0.99902344, "end": 628.57, "punctuated_word": "of", "speaker": 1, "speaker_confidence": 0.6357422, "start": 628.49, "word": "of" }, { "confidence": 0.9819336, "end": 628.81, "punctuated_word": "like", "speaker": 1, "speaker_confidence": 0.6357422, "start": 628.57, "word": "like" }, { "confidence": 0.96972656, "end": 628.97, "punctuated_word": "x", "speaker": 1, "speaker_confidence": 0.6357422, "start": 628.81, "word": "x" }, { "confidence": 0.98535156, "end": 629.13, "punctuated_word": "out", "speaker": 1, "speaker_confidence": 0.6357422, "start": 628.97, "word": "out" }, { "confidence": 0.91748047, "end": 629.20996, "punctuated_word": "of", "speaker": 1, "speaker_confidence": 0.6357422, "start": 629.13, "word": "of" }, { "confidence": 0.84472656, "end": 629.69, "punctuated_word": "character.", "speaker": 1, "speaker_confidence": 0.6357422, "start": 629.20996, "word": "character" }, { "confidence": 0.9980469, "end": 630.145, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.6357422, "start": 629.69, "word": "so" }, { "confidence": 0.99609375, "end": 630.385, "punctuated_word": "I'll", "speaker": 1, "speaker_confidence": 0.6357422, "start": 630.22504, "word": "i'll" }, { "confidence": 0.9980469, "end": 630.54504, "punctuated_word": "hit", "speaker": 1, "speaker_confidence": 0.6357422, "start": 630.385, "word": "hit" }, { "confidence": 0.9951172, "end": 630.625, "punctuated_word": "it", "speaker": 1, "speaker_confidence": 0.6357422, "start": 630.54504, "word": "it" }, { "confidence": 0.69628906, "end": 631.125, "punctuated_word": "3", "speaker": 1, "speaker_confidence": 0.6357422, "start": 630.625, "word": "3" }, { "confidence": 0.8786621, "end": 632.22504, "punctuated_word": "times.", "speaker": 1, "speaker_confidence": 0.6357422, "start": 631.745, "word": "times" }, { "confidence": 0.875, "end": 632.625, "punctuated_word": "123.", "speaker": 1, "speaker_confidence": 0.6357422, "start": 632.22504, "word": "123" }, { "confidence": 0.9223633, "end": 632.78503, "punctuated_word": "And", "speaker": 1, "speaker_confidence": 0.66552734, "start": 632.625, "word": "and" }, { "confidence": 0.8227539, "end": 632.945, "punctuated_word": "now,", "speaker": 1, "speaker_confidence": 0.66552734, "start": 632.78503, "word": "now" }, { "confidence": 0.7338867, "end": 633.025, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.66552734, "start": 632.945, "word": "i" }, { "confidence": 1, "end": 633.265, "punctuated_word": "have", "speaker": 1, "speaker_confidence": 0.66552734, "start": 633.025, "word": "have" }, { "confidence": 0.5786133, "end": 633.505, "punctuated_word": "1", "speaker": 1, "speaker_confidence": 0.66552734, "start": 633.265, "word": "1" }, { "confidence": 0.88549805, "end": 633.98505, "punctuated_word": "j,", "speaker": 1, "speaker_confidence": 0.66552734, "start": 633.505, "word": "j" }, { "confidence": 1, "end": 634.22504, "punctuated_word": "which", "speaker": 1, "speaker_confidence": 0.66552734, "start": 633.98505, "word": "which" }, { "confidence": 1, "end": 634.385, "punctuated_word": "is", "speaker": 1, "speaker_confidence": 0.66552734, "start": 634.22504, "word": "is" }, { "confidence": 0.99902344, "end": 634.885, "punctuated_word": "correct.", "speaker": 1, "speaker_confidence": 0.66552734, "start": 634.385, "word": "correct" }, { "confidence": 0.9902344, "end": 635.585, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.61621094, "start": 635.34503, "word": "so" }, { "confidence": 0.35595703, "end": 635.66504, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.61621094, "start": 635.585, "word": "you" }, { "confidence": 0.30322266, "end": 635.98505, "punctuated_word": "can", "speaker": 1, "speaker_confidence": 0.61621094, "start": 635.66504, "word": "can" }, { "confidence": 0.8811035, "end": 636.465, "punctuated_word": "see,", "speaker": 1, "speaker_confidence": 0.61621094, "start": 635.98505, "word": "see" }, { "confidence": 0.99902344, "end": 636.705, "punctuated_word": "we're", "speaker": 1, "speaker_confidence": 0.61621094, "start": 636.465, "word": "we're" }, { "confidence": 1, "end": 636.945, "punctuated_word": "able", "speaker": 1, "speaker_confidence": 0.61621094, "start": 636.705, "word": "able" }, { "confidence": 0.99902344, "end": 637.34503, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.61621094, "start": 636.945, "word": "to" }, { "confidence": 1, "end": 637.745, "punctuated_word": "make", "speaker": 1, "speaker_confidence": 0.61621094, "start": 637.34503, "word": "make" }, { "confidence": 0.9951172, "end": 638.245, "punctuated_word": "edits", "speaker": 1, "speaker_confidence": 0.61621094, "start": 637.745, "word": "edits" }, { "confidence": 1, "end": 638.865, "punctuated_word": "without", "speaker": 1, "speaker_confidence": 0.61621094, "start": 638.465, "word": "without" }, { "confidence": 1, "end": 639.34503, "punctuated_word": "leaving", "speaker": 1, "speaker_confidence": 0.61621094, "start": 638.865, "word": "leaving" }, { "confidence": 0.9980469, "end": 639.66504, "punctuated_word": "command", "speaker": 1, "speaker_confidence": 0.61621094, "start": 639.34503, "word": "command" }, { "confidence": 0.9970703, "end": 640.13, "punctuated_word": "mode.", "speaker": 1, "speaker_confidence": 0.61621094, "start": 639.66504, "word": "mode" }, { "confidence": 0.9951172, "end": 640.53, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.49560547, "start": 640.37, "word": "so" }, { "confidence": 0.9941406, "end": 640.61, "punctuated_word": "we", "speaker": 1, "speaker_confidence": 0.49560547, "start": 640.53, "word": "we" }, { "confidence": 1, "end": 640.85, "punctuated_word": "just", "speaker": 1, "speaker_confidence": 0.49560547, "start": 640.61, "word": "just" }, { "confidence": 1, "end": 641.09, "punctuated_word": "talked", "speaker": 1, "speaker_confidence": 0.49560547, "start": 640.85, "word": "talked" }, { "confidence": 1, "end": 641.33, "punctuated_word": "about", "speaker": 1, "speaker_confidence": 0.49560547, "start": 641.09, "word": "about" }, { "confidence": 0.8520508, "end": 641.49, "punctuated_word": "x", "speaker": 1, "speaker_confidence": 0.49560547, "start": 641.33, "word": "x" }, { "confidence": 0.9453125, "end": 641.65, "punctuated_word": "for", "speaker": 1, "speaker_confidence": 0.49560547, "start": 641.49, "word": "for" }, { "confidence": 0.72314453, "end": 641.97003, "punctuated_word": "x", "speaker": 1, "speaker_confidence": 0.49560547, "start": 641.65, "word": "x" }, { "confidence": 0.4091797, "end": 642.05, "punctuated_word": "ing", "speaker": 1, "speaker_confidence": 0.49560547, "start": 641.97003, "word": "ing" }, { "confidence": 0.9223633, "end": 642.21, "punctuated_word": "out", "speaker": 1, "speaker_confidence": 0.49560547, "start": 642.05, "word": "out" }, { "confidence": 0.9848633, "end": 642.71, "punctuated_word": "characters.", "speaker": 1, "speaker_confidence": 0.49560547, "start": 642.21, "word": "characters" }, { "confidence": 0.85058594, "end": 643.33, "punctuated_word": "Now,", "speaker": 1, "speaker_confidence": 0.74121094, "start": 643.17, "word": "now" }, { "confidence": 1, "end": 643.57, "punctuated_word": "let's", "speaker": 1, "speaker_confidence": 0.74121094, "start": 643.33, "word": "let's" }, { "confidence": 1, "end": 643.73, "punctuated_word": "talk", "speaker": 1, "speaker_confidence": 0.74121094, "start": 643.57, "word": "talk" }, { "confidence": 1, "end": 644.05, "punctuated_word": "about", "speaker": 1, "speaker_confidence": 0.74121094, "start": 643.73, "word": "about" }, { "confidence": 0.96435547, "end": 644.55, "punctuated_word": "r", "speaker": 1, "speaker_confidence": 0.74121094, "start": 644.05, "word": "r" }, { "confidence": 0.71777344, "end": 645.25, "punctuated_word": "for", "speaker": 1, "speaker_confidence": 0.74121094, "start": 644.85, "word": "for" }, { "confidence": 0.99902344, "end": 645.75, "punctuated_word": "replacing", "speaker": 1, "speaker_confidence": 0.74121094, "start": 645.25, "word": "replacing" }, { "confidence": 0.9765625, "end": 646.31, "punctuated_word": "characters.", "speaker": 1, "speaker_confidence": 0.74121094, "start": 645.81, "word": "characters" }, { "confidence": 0.9970703, "end": 646.69, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.74121094, "start": 646.37, "word": "so" }, { "confidence": 0.9926758, "end": 646.93, "punctuated_word": "I'm", "speaker": 1, "speaker_confidence": 0.74121094, "start": 646.69, "word": "i'm" }, { "confidence": 0.9980469, "end": 647.17, "punctuated_word": "going", "speaker": 1, "speaker_confidence": 0.74121094, "start": 646.93, "word": "going" }, { "confidence": 0.9970703, "end": 647.33, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.74121094, "start": 647.17, "word": "to" }, { "confidence": 0.99902344, "end": 647.49, "punctuated_word": "go", "speaker": 1, "speaker_confidence": 0.74121094, "start": 647.33, "word": "go" }, { "confidence": 0.99609375, "end": 647.57, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.74121094, "start": 647.49, "word": "to" }, { "confidence": 0.99121094, "end": 647.81, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.74121094, "start": 647.57, "word": "the" }, { "confidence": 0.9921875, "end": 648.05, "punctuated_word": "h", "speaker": 1, "speaker_confidence": 0.74121094, "start": 647.81, "word": "h" }, { "confidence": 0.9819336, "end": 648.465, "punctuated_word": "here", "speaker": 1, "speaker_confidence": 0.74121094, "start": 648.05, "word": "here" }, { "confidence": 0.9658203, "end": 648.585, "punctuated_word": "And", "speaker": 1, "speaker_confidence": 0.72753906, "start": 648.54504, "word": "and" }, { "confidence": 0.9970703, "end": 648.625, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.72753906, "start": 648.585, "word": "i" }, { "confidence": 1, "end": 648.86505, "punctuated_word": "want", "speaker": 1, "speaker_confidence": 0.72753906, "start": 648.625, "word": "want" }, { "confidence": 0.99902344, "end": 648.945, "punctuated_word": "this", "speaker": 1, "speaker_confidence": 0.72753906, "start": 648.86505, "word": "this" }, { "confidence": 0.99902344, "end": 649.145, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.72753906, "start": 648.945, "word": "to" }, { "confidence": 1, "end": 649.34503, "punctuated_word": "be", "speaker": 1, "speaker_confidence": 0.72753906, "start": 649.145, "word": "be" }, { "confidence": 0.7458496, "end": 649.66504, "punctuated_word": "capital,", "speaker": 1, "speaker_confidence": 0.72753906, "start": 649.34503, "word": "capital" }, { "confidence": 0.99902344, "end": 649.74506, "punctuated_word": "so", "speaker": 1, "speaker_confidence": 0.72753906, "start": 649.66504, "word": "so" }, { "confidence": 0.99560547, "end": 649.905, "punctuated_word": "I'll", "speaker": 1, "speaker_confidence": 0.72753906, "start": 649.74506, "word": "i'll" }, { "confidence": 1, "end": 650.405, "punctuated_word": "hit", "speaker": 1, "speaker_confidence": 0.72753906, "start": 649.905, "word": "hit" }, { "confidence": 0.9604492, "end": 650.945, "punctuated_word": "r", "speaker": 1, "speaker_confidence": 0.72753906, "start": 650.625, "word": "r" }, { "confidence": 0.9160156, "end": 651.185, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.72753906, "start": 650.945, "word": "and" }, { "confidence": 1, "end": 651.585, "punctuated_word": "then", "speaker": 1, "speaker_confidence": 0.72753906, "start": 651.185, "word": "then" }, { "confidence": 0.9941406, "end": 652.065, "punctuated_word": "shift", "speaker": 1, "speaker_confidence": 0.72753906, "start": 651.585, "word": "shift" }, { "confidence": 0.97802734, "end": 652.565, "punctuated_word": "h,", "speaker": 1, "speaker_confidence": 0.72753906, "start": 652.065, "word": "h" }, { "confidence": 0.99560547, "end": 652.86505, "punctuated_word": "uh,", "speaker": 1, "speaker_confidence": 0.72753906, "start": 652.705, "word": "uh" }, { "confidence": 0.99902344, "end": 653.10504, "punctuated_word": "which", "speaker": 1, "speaker_confidence": 0.72753906, "start": 652.86505, "word": "which" }, { "confidence": 1, "end": 653.34503, "punctuated_word": "is", "speaker": 1, "speaker_confidence": 0.72753906, "start": 653.10504, "word": "is" }, { "confidence": 1, "end": 653.585, "punctuated_word": "just", "speaker": 1, "speaker_confidence": 0.72753906, "start": 653.34503, "word": "just" }, { "confidence": 0.9892578, "end": 653.825, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.72753906, "start": 653.585, "word": "a" }, { "confidence": 0.9003906, "end": 653.98505, "punctuated_word": "a", "speaker": 1, "speaker_confidence": 0.72753906, "start": 653.825, "word": "a" }, { "confidence": 0.9902344, "end": 654.465, "punctuated_word": "capital", "speaker": 1, "speaker_confidence": 0.72753906, "start": 653.98505, "word": "capital" }, { "confidence": 0.694458, "end": 654.965, "punctuated_word": "h,", "speaker": 1, "speaker_confidence": 0.72753906, "start": 654.465, "word": "h" }, { "confidence": 0.99902344, "end": 655.34503, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.72753906, "start": 655.185, "word": "and" }, { "confidence": 0.9980469, "end": 655.505, "punctuated_word": "now", "speaker": 1, "speaker_confidence": 0.72753906, "start": 655.34503, "word": "now" }, { "confidence": 0.66552734, "end": 655.585, "punctuated_word": "it", "speaker": 1, "speaker_confidence": 0.72753906, "start": 655.505, "word": "it" }, { "confidence": 0.90722656, "end": 655.825, "punctuated_word": "will", "speaker": 1, "speaker_confidence": 0.72753906, "start": 655.585, "word": "will" }, { "confidence": 0.97802734, "end": 656.145, "punctuated_word": "replace", "speaker": 1, "speaker_confidence": 0.72753906, "start": 655.825, "word": "replace" }, { "confidence": 0.904541, "end": 656.30505, "punctuated_word": "it.", "speaker": 1, "speaker_confidence": 0.72753906, "start": 656.145, "word": "it" }, { "confidence": 0.99902344, "end": 656.465, "punctuated_word": "And", "speaker": 1, "speaker_confidence": 0.72753906, "start": 656.30505, "word": "and" }, { "confidence": 0.93603516, "end": 656.89, "punctuated_word": "again,", "speaker": 1, "speaker_confidence": 0.72753906, "start": 656.465, "word": "again" }, { "confidence": 0.84765625, "end": 657.05, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.39941406, "start": 656.89, "word": "i" }, { "confidence": 1, "end": 657.29004, "punctuated_word": "haven't", "speaker": 1, "speaker_confidence": 0.39941406, "start": 657.05, "word": "haven't" }, { "confidence": 1, "end": 657.53, "punctuated_word": "left", "speaker": 1, "speaker_confidence": 0.39941406, "start": 657.29004, "word": "left" }, { "confidence": 0.9902344, "end": 657.93, "punctuated_word": "command", "speaker": 1, "speaker_confidence": 0.39941406, "start": 657.53, "word": "command" }, { "confidence": 0.8852539, "end": 658.33, "punctuated_word": "mode.", "speaker": 1, "speaker_confidence": 0.39941406, "start": 657.93, "word": "mode" }, { "confidence": 0.8366699, "end": 658.57, "punctuated_word": "Here,", "speaker": 1, "speaker_confidence": 0.51708984, "start": 658.33, "word": "here" }, { "confidence": 0.99902344, "end": 658.73004, "punctuated_word": "let's", "speaker": 1, "speaker_confidence": 0.51708984, "start": 658.57, "word": "let's" }, { "confidence": 0.8305664, "end": 658.97003, "punctuated_word": "see", "speaker": 1, "speaker_confidence": 0.51708984, "start": 658.73004, "word": "see" }, { "confidence": 0.99902344, "end": 659.13, "punctuated_word": "this", "speaker": 1, "speaker_confidence": 0.51708984, "start": 658.97003, "word": "this" }, { "confidence": 0.99609375, "end": 659.45, "punctuated_word": "for", "speaker": 1, "speaker_confidence": 0.51708984, "start": 659.13, "word": "for" }, { "confidence": 0.8009033, "end": 659.95, "punctuated_word": "22/22.", "speaker": 1, "speaker_confidence": 0.51708984, "start": 659.45, "word": "22/22" }, { "confidence": 0.9995117, "end": 661.45, "punctuated_word": "Let's", "speaker": 1, "speaker_confidence": 0.46484375, "start": 661.13, "word": "let's" }, { "confidence": 1, "end": 661.95, "punctuated_word": "change", "speaker": 1, "speaker_confidence": 0.46484375, "start": 661.45, "word": "change" }, { "confidence": 1, "end": 662.49, "punctuated_word": "this", "speaker": 1, "speaker_confidence": 0.46484375, "start": 662.01, "word": "this" }, { "confidence": 0.9831543, "end": 662.99, "punctuated_word": "to,", "speaker": 1, "speaker_confidence": 0.46484375, "start": 662.49, "word": "to" }, { "confidence": 1, "end": 663.85004, "punctuated_word": "uh,", "speaker": 1, "speaker_confidence": 0.46484375, "start": 663.45, "word": "uh" }, { "confidence": 0.9013672, "end": 664.35004, "punctuated_word": "52", "speaker": 1, "speaker_confidence": 0.46484375, "start": 663.85004, "word": "52" }, { "confidence": 0.9782715, "end": 665.375, "punctuated_word": "22.", "speaker": 1, "speaker_confidence": 0.8095703, "start": 664.895, "word": "22" }, { "confidence": 0.9970703, "end": 665.53503, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.8095703, "start": 665.375, "word": "so" }, { "confidence": 0.9025879, "end": 665.775, "punctuated_word": "we'll", "speaker": 1, "speaker_confidence": 0.8095703, "start": 665.53503, "word": "we'll" }, { "confidence": 1, "end": 666.09503, "punctuated_word": "hit", "speaker": 1, "speaker_confidence": 0.8095703, "start": 665.775, "word": "hit" }, { "confidence": 0.97998047, "end": 666.49506, "punctuated_word": "r", "speaker": 1, "speaker_confidence": 0.8095703, "start": 666.09503, "word": "r" }, { "confidence": 0.8339844, "end": 666.655, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.8095703, "start": 666.49506, "word": "and" }, { "confidence": 0.9980469, "end": 666.895, "punctuated_word": "then", "speaker": 1, "speaker_confidence": 0.8095703, "start": 666.655, "word": "then" }, { "confidence": 0.8310547, "end": 667.375, "punctuated_word": "5.", "speaker": 1, "speaker_confidence": 0.8095703, "start": 666.895, "word": "5" }, { "confidence": 0.99121094, "end": 667.61505, "punctuated_word": "And", "speaker": 1, "speaker_confidence": 0.8095703, "start": 667.375, "word": "and" }, { "confidence": 0.7409668, "end": 667.85504, "punctuated_word": "so,", "speaker": 1, "speaker_confidence": 0.8095703, "start": 667.61505, "word": "so" }, { "confidence": 0.89208984, "end": 668.255, "punctuated_word": "basically,", "speaker": 1, "speaker_confidence": 0.8095703, "start": 667.85504, "word": "basically" }, { "confidence": 0.99902344, "end": 668.49506, "punctuated_word": "what", "speaker": 1, "speaker_confidence": 0.8095703, "start": 668.255, "word": "what" }, { "confidence": 1, "end": 668.655, "punctuated_word": "it", "speaker": 1, "speaker_confidence": 0.8095703, "start": 668.49506, "word": "it" }, { "confidence": 1, "end": 669.155, "punctuated_word": "does", "speaker": 1, "speaker_confidence": 0.8095703, "start": 668.655, "word": "does" }, { "confidence": 0.94140625, "end": 669.455, "punctuated_word": "is", "speaker": 1, "speaker_confidence": 0.8095703, "start": 669.29504, "word": "is" }, { "confidence": 0.96435547, "end": 669.61505, "punctuated_word": "it", "speaker": 1, "speaker_confidence": 0.8095703, "start": 669.455, "word": "it" }, { "confidence": 1, "end": 670.11505, "punctuated_word": "replaces", "speaker": 1, "speaker_confidence": 0.8095703, "start": 669.61505, "word": "replaces" }, { "confidence": 1, "end": 670.575, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.8095703, "start": 670.335, "word": "the" }, { "confidence": 1, "end": 671.075, "punctuated_word": "character", "speaker": 1, "speaker_confidence": 0.8095703, "start": 670.575, "word": "character" }, { "confidence": 0.9941406, "end": 671.93506, "punctuated_word": "under", "speaker": 1, "speaker_confidence": 0.8095703, "start": 671.61505, "word": "under" }, { "confidence": 1, "end": 672.09503, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.8095703, "start": 671.93506, "word": "the" }, { "confidence": 0.99902344, "end": 672.59503, "punctuated_word": "cursor", "speaker": 1, "speaker_confidence": 0.8095703, "start": 672.09503, "word": "cursor" }, { "confidence": 0.97802734, "end": 673.24005, "punctuated_word": "with", "speaker": 1, "speaker_confidence": 0.8095703, "start": 673, "word": "with" }, { "confidence": 0.99609375, "end": 673.32, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.8095703, "start": 673.24005, "word": "the" }, { "confidence": 0.99902344, "end": 673.72003, "punctuated_word": "new", "speaker": 1, "speaker_confidence": 0.8095703, "start": 673.32, "word": "new" }, { "confidence": 1, "end": 674.04004, "punctuated_word": "character", "speaker": 1, "speaker_confidence": 0.8095703, "start": 673.72003, "word": "character" }, { "confidence": 1, "end": 674.2, "punctuated_word": "that", "speaker": 1, "speaker_confidence": 0.8095703, "start": 674.04004, "word": "that" }, { "confidence": 1, "end": 674.36005, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.8095703, "start": 674.2, "word": "you" }, { "confidence": 0.99121094, "end": 674.60004, "punctuated_word": "type", "speaker": 1, "speaker_confidence": 0.8095703, "start": 674.36005, "word": "type" }, { "confidence": 0.9394531, "end": 675.10004, "punctuated_word": "in.", "speaker": 1, "speaker_confidence": 0.8095703, "start": 674.60004, "word": "in" }, { "confidence": 0.9980469, "end": 675.4, "punctuated_word": "So", "speaker": 1, "speaker_confidence": 0.8095703, "start": 675.16003, "word": "so" }, { "confidence": 0.9975586, "end": 675.64, "punctuated_word": "we've", "speaker": 1, "speaker_confidence": 0.8095703, "start": 675.4, "word": "we've" }, { "confidence": 1, "end": 675.88, "punctuated_word": "talked", "speaker": 1, "speaker_confidence": 0.8095703, "start": 675.64, "word": "talked" }, { "confidence": 1, "end": 676.38, "punctuated_word": "about", "speaker": 1, "speaker_confidence": 0.8095703, "start": 675.88, "word": "about" }, { "confidence": 0.9951172, "end": 677.34, "punctuated_word": "navigation", "speaker": 1, "speaker_confidence": 0.58447266, "start": 676.84, "word": "navigation" }, { "confidence": 0.9970703, "end": 677.64, "punctuated_word": "with", "speaker": 1, "speaker_confidence": 0.58447266, "start": 677.4, "word": "with" }, { "confidence": 0.8339844, "end": 677.88, "punctuated_word": "h", "speaker": 1, "speaker_confidence": 0.58447266, "start": 677.64, "word": "h" }, { "confidence": 0.70996094, "end": 678.12006, "punctuated_word": "j", "speaker": 1, "speaker_confidence": 0.58447266, "start": 677.88, "word": "j" }, { "confidence": 0.92822266, "end": 678.44, "punctuated_word": "k", "speaker": 1, "speaker_confidence": 0.58447266, "start": 678.12006, "word": "k" }, { "confidence": 0.84887695, "end": 678.76, "punctuated_word": "l.", "speaker": 1, "speaker_confidence": 0.58447266, "start": 678.44, "word": "l" }, { "confidence": 0.9916992, "end": 679, "punctuated_word": "We've", "speaker": 1, "speaker_confidence": 0.58447266, "start": 678.76, "word": "we've" }, { "confidence": 1, "end": 679.16003, "punctuated_word": "talked", "speaker": 1, "speaker_confidence": 0.58447266, "start": 679, "word": "talked" }, { "confidence": 0.99902344, "end": 679.48004, "punctuated_word": "about", "speaker": 1, "speaker_confidence": 0.58447266, "start": 679.16003, "word": "about" }, { "confidence": 0.8613281, "end": 679.96, "punctuated_word": "editing", "speaker": 1, "speaker_confidence": 0.58447266, "start": 679.48004, "word": "editing" }, { "confidence": 0.98828125, "end": 680.2, "punctuated_word": "in", "speaker": 1, "speaker_confidence": 0.58447266, "start": 679.96, "word": "in" }, { "confidence": 0.99902344, "end": 680.44, "punctuated_word": "line", "speaker": 1, "speaker_confidence": 0.58447266, "start": 680.2, "word": "line" }, { "confidence": 0.99902344, "end": 680.935, "punctuated_word": "with", "speaker": 1, "speaker_confidence": 0.58447266, "start": 680.44, "word": "with" }, { "confidence": 0.6821289, "end": 681.65497, "punctuated_word": "I,", "speaker": 1, "speaker_confidence": 0.58447266, "start": 681.255, "word": "i" }, { "confidence": 0.9667969, "end": 682.15497, "punctuated_word": "capital", "speaker": 1, "speaker_confidence": 0.58447266, "start": 681.65497, "word": "capital" }, { "confidence": 0.90649414, "end": 682.455, "punctuated_word": "I,", "speaker": 1, "speaker_confidence": 0.58447266, "start": 682.215, "word": "i" }, { "confidence": 0.82836914, "end": 682.775, "punctuated_word": "a,", "speaker": 1, "speaker_confidence": 0.58447266, "start": 682.455, "word": "a" }, { "confidence": 0.9267578, "end": 682.935, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.58447266, "start": 682.775, "word": "and" }, { "confidence": 0.99121094, "end": 683.335, "punctuated_word": "capital", "speaker": 1, "speaker_confidence": 0.58447266, "start": 682.935, "word": "capital" }, { "confidence": 0.91674805, "end": 683.65497, "punctuated_word": "a.", "speaker": 1, "speaker_confidence": 0.58447266, "start": 683.335, "word": "a" }, { "confidence": 0.7128906, "end": 683.895, "punctuated_word": "And", "speaker": 1, "speaker_confidence": 0.5649414, "start": 683.65497, "word": "and" }, { "confidence": 0.70703125, "end": 683.975, "punctuated_word": "now", "speaker": 1, "speaker_confidence": 0.5649414, "start": 683.895, "word": "now" }, { "confidence": 0.91967773, "end": 684.055, "punctuated_word": "I've", "speaker": 1, "speaker_confidence": 0.5649414, "start": 683.975, "word": "i've" }, { "confidence": 0.9970703, "end": 684.295, "punctuated_word": "talked", "speaker": 1, "speaker_confidence": 0.5649414, "start": 684.055, "word": "talked" }, { "confidence": 0.99902344, "end": 684.535, "punctuated_word": "about", "speaker": 1, "speaker_confidence": 0.5649414, "start": 684.295, "word": "about" }, { "confidence": 0.99902344, "end": 684.775, "punctuated_word": "making", "speaker": 1, "speaker_confidence": 0.5649414, "start": 684.535, "word": "making" }, { "confidence": 0.99902344, "end": 685.095, "punctuated_word": "changes", "speaker": 1, "speaker_confidence": 0.5649414, "start": 684.775, "word": "changes" }, { "confidence": 0.46801758, "end": 685.335, "punctuated_word": "on", "speaker": 1, "speaker_confidence": 0.5649414, "start": 685.095, "word": "on" }, { "confidence": 0.9892578, "end": 685.575, "punctuated_word": "command", "speaker": 1, "speaker_confidence": 0.5649414, "start": 685.335, "word": "command" }, { "confidence": 0.9873047, "end": 685.815, "punctuated_word": "mode", "speaker": 1, "speaker_confidence": 0.5649414, "start": 685.575, "word": "mode" }, { "confidence": 0.99121094, "end": 686.055, "punctuated_word": "with", "speaker": 1, "speaker_confidence": 0.5649414, "start": 685.815, "word": "with" }, { "confidence": 0.9350586, "end": 686.375, "punctuated_word": "x", "speaker": 1, "speaker_confidence": 0.5649414, "start": 686.055, "word": "x" }, { "confidence": 0.984375, "end": 686.535, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.5649414, "start": 686.375, "word": "and" }, { "confidence": 0.9951172, "end": 687.035, "punctuated_word": "r.", "speaker": 1, "speaker_confidence": 0.5649414, "start": 686.535, "word": "r" }, { "confidence": 0.9941406, "end": 687.495, "punctuated_word": "I", "speaker": 1, "speaker_confidence": 0.49316406, "start": 687.335, "word": "i" }, { "confidence": 1, "end": 687.65497, "punctuated_word": "hope", "speaker": 1, "speaker_confidence": 0.49316406, "start": 687.495, "word": "hope" }, { "confidence": 1, "end": 687.815, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.49316406, "start": 687.65497, "word": "you" }, { "confidence": 0.9921875, "end": 688.215, "punctuated_word": "enjoyed", "speaker": 1, "speaker_confidence": 0.49316406, "start": 687.815, "word": "enjoyed" }, { "confidence": 1, "end": 688.455, "punctuated_word": "that", "speaker": 1, "speaker_confidence": 0.49316406, "start": 688.215, "word": "that" }, { "confidence": 1, "end": 688.855, "punctuated_word": "brief", "speaker": 1, "speaker_confidence": 0.49316406, "start": 688.455, "word": "brief" }, { "confidence": 1, "end": 689.355, "punctuated_word": "introduction", "speaker": 1, "speaker_confidence": 0.49316406, "start": 688.855, "word": "introduction" }, { "confidence": 0.9980469, "end": 689.65497, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.49316406, "start": 689.415, "word": "to" }, { "confidence": 0.61376953, "end": 690.055, "punctuated_word": "Vim", "speaker": 1, "speaker_confidence": 0.49316406, "start": 689.65497, "word": "vim" }, { "confidence": 0.9086914, "end": 690.375, "punctuated_word": "inside", "speaker": 1, "speaker_confidence": 0.49316406, "start": 690.055, "word": "inside" }, { "confidence": 0.8588867, "end": 690.83, "punctuated_word": "Versus", "speaker": 1, "speaker_confidence": 0.49316406, "start": 690.375, "word": "versus" }, { "confidence": 0.9433594, "end": 691.31, "punctuated_word": "code.", "speaker": 1, "speaker_confidence": 0.49316406, "start": 690.91003, "word": "code" }, { "confidence": 0.7895508, "end": 691.55, "punctuated_word": "If", "speaker": 1, "speaker_confidence": 0.49316406, "start": 691.31, "word": "if" }, { "confidence": 0.94873047, "end": 691.71, "punctuated_word": "you'd", "speaker": 1, "speaker_confidence": 0.49316406, "start": 691.55, "word": "you'd" }, { "confidence": 0.99902344, "end": 691.95, "punctuated_word": "like", "speaker": 1, "speaker_confidence": 0.49316406, "start": 691.71, "word": "like" }, { "confidence": 0.9980469, "end": 692.03, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.6176758, "start": 691.95, "word": "to" }, { "confidence": 1, "end": 692.35004, "punctuated_word": "learn", "speaker": 1, "speaker_confidence": 0.6176758, "start": 692.03, "word": "learn" }, { "confidence": 0.9880371, "end": 692.85004, "punctuated_word": "more,", "speaker": 1, "speaker_confidence": 0.6176758, "start": 692.35004, "word": "more" }, { "confidence": 1, "end": 693.23004, "punctuated_word": "head", "speaker": 1, "speaker_confidence": 0.6176758, "start": 692.99, "word": "head" }, { "confidence": 0.9970703, "end": 693.55, "punctuated_word": "over", "speaker": 1, "speaker_confidence": 0.6176758, "start": 693.23004, "word": "over" }, { "confidence": 0.99902344, "end": 694.03, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.6176758, "start": 693.55, "word": "to" }, { "confidence": 0.37597656, "end": 694.27, "punctuated_word": "vim", "speaker": 1, "speaker_confidence": 0.6176758, "start": 694.03, "word": "vim" }, { "confidence": 0.6660156, "end": 694.51, "punctuated_word": "for", "speaker": 1, "speaker_confidence": 0.6176758, "start": 694.27, "word": "for" }, { "confidence": 0.5517578, "end": 694.75, "punctuated_word": "v", "speaker": 1, "speaker_confidence": 0.6176758, "start": 694.51, "word": "v" }, { "confidence": 0.6381836, "end": 694.91003, "punctuated_word": "s", "speaker": 1, "speaker_confidence": 0.6176758, "start": 694.75, "word": "s" }, { "confidence": 0.98291016, "end": 695.23004, "punctuated_word": "code", "speaker": 1, "speaker_confidence": 0.6176758, "start": 694.91003, "word": "code" }, { "confidence": 0.6816406, "end": 695.47003, "punctuated_word": "dot", "speaker": 1, "speaker_confidence": 0.6176758, "start": 695.23004, "word": "dot" }, { "confidence": 0.7651367, "end": 695.97003, "punctuated_word": "com", "speaker": 1, "speaker_confidence": 0.6176758, "start": 695.47003, "word": "com" }, { "confidence": 0.82910156, "end": 696.27, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.6176758, "start": 696.03, "word": "and" }, { "confidence": 0.99902344, "end": 696.43, "punctuated_word": "check", "speaker": 1, "speaker_confidence": 0.6176758, "start": 696.27, "word": "check" }, { "confidence": 0.9980469, "end": 696.59, "punctuated_word": "out", "speaker": 1, "speaker_confidence": 0.6176758, "start": 696.43, "word": "out" }, { "confidence": 1, "end": 696.75, "punctuated_word": "my", "speaker": 1, "speaker_confidence": 0.6176758, "start": 696.59, "word": "my" }, { "confidence": 0.99853516, "end": 697.25, "punctuated_word": "course.", "speaker": 1, "speaker_confidence": 0.6176758, "start": 696.75, "word": "course" }, { "confidence": 0.99853516, "end": 697.71, "punctuated_word": "It's", "speaker": 1, "speaker_confidence": 0.6176758, "start": 697.47003, "word": "it's" }, { "confidence": 1, "end": 698.03, "punctuated_word": "got", "speaker": 1, "speaker_confidence": 0.6176758, "start": 697.71, "word": "got" }, { "confidence": 0.8964844, "end": 698.53, "punctuated_word": "100", "speaker": 1, "speaker_confidence": 0.6176758, "start": 698.03, "word": "100" }, { "confidence": 0.9970703, "end": 699.17004, "punctuated_word": "exercises", "speaker": 1, "speaker_confidence": 0.6176758, "start": 698.67004, "word": "exercises" }, { "confidence": 0.9980469, "end": 699.39, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.6176758, "start": 699.31, "word": "to" }, { "confidence": 1, "end": 699.63, "punctuated_word": "help", "speaker": 1, "speaker_confidence": 0.6176758, "start": 699.39, "word": "help" }, { "confidence": 0.9980469, "end": 699.87, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.6176758, "start": 699.63, "word": "you" }, { "confidence": 0.9980469, "end": 700.35004, "punctuated_word": "learn", "speaker": 1, "speaker_confidence": 0.6176758, "start": 699.87, "word": "learn" }, { "confidence": 0.93408203, "end": 700.575, "punctuated_word": "how", "speaker": 1, "speaker_confidence": 0.6176758, "start": 700.35004, "word": "how" }, { "confidence": 0.9658203, "end": 700.735, "punctuated_word": "How", "speaker": 1, "speaker_confidence": 0.6176758, "start": 700.575, "word": "how" }, { "confidence": 0.9580078, "end": 700.815, "punctuated_word": "to", "speaker": 1, "speaker_confidence": 0.6176758, "start": 700.735, "word": "to" }, { "confidence": 0.9902344, "end": 700.97504, "punctuated_word": "use", "speaker": 1, "speaker_confidence": 0.60058594, "start": 700.815, "word": "use" }, { "confidence": 0.91015625, "end": 701.295, "punctuated_word": "Vim", "speaker": 1, "speaker_confidence": 0.60058594, "start": 700.97504, "word": "vim" }, { "confidence": 0.96972656, "end": 701.775, "punctuated_word": "inside", "speaker": 1, "speaker_confidence": 0.60058594, "start": 701.295, "word": "inside" }, { "confidence": 0.78466797, "end": 702.09503, "punctuated_word": "Versus", "speaker": 1, "speaker_confidence": 0.60058594, "start": 701.775, "word": "versus" }, { "confidence": 0.77856445, "end": 702.495, "punctuated_word": "Code,", "speaker": 1, "speaker_confidence": 0.60058594, "start": 702.09503, "word": "code" }, { "confidence": 0.99902344, "end": 702.655, "punctuated_word": "and", "speaker": 1, "speaker_confidence": 0.60058594, "start": 702.495, "word": "and" }, { "confidence": 1, "end": 702.815, "punctuated_word": "we", "speaker": 1, "speaker_confidence": 0.60058594, "start": 702.655, "word": "we" }, { "confidence": 0.9980469, "end": 703.055, "punctuated_word": "teach", "speaker": 1, "speaker_confidence": 0.60058594, "start": 702.815, "word": "teach" }, { "confidence": 1, "end": 703.295, "punctuated_word": "you", "speaker": 1, "speaker_confidence": 0.60058594, "start": 703.055, "word": "you" }, { "confidence": 0.92333984, "end": 703.795, "punctuated_word": "22", "speaker": 1, "speaker_confidence": 0.60058594, "start": 703.295, "word": "22" }, { "confidence": 0.9980469, "end": 704.335, "punctuated_word": "different", "speaker": 1, "speaker_confidence": 0.60058594, "start": 703.85504, "word": "different" }, { "confidence": 1, "end": 704.835, "punctuated_word": "commands.", "speaker": 1, "speaker_confidence": 0.60058594, "start": 704.335, "word": "commands" }, { "confidence": 0.99609375, "end": 705.53503, "punctuated_word": "Use", "speaker": 1, "speaker_confidence": 0.60058594, "start": 705.295, "word": "use" }, { "confidence": 1, "end": 705.695, "punctuated_word": "the", "speaker": 1, "speaker_confidence": 0.60058594, "start": 705.53503, "word": "the" }, { "confidence": 1, "end": 706.015, "punctuated_word": "coupon", "speaker": 1, "speaker_confidence": 0.60058594, "start": 705.695, "word": "coupon" }, { "confidence": 0.9980469, "end": 706.335, "punctuated_word": "code", "speaker": 1, "speaker_confidence": 0.60058594, "start": 706.015, "word": "code" }, { "confidence": 0.6765137, "end": 706.835, "punctuated_word": "Fireship", "speaker": 1, "speaker_confidence": 0.60058594, "start": 706.335, "word": "fireship" }, { "confidence": 0.9951172, "end": 707.215, "punctuated_word": "for", "speaker": 1, "speaker_confidence": 0.60058594, "start": 706.895, "word": "for" }, { "confidence": 0.9970703, "end": 707.695, "punctuated_word": "$5", "speaker": 1, "speaker_confidence": 0.60058594, "start": 707.215, "word": "$5" }, { "confidence": 0.99853516, "end": 708.195, "punctuated_word": "off.", "speaker": 1, "speaker_confidence": 0.60058594, "start": 707.695, "word": "off" }, { "confidence": 0.96875, "end": 708.7375, "punctuated_word": "Thanks", "speaker": 0, "speaker_confidence": 0.42382812, "start": 708.57745, "word": "thanks" }, { "confidence": 1, "end": 708.89746, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.42382812, "start": 708.7375, "word": "for" }, { "confidence": 0.85058594, "end": 709.39746, "punctuated_word": "watching,", "speaker": 0, "speaker_confidence": 0.42382812, "start": 708.89746, "word": "watching" }, { "confidence": 1, "end": 709.69745, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.42382812, "start": 709.45746, "word": "and" }, { "confidence": 1, "end": 709.8575, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.42382812, "start": 709.69745, "word": "i" }, { "confidence": 1, "end": 710.01746, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.42382812, "start": 709.8575, "word": "will" }, { "confidence": 0.99902344, "end": 710.25745, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.42382812, "start": 710.01746, "word": "see" }, { "confidence": 0.9980469, "end": 710.4175, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.42382812, "start": 710.25745, "word": "you" }, { "confidence": 0.99902344, "end": 710.6575, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.42382812, "start": 710.4175, "word": "in" }, { "confidence": 0.99902344, "end": 710.7375, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.42382812, "start": 710.6575, "word": "the" }, { "confidence": 1, "end": 710.9775, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.42382812, "start": 710.7375, "word": "next" }, { "confidence": 0.9921875, "end": 711.4775, "punctuated_word": "one.", "speaker": 0, "speaker_confidence": 0.42382812, "start": 710.9775, "word": "one" } ] } ], "detected_language": "", "language_confidence": 0, "search": null } ], "summary": { "result": "success", "short": "The speakers discuss the history and benefits of using a keyboard for writing code, including editing and faster work efficiency. They also provide guidance on navigating VIM and editing commands, including key repeat and moving up and down. The importance of using the \" Lewis key\" to move up and down is emphasized, and viewers are encouraged to check out the website for more resources and a discount code for Fireship." }, "utterances": null } }
downloads\Vim_in_100_Seconds.wav
https://www.youtube.com/watch?v=-txKSRn0qeA
Vim in 100 Seconds
1,038,664
Fireship
675
Create high-performance 3D data visualizations with Deck.gl and Google Maps. Analyze over 140K gun violence ☠️🤕 incidents by geographic location. https://us-gun-violence.web.app/ - Tutorial https://fireship.io/lessons/deckgl-google-maps-tutorial/ - Deck.gl https://deck.gl/#/showcases/overview - Google Maps https://developers.google.com/maps/documentation/javascript/tutorial #datavis #gunviolence #googlemaps Take the quiz 🤓 iOS https://itunes.apple.com/us/app/fireship/id1462592372?mt=8 Android https://play.google.com/store/apps/details?id=io.fireship.quizapp Upgrade to Fireship PRO at https://fireship.io/pro Use code lORhwXd2 for 25% off your first payment.
{ "metadata": { "channels": 1, "created": "2024-02-04T06:30:32.141Z", "duration": 674.8183, "model_info": { "30089e05-99d1-4376-b32e-c263170674af": { "arch": "nova-2", "name": "2-general-nova", "version": "2024-01-09.29447" } }, "models": [ "30089e05-99d1-4376-b32e-c263170674af" ], "request_id": "dd162eba-eca7-4f2c-aaf7-dce5aa3df0b5", "sha256": "dc23fee9101beda5c23516b46d2671ff1cb6571d73e37d2eadffbf09fd712981", "summary_info": { "input_tokens": 2795, "model_uuid": "67875a7f-c9c4-48a0-aa55-5bdb8a91c34a", "output_tokens": 109 }, "transaction_key": "deprecated", "warnings": null }, "results": { "channels": [ { "alternatives": [ { "confidence": 0.9980469, "entities": null, "paragraphs": { "paragraphs": [ { "end": 28.275, "num_words": 98, "sentences": [ { "end": 10.875, "start": 3.1999998, "text": "Today, we'll take over 140,000 data points of people being killed or injured by guns and visualize them with deck gl and Google Maps." }, { "end": 15.98, "start": 10.875, "text": "We can go from a heat map of the entire country down to the actual street view of a neighborhood where the shit went down." }, { "end": 20.06, "start": 16.06, "text": "We'll start by adding a scatter plot layer for every single point in the data set." }, { "end": 24, "start": 20.06, "text": "Then we'll add a tooltip to see how many people were injured or killed at a given incident." }, { "end": 28.275, "start": 24.175, "text": "Then, we'll cluster points together into a heat map based on the map's zoom level." } ], "speaker": 0, "start": 3.1999998 }, { "end": 51.739998, "num_words": 80, "sentences": [ { "end": 37.03, "start": 28.414999, "text": "Lastly, we'll cluster points into a hexagon with a 1 mile by hideous and extrude them into a 3 d shape where the elevation represents the amount of violence in that space." }, { "end": 41.09, "start": 37.25, "text": "We can do all of this data visualization efficiently thanks to a library called deck." }, { "end": 41.555, "start": 41.09, "text": "Gl." }, { "end": 48.935, "start": 41.715, "text": "It was created by Uber to visualize their own data and is able to run computations efficiently by offloading them to the GPU with WebGL." }, { "end": 51.739998, "start": 49.32, "text": "By Say hello to my little friend." } ], "speaker": 0, "start": 28.414999 }, { "end": 77.955, "num_words": 82, "sentences": [ { "end": 60.355, "start": 55.559998, "text": "Take a look at their Showcase for some awesome examples of companies using this technology in production." }, { "end": 62.035, "start": 60.574997, "text": "I think my favorite is Escape." }, { "end": 67.03, "start": 62.094997, "text": "It uses the deck gl arc layer to visualize the cheapest flights based on your by Cajun around the world." }, { "end": 73.43, "start": 67.09, "text": "Now, I realize that guns are a hot political issue in the United States, so I've tried to make this visual as neutral as possible." }, { "end": 77.955, "start": 73.535, "text": "The data comes from the gun violence archive from the years 2013 to 2018." } ], "speaker": 0, "start": 55.559998 }, { "end": 99.435005, "num_words": 89, "sentences": [ { "end": 84.43, "start": 78.415, "text": "On the live demo, you can filter by defensive use, suicide, and so on to get a better picture of how the data is distributed." }, { "end": 87.87, "start": 84.490005, "text": "Before we get started, let's talk a little bit more about how deck gl works." }, { "end": 92.135, "start": 87.93, "text": "You can think of it as a layer or multiple layers that sit on top of your Google Map." }, { "end": 96.315, "start": 92.215004, "text": "When the user pans around or zooms in and out, the overlay will stick to the map." }, { "end": 99.435005, "start": 96.455, "text": "And an awesome thing about this is that the layers can be composited." } ], "speaker": 0, "start": 78.415 }, { "end": 126.535, "num_words": 104, "sentences": [ { "end": 103.94, "start": 99.62, "text": "In other words, you can set layers on top of each other, add some transparency, and deck." }, { "end": 107.425, "start": 103.94, "text": "Gl will calculate the composite colors that are actually rendered in the screen." }, { "end": 111.285, "start": 107.505005, "text": "And that can give you some amazing three d visuals on top of a 2 dimensional map." }, { "end": 118.08, "start": 111.345, "text": "The actual JavaScript library itself follows the reactive programming paradigm, time, so it's very simple and familiar to most front end developers." }, { "end": 126.535, "start": 118.46, "text": "All you really need is a good dataset, a Google Maps API key, a few few lines of JavaScript, and you'll be up and running with interactive 3 d visuals on top of your map." } ], "speaker": 0, "start": 99.62 }, { "end": 147.845, "num_words": 81, "sentences": [ { "end": 130.115, "start": 126.835, "text": "The first thing you'll need to get started is a Google Maps API key." }, { "end": 134.19, "start": 130.115, "text": "Create a by project or using existing project on the Google Cloud Platform console." }, { "end": 136.09001, "start": 134.41, "text": "From there, go to the API screen." }, { "end": 143.205, "start": 136.09001, "text": "You'll find the Google Maps JavaScript API, enable it, and then go to the credentials tab and grab your browser API key." }, { "end": 147.845, "start": 143.505, "text": "Just make a note of the API key for now, we'll need it in a minute or so when we get into the code." } ], "speaker": 0, "start": 126.835 }, { "end": 169.36, "num_words": 80, "sentences": [ { "end": 149.06999, "start": 148.34999, "text": "You can use deck." }, { "end": 152.04999, "start": 149.06999, "text": "Gl in any framework, but it provides additional support for React." }, { "end": 159.005, "start": 152.26999, "text": "In this video, I'm going to use vanilla JavaScript with webpack, and we'll set it up with hot module replacement for a nice developer experience." }, { "end": 165.005, "start": 159.385, "text": "Go ahead and open up Versus Code, and keep in mind you can find all of these steps in this lesson on Fireship IO." }, { "end": 169.36, "start": 165.1, "text": "First, we'll run npm init with the y flag to set up a new npm project." } ], "speaker": 0, "start": 148.34999 }, { "end": 198.48999, "num_words": 102, "sentences": [ { "end": 173.76001, "start": 169.66, "text": "Then we'll install webpack and webpack dev server into the development environment." }, { "end": 180.205, "start": 174.02501, "text": "From there, I'll open up the package JSON, and I'm going to add a couple of scripts that we can use to build and serve the app." }, { "end": 186.56, "start": 180.265, "text": "The build command runs web by PAC and outputs everything into the public folder, which is where we'll actually put our production code." }, { "end": 196.055, "start": 186.86, "text": "Then the start command will use webpack by dev server to serve that code locally on local host 8080, and it will also perform hot module replacement whenever our source code changes." }, { "end": 198.48999, "start": 196.47, "text": "The next thing we'll do is install deckgl." } ], "speaker": 0, "start": 169.66 }, { "end": 221.79, "num_words": 84, "sentences": [ { "end": 203.03, "start": 198.87, "text": "It's organized in a monorepo, so there's different packages that you may or may not need." }, { "end": 206.955, "start": 203.03, "text": "We're going to need the Google Maps package, layers, by and aggregation layers." }, { "end": 211.435, "start": 207.095, "text": "The next thing we'll do is create a file for our JavaScript source code in the source directory." }, { "end": 218.34999, "start": 211.815, "text": "And a little Versus Code pro tip here is to create that file with a slash and it will automatically create the directory structure for you." }, { "end": 221.79, "start": 218.56999, "text": "Then we'll do the same thing for the public HTML file." } ], "speaker": 0, "start": 198.87 }, { "end": 250.39, "num_words": 99, "sentences": [ { "end": 230.94499, "start": 222.25, "text": "Then inside this HTML, we'll just Start with a plain HTML document, and we'll make a reference to the main JS file, which is where webpack will build our source code." }, { "end": 235.45, "start": 231.35, "text": "After that, we'll add a deferred script tag for the Google Maps JavaScript API." }, { "end": 237.61, "start": 235.83, "text": "This script has 2 required parameters." }, { "end": 243.325, "start": 237.83, "text": "The first one is the by PIKey, which is the browser API key that you got from the Google Cloud Platform console." }, { "end": 250.39, "start": 243.785, "text": "Then the callback is the name of a function defined on the window that initializes the map with whatever options you want to pass to it." } ], "speaker": 0, "start": 222.25 }, { "end": 273.6, "num_words": 95, "sentences": [ { "end": 253.13, "start": 250.39, "text": "We'll define that one in just a minute in our JavaScript code." }, { "end": 258.79498, "start": 253.35, "text": "Then the last thing we'll wanna do is go into the body of the HTML and add a div with an id of map." }, { "end": 263.9, "start": 259.01498, "text": "This div will be replaced by the actual Google map, and in our case, we want to display a full screen map." }, { "end": 268.16, "start": 263.9, "text": "So we'll use some CSS to set the width and height to 100% of the viewport." }, { "end": 273.6, "start": 268.62, "text": "Now we'll go ahead and open up our JavaScript file, and we'll want to define a function on the window object." } ], "speaker": 0, "start": 250.39 }, { "end": 290.905, "num_words": 74, "sentences": [ { "end": 276.675, "start": 273.69498, "text": "This is the callback that we set on the Google Maps script tag." }, { "end": 281.95, "start": 276.895, "text": "The first argument is the actual div that will be replaced by the map, so we'll go ahead and get that by its ID." }, { "end": 286.21002, "start": 281.95, "text": "And then you can add a bunch of additional options here depending on how you want to customize your app." }, { "end": 290.825, "start": 286.51, "text": "In fact, Google provides a wizard that helps you quickly customize the appearance of your map." }, { "end": 290.905, "start": 290.825, "text": "It." } ], "speaker": 0, "start": 273.69498 }, { "end": 310.175, "num_words": 78, "sentences": [ { "end": 293.325, "start": 290.905, "text": "That's how I created the dark map that you see in the demo." }, { "end": 299.67, "start": 293.785, "text": "So now that we have this init map function on the window, we can run npm start to tell webpack to build our code." }, { "end": 299.75, "start": 299.67, "text": "It." }, { "end": 302.33002, "start": 299.75, "text": "That will also spin up a server on local host 8080." }, { "end": 310.175, "start": 302.55002, "text": "So if you navigate there, you should see the default map at this point, and your code should rebuild anytime you update and save the index JS by file." } ], "speaker": 0, "start": 290.905 }, { "end": 336.005, "num_words": 103, "sentences": [ { "end": 315.375, "start": 310.475, "text": "Now that we have this initial setup out of the way, we need to get some actual data to display on the map." }, { "end": 319.95, "start": 315.835, "text": "Now this can be very easy or very difficult depending on the data you're working with." }, { "end": 324.59003, "start": 320.17, "text": "If you wanna go the easy route, you can simply grab the JSON data that lives on my web server." }, { "end": 328.46503, "start": 324.89, "text": "But since you're a developer, I'm assuming you want to use your own custom by data." }, { "end": 336.005, "start": 328.46503, "text": "A great place to find free data that's already well formatted is from Kaggle datasets, but in most cases, this data is going to be in CSV format." } ], "speaker": 0, "start": 310.475 }, { "end": 364.775, "num_words": 105, "sentences": [ { "end": 342.18, "start": 336.32, "text": "An easy way to convert this data to the proper format is to use the node package convert CSV to JSON." }, { "end": 345.94, "start": 342.48, "text": "From there, create a file called convert dotjs in the root of your project." }, { "end": 352.485, "start": 346.22498, "text": "Then inside the script, we can create a very simple node script that has an input in CSV format and then an output in JSON." }, { "end": 360, "start": 352.94498, "text": "Now we can just Run that script from the command line and we've magically converted our custom dataset into JSON format that we can use with deck gl." }, { "end": 364.775, "start": 360.37997, "text": "Your data should be an array of JSON objects, So in our case it looks like this." } ], "speaker": 0, "start": 336.32 }, { "end": 381.61502, "num_words": 67, "sentences": [ { "end": 372.75, "start": 365.07498, "text": "The property names on this object can be anything you want, so you don't really need to format your data in any special way because as you'll see in the code, we tell deck." }, { "end": 375.01, "start": 372.75, "text": "Gl exactly how to access this data." }, { "end": 376.35, "start": 375.15, "text": "Let's move into our index." }, { "end": 381.255, "start": 376.35, "text": "Js file, and we'll import Google Maps overlay as well as the layers that we want to display from deck." }, { "end": 381.61502, "start": 381.255, "text": "Gl." } ], "speaker": 0, "start": 365.07498 }, { "end": 404.665, "num_words": 82, "sentences": [ { "end": 382.975, "start": 381.61502, "text": "Now like I said earlier, deck." }, { "end": 388.035, "start": 382.975, "text": "Gl uses a reactive programming paradigm, so I like to create my layers inside of a function." }, { "end": 392.78998, "start": 388.37, "text": "Anytime your map or data changes, you tell deck gl to rebuild the entire map." }, { "end": 397.43, "start": 392.85, "text": "Under the hood, it's looking at the diff to update things efficiently, very similar to React JS." }, { "end": 404.665, "start": 397.525, "text": "It can do that because every layer is required to have a unique ID, and deck gl uses that to track the changes for that specific layer." } ], "speaker": 0, "start": 381.61502 }, { "end": 424.08, "num_words": 75, "sentences": [ { "end": 404.89713, "start": 404.67, "text": "It." }, { "end": 407.3955, "start": 404.89713, "text": "The next option that you'll need to pass is the data." }, { "end": 415.135, "start": 407.3955, "text": "So in our case, this will just be the path to the local JSON file, but this could also be a remote URL or a promise that resolves to the JSON object." }, { "end": 420.815, "start": 415.435, "text": "Now every layer has a variety of optional parameters that you can pass to customize the way the points are displayed." }, { "end": 424.08, "start": 420.93997, "text": "Things like opacity and pixel radius are pretty self explanatory." } ], "speaker": 0, "start": 404.67 }, { "end": 453.075, "num_words": 98, "sentences": [ { "end": 429.84, "start": 424.53998, "text": "Now for every point in the dataset, deck gl is going to call the function that you pass to get position." }, { "end": 436.275, "start": 430.175, "text": "So get position is very similar to a for each loop where d represents an individual object in the dataset." }, { "end": 441.45, "start": 436.495, "text": "The function needs to return an array of the longitude point and the latitude point in that order." }, { "end": 447.85, "start": 441.59, "text": "It's not latitude longitude like you might see in other map programs, it's the more mathematically correct format of x y." }, { "end": 453.075, "start": 448.095, "text": "You can also use functions to compute other properties, like the actual fill color on the scatter plot." } ], "speaker": 0, "start": 424.53998 }, { "end": 479.24, "num_words": 107, "sentences": [ { "end": 462.63666, "start": 453.215, "text": "In this case, I'm looking at if the number of people killed in this incident is greater than 0, in in which case I'll make the dot red, otherwise I'll make it orange which means that there are only injuries." }, { "end": 465.205, "start": 462.63666, "text": "And that's all it takes to define a scatterplot layer." }, { "end": 469.06497, "start": 465.28497, "text": "From there, I'm going to jump down into the init map function that we wrote earlier." }, { "end": 476.74, "start": 469.44498, "text": "We'll define a variable called overlay that's equal to a Google Maps overlay instance, then it takes an array of layers that will be stacked on top of each other." }, { "end": 479.24, "start": 476.74, "text": "So we'll go ahead and add our scatter plot function there." } ], "speaker": 0, "start": 453.215 }, { "end": 499.92, "num_words": 84, "sentences": [ { "end": 483.765, "start": 479.62, "text": "Then the final step is to add overlay set map with the actual Google Maps instance." }, { "end": 486.725, "start": 483.765, "text": "By so that's how we initialize a map for the first time." }, { "end": 491.945, "start": 486.725, "text": "If you're running updates on a map, you would call set props with any subsequent updates to the same map." }, { "end": 496.16, "start": 492.14, "text": "I just wanted to point that out, but we're actually not going to use it in this simplified demo." }, { "end": 499.92, "start": 496.22, "text": "From here, if you open the browser, you should see all the points plotted on the map." } ], "speaker": 0, "start": 479.62 }, { "end": 528.765, "num_words": 104, "sentences": [ { "end": 505.41498, "start": 500.03497, "text": "But I'd like to make these a little more interactive by adding a tooltip when the user hovers over an individual point." }, { "end": 509.88, "start": 505.875, "text": "We can do that by setting the Pickable option to true on the scatterplot layer." }, { "end": 514.38, "start": 510.04, "text": "And then from there, we'll define a function that runs on the on hover event." }, { "end": 519.82, "start": 514.6, "text": "This will give us access to the actual data object that represents that point and then also its x y coordinates." }, { "end": 528.765, "start": 520.425, "text": "We'll grab an element from the DOM called tooltip, and then if an object exists, we'll go ahead and insert some HTML into that tooltip based on the actual data object." } ], "speaker": 0, "start": 500.03497 }, { "end": 555.665, "num_words": 96, "sentences": [ { "end": 533.83997, "start": 528.94, "text": "And if an object does not exist, we'll simply hide the tooltip by setting its opacity to 0." }, { "end": 540.885, "start": 533.89996, "text": "And you can also handle click events, so if the user clicks on a given point, we can take them to the instant report on gun violence archive." }, { "end": 546.55, "start": 541.26495, "text": "Now a problem with the map currently is that it's kind of hard to visualize a 140,000 points all at once." }, { "end": 552.01, "start": 546.79, "text": "Fortunately, deck gl has aggregation layers that will cluster the points into meaningful shapes." }, { "end": 555.665, "start": 552.31, "text": "This time, let's go ahead and create a function that returns a heat map layer." } ], "speaker": 0, "start": 528.94 }, { "end": 585.5, "num_words": 124, "sentences": [ { "end": 561.285, "start": 555.745, "text": "This function uses the same getter for position, and we also have the option to calculate the weight for each point." }, { "end": 567.92, "start": 561.425, "text": "By default, every data point has a weight of 1, but we want to weight the data points based on how violent the incident was." }, { "end": 574.125, "start": 568.06, "text": "So we'll go ahead and take the number of people killed in that incident and then add it to the number of people injured by time 0.5." }, { "end": 579.245, "start": 574.66504, "text": "So you get the most points for killing people, but you also get bonus points for injuring people as well." }, { "end": 585.5, "start": 579.305, "text": "We'll go ahead and set the pixel radius to 60, and and then we could also customize colors here as well, but we'll just go ahead and skip that for now." } ], "speaker": 0, "start": 555.745 }, { "end": 610.105, "num_words": 96, "sentences": [ { "end": 589.01996, "start": 585.8, "text": "And lastly, we'll come down here and add the heat map to our layers." }, { "end": 597.455, "start": 589.59503, "text": "You can see I've switched the map to dark mode to see things a little bit better, and you'll notice we get different clustering patterns based on the zoom level of the map." }, { "end": 602.28, "start": 597.54004, "text": "If we zoom in all the way, we'll start to see the individual instance that make up the larger clusters." }, { "end": 607.24005, "start": 602.82, "text": "The heatmap is useful, but we may want to cluster our points based on a specific boundary." }, { "end": 610.105, "start": 607.525, "text": "And a great way to do that is with the hexagon layer." } ], "speaker": 0, "start": 585.8 }, { "end": 645.185, "num_words": 128, "sentences": [ { "end": 617.75, "start": 610.245, "text": "This allows us to cluster points into a specific radius and then increase its elevation in the 3rd dimension based on how violent that area is." }, { "end": 623.75, "start": 618.05, "text": "We can do that by defining a getter for the elevation weight using the same logic that we used in the previous example." }, { "end": 631.555, "start": 624.095, "text": "We can customize the appearance with a variety of different parameters, and you can even use your own algorithm to control how the points are clustered into the hexagon." }, { "end": 636.92, "start": 631.94, "text": "Go ahead and add hexagon to the layers, and you'll now see that we get these extruded shapes on the map." }, { "end": 645.185, "start": 637.06, "text": "We can look at the elevation of the hexagon to determine how violent that neighborhood is, and the color of the hexagon becomes more red as the violence increases." } ], "speaker": 0, "start": 610.245 }, { "end": 659.865, "num_words": 56, "sentences": [ { "end": 648.525, "start": 645.565, "text": "Now we've barely only scratched the surface on what's possible with deck." }, { "end": 649.025, "start": 648.525, "text": "Gl." }, { "end": 653.92, "start": 649.2, "text": "If you need high performance data visualization on a large data set, it's definitely worth checking out." }, { "end": 655.44, "start": 653.92, "text": "I'm gonna go ahead and wrap things up there." }, { "end": 659.865, "start": 655.44, "text": "If this video helped you, please like and scribe and consider becoming a pro member at FireShip." } ], "speaker": 0, "start": 645.565 }, { "end": 665.12, "num_words": 18, "sentences": [ { "end": 662.105, "start": 659.925, "text": "Io for access to even more content." }, { "end": 664.62, "start": 662.325, "text": "Thanks for watching, and I will talk to you soon." }, { "end": 665.12, "start": 664.62, "text": "By" } ], "speaker": 0, "start": 659.925 } ], "transcript": "\nSpeaker 0: Today, we'll take over 140,000 data points of people being killed or injured by guns and visualize them with deck gl and Google Maps. We can go from a heat map of the entire country down to the actual street view of a neighborhood where the shit went down. We'll start by adding a scatter plot layer for every single point in the data set. Then we'll add a tooltip to see how many people were injured or killed at a given incident. Then, we'll cluster points together into a heat map based on the map's zoom level.\n\nLastly, we'll cluster points into a hexagon with a 1 mile by hideous and extrude them into a 3 d shape where the elevation represents the amount of violence in that space. We can do all of this data visualization efficiently thanks to a library called deck. Gl. It was created by Uber to visualize their own data and is able to run computations efficiently by offloading them to the GPU with WebGL. By Say hello to my little friend.\n\nTake a look at their Showcase for some awesome examples of companies using this technology in production. I think my favorite is Escape. It uses the deck gl arc layer to visualize the cheapest flights based on your by Cajun around the world. Now, I realize that guns are a hot political issue in the United States, so I've tried to make this visual as neutral as possible. The data comes from the gun violence archive from the years 2013 to 2018.\n\nOn the live demo, you can filter by defensive use, suicide, and so on to get a better picture of how the data is distributed. Before we get started, let's talk a little bit more about how deck gl works. You can think of it as a layer or multiple layers that sit on top of your Google Map. When the user pans around or zooms in and out, the overlay will stick to the map. And an awesome thing about this is that the layers can be composited.\n\nIn other words, you can set layers on top of each other, add some transparency, and deck. Gl will calculate the composite colors that are actually rendered in the screen. And that can give you some amazing three d visuals on top of a 2 dimensional map. The actual JavaScript library itself follows the reactive programming paradigm, time, so it's very simple and familiar to most front end developers. All you really need is a good dataset, a Google Maps API key, a few few lines of JavaScript, and you'll be up and running with interactive 3 d visuals on top of your map.\n\nThe first thing you'll need to get started is a Google Maps API key. Create a by project or using existing project on the Google Cloud Platform console. From there, go to the API screen. You'll find the Google Maps JavaScript API, enable it, and then go to the credentials tab and grab your browser API key. Just make a note of the API key for now, we'll need it in a minute or so when we get into the code.\n\nYou can use deck. Gl in any framework, but it provides additional support for React. In this video, I'm going to use vanilla JavaScript with webpack, and we'll set it up with hot module replacement for a nice developer experience. Go ahead and open up Versus Code, and keep in mind you can find all of these steps in this lesson on Fireship IO. First, we'll run npm init with the y flag to set up a new npm project.\n\nThen we'll install webpack and webpack dev server into the development environment. From there, I'll open up the package JSON, and I'm going to add a couple of scripts that we can use to build and serve the app. The build command runs web by PAC and outputs everything into the public folder, which is where we'll actually put our production code. Then the start command will use webpack by dev server to serve that code locally on local host 8080, and it will also perform hot module replacement whenever our source code changes. The next thing we'll do is install deckgl.\n\nIt's organized in a monorepo, so there's different packages that you may or may not need. We're going to need the Google Maps package, layers, by and aggregation layers. The next thing we'll do is create a file for our JavaScript source code in the source directory. And a little Versus Code pro tip here is to create that file with a slash and it will automatically create the directory structure for you. Then we'll do the same thing for the public HTML file.\n\nThen inside this HTML, we'll just Start with a plain HTML document, and we'll make a reference to the main JS file, which is where webpack will build our source code. After that, we'll add a deferred script tag for the Google Maps JavaScript API. This script has 2 required parameters. The first one is the by PIKey, which is the browser API key that you got from the Google Cloud Platform console. Then the callback is the name of a function defined on the window that initializes the map with whatever options you want to pass to it.\n\nWe'll define that one in just a minute in our JavaScript code. Then the last thing we'll wanna do is go into the body of the HTML and add a div with an id of map. This div will be replaced by the actual Google map, and in our case, we want to display a full screen map. So we'll use some CSS to set the width and height to 100% of the viewport. Now we'll go ahead and open up our JavaScript file, and we'll want to define a function on the window object.\n\nThis is the callback that we set on the Google Maps script tag. The first argument is the actual div that will be replaced by the map, so we'll go ahead and get that by its ID. And then you can add a bunch of additional options here depending on how you want to customize your app. In fact, Google provides a wizard that helps you quickly customize the appearance of your map. It.\n\nThat's how I created the dark map that you see in the demo. So now that we have this init map function on the window, we can run npm start to tell webpack to build our code. It. That will also spin up a server on local host 8080. So if you navigate there, you should see the default map at this point, and your code should rebuild anytime you update and save the index JS by file.\n\nNow that we have this initial setup out of the way, we need to get some actual data to display on the map. Now this can be very easy or very difficult depending on the data you're working with. If you wanna go the easy route, you can simply grab the JSON data that lives on my web server. But since you're a developer, I'm assuming you want to use your own custom by data. A great place to find free data that's already well formatted is from Kaggle datasets, but in most cases, this data is going to be in CSV format.\n\nAn easy way to convert this data to the proper format is to use the node package convert CSV to JSON. From there, create a file called convert dotjs in the root of your project. Then inside the script, we can create a very simple node script that has an input in CSV format and then an output in JSON. Now we can just Run that script from the command line and we've magically converted our custom dataset into JSON format that we can use with deck gl. Your data should be an array of JSON objects, So in our case it looks like this.\n\nThe property names on this object can be anything you want, so you don't really need to format your data in any special way because as you'll see in the code, we tell deck. Gl exactly how to access this data. Let's move into our index. Js file, and we'll import Google Maps overlay as well as the layers that we want to display from deck. Gl.\n\nNow like I said earlier, deck. Gl uses a reactive programming paradigm, so I like to create my layers inside of a function. Anytime your map or data changes, you tell deck gl to rebuild the entire map. Under the hood, it's looking at the diff to update things efficiently, very similar to React JS. It can do that because every layer is required to have a unique ID, and deck gl uses that to track the changes for that specific layer.\n\nIt. The next option that you'll need to pass is the data. So in our case, this will just be the path to the local JSON file, but this could also be a remote URL or a promise that resolves to the JSON object. Now every layer has a variety of optional parameters that you can pass to customize the way the points are displayed. Things like opacity and pixel radius are pretty self explanatory.\n\nNow for every point in the dataset, deck gl is going to call the function that you pass to get position. So get position is very similar to a for each loop where d represents an individual object in the dataset. The function needs to return an array of the longitude point and the latitude point in that order. It's not latitude longitude like you might see in other map programs, it's the more mathematically correct format of x y. You can also use functions to compute other properties, like the actual fill color on the scatter plot.\n\nIn this case, I'm looking at if the number of people killed in this incident is greater than 0, in in which case I'll make the dot red, otherwise I'll make it orange which means that there are only injuries. And that's all it takes to define a scatterplot layer. From there, I'm going to jump down into the init map function that we wrote earlier. We'll define a variable called overlay that's equal to a Google Maps overlay instance, then it takes an array of layers that will be stacked on top of each other. So we'll go ahead and add our scatter plot function there.\n\nThen the final step is to add overlay set map with the actual Google Maps instance. By so that's how we initialize a map for the first time. If you're running updates on a map, you would call set props with any subsequent updates to the same map. I just wanted to point that out, but we're actually not going to use it in this simplified demo. From here, if you open the browser, you should see all the points plotted on the map.\n\nBut I'd like to make these a little more interactive by adding a tooltip when the user hovers over an individual point. We can do that by setting the Pickable option to true on the scatterplot layer. And then from there, we'll define a function that runs on the on hover event. This will give us access to the actual data object that represents that point and then also its x y coordinates. We'll grab an element from the DOM called tooltip, and then if an object exists, we'll go ahead and insert some HTML into that tooltip based on the actual data object.\n\nAnd if an object does not exist, we'll simply hide the tooltip by setting its opacity to 0. And you can also handle click events, so if the user clicks on a given point, we can take them to the instant report on gun violence archive. Now a problem with the map currently is that it's kind of hard to visualize a 140,000 points all at once. Fortunately, deck gl has aggregation layers that will cluster the points into meaningful shapes. This time, let's go ahead and create a function that returns a heat map layer.\n\nThis function uses the same getter for position, and we also have the option to calculate the weight for each point. By default, every data point has a weight of 1, but we want to weight the data points based on how violent the incident was. So we'll go ahead and take the number of people killed in that incident and then add it to the number of people injured by time 0.5. So you get the most points for killing people, but you also get bonus points for injuring people as well. We'll go ahead and set the pixel radius to 60, and and then we could also customize colors here as well, but we'll just go ahead and skip that for now.\n\nAnd lastly, we'll come down here and add the heat map to our layers. You can see I've switched the map to dark mode to see things a little bit better, and you'll notice we get different clustering patterns based on the zoom level of the map. If we zoom in all the way, we'll start to see the individual instance that make up the larger clusters. The heatmap is useful, but we may want to cluster our points based on a specific boundary. And a great way to do that is with the hexagon layer.\n\nThis allows us to cluster points into a specific radius and then increase its elevation in the 3rd dimension based on how violent that area is. We can do that by defining a getter for the elevation weight using the same logic that we used in the previous example. We can customize the appearance with a variety of different parameters, and you can even use your own algorithm to control how the points are clustered into the hexagon. Go ahead and add hexagon to the layers, and you'll now see that we get these extruded shapes on the map. We can look at the elevation of the hexagon to determine how violent that neighborhood is, and the color of the hexagon becomes more red as the violence increases.\n\nNow we've barely only scratched the surface on what's possible with deck. Gl. If you need high performance data visualization on a large data set, it's definitely worth checking out. I'm gonna go ahead and wrap things up there. If this video helped you, please like and scribe and consider becoming a pro member at FireShip.\n\nIo for access to even more content. Thanks for watching, and I will talk to you soon. By" }, "summaries": null, "topics": [ { "end_word": 83, "start_word": 0, "text": "Today, we'll take over 140,000 data points of people being killed or injured by guns and visualize them with deck gl and Google Maps. We can go from a heat map of the entire country down to the actual street view of a neighborhood where the shit went down. We'll start by adding a scatter plot layer for every single point in the data set. Then we'll add a tooltip to see how many people were injured or killed at a given incident.", "topics": [] }, { "end_word": 300, "start_word": 83, "text": "Then, we'll cluster points together into a heat map based on the map's zoom level. Lastly, we'll cluster points into a hexagon with a 1 mile by hideous and extrude them into a 3 d shape where the elevation represents the amount of violence in that space. We can do all of this data visualization efficiently thanks to a library called deck. Gl. It was created by Uber to visualize their own data and is able to run computations efficiently by offloading them to the GPU with WebGL. By Say hello to my little friend. Take a look at their Showcase for some awesome examples of companies using this technology in production. I think my favorite is Escape. It uses the deck gl arc layer to visualize the cheapest flights based on your by Cajun around the world. Now, I realize that guns are a hot political issue in the United States, so I've tried to make this visual as neutral as possible. The data comes from the gun violence archive from the years 2013 to 2018. On the live demo, you can filter by defensive use, suicide, and so on to get a better picture of how the data is distributed. Before we get started, let's talk a little bit more about how deck gl works.", "topics": [ { "confidence": 0.84578747, "topic": "firearms" }, { "confidence": 0.72738117, "topic": "visualization" }, { "confidence": 0.6424891, "topic": "programming" }, { "confidence": 0.60635406, "topic": "aerospace" }, { "confidence": 0.50366503, "topic": "technology" }, { "confidence": 0.30628246, "topic": "software development" }, { "confidence": 0.26552653, "topic": "geometry" }, { "confidence": 0.26311523, "topic": "software" }, { "confidence": 0.18196423, "topic": "marketing" }, { "confidence": 0.089071475, "topic": "air travel" }, { "confidence": 0.064911194, "topic": "industry" }, { "confidence": 0.055452067, "topic": "weapons" }, { "confidence": 0.030069005, "topic": "data analysis" }, { "confidence": 0.013367631, "topic": "tourism" }, { "confidence": 0.005770493, "topic": "geography" }, { "confidence": 0.005304263, "topic": "data" } ] }, { "end_word": 319, "start_word": 300, "text": "You can think of it as a layer or multiple layers that sit on top of your Google Map.", "topics": [] }, { "end_word": 418, "start_word": 319, "text": "When the user pans around or zooms in and out, the overlay will stick to the map. And an awesome thing about this is that the layers can be composited. In other words, you can set layers on top of each other, add some transparency, and deck. Gl will calculate the composite colors that are actually rendered in the screen. And that can give you some amazing three d visuals on top of a 2 dimensional map. The actual JavaScript library itself follows the reactive programming paradigm, time, so it's very simple and familiar to most front end developers.", "topics": [ { "confidence": 0.009572465, "topic": "visualization" }, { "confidence": 0.007187212, "topic": "graphic design" } ] }, { "end_word": 510, "start_word": 418, "text": "All you really need is a good dataset, a Google Maps API key, a few few lines of JavaScript, and you'll be up and running with interactive 3 d visuals on top of your map. The first thing you'll need to get started is a Google Maps API key. Create a by project or using existing project on the Google Cloud Platform console. From there, go to the API screen. You'll find the Google Maps JavaScript API, enable it, and then go to the credentials tab and grab your browser API key.", "topics": [ { "confidence": 0.046000775, "topic": "google" } ] }, { "end_word": 614, "start_word": 510, "text": "Just make a note of the API key for now, we'll need it in a minute or so when we get into the code. You can use deck. Gl in any framework, but it provides additional support for React. In this video, I'm going to use vanilla JavaScript with webpack, and we'll set it up with hot module replacement for a nice developer experience. Go ahead and open up Versus Code, and keep in mind you can find all of these steps in this lesson on Fireship IO. First, we'll run npm init with the y flag to set up a new npm project.", "topics": [] }, { "end_word": 708, "start_word": 614, "text": "Then we'll install webpack and webpack dev server into the development environment. From there, I'll open up the package JSON, and I'm going to add a couple of scripts that we can use to build and serve the app. The build command runs web by PAC and outputs everything into the public folder, which is where we'll actually put our production code. Then the start command will use webpack by dev server to serve that code locally on local host 8080, and it will also perform hot module replacement whenever our source code changes.", "topics": [ { "confidence": 0.453561, "topic": "software development" }, { "confidence": 0.03404434, "topic": "programming" }, { "confidence": 0.008656341, "topic": "software" } ] }, { "end_word": 1007, "start_word": 708, "text": "The next thing we'll do is install deckgl. It's organized in a monorepo, so there's different packages that you may or may not need. We're going to need the Google Maps package, layers, by and aggregation layers. The next thing we'll do is create a file for our JavaScript source code in the source directory. And a little Versus Code pro tip here is to create that file with a slash and it will automatically create the directory structure for you. Then we'll do the same thing for the public HTML file. Then inside this HTML, we'll just Start with a plain HTML document, and we'll make a reference to the main JS file, which is where webpack will build our source code. After that, we'll add a deferred script tag for the Google Maps JavaScript API. This script has 2 required parameters. The first one is the by PIKey, which is the browser API key that you got from the Google Cloud Platform console. Then the callback is the name of a function defined on the window that initializes the map with whatever options you want to pass to it. We'll define that one in just a minute in our JavaScript code. Then the last thing we'll wanna do is go into the body of the HTML and add a div with an id of map. This div will be replaced by the actual Google map, and in our case, we want to display a full screen map. So we'll use some CSS to set the width and height to 100% of the viewport. Now we'll go ahead and open up our JavaScript file, and we'll want to define a function on the window object. This is the callback that we set on the Google Maps script tag.", "topics": [] }, { "end_word": 1105, "start_word": 1007, "text": "The first argument is the actual div that will be replaced by the map, so we'll go ahead and get that by its ID. And then you can add a bunch of additional options here depending on how you want to customize your app. In fact, Google provides a wizard that helps you quickly customize the appearance of your map. It. That's how I created the dark map that you see in the demo. So now that we have this init map function on the window, we can run npm start to tell webpack to build our code.", "topics": [ { "confidence": 0.30789787, "topic": "google" } ] }, { "end_word": 1185, "start_word": 1105, "text": "It. That will also spin up a server on local host 8080. So if you navigate there, you should see the default map at this point, and your code should rebuild anytime you update and save the index JS by file. Now that we have this initial setup out of the way, we need to get some actual data to display on the map. Now this can be very easy or very difficult depending on the data you're working with.", "topics": [] }, { "end_word": 1249, "start_word": 1185, "text": "If you wanna go the easy route, you can simply grab the JSON data that lives on my web server. But since you're a developer, I'm assuming you want to use your own custom by data. A great place to find free data that's already well formatted is from Kaggle datasets, but in most cases, this data is going to be in CSV format.", "topics": [ { "confidence": 0.005923028, "topic": "databases" } ] }, { "end_word": 1619, "start_word": 1249, "text": "An easy way to convert this data to the proper format is to use the node package convert CSV to JSON. From there, create a file called convert dotjs in the root of your project. Then inside the script, we can create a very simple node script that has an input in CSV format and then an output in JSON. Now we can just Run that script from the command line and we've magically converted our custom dataset into JSON format that we can use with deck gl. Your data should be an array of JSON objects, So in our case it looks like this. The property names on this object can be anything you want, so you don't really need to format your data in any special way because as you'll see in the code, we tell deck. Gl exactly how to access this data. Let's move into our index. Js file, and we'll import Google Maps overlay as well as the layers that we want to display from deck. Gl. Now like I said earlier, deck. Gl uses a reactive programming paradigm, so I like to create my layers inside of a function. Anytime your map or data changes, you tell deck gl to rebuild the entire map. Under the hood, it's looking at the diff to update things efficiently, very similar to React JS. It can do that because every layer is required to have a unique ID, and deck gl uses that to track the changes for that specific layer. It. The next option that you'll need to pass is the data. So in our case, this will just be the path to the local JSON file, but this could also be a remote URL or a promise that resolves to the JSON object. Now every layer has a variety of optional parameters that you can pass to customize the way the points are displayed. Things like opacity and pixel radius are pretty self explanatory. Now for every point in the dataset, deck gl is going to call the function that you pass to get position. So get position is very similar to a for each loop where d represents an individual object in the dataset.", "topics": [] }, { "end_word": 1676, "start_word": 1619, "text": "The function needs to return an array of the longitude point and the latitude point in that order. It's not latitude longitude like you might see in other map programs, it's the more mathematically correct format of x y. You can also use functions to compute other properties, like the actual fill color on the scatter plot.", "topics": [ { "confidence": 0.21874799, "topic": "geometry" } ] }, { "end_word": 1831, "start_word": 1676, "text": "In this case, I'm looking at if the number of people killed in this incident is greater than 0, in in which case I'll make the dot red, otherwise I'll make it orange which means that there are only injuries. And that's all it takes to define a scatterplot layer. From there, I'm going to jump down into the init map function that we wrote earlier. We'll define a variable called overlay that's equal to a Google Maps overlay instance, then it takes an array of layers that will be stacked on top of each other. So we'll go ahead and add our scatter plot function there. Then the final step is to add overlay set map with the actual Google Maps instance. By so that's how we initialize a map for the first time. If you're running updates on a map, you would call set props with any subsequent updates to the same map.", "topics": [] }, { "end_word": 1919, "start_word": 1831, "text": "I just wanted to point that out, but we're actually not going to use it in this simplified demo. From here, if you open the browser, you should see all the points plotted on the map. But I'd like to make these a little more interactive by adding a tooltip when the user hovers over an individual point. We can do that by setting the Pickable option to true on the scatterplot layer. And then from there, we'll define a function that runs on the on hover event.", "topics": [ { "confidence": 0.060684994, "topic": "animation" }, { "confidence": 0.00705052, "topic": "visualization" } ] }, { "end_word": 1940, "start_word": 1919, "text": "This will give us access to the actual data object that represents that point and then also its x y coordinates.", "topics": [] }, { "end_word": 2017, "start_word": 1940, "text": "We'll grab an element from the DOM called tooltip, and then if an object exists, we'll go ahead and insert some HTML into that tooltip based on the actual data object. And if an object does not exist, we'll simply hide the tooltip by setting its opacity to 0. And you can also handle click events, so if the user clicks on a given point, we can take them to the instant report on gun violence archive.", "topics": [ { "confidence": 0.06055652, "topic": "firearms" }, { "confidence": 0.008934995, "topic": "weapons" } ] }, { "end_word": 2140, "start_word": 2017, "text": "Now a problem with the map currently is that it's kind of hard to visualize a 140,000 points all at once. Fortunately, deck gl has aggregation layers that will cluster the points into meaningful shapes. This time, let's go ahead and create a function that returns a heat map layer. This function uses the same getter for position, and we also have the option to calculate the weight for each point. By default, every data point has a weight of 1, but we want to weight the data points based on how violent the incident was. So we'll go ahead and take the number of people killed in that incident and then add it to the number of people injured by time 0.5.", "topics": [ { "confidence": 0.96862906, "topic": "data" }, { "confidence": 0.3499411, "topic": "data analysis" }, { "confidence": 0.15590473, "topic": "geometry" }, { "confidence": 0.026526902, "topic": "statistics" }, { "confidence": 0.008925318, "topic": "data management" } ] }, { "end_word": 2275, "start_word": 2140, "text": "So you get the most points for killing people, but you also get bonus points for injuring people as well. We'll go ahead and set the pixel radius to 60, and and then we could also customize colors here as well, but we'll just go ahead and skip that for now. And lastly, we'll come down here and add the heat map to our layers. You can see I've switched the map to dark mode to see things a little bit better, and you'll notice we get different clustering patterns based on the zoom level of the map. If we zoom in all the way, we'll start to see the individual instance that make up the larger clusters. The heatmap is useful, but we may want to cluster our points based on a specific boundary.", "topics": [] }, { "end_word": 2336, "start_word": 2275, "text": "And a great way to do that is with the hexagon layer. This allows us to cluster points into a specific radius and then increase its elevation in the 3rd dimension based on how violent that area is. We can do that by defining a getter for the elevation weight using the same logic that we used in the previous example.", "topics": [ { "confidence": 0.023425985, "topic": "geometry" }, { "confidence": 0.02060488, "topic": "geography" } ] }, { "end_word": 2365, "start_word": 2336, "text": "We can customize the appearance with a variety of different parameters, and you can even use your own algorithm to control how the points are clustered into the hexagon.", "topics": [] }, { "end_word": 2489, "start_word": 2365, "text": "Go ahead and add hexagon to the layers, and you'll now see that we get these extruded shapes on the map. We can look at the elevation of the hexagon to determine how violent that neighborhood is, and the color of the hexagon becomes more red as the violence increases. Now we've barely only scratched the surface on what's possible with deck. Gl. If you need high performance data visualization on a large data set, it's definitely worth checking out. I'm gonna go ahead and wrap things up there. If this video helped you, please like and scribe and consider becoming a pro member at FireShip. Io for access to even more content. Thanks for watching, and I will talk to you soon. By", "topics": [ { "confidence": 0.87467796, "topic": "internet" }, { "confidence": 0.71617174, "topic": "geometry" }, { "confidence": 0.45212558, "topic": "multimedia" }, { "confidence": 0.071981184, "topic": "media" }, { "confidence": 0.06954735, "topic": "websites" }, { "confidence": 0.050091565, "topic": "youtube" }, { "confidence": 0.034349944, "topic": "streaming" }, { "confidence": 0.013585676, "topic": "visualization" }, { "confidence": 0.00804386, "topic": "data management" }, { "confidence": 0.007192233, "topic": "social media" }, { "confidence": 0.0069508827, "topic": "geography" } ] } ], "transcript": "Today, we'll take over 140,000 data points of people being killed or injured by guns and visualize them with deck gl and Google Maps. We can go from a heat map of the entire country down to the actual street view of a neighborhood where the shit went down. We'll start by adding a scatter plot layer for every single point in the data set. Then we'll add a tooltip to see how many people were injured or killed at a given incident. Then, we'll cluster points together into a heat map based on the map's zoom level. Lastly, we'll cluster points into a hexagon with a 1 mile by hideous and extrude them into a 3 d shape where the elevation represents the amount of violence in that space. We can do all of this data visualization efficiently thanks to a library called deck. Gl. It was created by Uber to visualize their own data and is able to run computations efficiently by offloading them to the GPU with WebGL. By Say hello to my little friend. Take a look at their Showcase for some awesome examples of companies using this technology in production. I think my favorite is Escape. It uses the deck gl arc layer to visualize the cheapest flights based on your by Cajun around the world. Now, I realize that guns are a hot political issue in the United States, so I've tried to make this visual as neutral as possible. The data comes from the gun violence archive from the years 2013 to 2018. On the live demo, you can filter by defensive use, suicide, and so on to get a better picture of how the data is distributed. Before we get started, let's talk a little bit more about how deck gl works. You can think of it as a layer or multiple layers that sit on top of your Google Map. When the user pans around or zooms in and out, the overlay will stick to the map. And an awesome thing about this is that the layers can be composited. In other words, you can set layers on top of each other, add some transparency, and deck. Gl will calculate the composite colors that are actually rendered in the screen. And that can give you some amazing three d visuals on top of a 2 dimensional map. The actual JavaScript library itself follows the reactive programming paradigm, time, so it's very simple and familiar to most front end developers. All you really need is a good dataset, a Google Maps API key, a few few lines of JavaScript, and you'll be up and running with interactive 3 d visuals on top of your map. The first thing you'll need to get started is a Google Maps API key. Create a by project or using existing project on the Google Cloud Platform console. From there, go to the API screen. You'll find the Google Maps JavaScript API, enable it, and then go to the credentials tab and grab your browser API key. Just make a note of the API key for now, we'll need it in a minute or so when we get into the code. You can use deck. Gl in any framework, but it provides additional support for React. In this video, I'm going to use vanilla JavaScript with webpack, and we'll set it up with hot module replacement for a nice developer experience. Go ahead and open up Versus Code, and keep in mind you can find all of these steps in this lesson on Fireship IO. First, we'll run npm init with the y flag to set up a new npm project. Then we'll install webpack and webpack dev server into the development environment. From there, I'll open up the package JSON, and I'm going to add a couple of scripts that we can use to build and serve the app. The build command runs web by PAC and outputs everything into the public folder, which is where we'll actually put our production code. Then the start command will use webpack by dev server to serve that code locally on local host 8080, and it will also perform hot module replacement whenever our source code changes. The next thing we'll do is install deckgl. It's organized in a monorepo, so there's different packages that you may or may not need. We're going to need the Google Maps package, layers, by and aggregation layers. The next thing we'll do is create a file for our JavaScript source code in the source directory. And a little Versus Code pro tip here is to create that file with a slash and it will automatically create the directory structure for you. Then we'll do the same thing for the public HTML file. Then inside this HTML, we'll just Start with a plain HTML document, and we'll make a reference to the main JS file, which is where webpack will build our source code. After that, we'll add a deferred script tag for the Google Maps JavaScript API. This script has 2 required parameters. The first one is the by PIKey, which is the browser API key that you got from the Google Cloud Platform console. Then the callback is the name of a function defined on the window that initializes the map with whatever options you want to pass to it. We'll define that one in just a minute in our JavaScript code. Then the last thing we'll wanna do is go into the body of the HTML and add a div with an id of map. This div will be replaced by the actual Google map, and in our case, we want to display a full screen map. So we'll use some CSS to set the width and height to 100% of the viewport. Now we'll go ahead and open up our JavaScript file, and we'll want to define a function on the window object. This is the callback that we set on the Google Maps script tag. The first argument is the actual div that will be replaced by the map, so we'll go ahead and get that by its ID. And then you can add a bunch of additional options here depending on how you want to customize your app. In fact, Google provides a wizard that helps you quickly customize the appearance of your map. It. That's how I created the dark map that you see in the demo. So now that we have this init map function on the window, we can run npm start to tell webpack to build our code. It. That will also spin up a server on local host 8080. So if you navigate there, you should see the default map at this point, and your code should rebuild anytime you update and save the index JS by file. Now that we have this initial setup out of the way, we need to get some actual data to display on the map. Now this can be very easy or very difficult depending on the data you're working with. If you wanna go the easy route, you can simply grab the JSON data that lives on my web server. But since you're a developer, I'm assuming you want to use your own custom by data. A great place to find free data that's already well formatted is from Kaggle datasets, but in most cases, this data is going to be in CSV format. An easy way to convert this data to the proper format is to use the node package convert CSV to JSON. From there, create a file called convert dotjs in the root of your project. Then inside the script, we can create a very simple node script that has an input in CSV format and then an output in JSON. Now we can just Run that script from the command line and we've magically converted our custom dataset into JSON format that we can use with deck gl. Your data should be an array of JSON objects, So in our case it looks like this. The property names on this object can be anything you want, so you don't really need to format your data in any special way because as you'll see in the code, we tell deck. Gl exactly how to access this data. Let's move into our index. Js file, and we'll import Google Maps overlay as well as the layers that we want to display from deck. Gl. Now like I said earlier, deck. Gl uses a reactive programming paradigm, so I like to create my layers inside of a function. Anytime your map or data changes, you tell deck gl to rebuild the entire map. Under the hood, it's looking at the diff to update things efficiently, very similar to React JS. It can do that because every layer is required to have a unique ID, and deck gl uses that to track the changes for that specific layer. It. The next option that you'll need to pass is the data. So in our case, this will just be the path to the local JSON file, but this could also be a remote URL or a promise that resolves to the JSON object. Now every layer has a variety of optional parameters that you can pass to customize the way the points are displayed. Things like opacity and pixel radius are pretty self explanatory. Now for every point in the dataset, deck gl is going to call the function that you pass to get position. So get position is very similar to a for each loop where d represents an individual object in the dataset. The function needs to return an array of the longitude point and the latitude point in that order. It's not latitude longitude like you might see in other map programs, it's the more mathematically correct format of x y. You can also use functions to compute other properties, like the actual fill color on the scatter plot. In this case, I'm looking at if the number of people killed in this incident is greater than 0, in in which case I'll make the dot red, otherwise I'll make it orange which means that there are only injuries. And that's all it takes to define a scatterplot layer. From there, I'm going to jump down into the init map function that we wrote earlier. We'll define a variable called overlay that's equal to a Google Maps overlay instance, then it takes an array of layers that will be stacked on top of each other. So we'll go ahead and add our scatter plot function there. Then the final step is to add overlay set map with the actual Google Maps instance. By so that's how we initialize a map for the first time. If you're running updates on a map, you would call set props with any subsequent updates to the same map. I just wanted to point that out, but we're actually not going to use it in this simplified demo. From here, if you open the browser, you should see all the points plotted on the map. But I'd like to make these a little more interactive by adding a tooltip when the user hovers over an individual point. We can do that by setting the Pickable option to true on the scatterplot layer. And then from there, we'll define a function that runs on the on hover event. This will give us access to the actual data object that represents that point and then also its x y coordinates. We'll grab an element from the DOM called tooltip, and then if an object exists, we'll go ahead and insert some HTML into that tooltip based on the actual data object. And if an object does not exist, we'll simply hide the tooltip by setting its opacity to 0. And you can also handle click events, so if the user clicks on a given point, we can take them to the instant report on gun violence archive. Now a problem with the map currently is that it's kind of hard to visualize a 140,000 points all at once. Fortunately, deck gl has aggregation layers that will cluster the points into meaningful shapes. This time, let's go ahead and create a function that returns a heat map layer. This function uses the same getter for position, and we also have the option to calculate the weight for each point. By default, every data point has a weight of 1, but we want to weight the data points based on how violent the incident was. So we'll go ahead and take the number of people killed in that incident and then add it to the number of people injured by time 0.5. So you get the most points for killing people, but you also get bonus points for injuring people as well. We'll go ahead and set the pixel radius to 60, and and then we could also customize colors here as well, but we'll just go ahead and skip that for now. And lastly, we'll come down here and add the heat map to our layers. You can see I've switched the map to dark mode to see things a little bit better, and you'll notice we get different clustering patterns based on the zoom level of the map. If we zoom in all the way, we'll start to see the individual instance that make up the larger clusters. The heatmap is useful, but we may want to cluster our points based on a specific boundary. And a great way to do that is with the hexagon layer. This allows us to cluster points into a specific radius and then increase its elevation in the 3rd dimension based on how violent that area is. We can do that by defining a getter for the elevation weight using the same logic that we used in the previous example. We can customize the appearance with a variety of different parameters, and you can even use your own algorithm to control how the points are clustered into the hexagon. Go ahead and add hexagon to the layers, and you'll now see that we get these extruded shapes on the map. We can look at the elevation of the hexagon to determine how violent that neighborhood is, and the color of the hexagon becomes more red as the violence increases. Now we've barely only scratched the surface on what's possible with deck. Gl. If you need high performance data visualization on a large data set, it's definitely worth checking out. I'm gonna go ahead and wrap things up there. If this video helped you, please like and scribe and consider becoming a pro member at FireShip. Io for access to even more content. Thanks for watching, and I will talk to you soon. By", "translations": null, "words": [ { "confidence": 0.98657227, "end": 3.52, "punctuated_word": "Today,", "speaker": 0, "speaker_confidence": 0.27978516, "start": 3.1999998, "word": "today" }, { "confidence": 0.9995117, "end": 3.6799998, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.27978516, "start": 3.52, "word": "we'll" }, { "confidence": 1, "end": 3.84, "punctuated_word": "take", "speaker": 0, "speaker_confidence": 0.7368164, "start": 3.6799998, "word": "take" }, { "confidence": 1, "end": 4.16, "punctuated_word": "over", "speaker": 0, "speaker_confidence": 0.7368164, "start": 3.84, "word": "over" }, { "confidence": 0.93896484, "end": 4.66, "punctuated_word": "140,000", "speaker": 0, "speaker_confidence": 0.7368164, "start": 4.16, "word": "140,000" }, { "confidence": 0.91503906, "end": 5.68, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.7368164, "start": 5.44, "word": "data" }, { "confidence": 0.99902344, "end": 6, "punctuated_word": "points", "speaker": 0, "speaker_confidence": 0.7368164, "start": 5.68, "word": "points" }, { "confidence": 1, "end": 6.16, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7368164, "start": 6, "word": "of" }, { "confidence": 1, "end": 6.3999996, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.7368164, "start": 6.16, "word": "people" }, { "confidence": 0.9941406, "end": 6.56, "punctuated_word": "being", "speaker": 0, "speaker_confidence": 0.7368164, "start": 6.3999996, "word": "being" }, { "confidence": 0.9921875, "end": 6.7999997, "punctuated_word": "killed", "speaker": 0, "speaker_confidence": 0.7368164, "start": 6.56, "word": "killed" }, { "confidence": 0.99609375, "end": 7.04, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.7368164, "start": 6.7999997, "word": "or" }, { "confidence": 1, "end": 7.435, "punctuated_word": "injured", "speaker": 0, "speaker_confidence": 0.7368164, "start": 7.04, "word": "injured" }, { "confidence": 0.9980469, "end": 7.595, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.7368164, "start": 7.435, "word": "by" }, { "confidence": 0.9980469, "end": 7.915, "punctuated_word": "guns", "speaker": 0, "speaker_confidence": 0.7368164, "start": 7.595, "word": "guns" }, { "confidence": 0.64746094, "end": 8.235, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7368164, "start": 7.915, "word": "and" }, { "confidence": 0.9902344, "end": 8.715, "punctuated_word": "visualize", "speaker": 0, "speaker_confidence": 0.7368164, "start": 8.235, "word": "visualize" }, { "confidence": 0.99902344, "end": 8.955, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.7368164, "start": 8.715, "word": "them" }, { "confidence": 0.99902344, "end": 9.195, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.7368164, "start": 8.955, "word": "with" }, { "confidence": 0.92822266, "end": 9.434999, "punctuated_word": "deck", "speaker": 0, "speaker_confidence": 0.7368164, "start": 9.195, "word": "deck" }, { "confidence": 0.30004883, "end": 9.835, "punctuated_word": "gl", "speaker": 0, "speaker_confidence": 0.7368164, "start": 9.434999, "word": "gl" }, { "confidence": 0.9863281, "end": 10.075, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7368164, "start": 9.835, "word": "and" }, { "confidence": 0.90478516, "end": 10.395, "punctuated_word": "Google", "speaker": 0, "speaker_confidence": 0.7368164, "start": 10.075, "word": "google" }, { "confidence": 0.92749023, "end": 10.875, "punctuated_word": "Maps.", "speaker": 0, "speaker_confidence": 0.7368164, "start": 10.395, "word": "maps" }, { "confidence": 0.99902344, "end": 10.955, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.4140625, "start": 10.875, "word": "we" }, { "confidence": 1, "end": 11.115, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.4140625, "start": 10.955, "word": "can" }, { "confidence": 1, "end": 11.195, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.4140625, "start": 11.115, "word": "go" }, { "confidence": 1, "end": 11.434999, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.4140625, "start": 11.195, "word": "from" }, { "confidence": 0.9970703, "end": 11.514999, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.4140625, "start": 11.434999, "word": "a" }, { "confidence": 0.99609375, "end": 11.674999, "punctuated_word": "heat", "speaker": 0, "speaker_confidence": 0.4140625, "start": 11.514999, "word": "heat" }, { "confidence": 0.90478516, "end": 11.835, "punctuated_word": "map", "speaker": 0, "speaker_confidence": 0.65771484, "start": 11.674999, "word": "map" }, { "confidence": 1, "end": 11.995, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.65771484, "start": 11.835, "word": "of" }, { "confidence": 0.9980469, "end": 12.155, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.65771484, "start": 11.995, "word": "the" }, { "confidence": 0.99902344, "end": 12.475, "punctuated_word": "entire", "speaker": 0, "speaker_confidence": 0.65771484, "start": 12.155, "word": "entire" }, { "confidence": 0.99902344, "end": 12.955, "punctuated_word": "country", "speaker": 0, "speaker_confidence": 0.65771484, "start": 12.475, "word": "country" }, { "confidence": 0.8828125, "end": 13.195, "punctuated_word": "down", "speaker": 0, "speaker_confidence": 0.65771484, "start": 12.955, "word": "down" }, { "confidence": 0.99902344, "end": 13.275, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.43359375, "start": 13.195, "word": "to" }, { "confidence": 0.99902344, "end": 13.434999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.43359375, "start": 13.275, "word": "the" }, { "confidence": 0.9980469, "end": 13.754999, "punctuated_word": "actual", "speaker": 0, "speaker_confidence": 0.43359375, "start": 13.434999, "word": "actual" }, { "confidence": 0.9902344, "end": 13.995, "punctuated_word": "street", "speaker": 0, "speaker_confidence": 0.43359375, "start": 13.754999, "word": "street" }, { "confidence": 0.9902344, "end": 14.235, "punctuated_word": "view", "speaker": 0, "speaker_confidence": 0.43359375, "start": 13.995, "word": "view" }, { "confidence": 1, "end": 14.315, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.69140625, "start": 14.235, "word": "of" }, { "confidence": 0.9921875, "end": 14.475, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.69140625, "start": 14.315, "word": "a" }, { "confidence": 0.99902344, "end": 14.955, "punctuated_word": "neighborhood", "speaker": 0, "speaker_confidence": 0.69140625, "start": 14.475, "word": "neighborhood" }, { "confidence": 0.9921875, "end": 15.195, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.69140625, "start": 14.955, "word": "where" }, { "confidence": 0.9970703, "end": 15.275, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.69140625, "start": 15.195, "word": "the" }, { "confidence": 0.5878906, "end": 15.514999, "punctuated_word": "shit", "speaker": 0, "speaker_confidence": 0.69140625, "start": 15.275, "word": "shit" }, { "confidence": 1, "end": 15.674999, "punctuated_word": "went", "speaker": 0, "speaker_confidence": 0.69140625, "start": 15.514999, "word": "went" }, { "confidence": 0.99902344, "end": 15.98, "punctuated_word": "down.", "speaker": 0, "speaker_confidence": 0.69140625, "start": 15.674999, "word": "down" }, { "confidence": 0.99902344, "end": 16.3, "punctuated_word": "We'll", "speaker": 0, "speaker_confidence": 0.69140625, "start": 16.06, "word": "we'll" }, { "confidence": 1, "end": 16.46, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 0.69140625, "start": 16.3, "word": "start" }, { "confidence": 0.9970703, "end": 16.699999, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.69140625, "start": 16.46, "word": "by" }, { "confidence": 1, "end": 17.02, "punctuated_word": "adding", "speaker": 0, "speaker_confidence": 0.69140625, "start": 16.699999, "word": "adding" }, { "confidence": 1, "end": 17.18, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.69140625, "start": 17.02, "word": "a" }, { "confidence": 0.75683594, "end": 17.5, "punctuated_word": "scatter", "speaker": 0, "speaker_confidence": 0.69140625, "start": 17.18, "word": "scatter" }, { "confidence": 0.51464844, "end": 17.82, "punctuated_word": "plot", "speaker": 0, "speaker_confidence": 0.69140625, "start": 17.5, "word": "plot" }, { "confidence": 0.99609375, "end": 18.14, "punctuated_word": "layer", "speaker": 0, "speaker_confidence": 0.69140625, "start": 17.82, "word": "layer" }, { "confidence": 0.99902344, "end": 18.3, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.69140625, "start": 18.14, "word": "for" }, { "confidence": 0.99902344, "end": 18.539999, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 0.69140625, "start": 18.3, "word": "every" }, { "confidence": 0.99902344, "end": 18.859999, "punctuated_word": "single", "speaker": 0, "speaker_confidence": 0.69140625, "start": 18.539999, "word": "single" }, { "confidence": 0.9970703, "end": 19.099998, "punctuated_word": "point", "speaker": 0, "speaker_confidence": 0.69140625, "start": 18.859999, "word": "point" }, { "confidence": 0.99902344, "end": 19.18, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.69140625, "start": 19.099998, "word": "in" }, { "confidence": 0.99902344, "end": 19.34, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.58447266, "start": 19.18, "word": "the" }, { "confidence": 0.61328125, "end": 19.58, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.58447266, "start": 19.34, "word": "data" }, { "confidence": 0.8232422, "end": 20.06, "punctuated_word": "set.", "speaker": 0, "speaker_confidence": 0.58447266, "start": 19.58, "word": "set" }, { "confidence": 0.9970703, "end": 20.22, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.58447266, "start": 20.06, "word": "then" }, { "confidence": 0.8635254, "end": 20.38, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.58447266, "start": 20.22, "word": "we'll" }, { "confidence": 1, "end": 20.46, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.58447266, "start": 20.38, "word": "add" }, { "confidence": 1, "end": 20.619999, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.58447266, "start": 20.46, "word": "a" }, { "confidence": 0.96777344, "end": 21.099998, "punctuated_word": "tooltip", "speaker": 0, "speaker_confidence": 0.58447266, "start": 20.619999, "word": "tooltip" }, { "confidence": 0.99902344, "end": 21.34, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.58447266, "start": 21.099998, "word": "to" }, { "confidence": 0.99902344, "end": 21.5, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.58447266, "start": 21.34, "word": "see" }, { "confidence": 1, "end": 21.58, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.68310547, "start": 21.5, "word": "how" }, { "confidence": 1, "end": 21.82, "punctuated_word": "many", "speaker": 0, "speaker_confidence": 0.68310547, "start": 21.58, "word": "many" }, { "confidence": 1, "end": 22.06, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.68310547, "start": 21.82, "word": "people" }, { "confidence": 0.9248047, "end": 22.22, "punctuated_word": "were", "speaker": 0, "speaker_confidence": 0.68310547, "start": 22.06, "word": "were" }, { "confidence": 1, "end": 22.539999, "punctuated_word": "injured", "speaker": 0, "speaker_confidence": 0.68310547, "start": 22.22, "word": "injured" }, { "confidence": 0.9980469, "end": 22.779999, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.68310547, "start": 22.539999, "word": "or" }, { "confidence": 1, "end": 23.02, "punctuated_word": "killed", "speaker": 0, "speaker_confidence": 0.68310547, "start": 22.779999, "word": "killed" }, { "confidence": 0.93847656, "end": 23.099998, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.68310547, "start": 23.02, "word": "at" }, { "confidence": 0.93408203, "end": 23.259998, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.68310547, "start": 23.099998, "word": "a" }, { "confidence": 0.99902344, "end": 23.5, "punctuated_word": "given", "speaker": 0, "speaker_confidence": 0.68310547, "start": 23.259998, "word": "given" }, { "confidence": 0.96972656, "end": 24, "punctuated_word": "incident.", "speaker": 0, "speaker_confidence": 0.68310547, "start": 23.5, "word": "incident" }, { "confidence": 0.7609863, "end": 24.414999, "punctuated_word": "Then,", "speaker": 0, "speaker_confidence": 0.6591797, "start": 24.175, "word": "then" }, { "confidence": 0.9995117, "end": 24.494999, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.6591797, "start": 24.414999, "word": "we'll" }, { "confidence": 0.9980469, "end": 24.894999, "punctuated_word": "cluster", "speaker": 0, "speaker_confidence": 0.6591797, "start": 24.494999, "word": "cluster" }, { "confidence": 0.9980469, "end": 25.215, "punctuated_word": "points", "speaker": 0, "speaker_confidence": 0.6591797, "start": 24.894999, "word": "points" }, { "confidence": 0.9951172, "end": 25.535, "punctuated_word": "together", "speaker": 0, "speaker_confidence": 0.6591797, "start": 25.215, "word": "together" }, { "confidence": 0.9873047, "end": 25.855, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.6591797, "start": 25.535, "word": "into" }, { "confidence": 0.9941406, "end": 26.015, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6591797, "start": 25.855, "word": "a" }, { "confidence": 0.94140625, "end": 26.255, "punctuated_word": "heat", "speaker": 0, "speaker_confidence": 0.5073242, "start": 26.015, "word": "heat" }, { "confidence": 0.7636719, "end": 26.574999, "punctuated_word": "map", "speaker": 0, "speaker_confidence": 0.5073242, "start": 26.255, "word": "map" }, { "confidence": 0.7270508, "end": 26.894999, "punctuated_word": "based", "speaker": 0, "speaker_confidence": 0.5073242, "start": 26.574999, "word": "based" }, { "confidence": 0.99902344, "end": 27.055, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.5073242, "start": 26.894999, "word": "on" }, { "confidence": 0.9951172, "end": 27.215, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5073242, "start": 27.055, "word": "the" }, { "confidence": 0.97558594, "end": 27.535, "punctuated_word": "map's", "speaker": 0, "speaker_confidence": 0.5073242, "start": 27.215, "word": "map's" }, { "confidence": 0.9970703, "end": 27.775, "punctuated_word": "zoom", "speaker": 0, "speaker_confidence": 0.5073242, "start": 27.535, "word": "zoom" }, { "confidence": 0.99853516, "end": 28.275, "punctuated_word": "level.", "speaker": 0, "speaker_confidence": 0.5073242, "start": 27.775, "word": "level" }, { "confidence": 0.9975586, "end": 28.895, "punctuated_word": "Lastly,", "speaker": 0, "speaker_confidence": 0.6640625, "start": 28.414999, "word": "lastly" }, { "confidence": 0.9995117, "end": 29.055, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.6640625, "start": 28.895, "word": "we'll" }, { "confidence": 0.99902344, "end": 29.455, "punctuated_word": "cluster", "speaker": 0, "speaker_confidence": 0.6640625, "start": 29.055, "word": "cluster" }, { "confidence": 1, "end": 29.775, "punctuated_word": "points", "speaker": 0, "speaker_confidence": 0.6640625, "start": 29.455, "word": "points" }, { "confidence": 0.9970703, "end": 30.095, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.6640625, "start": 29.775, "word": "into" }, { "confidence": 0.9980469, "end": 30.255, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6640625, "start": 30.095, "word": "a" }, { "confidence": 0.99658203, "end": 30.734999, "punctuated_word": "hexagon", "speaker": 0, "speaker_confidence": 0.6640625, "start": 30.255, "word": "hexagon" }, { "confidence": 0.98291016, "end": 30.894999, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.6640625, "start": 30.734999, "word": "with" }, { "confidence": 0.9980469, "end": 31.055, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6640625, "start": 30.894999, "word": "a" }, { "confidence": 0.6826172, "end": 31.215, "punctuated_word": "1", "speaker": 0, "speaker_confidence": 0.6640625, "start": 31.055, "word": "1" }, { "confidence": 0.95947266, "end": 31.57, "punctuated_word": "mile", "speaker": 0, "speaker_confidence": 0.6640625, "start": 31.215, "word": "mile" }, { "confidence": 0.9604492, "end": 31.73, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.6640625, "start": 31.57, "word": "by" }, { "confidence": 0.42236328, "end": 32.13, "punctuated_word": "hideous", "speaker": 0, "speaker_confidence": 0.6640625, "start": 31.73, "word": "hideous" }, { "confidence": 0.9277344, "end": 32.37, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6640625, "start": 32.13, "word": "and" }, { "confidence": 0.9975586, "end": 32.69, "punctuated_word": "extrude", "speaker": 0, "speaker_confidence": 0.6640625, "start": 32.37, "word": "extrude" }, { "confidence": 0.9970703, "end": 32.85, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.6640625, "start": 32.69, "word": "them" }, { "confidence": 0.9921875, "end": 33.17, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.6640625, "start": 32.85, "word": "into" }, { "confidence": 0.9970703, "end": 33.25, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7260742, "start": 33.17, "word": "a" }, { "confidence": 0.72998047, "end": 33.41, "punctuated_word": "3", "speaker": 0, "speaker_confidence": 0.7260742, "start": 33.25, "word": "3" }, { "confidence": 0.8925781, "end": 33.65, "punctuated_word": "d", "speaker": 0, "speaker_confidence": 0.7260742, "start": 33.41, "word": "d" }, { "confidence": 0.9980469, "end": 33.89, "punctuated_word": "shape", "speaker": 0, "speaker_confidence": 0.7260742, "start": 33.65, "word": "shape" }, { "confidence": 0.90478516, "end": 34.13, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.7260742, "start": 33.89, "word": "where" }, { "confidence": 0.9902344, "end": 34.29, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7260742, "start": 34.13, "word": "the" }, { "confidence": 0.99902344, "end": 34.79, "punctuated_word": "elevation", "speaker": 0, "speaker_confidence": 0.7260742, "start": 34.29, "word": "elevation" }, { "confidence": 0.99902344, "end": 35.25, "punctuated_word": "represents", "speaker": 0, "speaker_confidence": 0.7260742, "start": 34.85, "word": "represents" }, { "confidence": 1, "end": 35.41, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7260742, "start": 35.25, "word": "the" }, { "confidence": 1, "end": 35.65, "punctuated_word": "amount", "speaker": 0, "speaker_confidence": 0.7260742, "start": 35.41, "word": "amount" }, { "confidence": 0.99902344, "end": 35.809998, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7260742, "start": 35.65, "word": "of" }, { "confidence": 1, "end": 36.21, "punctuated_word": "violence", "speaker": 0, "speaker_confidence": 0.7260742, "start": 35.809998, "word": "violence" }, { "confidence": 1, "end": 36.37, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7260742, "start": 36.21, "word": "in" }, { "confidence": 0.9980469, "end": 36.53, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.5595703, "start": 36.37, "word": "that" }, { "confidence": 0.9980469, "end": 37.03, "punctuated_word": "space.", "speaker": 0, "speaker_confidence": 0.5595703, "start": 36.53, "word": "space" }, { "confidence": 0.99902344, "end": 37.41, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.5595703, "start": 37.25, "word": "we" }, { "confidence": 1, "end": 37.57, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.5595703, "start": 37.41, "word": "can" }, { "confidence": 0.99902344, "end": 37.73, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.5595703, "start": 37.57, "word": "do" }, { "confidence": 0.99902344, "end": 37.89, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.5595703, "start": 37.73, "word": "all" }, { "confidence": 0.85058594, "end": 37.97, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7529297, "start": 37.89, "word": "of" }, { "confidence": 0.9980469, "end": 38.13, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.7529297, "start": 37.97, "word": "this" }, { "confidence": 0.99609375, "end": 38.37, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.7529297, "start": 38.13, "word": "data" }, { "confidence": 0.99902344, "end": 38.87, "punctuated_word": "visualization", "speaker": 0, "speaker_confidence": 0.7529297, "start": 38.37, "word": "visualization" }, { "confidence": 0.99902344, "end": 39.51, "punctuated_word": "efficiently", "speaker": 0, "speaker_confidence": 0.7529297, "start": 39.01, "word": "efficiently" }, { "confidence": 0.68408203, "end": 39.809998, "punctuated_word": "thanks", "speaker": 0, "speaker_confidence": 0.7529297, "start": 39.57, "word": "thanks" }, { "confidence": 0.99902344, "end": 39.97, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7529297, "start": 39.809998, "word": "to" }, { "confidence": 0.9970703, "end": 40.129997, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7529297, "start": 39.97, "word": "a" }, { "confidence": 0.99902344, "end": 40.53, "punctuated_word": "library", "speaker": 0, "speaker_confidence": 0.7529297, "start": 40.129997, "word": "library" }, { "confidence": 1, "end": 40.85, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 0.7529297, "start": 40.53, "word": "called" }, { "confidence": 0.5109863, "end": 41.09, "punctuated_word": "deck.", "speaker": 0, "speaker_confidence": 0.7529297, "start": 40.85, "word": "deck" }, { "confidence": 0.9001465, "end": 41.555, "punctuated_word": "Gl.", "speaker": 0, "speaker_confidence": 0.7529297, "start": 41.09, "word": "gl" }, { "confidence": 0.9970703, "end": 41.875, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.68359375, "start": 41.715, "word": "it" }, { "confidence": 1, "end": 42.035, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.68359375, "start": 41.875, "word": "was" }, { "confidence": 1, "end": 42.275, "punctuated_word": "created", "speaker": 0, "speaker_confidence": 0.68359375, "start": 42.035, "word": "created" }, { "confidence": 0.99902344, "end": 42.515, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.68359375, "start": 42.275, "word": "by" }, { "confidence": 0.98291016, "end": 42.835, "punctuated_word": "Uber", "speaker": 0, "speaker_confidence": 0.68359375, "start": 42.515, "word": "uber" }, { "confidence": 0.9980469, "end": 43.075, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.68359375, "start": 42.835, "word": "to" }, { "confidence": 0.9873047, "end": 43.475, "punctuated_word": "visualize", "speaker": 0, "speaker_confidence": 0.68359375, "start": 43.075, "word": "visualize" }, { "confidence": 1, "end": 43.715, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 0.68359375, "start": 43.475, "word": "their" }, { "confidence": 0.99902344, "end": 43.875, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 0.68359375, "start": 43.715, "word": "own" }, { "confidence": 1, "end": 44.275, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.68359375, "start": 43.875, "word": "data" }, { "confidence": 0.7026367, "end": 44.435, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.68359375, "start": 44.275, "word": "and" }, { "confidence": 0.9951172, "end": 44.595, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.68359375, "start": 44.435, "word": "is" }, { "confidence": 1, "end": 44.835, "punctuated_word": "able", "speaker": 0, "speaker_confidence": 0.68359375, "start": 44.595, "word": "able" }, { "confidence": 0.99902344, "end": 44.915, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.74560547, "start": 44.835, "word": "to" }, { "confidence": 0.99902344, "end": 45.235, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.74560547, "start": 44.915, "word": "run" }, { "confidence": 0.9616699, "end": 45.735, "punctuated_word": "computations", "speaker": 0, "speaker_confidence": 0.74560547, "start": 45.235, "word": "computations" }, { "confidence": 0.9770508, "end": 46.295, "punctuated_word": "efficiently", "speaker": 0, "speaker_confidence": 0.74560547, "start": 45.795, "word": "efficiently" }, { "confidence": 0.9980469, "end": 46.675, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.74560547, "start": 46.435, "word": "by" }, { "confidence": 0.94677734, "end": 47.075, "punctuated_word": "offloading", "speaker": 0, "speaker_confidence": 0.74560547, "start": 46.675, "word": "offloading" }, { "confidence": 0.99902344, "end": 47.315, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.74560547, "start": 47.075, "word": "them" }, { "confidence": 0.9980469, "end": 47.475, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.74560547, "start": 47.315, "word": "to" }, { "confidence": 0.99121094, "end": 47.635002, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.74560547, "start": 47.475, "word": "the" }, { "confidence": 0.9941406, "end": 48.135002, "punctuated_word": "GPU", "speaker": 0, "speaker_confidence": 0.74560547, "start": 47.635002, "word": "gpu" }, { "confidence": 0.9951172, "end": 48.435, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.74560547, "start": 48.195, "word": "with" }, { "confidence": 0.9448242, "end": 48.935, "punctuated_word": "WebGL.", "speaker": 0, "speaker_confidence": 0.74560547, "start": 48.435, "word": "webgl" }, { "confidence": 0.87158203, "end": 49.559998, "punctuated_word": "By", "speaker": 0, "speaker_confidence": 0, "start": 49.32, "word": "by" }, { "confidence": 0.8286133, "end": 50.2, "punctuated_word": "Say", "speaker": 0, "speaker_confidence": 0, "start": 49.8, "word": "say" }, { "confidence": 0.9980469, "end": 50.52, "punctuated_word": "hello", "speaker": 0, "speaker_confidence": 0, "start": 50.2, "word": "hello" }, { "confidence": 0.9941406, "end": 50.6, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0, "start": 50.52, "word": "to" }, { "confidence": 0.9980469, "end": 50.92, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0, "start": 50.6, "word": "my" }, { "confidence": 0.7416992, "end": 51.239998, "punctuated_word": "little", "speaker": 0, "speaker_confidence": 0, "start": 50.92, "word": "little" }, { "confidence": 0.95947266, "end": 51.739998, "punctuated_word": "friend.", "speaker": 0, "speaker_confidence": 0, "start": 51.239998, "word": "friend" }, { "confidence": 0.5102539, "end": 55.8, "punctuated_word": "Take", "speaker": 0, "speaker_confidence": 0.78808594, "start": 55.559998, "word": "take" }, { "confidence": 0.99902344, "end": 55.88, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.78808594, "start": 55.8, "word": "a" }, { "confidence": 1, "end": 56.04, "punctuated_word": "look", "speaker": 0, "speaker_confidence": 0.78808594, "start": 55.88, "word": "look" }, { "confidence": 0.9970703, "end": 56.12, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.78808594, "start": 56.04, "word": "at" }, { "confidence": 0.9838867, "end": 56.335, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 0.78808594, "start": 56.12, "word": "their" }, { "confidence": 0.85839844, "end": 56.815, "punctuated_word": "Showcase", "speaker": 0, "speaker_confidence": 0.78808594, "start": 56.415, "word": "showcase" }, { "confidence": 0.96875, "end": 57.055, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.78808594, "start": 56.815, "word": "for" }, { "confidence": 0.9970703, "end": 57.295, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.78808594, "start": 57.055, "word": "some" }, { "confidence": 0.99902344, "end": 57.614998, "punctuated_word": "awesome", "speaker": 0, "speaker_confidence": 0.78808594, "start": 57.295, "word": "awesome" }, { "confidence": 0.9970703, "end": 58.094997, "punctuated_word": "examples", "speaker": 0, "speaker_confidence": 0.78808594, "start": 57.614998, "word": "examples" }, { "confidence": 1, "end": 58.254997, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.78808594, "start": 58.094997, "word": "of" }, { "confidence": 0.99902344, "end": 58.735, "punctuated_word": "companies", "speaker": 0, "speaker_confidence": 0.78808594, "start": 58.254997, "word": "companies" }, { "confidence": 0.99902344, "end": 59.055, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.78808594, "start": 58.735, "word": "using" }, { "confidence": 1, "end": 59.215, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.78808594, "start": 59.055, "word": "this" }, { "confidence": 0.99902344, "end": 59.695, "punctuated_word": "technology", "speaker": 0, "speaker_confidence": 0.78808594, "start": 59.215, "word": "technology" }, { "confidence": 0.9741211, "end": 59.855, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.78808594, "start": 59.695, "word": "in" }, { "confidence": 0.99658203, "end": 60.355, "punctuated_word": "production.", "speaker": 0, "speaker_confidence": 0.78808594, "start": 59.855, "word": "production" }, { "confidence": 0.9970703, "end": 60.655, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.79003906, "start": 60.574997, "word": "i" }, { "confidence": 1, "end": 60.815, "punctuated_word": "think", "speaker": 0, "speaker_confidence": 0.79003906, "start": 60.655, "word": "think" }, { "confidence": 0.99609375, "end": 60.975, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.79003906, "start": 60.815, "word": "my" }, { "confidence": 0.9970703, "end": 61.295, "punctuated_word": "favorite", "speaker": 0, "speaker_confidence": 0.79003906, "start": 60.975, "word": "favorite" }, { "confidence": 1, "end": 61.535, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.79003906, "start": 61.295, "word": "is" }, { "confidence": 0.92285156, "end": 62.035, "punctuated_word": "Escape.", "speaker": 0, "speaker_confidence": 0.79003906, "start": 61.535, "word": "escape" }, { "confidence": 0.99316406, "end": 62.175, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.79003906, "start": 62.094997, "word": "it" }, { "confidence": 0.99902344, "end": 62.495, "punctuated_word": "uses", "speaker": 0, "speaker_confidence": 0.79003906, "start": 62.175, "word": "uses" }, { "confidence": 0.9980469, "end": 62.655, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.79003906, "start": 62.495, "word": "the" }, { "confidence": 0.8984375, "end": 62.895, "punctuated_word": "deck", "speaker": 0, "speaker_confidence": 0.79003906, "start": 62.655, "word": "deck" }, { "confidence": 0.5986328, "end": 63.135, "punctuated_word": "gl", "speaker": 0, "speaker_confidence": 0.79003906, "start": 62.895, "word": "gl" }, { "confidence": 0.921875, "end": 63.375, "punctuated_word": "arc", "speaker": 0, "speaker_confidence": 0.79003906, "start": 63.135, "word": "arc" }, { "confidence": 0.9902344, "end": 63.614998, "punctuated_word": "layer", "speaker": 0, "speaker_confidence": 0.79003906, "start": 63.375, "word": "layer" }, { "confidence": 0.9980469, "end": 63.774998, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.79003906, "start": 63.614998, "word": "to" }, { "confidence": 0.9902344, "end": 64.255, "punctuated_word": "visualize", "speaker": 0, "speaker_confidence": 0.79003906, "start": 63.774998, "word": "visualize" }, { "confidence": 0.99609375, "end": 64.494995, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.79003906, "start": 64.255, "word": "the" }, { "confidence": 1, "end": 64.815, "punctuated_word": "cheapest", "speaker": 0, "speaker_confidence": 0.79003906, "start": 64.494995, "word": "cheapest" }, { "confidence": 0.9970703, "end": 65.135, "punctuated_word": "flights", "speaker": 0, "speaker_confidence": 0.79003906, "start": 64.815, "word": "flights" }, { "confidence": 0.98828125, "end": 65.375, "punctuated_word": "based", "speaker": 0, "speaker_confidence": 0.79003906, "start": 65.135, "word": "based" }, { "confidence": 0.9970703, "end": 65.534996, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.79003906, "start": 65.375, "word": "on" }, { "confidence": 0.9970703, "end": 65.81, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.79003906, "start": 65.534996, "word": "your" }, { "confidence": 0.9741211, "end": 65.89, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.85253906, "start": 65.81, "word": "by" }, { "confidence": 0.6602376, "end": 66.21, "punctuated_word": "Cajun", "speaker": 0, "speaker_confidence": 0.85253906, "start": 65.89, "word": "cajun" }, { "confidence": 0.9550781, "end": 66.369995, "punctuated_word": "around", "speaker": 0, "speaker_confidence": 0.85253906, "start": 66.21, "word": "around" }, { "confidence": 1, "end": 66.53, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.85253906, "start": 66.369995, "word": "the" }, { "confidence": 0.9970703, "end": 67.03, "punctuated_word": "world.", "speaker": 0, "speaker_confidence": 0.85253906, "start": 66.53, "word": "world" }, { "confidence": 0.8630371, "end": 67.329994, "punctuated_word": "Now,", "speaker": 0, "speaker_confidence": 0.85253906, "start": 67.09, "word": "now" }, { "confidence": 1, "end": 67.49, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.85253906, "start": 67.329994, "word": "i" }, { "confidence": 0.72558594, "end": 67.81, "punctuated_word": "realize", "speaker": 0, "speaker_confidence": 0.85253906, "start": 67.49, "word": "realize" }, { "confidence": 0.97509766, "end": 67.97, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.85253906, "start": 67.81, "word": "that" }, { "confidence": 0.99609375, "end": 68.29, "punctuated_word": "guns", "speaker": 0, "speaker_confidence": 0.85253906, "start": 67.97, "word": "guns" }, { "confidence": 1, "end": 68.45, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.85253906, "start": 68.29, "word": "are" }, { "confidence": 0.99902344, "end": 68.61, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.85253906, "start": 68.45, "word": "a" }, { "confidence": 0.99902344, "end": 68.77, "punctuated_word": "hot", "speaker": 0, "speaker_confidence": 0.85253906, "start": 68.61, "word": "hot" }, { "confidence": 0.99902344, "end": 69.09, "punctuated_word": "political", "speaker": 0, "speaker_confidence": 0.85253906, "start": 68.77, "word": "political" }, { "confidence": 0.9970703, "end": 69.409996, "punctuated_word": "issue", "speaker": 0, "speaker_confidence": 0.85253906, "start": 69.09, "word": "issue" }, { "confidence": 1, "end": 69.57, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.85253906, "start": 69.409996, "word": "in" }, { "confidence": 0.9951172, "end": 69.649994, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.85253906, "start": 69.57, "word": "the" }, { "confidence": 0.9970703, "end": 69.97, "punctuated_word": "United", "speaker": 0, "speaker_confidence": 0.85253906, "start": 69.649994, "word": "united" }, { "confidence": 0.93652344, "end": 70.47, "punctuated_word": "States,", "speaker": 0, "speaker_confidence": 0.85253906, "start": 69.97, "word": "states" }, { "confidence": 0.9980469, "end": 70.689995, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.85253906, "start": 70.53, "word": "so" }, { "confidence": 0.95336914, "end": 70.77, "punctuated_word": "I've", "speaker": 0, "speaker_confidence": 0.85253906, "start": 70.689995, "word": "i've" }, { "confidence": 0.99902344, "end": 71.009995, "punctuated_word": "tried", "speaker": 0, "speaker_confidence": 0.85253906, "start": 70.77, "word": "tried" }, { "confidence": 0.9980469, "end": 71.17, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.85253906, "start": 71.009995, "word": "to" }, { "confidence": 1, "end": 71.409996, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.85253906, "start": 71.17, "word": "make" }, { "confidence": 0.9921875, "end": 71.57, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.85253906, "start": 71.409996, "word": "this" }, { "confidence": 0.99609375, "end": 72.049995, "punctuated_word": "visual", "speaker": 0, "speaker_confidence": 0.85253906, "start": 71.57, "word": "visual" }, { "confidence": 0.99902344, "end": 72.369995, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.85253906, "start": 72.049995, "word": "as" }, { "confidence": 0.9980469, "end": 72.77, "punctuated_word": "neutral", "speaker": 0, "speaker_confidence": 0.85253906, "start": 72.369995, "word": "neutral" }, { "confidence": 0.99902344, "end": 72.93, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.85253906, "start": 72.77, "word": "as" }, { "confidence": 0.99902344, "end": 73.43, "punctuated_word": "possible.", "speaker": 0, "speaker_confidence": 0.85253906, "start": 72.93, "word": "possible" }, { "confidence": 0.96435547, "end": 73.695, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.6040039, "start": 73.535, "word": "the" }, { "confidence": 0.99902344, "end": 73.935005, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.6040039, "start": 73.695, "word": "data" }, { "confidence": 0.9941406, "end": 74.175, "punctuated_word": "comes", "speaker": 0, "speaker_confidence": 0.6040039, "start": 73.935005, "word": "comes" }, { "confidence": 0.9980469, "end": 74.415, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.6040039, "start": 74.175, "word": "from" }, { "confidence": 0.9838867, "end": 74.495, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6040039, "start": 74.415, "word": "the" }, { "confidence": 0.83740234, "end": 74.735, "punctuated_word": "gun", "speaker": 0, "speaker_confidence": 0.6040039, "start": 74.495, "word": "gun" }, { "confidence": 0.9970703, "end": 75.135, "punctuated_word": "violence", "speaker": 0, "speaker_confidence": 0.6040039, "start": 74.735, "word": "violence" }, { "confidence": 0.9980469, "end": 75.455, "punctuated_word": "archive", "speaker": 0, "speaker_confidence": 0.6040039, "start": 75.135, "word": "archive" }, { "confidence": 0.80615234, "end": 75.615005, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.6040039, "start": 75.455, "word": "from" }, { "confidence": 0.9873047, "end": 75.695, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5786133, "start": 75.615005, "word": "the" }, { "confidence": 0.9970703, "end": 76.015, "punctuated_word": "years", "speaker": 0, "speaker_confidence": 0.5786133, "start": 75.695, "word": "years" }, { "confidence": 0.9526367, "end": 76.515, "punctuated_word": "2013", "speaker": 0, "speaker_confidence": 0.5786133, "start": 76.015, "word": "2013" }, { "confidence": 0.95703125, "end": 77.455, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.5786133, "start": 77.055, "word": "to" }, { "confidence": 0.9296875, "end": 77.955, "punctuated_word": "2018.", "speaker": 0, "speaker_confidence": 0.5786133, "start": 77.455, "word": "2018" }, { "confidence": 0.9980469, "end": 78.575005, "punctuated_word": "On", "speaker": 0, "speaker_confidence": 0.7714844, "start": 78.415, "word": "on" }, { "confidence": 0.9892578, "end": 78.735, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7714844, "start": 78.575005, "word": "the" }, { "confidence": 0.99316406, "end": 78.975, "punctuated_word": "live", "speaker": 0, "speaker_confidence": 0.7714844, "start": 78.735, "word": "live" }, { "confidence": 0.99194336, "end": 79.295, "punctuated_word": "demo,", "speaker": 0, "speaker_confidence": 0.7714844, "start": 78.975, "word": "demo" }, { "confidence": 1, "end": 79.375, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7714844, "start": 79.295, "word": "you" }, { "confidence": 1, "end": 79.535, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7714844, "start": 79.375, "word": "can" }, { "confidence": 0.99902344, "end": 79.855, "punctuated_word": "filter", "speaker": 0, "speaker_confidence": 0.7714844, "start": 79.535, "word": "filter" }, { "confidence": 0.9980469, "end": 80.095, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.7714844, "start": 79.855, "word": "by" }, { "confidence": 0.96435547, "end": 80.495, "punctuated_word": "defensive", "speaker": 0, "speaker_confidence": 0.7714844, "start": 80.095, "word": "defensive" }, { "confidence": 0.9526367, "end": 80.815, "punctuated_word": "use,", "speaker": 0, "speaker_confidence": 0.7714844, "start": 80.495, "word": "use" }, { "confidence": 0.95947266, "end": 81.295, "punctuated_word": "suicide,", "speaker": 0, "speaker_confidence": 0.7714844, "start": 80.815, "word": "suicide" }, { "confidence": 0.99902344, "end": 81.455, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7714844, "start": 81.295, "word": "and" }, { "confidence": 1, "end": 81.695, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.7714844, "start": 81.455, "word": "so" }, { "confidence": 0.99902344, "end": 81.855, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.7714844, "start": 81.695, "word": "on" }, { "confidence": 0.6357422, "end": 82.015, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7714844, "start": 81.855, "word": "to" }, { "confidence": 0.9980469, "end": 82.175, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.7714844, "start": 82.015, "word": "get" }, { "confidence": 0.99902344, "end": 82.255005, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6904297, "start": 82.175, "word": "a" }, { "confidence": 0.99902344, "end": 82.575005, "punctuated_word": "better", "speaker": 0, "speaker_confidence": 0.6904297, "start": 82.255005, "word": "better" }, { "confidence": 0.99902344, "end": 82.815, "punctuated_word": "picture", "speaker": 0, "speaker_confidence": 0.6904297, "start": 82.575005, "word": "picture" }, { "confidence": 0.9536133, "end": 83.05, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.6904297, "start": 82.815, "word": "of" }, { "confidence": 1, "end": 83.21001, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.6904297, "start": 83.05, "word": "how" }, { "confidence": 0.99902344, "end": 83.37, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6904297, "start": 83.21001, "word": "the" }, { "confidence": 1, "end": 83.53001, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.6904297, "start": 83.37, "word": "data" }, { "confidence": 0.99902344, "end": 83.93, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.6904297, "start": 83.53001, "word": "is" }, { "confidence": 0.9995117, "end": 84.43, "punctuated_word": "distributed.", "speaker": 0, "speaker_confidence": 0.6904297, "start": 83.93, "word": "distributed" }, { "confidence": 0.9980469, "end": 84.73, "punctuated_word": "Before", "speaker": 0, "speaker_confidence": 0.6904297, "start": 84.490005, "word": "before" }, { "confidence": 1, "end": 84.810005, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.6904297, "start": 84.73, "word": "we" }, { "confidence": 1, "end": 84.97, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.7133789, "start": 84.810005, "word": "get" }, { "confidence": 0.99560547, "end": 85.37, "punctuated_word": "started,", "speaker": 0, "speaker_confidence": 0.7133789, "start": 84.97, "word": "started" }, { "confidence": 0.99902344, "end": 85.61, "punctuated_word": "let's", "speaker": 0, "speaker_confidence": 0.7133789, "start": 85.37, "word": "let's" }, { "confidence": 0.9980469, "end": 85.850006, "punctuated_word": "talk", "speaker": 0, "speaker_confidence": 0.7133789, "start": 85.61, "word": "talk" }, { "confidence": 0.9267578, "end": 85.93, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7133789, "start": 85.850006, "word": "a" }, { "confidence": 0.99902344, "end": 86.170006, "punctuated_word": "little", "speaker": 0, "speaker_confidence": 0.7133789, "start": 85.93, "word": "little" }, { "confidence": 0.9902344, "end": 86.33, "punctuated_word": "bit", "speaker": 0, "speaker_confidence": 0.7133789, "start": 86.170006, "word": "bit" }, { "confidence": 0.9941406, "end": 86.490005, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.7133789, "start": 86.33, "word": "more" }, { "confidence": 0.99902344, "end": 86.73, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.7133789, "start": 86.490005, "word": "about" }, { "confidence": 0.99609375, "end": 86.89, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.7133789, "start": 86.73, "word": "how" }, { "confidence": 0.97314453, "end": 87.130005, "punctuated_word": "deck", "speaker": 0, "speaker_confidence": 0.7133789, "start": 86.89, "word": "deck" }, { "confidence": 0.5498047, "end": 87.37, "punctuated_word": "gl", "speaker": 0, "speaker_confidence": 0.7133789, "start": 87.130005, "word": "gl" }, { "confidence": 0.9946289, "end": 87.87, "punctuated_word": "works.", "speaker": 0, "speaker_confidence": 0.7133789, "start": 87.37, "word": "works" }, { "confidence": 0.99902344, "end": 88.090004, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.7133789, "start": 87.93, "word": "you" }, { "confidence": 0.99902344, "end": 88.170006, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7133789, "start": 88.090004, "word": "can" }, { "confidence": 1, "end": 88.33, "punctuated_word": "think", "speaker": 0, "speaker_confidence": 0.6796875, "start": 88.170006, "word": "think" }, { "confidence": 0.99902344, "end": 88.490005, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.6796875, "start": 88.33, "word": "of" }, { "confidence": 0.99902344, "end": 88.65, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.6796875, "start": 88.490005, "word": "it" }, { "confidence": 1, "end": 88.810005, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.6796875, "start": 88.65, "word": "as" }, { "confidence": 0.9892578, "end": 88.97, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6796875, "start": 88.810005, "word": "a" }, { "confidence": 1, "end": 89.29, "punctuated_word": "layer", "speaker": 0, "speaker_confidence": 0.6796875, "start": 88.97, "word": "layer" }, { "confidence": 0.9658203, "end": 89.53001, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.6796875, "start": 89.29, "word": "or" }, { "confidence": 0.98828125, "end": 89.93, "punctuated_word": "multiple", "speaker": 0, "speaker_confidence": 0.6796875, "start": 89.53001, "word": "multiple" }, { "confidence": 1, "end": 90.33, "punctuated_word": "layers", "speaker": 0, "speaker_confidence": 0.6796875, "start": 89.93, "word": "layers" }, { "confidence": 0.9951172, "end": 90.490005, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.6796875, "start": 90.33, "word": "that" }, { "confidence": 0.9980469, "end": 90.73, "punctuated_word": "sit", "speaker": 0, "speaker_confidence": 0.6796875, "start": 90.490005, "word": "sit" }, { "confidence": 1, "end": 90.89, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.6796875, "start": 90.73, "word": "on" }, { "confidence": 0.99902344, "end": 91.05, "punctuated_word": "top", "speaker": 0, "speaker_confidence": 0.6796875, "start": 90.89, "word": "top" }, { "confidence": 0.99902344, "end": 91.130005, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7832031, "start": 91.05, "word": "of" }, { "confidence": 0.99902344, "end": 91.37, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.7832031, "start": 91.130005, "word": "your" }, { "confidence": 0.9980469, "end": 91.69, "punctuated_word": "Google", "speaker": 0, "speaker_confidence": 0.7832031, "start": 91.37, "word": "google" }, { "confidence": 0.7453613, "end": 92.135, "punctuated_word": "Map.", "speaker": 0, "speaker_confidence": 0.7832031, "start": 91.69, "word": "map" }, { "confidence": 0.9970703, "end": 92.375, "punctuated_word": "When", "speaker": 0, "speaker_confidence": 0.7832031, "start": 92.215004, "word": "when" }, { "confidence": 0.9941406, "end": 92.535, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7832031, "start": 92.375, "word": "the" }, { "confidence": 0.99902344, "end": 92.855, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 0.7832031, "start": 92.535, "word": "user" }, { "confidence": 1, "end": 93.095, "punctuated_word": "pans", "speaker": 0, "speaker_confidence": 0.7832031, "start": 92.855, "word": "pans" }, { "confidence": 0.9980469, "end": 93.495, "punctuated_word": "around", "speaker": 0, "speaker_confidence": 0.7832031, "start": 93.095, "word": "around" }, { "confidence": 0.90722656, "end": 93.655, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.7832031, "start": 93.495, "word": "or" }, { "confidence": 0.9995117, "end": 93.975, "punctuated_word": "zooms", "speaker": 0, "speaker_confidence": 0.7832031, "start": 93.655, "word": "zooms" }, { "confidence": 0.99902344, "end": 94.055, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7832031, "start": 93.975, "word": "in" }, { "confidence": 0.9941406, "end": 94.215004, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7832031, "start": 94.055, "word": "and" }, { "confidence": 0.9909668, "end": 94.535, "punctuated_word": "out,", "speaker": 0, "speaker_confidence": 0.7832031, "start": 94.215004, "word": "out" }, { "confidence": 0.9970703, "end": 94.695, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7832031, "start": 94.535, "word": "the" }, { "confidence": 0.9941406, "end": 95.195, "punctuated_word": "overlay", "speaker": 0, "speaker_confidence": 0.7832031, "start": 94.695, "word": "overlay" }, { "confidence": 0.99902344, "end": 95.415, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.7832031, "start": 95.255005, "word": "will" }, { "confidence": 1, "end": 95.735, "punctuated_word": "stick", "speaker": 0, "speaker_confidence": 0.7832031, "start": 95.415, "word": "stick" }, { "confidence": 0.99902344, "end": 95.775, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7832031, "start": 95.735, "word": "to" }, { "confidence": 0.99902344, "end": 95.815, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.85253906, "start": 95.775, "word": "the" }, { "confidence": 0.9189453, "end": 96.315, "punctuated_word": "map.", "speaker": 0, "speaker_confidence": 0.85253906, "start": 95.815, "word": "map" }, { "confidence": 0.984375, "end": 96.615005, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.85253906, "start": 96.455, "word": "and" }, { "confidence": 0.93603516, "end": 96.775, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.85253906, "start": 96.615005, "word": "an" }, { "confidence": 1, "end": 97.095, "punctuated_word": "awesome", "speaker": 0, "speaker_confidence": 0.85253906, "start": 96.775, "word": "awesome" }, { "confidence": 0.9970703, "end": 97.255005, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.85253906, "start": 97.095, "word": "thing" }, { "confidence": 1, "end": 97.495, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.85253906, "start": 97.255005, "word": "about" }, { "confidence": 0.9980469, "end": 97.735, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.85253906, "start": 97.495, "word": "this" }, { "confidence": 0.875, "end": 97.895004, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.85253906, "start": 97.735, "word": "is" }, { "confidence": 0.9921875, "end": 98.055, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.85253906, "start": 97.895004, "word": "that" }, { "confidence": 0.9921875, "end": 98.215004, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.85253906, "start": 98.055, "word": "the" }, { "confidence": 1, "end": 98.535, "punctuated_word": "layers", "speaker": 0, "speaker_confidence": 0.85253906, "start": 98.215004, "word": "layers" }, { "confidence": 1, "end": 98.695, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.85253906, "start": 98.535, "word": "can" }, { "confidence": 1, "end": 98.935005, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.85253906, "start": 98.695, "word": "be" }, { "confidence": 0.9894206, "end": 99.435005, "punctuated_word": "composited.", "speaker": 0, "speaker_confidence": 0.85253906, "start": 98.935005, "word": "composited" }, { "confidence": 0.9970703, "end": 99.78, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.85253906, "start": 99.62, "word": "in" }, { "confidence": 0.99902344, "end": 99.94, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.85253906, "start": 99.78, "word": "other" }, { "confidence": 0.9980469, "end": 100.26, "punctuated_word": "words,", "speaker": 0, "speaker_confidence": 0.85253906, "start": 99.94, "word": "words" }, { "confidence": 0.99902344, "end": 100.42, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.85253906, "start": 100.26, "word": "you" }, { "confidence": 0.99902344, "end": 100.58, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.85253906, "start": 100.42, "word": "can" }, { "confidence": 0.9980469, "end": 100.74, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.85253906, "start": 100.58, "word": "set" }, { "confidence": 0.9970703, "end": 101.06, "punctuated_word": "layers", "speaker": 0, "speaker_confidence": 0.85253906, "start": 100.74, "word": "layers" }, { "confidence": 0.9970703, "end": 101.22, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.85253906, "start": 101.06, "word": "on" }, { "confidence": 0.99902344, "end": 101.34, "punctuated_word": "top", "speaker": 0, "speaker_confidence": 0.85253906, "start": 101.22, "word": "top" }, { "confidence": 0.99609375, "end": 101.46, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8095703, "start": 101.34, "word": "of" }, { "confidence": 1, "end": 101.7, "punctuated_word": "each", "speaker": 0, "speaker_confidence": 0.8095703, "start": 101.46, "word": "each" }, { "confidence": 0.9946289, "end": 102.1, "punctuated_word": "other,", "speaker": 0, "speaker_confidence": 0.8095703, "start": 101.7, "word": "other" }, { "confidence": 0.9980469, "end": 102.340004, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.8095703, "start": 102.1, "word": "add" }, { "confidence": 0.9951172, "end": 102.58, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.8095703, "start": 102.340004, "word": "some" }, { "confidence": 0.98339844, "end": 103.08, "punctuated_word": "transparency,", "speaker": 0, "speaker_confidence": 0.8095703, "start": 102.58, "word": "transparency" }, { "confidence": 0.9980469, "end": 103.7, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8095703, "start": 103.46, "word": "and" }, { "confidence": 0.7717285, "end": 103.94, "punctuated_word": "deck.", "speaker": 0, "speaker_confidence": 0.8095703, "start": 103.7, "word": "deck" }, { "confidence": 0.92578125, "end": 104.18, "punctuated_word": "Gl", "speaker": 0, "speaker_confidence": 0.8095703, "start": 103.94, "word": "gl" }, { "confidence": 0.9951172, "end": 104.340004, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.8095703, "start": 104.18, "word": "will" }, { "confidence": 1, "end": 104.82, "punctuated_word": "calculate", "speaker": 0, "speaker_confidence": 0.8095703, "start": 104.340004, "word": "calculate" }, { "confidence": 0.9980469, "end": 104.98, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8095703, "start": 104.82, "word": "the" }, { "confidence": 0.99609375, "end": 105.46, "punctuated_word": "composite", "speaker": 0, "speaker_confidence": 0.8095703, "start": 104.98, "word": "composite" }, { "confidence": 1, "end": 105.78, "punctuated_word": "colors", "speaker": 0, "speaker_confidence": 0.8095703, "start": 105.46, "word": "colors" }, { "confidence": 0.9980469, "end": 105.94, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8095703, "start": 105.78, "word": "that" }, { "confidence": 0.9980469, "end": 106.1, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.8095703, "start": 105.94, "word": "are" }, { "confidence": 0.9941406, "end": 106.42, "punctuated_word": "actually", "speaker": 0, "speaker_confidence": 0.8095703, "start": 106.1, "word": "actually" }, { "confidence": 1, "end": 106.74, "punctuated_word": "rendered", "speaker": 0, "speaker_confidence": 0.8095703, "start": 106.42, "word": "rendered" }, { "confidence": 0.80078125, "end": 106.9, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8095703, "start": 106.74, "word": "in" }, { "confidence": 0.9970703, "end": 106.98, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.46826172, "start": 106.9, "word": "the" }, { "confidence": 0.84643555, "end": 107.425, "punctuated_word": "screen.", "speaker": 0, "speaker_confidence": 0.46826172, "start": 106.98, "word": "screen" }, { "confidence": 0.7583008, "end": 107.58501, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.46826172, "start": 107.505005, "word": "and" }, { "confidence": 0.99121094, "end": 107.825005, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.46826172, "start": 107.58501, "word": "that" }, { "confidence": 0.9951172, "end": 107.865005, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.46826172, "start": 107.825005, "word": "can" }, { "confidence": 0.9970703, "end": 107.90501, "punctuated_word": "give", "speaker": 0, "speaker_confidence": 0.7558594, "start": 107.865005, "word": "give" }, { "confidence": 0.9980469, "end": 108.145004, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7558594, "start": 107.90501, "word": "you" }, { "confidence": 0.9892578, "end": 108.385, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.7558594, "start": 108.145004, "word": "some" }, { "confidence": 0.9921875, "end": 108.705, "punctuated_word": "amazing", "speaker": 0, "speaker_confidence": 0.7558594, "start": 108.385, "word": "amazing" }, { "confidence": 0.54248047, "end": 108.945, "punctuated_word": "three", "speaker": 0, "speaker_confidence": 0.7558594, "start": 108.705, "word": "three" }, { "confidence": 0.9863281, "end": 109.105, "punctuated_word": "d", "speaker": 0, "speaker_confidence": 0.7558594, "start": 108.945, "word": "d" }, { "confidence": 0.99609375, "end": 109.505005, "punctuated_word": "visuals", "speaker": 0, "speaker_confidence": 0.7558594, "start": 109.105, "word": "visuals" }, { "confidence": 0.9326172, "end": 109.665, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.7558594, "start": 109.505005, "word": "on" }, { "confidence": 0.99902344, "end": 109.90501, "punctuated_word": "top", "speaker": 0, "speaker_confidence": 0.7558594, "start": 109.665, "word": "top" }, { "confidence": 0.9970703, "end": 109.985, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.87109375, "start": 109.90501, "word": "of" }, { "confidence": 0.9941406, "end": 110.225006, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.87109375, "start": 109.985, "word": "a" }, { "confidence": 0.53027344, "end": 110.385, "punctuated_word": "2", "speaker": 0, "speaker_confidence": 0.87109375, "start": 110.225006, "word": "2" }, { "confidence": 0.9921875, "end": 110.785, "punctuated_word": "dimensional", "speaker": 0, "speaker_confidence": 0.87109375, "start": 110.385, "word": "dimensional" }, { "confidence": 0.9941406, "end": 111.285, "punctuated_word": "map.", "speaker": 0, "speaker_confidence": 0.87109375, "start": 110.785, "word": "map" }, { "confidence": 0.98291016, "end": 111.505005, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.87109375, "start": 111.345, "word": "the" }, { "confidence": 0.98828125, "end": 111.90501, "punctuated_word": "actual", "speaker": 0, "speaker_confidence": 0.87109375, "start": 111.505005, "word": "actual" }, { "confidence": 0.9892578, "end": 112.305, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.87109375, "start": 111.90501, "word": "javascript" }, { "confidence": 0.9790039, "end": 112.705, "punctuated_word": "library", "speaker": 0, "speaker_confidence": 0.87109375, "start": 112.305, "word": "library" }, { "confidence": 0.98828125, "end": 113.105, "punctuated_word": "itself", "speaker": 0, "speaker_confidence": 0.87109375, "start": 112.705, "word": "itself" }, { "confidence": 0.95703125, "end": 113.505005, "punctuated_word": "follows", "speaker": 0, "speaker_confidence": 0.87109375, "start": 113.105, "word": "follows" }, { "confidence": 0.91015625, "end": 113.745, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.87109375, "start": 113.505005, "word": "the" }, { "confidence": 0.9370117, "end": 114.065, "punctuated_word": "reactive", "speaker": 0, "speaker_confidence": 0.87109375, "start": 113.745, "word": "reactive" }, { "confidence": 0.87353516, "end": 114.465004, "punctuated_word": "programming", "speaker": 0, "speaker_confidence": 0.87109375, "start": 114.065, "word": "programming" }, { "confidence": 0.56591797, "end": 114.86, "punctuated_word": "paradigm,", "speaker": 0, "speaker_confidence": 0.87109375, "start": 114.465004, "word": "paradigm" }, { "confidence": 0.7421875, "end": 115.340004, "punctuated_word": "time,", "speaker": 0, "speaker_confidence": 0.87109375, "start": 114.94, "word": "time" }, { "confidence": 0.9970703, "end": 115.42, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.8564453, "start": 115.340004, "word": "so" }, { "confidence": 0.9975586, "end": 115.58, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.8564453, "start": 115.42, "word": "it's" }, { "confidence": 0.99609375, "end": 115.82, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 0.8564453, "start": 115.58, "word": "very" }, { "confidence": 0.9970703, "end": 116.14, "punctuated_word": "simple", "speaker": 0, "speaker_confidence": 0.8564453, "start": 115.82, "word": "simple" }, { "confidence": 0.98291016, "end": 116.38, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8564453, "start": 116.14, "word": "and" }, { "confidence": 0.9970703, "end": 116.78, "punctuated_word": "familiar", "speaker": 0, "speaker_confidence": 0.8564453, "start": 116.38, "word": "familiar" }, { "confidence": 1, "end": 117.020004, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8564453, "start": 116.78, "word": "to" }, { "confidence": 0.9980469, "end": 117.18, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 0.8564453, "start": 117.020004, "word": "most" }, { "confidence": 0.99121094, "end": 117.42, "punctuated_word": "front", "speaker": 0, "speaker_confidence": 0.8564453, "start": 117.18, "word": "front" }, { "confidence": 0.8701172, "end": 117.58, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.8564453, "start": 117.42, "word": "end" }, { "confidence": 0.99853516, "end": 118.08, "punctuated_word": "developers.", "speaker": 0, "speaker_confidence": 0.8564453, "start": 117.58, "word": "developers" }, { "confidence": 0.9980469, "end": 118.62, "punctuated_word": "All", "speaker": 0, "speaker_confidence": 0.8564453, "start": 118.46, "word": "all" }, { "confidence": 1, "end": 118.7, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.8564453, "start": 118.62, "word": "you" }, { "confidence": 0.96435547, "end": 118.94, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 0.8564453, "start": 118.7, "word": "really" }, { "confidence": 1, "end": 119.1, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.8564453, "start": 118.94, "word": "need" }, { "confidence": 0.99902344, "end": 119.26, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8564453, "start": 119.1, "word": "is" }, { "confidence": 0.9980469, "end": 119.340004, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8564453, "start": 119.26, "word": "a" }, { "confidence": 0.99902344, "end": 119.58, "punctuated_word": "good", "speaker": 0, "speaker_confidence": 0.8564453, "start": 119.340004, "word": "good" }, { "confidence": 0.8901367, "end": 119.98, "punctuated_word": "dataset,", "speaker": 0, "speaker_confidence": 0.8564453, "start": 119.58, "word": "dataset" }, { "confidence": 0.9951172, "end": 120.22, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8564453, "start": 119.98, "word": "a" }, { "confidence": 0.99609375, "end": 120.54, "punctuated_word": "Google", "speaker": 0, "speaker_confidence": 0.8564453, "start": 120.22, "word": "google" }, { "confidence": 0.98291016, "end": 120.86, "punctuated_word": "Maps", "speaker": 0, "speaker_confidence": 0.8564453, "start": 120.54, "word": "maps" }, { "confidence": 0.9970703, "end": 121.18, "punctuated_word": "API", "speaker": 0, "speaker_confidence": 0.8564453, "start": 120.86, "word": "api" }, { "confidence": 0.92211914, "end": 121.58, "punctuated_word": "key,", "speaker": 0, "speaker_confidence": 0.8564453, "start": 121.18, "word": "key" }, { "confidence": 0.90234375, "end": 121.74, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8564453, "start": 121.58, "word": "a" }, { "confidence": 0.8222656, "end": 121.875, "punctuated_word": "few", "speaker": 0, "speaker_confidence": 0.8564453, "start": 121.74, "word": "few" }, { "confidence": 0.7841797, "end": 122.035, "punctuated_word": "few", "speaker": 0, "speaker_confidence": 0.8564453, "start": 121.875, "word": "few" }, { "confidence": 0.99902344, "end": 122.275, "punctuated_word": "lines", "speaker": 0, "speaker_confidence": 0.8564453, "start": 122.035, "word": "lines" }, { "confidence": 0.9970703, "end": 122.355, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.59277344, "start": 122.275, "word": "of" }, { "confidence": 0.907959, "end": 122.835, "punctuated_word": "JavaScript,", "speaker": 0, "speaker_confidence": 0.59277344, "start": 122.355, "word": "javascript" }, { "confidence": 0.99902344, "end": 122.995, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.59277344, "start": 122.835, "word": "and" }, { "confidence": 0.99853516, "end": 123.155, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 0.59277344, "start": 122.995, "word": "you'll" }, { "confidence": 0.99902344, "end": 123.315, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.59277344, "start": 123.155, "word": "be" }, { "confidence": 0.99902344, "end": 123.475, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.59277344, "start": 123.315, "word": "up" }, { "confidence": 0.9951172, "end": 123.555, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.76660156, "start": 123.475, "word": "and" }, { "confidence": 1, "end": 123.875, "punctuated_word": "running", "speaker": 0, "speaker_confidence": 0.76660156, "start": 123.555, "word": "running" }, { "confidence": 0.9951172, "end": 124.115, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.76660156, "start": 123.875, "word": "with" }, { "confidence": 0.99902344, "end": 124.595, "punctuated_word": "interactive", "speaker": 0, "speaker_confidence": 0.76660156, "start": 124.115, "word": "interactive" }, { "confidence": 0.5053711, "end": 124.835, "punctuated_word": "3", "speaker": 0, "speaker_confidence": 0.76660156, "start": 124.595, "word": "3" }, { "confidence": 0.92578125, "end": 124.995, "punctuated_word": "d", "speaker": 0, "speaker_confidence": 0.76660156, "start": 124.835, "word": "d" }, { "confidence": 0.99316406, "end": 125.395, "punctuated_word": "visuals", "speaker": 0, "speaker_confidence": 0.76660156, "start": 124.995, "word": "visuals" }, { "confidence": 0.9980469, "end": 125.555, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.76660156, "start": 125.395, "word": "on" }, { "confidence": 0.99902344, "end": 125.795, "punctuated_word": "top", "speaker": 0, "speaker_confidence": 0.76660156, "start": 125.555, "word": "top" }, { "confidence": 1, "end": 125.875, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.76660156, "start": 125.795, "word": "of" }, { "confidence": 0.9980469, "end": 126.035, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.76660156, "start": 125.875, "word": "your" }, { "confidence": 0.9946289, "end": 126.535, "punctuated_word": "map.", "speaker": 0, "speaker_confidence": 0.76660156, "start": 126.035, "word": "map" }, { "confidence": 0.96972656, "end": 126.995, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.63378906, "start": 126.835, "word": "the" }, { "confidence": 0.9970703, "end": 127.155, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 0.63378906, "start": 126.995, "word": "first" }, { "confidence": 0.9980469, "end": 127.315, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.63378906, "start": 127.155, "word": "thing" }, { "confidence": 0.9746094, "end": 127.555, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 0.63378906, "start": 127.315, "word": "you'll" }, { "confidence": 1, "end": 127.715, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.63378906, "start": 127.555, "word": "need" }, { "confidence": 1, "end": 127.875, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.63378906, "start": 127.715, "word": "to" }, { "confidence": 1, "end": 128.035, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.63378906, "start": 127.875, "word": "get" }, { "confidence": 1, "end": 128.435, "punctuated_word": "started", "speaker": 0, "speaker_confidence": 0.63378906, "start": 128.035, "word": "started" }, { "confidence": 0.99902344, "end": 128.515, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.63378906, "start": 128.435, "word": "is" }, { "confidence": 0.99902344, "end": 128.675, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.63134766, "start": 128.515, "word": "a" }, { "confidence": 0.9980469, "end": 128.995, "punctuated_word": "Google", "speaker": 0, "speaker_confidence": 0.63134766, "start": 128.675, "word": "google" }, { "confidence": 0.97802734, "end": 129.235, "punctuated_word": "Maps", "speaker": 0, "speaker_confidence": 0.63134766, "start": 128.995, "word": "maps" }, { "confidence": 0.99609375, "end": 129.635, "punctuated_word": "API", "speaker": 0, "speaker_confidence": 0.63134766, "start": 129.235, "word": "api" }, { "confidence": 0.91845703, "end": 130.115, "punctuated_word": "key.", "speaker": 0, "speaker_confidence": 0.63134766, "start": 129.635, "word": "key" }, { "confidence": 0.96777344, "end": 130.355, "punctuated_word": "Create", "speaker": 0, "speaker_confidence": 0.63134766, "start": 130.115, "word": "create" }, { "confidence": 0.9370117, "end": 130.57, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.63134766, "start": 130.355, "word": "a" }, { "confidence": 0.9838867, "end": 130.73001, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.63134766, "start": 130.65001, "word": "by" }, { "confidence": 0.59375, "end": 131.05, "punctuated_word": "project", "speaker": 0, "speaker_confidence": 0.8232422, "start": 130.73001, "word": "project" }, { "confidence": 0.93847656, "end": 131.29001, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.8232422, "start": 131.05, "word": "or" }, { "confidence": 0.54785156, "end": 131.69, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.8232422, "start": 131.29001, "word": "using" }, { "confidence": 0.515625, "end": 132.09001, "punctuated_word": "existing", "speaker": 0, "speaker_confidence": 0.8232422, "start": 131.69, "word": "existing" }, { "confidence": 0.99609375, "end": 132.41, "punctuated_word": "project", "speaker": 0, "speaker_confidence": 0.8232422, "start": 132.09001, "word": "project" }, { "confidence": 1, "end": 132.57, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8232422, "start": 132.41, "word": "on" }, { "confidence": 1, "end": 132.73001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8232422, "start": 132.57, "word": "the" }, { "confidence": 0.99902344, "end": 133.05, "punctuated_word": "Google", "speaker": 0, "speaker_confidence": 0.8232422, "start": 132.73001, "word": "google" }, { "confidence": 0.984375, "end": 133.29001, "punctuated_word": "Cloud", "speaker": 0, "speaker_confidence": 0.8232422, "start": 133.05, "word": "cloud" }, { "confidence": 0.8178711, "end": 133.69, "punctuated_word": "Platform", "speaker": 0, "speaker_confidence": 0.8232422, "start": 133.29001, "word": "platform" }, { "confidence": 0.8408203, "end": 134.19, "punctuated_word": "console.", "speaker": 0, "speaker_confidence": 0.8232422, "start": 133.69, "word": "console" }, { "confidence": 1, "end": 134.49, "punctuated_word": "From", "speaker": 0, "speaker_confidence": 0.80371094, "start": 134.41, "word": "from" }, { "confidence": 0.9628906, "end": 134.73001, "punctuated_word": "there,", "speaker": 0, "speaker_confidence": 0.80371094, "start": 134.49, "word": "there" }, { "confidence": 0.9970703, "end": 134.89001, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.80371094, "start": 134.73001, "word": "go" }, { "confidence": 0.9970703, "end": 135.05, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.80371094, "start": 134.89001, "word": "to" }, { "confidence": 0.9980469, "end": 135.29001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.80371094, "start": 135.05, "word": "the" }, { "confidence": 0.99316406, "end": 135.77, "punctuated_word": "API", "speaker": 0, "speaker_confidence": 0.80371094, "start": 135.29001, "word": "api" }, { "confidence": 0.9147949, "end": 136.09001, "punctuated_word": "screen.", "speaker": 0, "speaker_confidence": 0.80371094, "start": 135.77, "word": "screen" }, { "confidence": 0.9995117, "end": 136.33, "punctuated_word": "You'll", "speaker": 0, "speaker_confidence": 0.80371094, "start": 136.09001, "word": "you'll" }, { "confidence": 1, "end": 136.57, "punctuated_word": "find", "speaker": 0, "speaker_confidence": 0.80371094, "start": 136.33, "word": "find" }, { "confidence": 0.99902344, "end": 136.73001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.80371094, "start": 136.57, "word": "the" }, { "confidence": 0.9970703, "end": 136.97, "punctuated_word": "Google", "speaker": 0, "speaker_confidence": 0.80371094, "start": 136.73001, "word": "google" }, { "confidence": 0.984375, "end": 137.29001, "punctuated_word": "Maps", "speaker": 0, "speaker_confidence": 0.80371094, "start": 136.97, "word": "maps" }, { "confidence": 0.93603516, "end": 137.77, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.80371094, "start": 137.29001, "word": "javascript" }, { "confidence": 0.7585449, "end": 138.27, "punctuated_word": "API,", "speaker": 0, "speaker_confidence": 0.80371094, "start": 137.77, "word": "api" }, { "confidence": 0.9970703, "end": 138.97, "punctuated_word": "enable", "speaker": 0, "speaker_confidence": 0.80371094, "start": 138.57, "word": "enable" }, { "confidence": 0.9885254, "end": 139.265, "punctuated_word": "it,", "speaker": 0, "speaker_confidence": 0.80371094, "start": 138.97, "word": "it" }, { "confidence": 0.51464844, "end": 139.505, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.80371094, "start": 139.265, "word": "and" }, { "confidence": 0.9326172, "end": 139.665, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.80371094, "start": 139.505, "word": "then" }, { "confidence": 0.99316406, "end": 139.745, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.80371094, "start": 139.665, "word": "go" }, { "confidence": 0.96875, "end": 139.905, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8486328, "start": 139.745, "word": "to" }, { "confidence": 0.97314453, "end": 140.145, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8486328, "start": 139.905, "word": "the" }, { "confidence": 0.85498047, "end": 140.625, "punctuated_word": "credentials", "speaker": 0, "speaker_confidence": 0.8486328, "start": 140.145, "word": "credentials" }, { "confidence": 0.9970703, "end": 141.025, "punctuated_word": "tab", "speaker": 0, "speaker_confidence": 0.8486328, "start": 140.625, "word": "tab" }, { "confidence": 0.88720703, "end": 141.265, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8486328, "start": 141.025, "word": "and" }, { "confidence": 0.99316406, "end": 141.585, "punctuated_word": "grab", "speaker": 0, "speaker_confidence": 0.8486328, "start": 141.265, "word": "grab" }, { "confidence": 0.9941406, "end": 141.825, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.8486328, "start": 141.585, "word": "your" }, { "confidence": 0.95410156, "end": 142.225, "punctuated_word": "browser", "speaker": 0, "speaker_confidence": 0.8486328, "start": 141.825, "word": "browser" }, { "confidence": 0.9980469, "end": 142.705, "punctuated_word": "API", "speaker": 0, "speaker_confidence": 0.8486328, "start": 142.225, "word": "api" }, { "confidence": 0.9152832, "end": 143.205, "punctuated_word": "key.", "speaker": 0, "speaker_confidence": 0.8486328, "start": 142.705, "word": "key" }, { "confidence": 0.9838867, "end": 143.745, "punctuated_word": "Just", "speaker": 0, "speaker_confidence": 0.8486328, "start": 143.505, "word": "just" }, { "confidence": 0.99121094, "end": 143.905, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.8486328, "start": 143.745, "word": "make" }, { "confidence": 0.9770508, "end": 143.985, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8486328, "start": 143.905, "word": "a" }, { "confidence": 1, "end": 144.145, "punctuated_word": "note", "speaker": 0, "speaker_confidence": 0.8486328, "start": 143.985, "word": "note" }, { "confidence": 0.9980469, "end": 144.305, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8486328, "start": 144.145, "word": "of" }, { "confidence": 0.96972656, "end": 144.385, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8486328, "start": 144.305, "word": "the" }, { "confidence": 1, "end": 144.785, "punctuated_word": "API", "speaker": 0, "speaker_confidence": 0.53466797, "start": 144.385, "word": "api" }, { "confidence": 0.9819336, "end": 144.94499, "punctuated_word": "key", "speaker": 0, "speaker_confidence": 0.53466797, "start": 144.785, "word": "key" }, { "confidence": 0.98828125, "end": 145.105, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.53466797, "start": 144.94499, "word": "for" }, { "confidence": 0.7583008, "end": 145.345, "punctuated_word": "now,", "speaker": 0, "speaker_confidence": 0.53466797, "start": 145.105, "word": "now" }, { "confidence": 0.99316406, "end": 145.505, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.53466797, "start": 145.345, "word": "we'll" }, { "confidence": 1, "end": 145.665, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.53466797, "start": 145.505, "word": "need" }, { "confidence": 0.9921875, "end": 145.745, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.63183594, "start": 145.665, "word": "it" }, { "confidence": 0.9838867, "end": 145.905, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.63183594, "start": 145.745, "word": "in" }, { "confidence": 0.99609375, "end": 146.065, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.63183594, "start": 145.905, "word": "a" }, { "confidence": 0.9980469, "end": 146.305, "punctuated_word": "minute", "speaker": 0, "speaker_confidence": 0.63183594, "start": 146.065, "word": "minute" }, { "confidence": 0.9873047, "end": 146.465, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.63183594, "start": 146.305, "word": "or" }, { "confidence": 0.9980469, "end": 146.705, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.63183594, "start": 146.465, "word": "so" }, { "confidence": 0.9941406, "end": 146.785, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.63183594, "start": 146.705, "word": "when" }, { "confidence": 0.99902344, "end": 146.865, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.63183594, "start": 146.785, "word": "we" }, { "confidence": 0.99609375, "end": 147.025, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.45117188, "start": 146.865, "word": "get" }, { "confidence": 0.9770508, "end": 147.265, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.45117188, "start": 147.025, "word": "into" }, { "confidence": 0.99609375, "end": 147.345, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.45117188, "start": 147.265, "word": "the" }, { "confidence": 0.9995117, "end": 147.845, "punctuated_word": "code.", "speaker": 0, "speaker_confidence": 0.45117188, "start": 147.345, "word": "code" }, { "confidence": 0.9980469, "end": 148.43, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.5576172, "start": 148.34999, "word": "you" }, { "confidence": 1, "end": 148.59, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.5576172, "start": 148.43, "word": "can" }, { "confidence": 0.99902344, "end": 148.83, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.5576172, "start": 148.59, "word": "use" }, { "confidence": 0.80737305, "end": 149.06999, "punctuated_word": "deck.", "speaker": 0, "speaker_confidence": 0.5576172, "start": 148.83, "word": "deck" }, { "confidence": 0.90527344, "end": 149.31, "punctuated_word": "Gl", "speaker": 0, "speaker_confidence": 0.5576172, "start": 149.06999, "word": "gl" }, { "confidence": 0.984375, "end": 149.47, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.5576172, "start": 149.31, "word": "in" }, { "confidence": 0.99902344, "end": 149.62999, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 0.5576172, "start": 149.47, "word": "any" }, { "confidence": 0.98291016, "end": 150.03, "punctuated_word": "framework,", "speaker": 0, "speaker_confidence": 0.5576172, "start": 149.62999, "word": "framework" }, { "confidence": 1, "end": 150.19, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.5576172, "start": 150.03, "word": "but" }, { "confidence": 0.99902344, "end": 150.26999, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.796875, "start": 150.19, "word": "it" }, { "confidence": 0.9980469, "end": 150.59, "punctuated_word": "provides", "speaker": 0, "speaker_confidence": 0.796875, "start": 150.26999, "word": "provides" }, { "confidence": 0.99121094, "end": 150.98999, "punctuated_word": "additional", "speaker": 0, "speaker_confidence": 0.796875, "start": 150.59, "word": "additional" }, { "confidence": 1, "end": 151.31, "punctuated_word": "support", "speaker": 0, "speaker_confidence": 0.796875, "start": 150.98999, "word": "support" }, { "confidence": 0.99902344, "end": 151.54999, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.796875, "start": 151.31, "word": "for" }, { "confidence": 0.96777344, "end": 152.04999, "punctuated_word": "React.", "speaker": 0, "speaker_confidence": 0.796875, "start": 151.54999, "word": "react" }, { "confidence": 0.99609375, "end": 152.51, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.796875, "start": 152.26999, "word": "in" }, { "confidence": 1, "end": 152.67, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.796875, "start": 152.51, "word": "this" }, { "confidence": 0.9941406, "end": 152.98999, "punctuated_word": "video,", "speaker": 0, "speaker_confidence": 0.796875, "start": 152.67, "word": "video" }, { "confidence": 0.9975586, "end": 153.23, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.796875, "start": 152.98999, "word": "i'm" }, { "confidence": 0.99316406, "end": 153.47, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.796875, "start": 153.23, "word": "going" }, { "confidence": 0.9970703, "end": 153.62999, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.796875, "start": 153.47, "word": "to" }, { "confidence": 0.99902344, "end": 153.79, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.796875, "start": 153.62999, "word": "use" }, { "confidence": 0.6689453, "end": 154.26999, "punctuated_word": "vanilla", "speaker": 0, "speaker_confidence": 0.796875, "start": 153.79, "word": "vanilla" }, { "confidence": 0.82714844, "end": 154.76999, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.796875, "start": 154.26999, "word": "javascript" }, { "confidence": 0.9980469, "end": 155.06999, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.796875, "start": 154.83, "word": "with" }, { "confidence": 0.8772786, "end": 155.545, "punctuated_word": "webpack,", "speaker": 0, "speaker_confidence": 0.796875, "start": 155.06999, "word": "webpack" }, { "confidence": 0.99902344, "end": 155.705, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.796875, "start": 155.625, "word": "and" }, { "confidence": 0.9946289, "end": 155.865, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.796875, "start": 155.705, "word": "we'll" }, { "confidence": 0.99902344, "end": 155.94499, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.796875, "start": 155.865, "word": "set" }, { "confidence": 0.99609375, "end": 156.025, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.6738281, "start": 155.94499, "word": "it" }, { "confidence": 0.99902344, "end": 156.185, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.6738281, "start": 156.025, "word": "up" }, { "confidence": 1, "end": 156.425, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.6738281, "start": 156.185, "word": "with" }, { "confidence": 0.5620117, "end": 156.665, "punctuated_word": "hot", "speaker": 0, "speaker_confidence": 0.6738281, "start": 156.425, "word": "hot" }, { "confidence": 0.9921875, "end": 156.985, "punctuated_word": "module", "speaker": 0, "speaker_confidence": 0.6738281, "start": 156.665, "word": "module" }, { "confidence": 0.9951172, "end": 157.485, "punctuated_word": "replacement", "speaker": 0, "speaker_confidence": 0.6738281, "start": 156.985, "word": "replacement" }, { "confidence": 0.9980469, "end": 157.785, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.6738281, "start": 157.545, "word": "for" }, { "confidence": 1, "end": 157.865, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.85253906, "start": 157.785, "word": "a" }, { "confidence": 1, "end": 158.105, "punctuated_word": "nice", "speaker": 0, "speaker_confidence": 0.85253906, "start": 157.865, "word": "nice" }, { "confidence": 0.9970703, "end": 158.505, "punctuated_word": "developer", "speaker": 0, "speaker_confidence": 0.85253906, "start": 158.105, "word": "developer" }, { "confidence": 0.9975586, "end": 159.005, "punctuated_word": "experience.", "speaker": 0, "speaker_confidence": 0.85253906, "start": 158.505, "word": "experience" }, { "confidence": 0.99902344, "end": 159.465, "punctuated_word": "Go", "speaker": 0, "speaker_confidence": 0.85253906, "start": 159.385, "word": "go" }, { "confidence": 0.99902344, "end": 159.705, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 0.85253906, "start": 159.465, "word": "ahead" }, { "confidence": 0.9970703, "end": 159.86499, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.85253906, "start": 159.705, "word": "and" }, { "confidence": 1, "end": 160.185, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.85253906, "start": 159.86499, "word": "open" }, { "confidence": 0.99902344, "end": 160.345, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.85253906, "start": 160.185, "word": "up" }, { "confidence": 0.88720703, "end": 160.58499, "punctuated_word": "Versus", "speaker": 0, "speaker_confidence": 0.85253906, "start": 160.345, "word": "versus" }, { "confidence": 0.8757324, "end": 160.985, "punctuated_word": "Code,", "speaker": 0, "speaker_confidence": 0.85253906, "start": 160.58499, "word": "code" }, { "confidence": 0.99902344, "end": 161.145, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.85253906, "start": 160.985, "word": "and" }, { "confidence": 0.99902344, "end": 161.305, "punctuated_word": "keep", "speaker": 0, "speaker_confidence": 0.85253906, "start": 161.145, "word": "keep" }, { "confidence": 1, "end": 161.465, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.85253906, "start": 161.305, "word": "in" }, { "confidence": 1, "end": 161.705, "punctuated_word": "mind", "speaker": 0, "speaker_confidence": 0.85253906, "start": 161.465, "word": "mind" }, { "confidence": 0.8852539, "end": 161.86499, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.85253906, "start": 161.705, "word": "you" }, { "confidence": 1, "end": 162.025, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.85253906, "start": 161.86499, "word": "can" }, { "confidence": 0.99902344, "end": 162.265, "punctuated_word": "find", "speaker": 0, "speaker_confidence": 0.85253906, "start": 162.025, "word": "find" }, { "confidence": 0.99902344, "end": 162.425, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.85253906, "start": 162.265, "word": "all" }, { "confidence": 0.8378906, "end": 162.58499, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.85253906, "start": 162.425, "word": "of" }, { "confidence": 0.96972656, "end": 162.745, "punctuated_word": "these", "speaker": 0, "speaker_confidence": 0.85253906, "start": 162.58499, "word": "these" }, { "confidence": 1, "end": 163.065, "punctuated_word": "steps", "speaker": 0, "speaker_confidence": 0.85253906, "start": 162.745, "word": "steps" }, { "confidence": 0.99902344, "end": 163.145, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.6303711, "start": 163.065, "word": "in" }, { "confidence": 0.99902344, "end": 163.385, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.6303711, "start": 163.145, "word": "this" }, { "confidence": 1, "end": 163.785, "punctuated_word": "lesson", "speaker": 0, "speaker_confidence": 0.6303711, "start": 163.385, "word": "lesson" }, { "confidence": 0.99902344, "end": 163.94499, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.6303711, "start": 163.785, "word": "on" }, { "confidence": 0.87402344, "end": 164.44499, "punctuated_word": "Fireship", "speaker": 0, "speaker_confidence": 0.6303711, "start": 163.94499, "word": "fireship" }, { "confidence": 0.94189453, "end": 165.005, "punctuated_word": "IO.", "speaker": 0, "speaker_confidence": 0.6303711, "start": 164.505, "word": "io" }, { "confidence": 0.7392578, "end": 165.26001, "punctuated_word": "First,", "speaker": 0, "speaker_confidence": 0.7871094, "start": 165.1, "word": "first" }, { "confidence": 0.9951172, "end": 165.42, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.7871094, "start": 165.26001, "word": "we'll" }, { "confidence": 0.9970703, "end": 165.66, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.7871094, "start": 165.42, "word": "run" }, { "confidence": 0.875, "end": 166.16, "punctuated_word": "npm", "speaker": 0, "speaker_confidence": 0.7871094, "start": 165.66, "word": "npm" }, { "confidence": 0.9941406, "end": 166.54001, "punctuated_word": "init", "speaker": 0, "speaker_confidence": 0.7871094, "start": 166.22, "word": "init" }, { "confidence": 0.9921875, "end": 166.78, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.7871094, "start": 166.54001, "word": "with" }, { "confidence": 0.98291016, "end": 166.86, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7871094, "start": 166.78, "word": "the" }, { "confidence": 0.9921875, "end": 167.1, "punctuated_word": "y", "speaker": 0, "speaker_confidence": 0.7871094, "start": 166.86, "word": "y" }, { "confidence": 0.984375, "end": 167.42, "punctuated_word": "flag", "speaker": 0, "speaker_confidence": 0.7871094, "start": 167.1, "word": "flag" }, { "confidence": 0.99902344, "end": 167.66, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7871094, "start": 167.42, "word": "to" }, { "confidence": 0.9770508, "end": 167.82, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.7871094, "start": 167.66, "word": "set" }, { "confidence": 0.99902344, "end": 167.98001, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.7871094, "start": 167.82, "word": "up" }, { "confidence": 0.99902344, "end": 168.14, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7871094, "start": 167.98001, "word": "a" }, { "confidence": 0.9980469, "end": 168.38, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.7871094, "start": 168.14, "word": "new" }, { "confidence": 0.86621094, "end": 168.86, "punctuated_word": "npm", "speaker": 0, "speaker_confidence": 0.7871094, "start": 168.38, "word": "npm" }, { "confidence": 0.9025879, "end": 169.36, "punctuated_word": "project.", "speaker": 0, "speaker_confidence": 0.7871094, "start": 168.86, "word": "project" }, { "confidence": 0.9980469, "end": 169.90001, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.91064453, "start": 169.66, "word": "then" }, { "confidence": 0.9863281, "end": 169.98001, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.91064453, "start": 169.90001, "word": "we'll" }, { "confidence": 1, "end": 170.38, "punctuated_word": "install", "speaker": 0, "speaker_confidence": 0.91064453, "start": 169.98001, "word": "install" }, { "confidence": 0.86279297, "end": 170.86, "punctuated_word": "webpack", "speaker": 0, "speaker_confidence": 0.91064453, "start": 170.38, "word": "webpack" }, { "confidence": 0.9658203, "end": 171.1, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.91064453, "start": 170.86, "word": "and" }, { "confidence": 0.99609375, "end": 171.5, "punctuated_word": "webpack", "speaker": 0, "speaker_confidence": 0.91064453, "start": 171.1, "word": "webpack" }, { "confidence": 0.87841797, "end": 171.82, "punctuated_word": "dev", "speaker": 0, "speaker_confidence": 0.91064453, "start": 171.5, "word": "dev" }, { "confidence": 0.7451172, "end": 172.22, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 0.91064453, "start": 171.82, "word": "server" }, { "confidence": 0.99609375, "end": 172.54001, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.91064453, "start": 172.22, "word": "into" }, { "confidence": 0.99902344, "end": 172.78, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.91064453, "start": 172.54001, "word": "the" }, { "confidence": 0.9980469, "end": 173.26001, "punctuated_word": "development", "speaker": 0, "speaker_confidence": 0.91064453, "start": 172.78, "word": "development" }, { "confidence": 0.9995117, "end": 173.76001, "punctuated_word": "environment.", "speaker": 0, "speaker_confidence": 0.91064453, "start": 173.26001, "word": "environment" }, { "confidence": 0.9921875, "end": 174.265, "punctuated_word": "From", "speaker": 0, "speaker_confidence": 0.91064453, "start": 174.02501, "word": "from" }, { "confidence": 0.9885254, "end": 174.425, "punctuated_word": "there,", "speaker": 0, "speaker_confidence": 0.91064453, "start": 174.265, "word": "there" }, { "confidence": 0.99902344, "end": 174.585, "punctuated_word": "I'll", "speaker": 0, "speaker_confidence": 0.91064453, "start": 174.425, "word": "i'll" }, { "confidence": 1, "end": 174.905, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.91064453, "start": 174.585, "word": "open" }, { "confidence": 0.99902344, "end": 175.065, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.91064453, "start": 174.905, "word": "up" }, { "confidence": 1, "end": 175.225, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.91064453, "start": 175.065, "word": "the" }, { "confidence": 0.99121094, "end": 175.625, "punctuated_word": "package", "speaker": 0, "speaker_confidence": 0.91064453, "start": 175.225, "word": "package" }, { "confidence": 0.6455078, "end": 176.125, "punctuated_word": "JSON,", "speaker": 0, "speaker_confidence": 0.91064453, "start": 175.625, "word": "json" }, { "confidence": 1, "end": 176.345, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.91064453, "start": 176.18501, "word": "and" }, { "confidence": 1, "end": 176.505, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.91064453, "start": 176.345, "word": "i'm" }, { "confidence": 1, "end": 176.74501, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.91064453, "start": 176.505, "word": "going" }, { "confidence": 0.9980469, "end": 176.82501, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.91064453, "start": 176.74501, "word": "to" }, { "confidence": 1, "end": 177.065, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.91064453, "start": 176.82501, "word": "add" }, { "confidence": 1, "end": 177.145, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.91064453, "start": 177.065, "word": "a" }, { "confidence": 1, "end": 177.46501, "punctuated_word": "couple", "speaker": 0, "speaker_confidence": 0.91064453, "start": 177.145, "word": "couple" }, { "confidence": 0.99902344, "end": 177.625, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.91064453, "start": 177.46501, "word": "of" }, { "confidence": 1, "end": 177.945, "punctuated_word": "scripts", "speaker": 0, "speaker_confidence": 0.91064453, "start": 177.625, "word": "scripts" }, { "confidence": 0.99902344, "end": 178.10501, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.91064453, "start": 177.945, "word": "that" }, { "confidence": 1, "end": 178.185, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.9042969, "start": 178.10501, "word": "we" }, { "confidence": 1, "end": 178.345, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9042969, "start": 178.185, "word": "can" }, { "confidence": 1, "end": 178.66501, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.9042969, "start": 178.345, "word": "use" }, { "confidence": 0.9980469, "end": 178.905, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9042969, "start": 178.66501, "word": "to" }, { "confidence": 1, "end": 179.225, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.9042969, "start": 178.905, "word": "build" }, { "confidence": 1, "end": 179.30501, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9042969, "start": 179.225, "word": "and" }, { "confidence": 1, "end": 179.545, "punctuated_word": "serve", "speaker": 0, "speaker_confidence": 0.9042969, "start": 179.30501, "word": "serve" }, { "confidence": 1, "end": 179.705, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9042969, "start": 179.545, "word": "the" }, { "confidence": 0.9995117, "end": 180.205, "punctuated_word": "app.", "speaker": 0, "speaker_confidence": 0.9042969, "start": 179.705, "word": "app" }, { "confidence": 0.9892578, "end": 180.425, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.9042969, "start": 180.265, "word": "the" }, { "confidence": 1, "end": 180.66501, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.9042969, "start": 180.425, "word": "build" }, { "confidence": 0.99902344, "end": 180.905, "punctuated_word": "command", "speaker": 0, "speaker_confidence": 0.9042969, "start": 180.66501, "word": "command" }, { "confidence": 1, "end": 181.145, "punctuated_word": "runs", "speaker": 0, "speaker_confidence": 0.9042969, "start": 180.905, "word": "runs" }, { "confidence": 0.66308594, "end": 181.42, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.9042969, "start": 181.145, "word": "web" }, { "confidence": 0.98291016, "end": 181.58, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.9042969, "start": 181.42, "word": "by" }, { "confidence": 0.5800781, "end": 181.81999, "punctuated_word": "PAC", "speaker": 0, "speaker_confidence": 0.9042969, "start": 181.58, "word": "pac" }, { "confidence": 0.92333984, "end": 182.06, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9042969, "start": 181.81999, "word": "and" }, { "confidence": 0.9970703, "end": 182.45999, "punctuated_word": "outputs", "speaker": 0, "speaker_confidence": 0.9042969, "start": 182.06, "word": "outputs" }, { "confidence": 1, "end": 182.86, "punctuated_word": "everything", "speaker": 0, "speaker_confidence": 0.9042969, "start": 182.45999, "word": "everything" }, { "confidence": 0.9980469, "end": 183.09999, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.9042969, "start": 182.86, "word": "into" }, { "confidence": 1, "end": 183.26, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9042969, "start": 183.09999, "word": "the" }, { "confidence": 0.99316406, "end": 183.58, "punctuated_word": "public", "speaker": 0, "speaker_confidence": 0.9042969, "start": 183.26, "word": "public" }, { "confidence": 0.9580078, "end": 183.98, "punctuated_word": "folder,", "speaker": 0, "speaker_confidence": 0.9042969, "start": 183.58, "word": "folder" }, { "confidence": 1, "end": 184.22, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.9042969, "start": 183.98, "word": "which" }, { "confidence": 1, "end": 184.38, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9042969, "start": 184.22, "word": "is" }, { "confidence": 1, "end": 184.54, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.9042969, "start": 184.38, "word": "where" }, { "confidence": 0.9975586, "end": 184.7, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.9042969, "start": 184.54, "word": "we'll" }, { "confidence": 0.99902344, "end": 185.2, "punctuated_word": "actually", "speaker": 0, "speaker_confidence": 0.9042969, "start": 184.7, "word": "actually" }, { "confidence": 1, "end": 185.5, "punctuated_word": "put", "speaker": 0, "speaker_confidence": 0.9042969, "start": 185.34, "word": "put" }, { "confidence": 1, "end": 185.73999, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.9042969, "start": 185.5, "word": "our" }, { "confidence": 0.99902344, "end": 186.06, "punctuated_word": "production", "speaker": 0, "speaker_confidence": 0.9042969, "start": 185.73999, "word": "production" }, { "confidence": 0.99560547, "end": 186.56, "punctuated_word": "code.", "speaker": 0, "speaker_confidence": 0.9042969, "start": 186.06, "word": "code" }, { "confidence": 0.5527344, "end": 187.02, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.69433594, "start": 186.86, "word": "then" }, { "confidence": 0.9902344, "end": 187.18, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.69433594, "start": 187.02, "word": "the" }, { "confidence": 0.9560547, "end": 187.42, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 0.69433594, "start": 187.18, "word": "start" }, { "confidence": 0.9980469, "end": 187.73999, "punctuated_word": "command", "speaker": 0, "speaker_confidence": 0.69433594, "start": 187.42, "word": "command" }, { "confidence": 0.69921875, "end": 187.9, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.69433594, "start": 187.73999, "word": "will" }, { "confidence": 1, "end": 188.06, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.69433594, "start": 187.9, "word": "use" }, { "confidence": 0.9128418, "end": 188.435, "punctuated_word": "webpack", "speaker": 0, "speaker_confidence": 0.69433594, "start": 188.06, "word": "webpack" }, { "confidence": 0.9472656, "end": 188.515, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.7949219, "start": 188.435, "word": "by" }, { "confidence": 0.90234375, "end": 188.755, "punctuated_word": "dev", "speaker": 0, "speaker_confidence": 0.7949219, "start": 188.515, "word": "dev" }, { "confidence": 0.9707031, "end": 188.995, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 0.7949219, "start": 188.755, "word": "server" }, { "confidence": 0.9741211, "end": 189.315, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7949219, "start": 188.995, "word": "to" }, { "confidence": 0.9951172, "end": 189.47499, "punctuated_word": "serve", "speaker": 0, "speaker_confidence": 0.7949219, "start": 189.315, "word": "serve" }, { "confidence": 1, "end": 189.715, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7949219, "start": 189.47499, "word": "that" }, { "confidence": 0.9941406, "end": 189.955, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.7949219, "start": 189.715, "word": "code" }, { "confidence": 1, "end": 190.355, "punctuated_word": "locally", "speaker": 0, "speaker_confidence": 0.7949219, "start": 189.955, "word": "locally" }, { "confidence": 0.9951172, "end": 190.515, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.7949219, "start": 190.355, "word": "on" }, { "confidence": 0.9921875, "end": 190.915, "punctuated_word": "local", "speaker": 0, "speaker_confidence": 0.7949219, "start": 190.515, "word": "local" }, { "confidence": 0.6376953, "end": 191.235, "punctuated_word": "host", "speaker": 0, "speaker_confidence": 0.7949219, "start": 190.915, "word": "host" }, { "confidence": 0.84244794, "end": 191.735, "punctuated_word": "8080,", "speaker": 0, "speaker_confidence": 0.7949219, "start": 191.235, "word": "8080" }, { "confidence": 0.99902344, "end": 192.355, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7949219, "start": 192.11499, "word": "and" }, { "confidence": 0.99316406, "end": 192.435, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.7949219, "start": 192.355, "word": "it" }, { "confidence": 0.9951172, "end": 192.515, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.7949219, "start": 192.435, "word": "will" }, { "confidence": 1, "end": 192.915, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.7714844, "start": 192.515, "word": "also" }, { "confidence": 0.99902344, "end": 193.235, "punctuated_word": "perform", "speaker": 0, "speaker_confidence": 0.7714844, "start": 192.915, "word": "perform" }, { "confidence": 0.8510742, "end": 193.47499, "punctuated_word": "hot", "speaker": 0, "speaker_confidence": 0.7714844, "start": 193.235, "word": "hot" }, { "confidence": 0.99902344, "end": 193.795, "punctuated_word": "module", "speaker": 0, "speaker_confidence": 0.7714844, "start": 193.47499, "word": "module" }, { "confidence": 0.9243164, "end": 194.295, "punctuated_word": "replacement", "speaker": 0, "speaker_confidence": 0.7714844, "start": 193.795, "word": "replacement" }, { "confidence": 0.9941406, "end": 194.915, "punctuated_word": "whenever", "speaker": 0, "speaker_confidence": 0.7714844, "start": 194.435, "word": "whenever" }, { "confidence": 0.9980469, "end": 195.075, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.7714844, "start": 194.915, "word": "our" }, { "confidence": 1, "end": 195.395, "punctuated_word": "source", "speaker": 0, "speaker_confidence": 0.7714844, "start": 195.075, "word": "source" }, { "confidence": 0.99902344, "end": 195.555, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.7714844, "start": 195.395, "word": "code" }, { "confidence": 0.9995117, "end": 196.055, "punctuated_word": "changes.", "speaker": 0, "speaker_confidence": 0.7714844, "start": 195.555, "word": "changes" }, { "confidence": 0.9980469, "end": 196.70999, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.7763672, "start": 196.47, "word": "the" }, { "confidence": 1, "end": 196.87, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.7763672, "start": 196.70999, "word": "next" }, { "confidence": 0.99902344, "end": 197.11, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.7763672, "start": 196.87, "word": "thing" }, { "confidence": 0.99902344, "end": 197.26999, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.7763672, "start": 197.11, "word": "we'll" }, { "confidence": 1, "end": 197.43, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.7763672, "start": 197.26999, "word": "do" }, { "confidence": 0.99902344, "end": 197.67, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7763672, "start": 197.43, "word": "is" }, { "confidence": 1, "end": 197.98999, "punctuated_word": "install", "speaker": 0, "speaker_confidence": 0.7763672, "start": 197.67, "word": "install" }, { "confidence": 0.7657878, "end": 198.48999, "punctuated_word": "deckgl.", "speaker": 0, "speaker_confidence": 0.7763672, "start": 197.98999, "word": "deckgl" }, { "confidence": 0.99902344, "end": 199.11, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.7763672, "start": 198.87, "word": "it's" }, { "confidence": 1, "end": 199.51, "punctuated_word": "organized", "speaker": 0, "speaker_confidence": 0.7763672, "start": 199.11, "word": "organized" }, { "confidence": 0.9970703, "end": 199.67, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7763672, "start": 199.51, "word": "in" }, { "confidence": 1, "end": 199.75, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.65185547, "start": 199.67, "word": "a" }, { "confidence": 0.8828125, "end": 200.25, "punctuated_word": "monorepo,", "speaker": 0, "speaker_confidence": 0.65185547, "start": 199.75, "word": "monorepo" }, { "confidence": 0.9980469, "end": 200.70999, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.65185547, "start": 200.54999, "word": "so" }, { "confidence": 0.9692383, "end": 201.03, "punctuated_word": "there's", "speaker": 0, "speaker_confidence": 0.65185547, "start": 200.70999, "word": "there's" }, { "confidence": 1, "end": 201.26999, "punctuated_word": "different", "speaker": 0, "speaker_confidence": 0.65185547, "start": 201.03, "word": "different" }, { "confidence": 1, "end": 201.75, "punctuated_word": "packages", "speaker": 0, "speaker_confidence": 0.65185547, "start": 201.26999, "word": "packages" }, { "confidence": 0.99902344, "end": 201.90999, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.65185547, "start": 201.75, "word": "that" }, { "confidence": 1, "end": 202.06999, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.65185547, "start": 201.90999, "word": "you" }, { "confidence": 1, "end": 202.23, "punctuated_word": "may", "speaker": 0, "speaker_confidence": 0.65185547, "start": 202.06999, "word": "may" }, { "confidence": 1, "end": 202.31, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.53808594, "start": 202.23, "word": "or" }, { "confidence": 1, "end": 202.39, "punctuated_word": "may", "speaker": 0, "speaker_confidence": 0.53808594, "start": 202.31, "word": "may" }, { "confidence": 1, "end": 202.62999, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.53808594, "start": 202.39, "word": "not" }, { "confidence": 1, "end": 203.03, "punctuated_word": "need.", "speaker": 0, "speaker_confidence": 0.53808594, "start": 202.62999, "word": "need" }, { "confidence": 1, "end": 203.19, "punctuated_word": "We're", "speaker": 0, "speaker_confidence": 0.53808594, "start": 203.03, "word": "we're" }, { "confidence": 0.99316406, "end": 203.43, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.53808594, "start": 203.19, "word": "going" }, { "confidence": 0.9980469, "end": 203.51, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.53808594, "start": 203.43, "word": "to" }, { "confidence": 1, "end": 203.67, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.53808594, "start": 203.51, "word": "need" }, { "confidence": 0.99902344, "end": 203.75, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.68652344, "start": 203.67, "word": "the" }, { "confidence": 0.86328125, "end": 204.06999, "punctuated_word": "Google", "speaker": 0, "speaker_confidence": 0.68652344, "start": 203.75, "word": "google" }, { "confidence": 0.9394531, "end": 204.39, "punctuated_word": "Maps", "speaker": 0, "speaker_confidence": 0.68652344, "start": 204.06999, "word": "maps" }, { "confidence": 0.9921875, "end": 204.87, "punctuated_word": "package,", "speaker": 0, "speaker_confidence": 0.68652344, "start": 204.39, "word": "package" }, { "confidence": 0.98950195, "end": 205.37, "punctuated_word": "layers,", "speaker": 0, "speaker_confidence": 0.68652344, "start": 204.87, "word": "layers" }, { "confidence": 0.6972656, "end": 205.815, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.68652344, "start": 205.575, "word": "by" }, { "confidence": 0.5390625, "end": 205.89499, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.68652344, "start": 205.815, "word": "and" }, { "confidence": 0.99609375, "end": 206.39499, "punctuated_word": "aggregation", "speaker": 0, "speaker_confidence": 0.8095703, "start": 205.89499, "word": "aggregation" }, { "confidence": 0.99316406, "end": 206.955, "punctuated_word": "layers.", "speaker": 0, "speaker_confidence": 0.8095703, "start": 206.455, "word": "layers" }, { "confidence": 0.99902344, "end": 207.17499, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.8095703, "start": 207.095, "word": "the" }, { "confidence": 1, "end": 207.33499, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.8095703, "start": 207.17499, "word": "next" }, { "confidence": 1, "end": 207.495, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.8095703, "start": 207.33499, "word": "thing" }, { "confidence": 0.99902344, "end": 207.735, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.8095703, "start": 207.495, "word": "we'll" }, { "confidence": 1, "end": 207.89499, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.8095703, "start": 207.735, "word": "do" }, { "confidence": 1, "end": 208.135, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8095703, "start": 207.89499, "word": "is" }, { "confidence": 1, "end": 208.375, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.8095703, "start": 208.135, "word": "create" }, { "confidence": 1, "end": 208.53499, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8095703, "start": 208.375, "word": "a" }, { "confidence": 1, "end": 208.775, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.8095703, "start": 208.53499, "word": "file" }, { "confidence": 1, "end": 208.935, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.8095703, "start": 208.775, "word": "for" }, { "confidence": 0.99902344, "end": 209.17499, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.8095703, "start": 208.935, "word": "our" }, { "confidence": 0.88720703, "end": 209.655, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.8095703, "start": 209.17499, "word": "javascript" }, { "confidence": 0.9980469, "end": 209.97499, "punctuated_word": "source", "speaker": 0, "speaker_confidence": 0.8095703, "start": 209.655, "word": "source" }, { "confidence": 0.9980469, "end": 210.295, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.8095703, "start": 209.97499, "word": "code" }, { "confidence": 0.99902344, "end": 210.455, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8095703, "start": 210.295, "word": "in" }, { "confidence": 0.9980469, "end": 210.61499, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8095703, "start": 210.455, "word": "the" }, { "confidence": 0.98535156, "end": 210.935, "punctuated_word": "source", "speaker": 0, "speaker_confidence": 0.8095703, "start": 210.61499, "word": "source" }, { "confidence": 0.7919922, "end": 211.435, "punctuated_word": "directory.", "speaker": 0, "speaker_confidence": 0.8095703, "start": 210.935, "word": "directory" }, { "confidence": 0.99316406, "end": 211.97499, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.8027344, "start": 211.815, "word": "and" }, { "confidence": 0.9921875, "end": 212.055, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8027344, "start": 211.97499, "word": "a" }, { "confidence": 1, "end": 212.295, "punctuated_word": "little", "speaker": 0, "speaker_confidence": 0.8027344, "start": 212.055, "word": "little" }, { "confidence": 0.85595703, "end": 212.61499, "punctuated_word": "Versus", "speaker": 0, "speaker_confidence": 0.8027344, "start": 212.295, "word": "versus" }, { "confidence": 0.7602539, "end": 212.855, "punctuated_word": "Code", "speaker": 0, "speaker_confidence": 0.8027344, "start": 212.61499, "word": "code" }, { "confidence": 0.81396484, "end": 213.095, "punctuated_word": "pro", "speaker": 0, "speaker_confidence": 0.8027344, "start": 212.855, "word": "pro" }, { "confidence": 0.99609375, "end": 213.33499, "punctuated_word": "tip", "speaker": 0, "speaker_confidence": 0.8027344, "start": 213.095, "word": "tip" }, { "confidence": 0.99902344, "end": 213.495, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0.8027344, "start": 213.33499, "word": "here" }, { "confidence": 0.99609375, "end": 213.735, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8027344, "start": 213.495, "word": "is" }, { "confidence": 1, "end": 213.89499, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8027344, "start": 213.735, "word": "to" }, { "confidence": 1, "end": 214.135, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.8027344, "start": 213.89499, "word": "create" }, { "confidence": 1, "end": 214.295, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8027344, "start": 214.135, "word": "that" }, { "confidence": 1, "end": 214.61499, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.8027344, "start": 214.295, "word": "file" }, { "confidence": 0.9980469, "end": 214.775, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.8027344, "start": 214.61499, "word": "with" }, { "confidence": 0.98291016, "end": 215.015, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8027344, "start": 214.775, "word": "a" }, { "confidence": 0.90283203, "end": 215.45, "punctuated_word": "slash", "speaker": 0, "speaker_confidence": 0.8027344, "start": 215.015, "word": "slash" }, { "confidence": 0.9970703, "end": 215.61, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8027344, "start": 215.45, "word": "and" }, { "confidence": 0.99609375, "end": 215.69, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8027344, "start": 215.61, "word": "it" }, { "confidence": 0.9863281, "end": 215.76999, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.8027344, "start": 215.69, "word": "will" }, { "confidence": 1, "end": 215.84999, "punctuated_word": "automatically", "speaker": 0, "speaker_confidence": 0.86621094, "start": 215.76999, "word": "automatically" }, { "confidence": 1, "end": 216.34999, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.86621094, "start": 215.84999, "word": "create" }, { "confidence": 0.9716797, "end": 216.81, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.86621094, "start": 216.65, "word": "the" }, { "confidence": 1, "end": 217.29, "punctuated_word": "directory", "speaker": 0, "speaker_confidence": 0.86621094, "start": 216.81, "word": "directory" }, { "confidence": 0.99902344, "end": 217.69, "punctuated_word": "structure", "speaker": 0, "speaker_confidence": 0.86621094, "start": 217.29, "word": "structure" }, { "confidence": 1, "end": 217.84999, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.86621094, "start": 217.69, "word": "for" }, { "confidence": 0.9658203, "end": 218.34999, "punctuated_word": "you.", "speaker": 0, "speaker_confidence": 0.86621094, "start": 217.84999, "word": "you" }, { "confidence": 0.9248047, "end": 218.81, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.86621094, "start": 218.56999, "word": "then" }, { "confidence": 0.9975586, "end": 218.97, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.86621094, "start": 218.81, "word": "we'll" }, { "confidence": 1, "end": 219.05, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.86621094, "start": 218.97, "word": "do" }, { "confidence": 1, "end": 219.20999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.86621094, "start": 219.05, "word": "the" }, { "confidence": 1, "end": 219.45, "punctuated_word": "same", "speaker": 0, "speaker_confidence": 0.86621094, "start": 219.20999, "word": "same" }, { "confidence": 0.9980469, "end": 219.69, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.86621094, "start": 219.45, "word": "thing" }, { "confidence": 1, "end": 220.01, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.86621094, "start": 219.69, "word": "for" }, { "confidence": 1, "end": 220.17, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.86621094, "start": 220.01, "word": "the" }, { "confidence": 0.9921875, "end": 220.65, "punctuated_word": "public", "speaker": 0, "speaker_confidence": 0.86621094, "start": 220.17, "word": "public" }, { "confidence": 0.98095703, "end": 221.15, "punctuated_word": "HTML", "speaker": 0, "speaker_confidence": 0.86621094, "start": 220.65, "word": "html" }, { "confidence": 0.9921875, "end": 221.79, "punctuated_word": "file.", "speaker": 0, "speaker_confidence": 0.86621094, "start": 221.29, "word": "file" }, { "confidence": 0.9970703, "end": 222.48999, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.86621094, "start": 222.25, "word": "then" }, { "confidence": 0.9970703, "end": 222.73, "punctuated_word": "inside", "speaker": 0, "speaker_confidence": 0.86621094, "start": 222.48999, "word": "inside" }, { "confidence": 0.98535156, "end": 222.97, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.86621094, "start": 222.73, "word": "this" }, { "confidence": 0.99316406, "end": 223.47, "punctuated_word": "HTML,", "speaker": 0, "speaker_confidence": 0.86621094, "start": 222.97, "word": "html" }, { "confidence": 0.9975586, "end": 223.69, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.86621094, "start": 223.53, "word": "we'll" }, { "confidence": 0.6459961, "end": 223.965, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.86621094, "start": 223.69, "word": "just" }, { "confidence": 0.99316406, "end": 224.205, "punctuated_word": "Start", "speaker": 0, "speaker_confidence": 0.86621094, "start": 223.965, "word": "start" }, { "confidence": 1, "end": 224.36499, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.86621094, "start": 224.205, "word": "with" }, { "confidence": 0.9980469, "end": 224.44499, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9169922, "start": 224.36499, "word": "a" }, { "confidence": 0.99609375, "end": 224.845, "punctuated_word": "plain", "speaker": 0, "speaker_confidence": 0.9169922, "start": 224.44499, "word": "plain" }, { "confidence": 0.96240234, "end": 225.345, "punctuated_word": "HTML", "speaker": 0, "speaker_confidence": 0.9169922, "start": 224.845, "word": "html" }, { "confidence": 0.7998047, "end": 225.985, "punctuated_word": "document,", "speaker": 0, "speaker_confidence": 0.9169922, "start": 225.485, "word": "document" }, { "confidence": 0.99902344, "end": 226.285, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9169922, "start": 226.045, "word": "and" }, { "confidence": 0.99560547, "end": 226.44499, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.9169922, "start": 226.285, "word": "we'll" }, { "confidence": 1, "end": 226.605, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.9169922, "start": 226.44499, "word": "make" }, { "confidence": 0.9980469, "end": 226.765, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9169922, "start": 226.605, "word": "a" }, { "confidence": 1, "end": 227.165, "punctuated_word": "reference", "speaker": 0, "speaker_confidence": 0.9169922, "start": 226.765, "word": "reference" }, { "confidence": 1, "end": 227.405, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9169922, "start": 227.165, "word": "to" }, { "confidence": 1, "end": 227.565, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9169922, "start": 227.405, "word": "the" }, { "confidence": 0.9970703, "end": 227.885, "punctuated_word": "main", "speaker": 0, "speaker_confidence": 0.9169922, "start": 227.565, "word": "main" }, { "confidence": 0.9277344, "end": 228.205, "punctuated_word": "JS", "speaker": 0, "speaker_confidence": 0.9169922, "start": 227.885, "word": "js" }, { "confidence": 0.91137695, "end": 228.525, "punctuated_word": "file,", "speaker": 0, "speaker_confidence": 0.9169922, "start": 228.205, "word": "file" }, { "confidence": 1, "end": 228.685, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.9169922, "start": 228.525, "word": "which" }, { "confidence": 1, "end": 228.845, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9169922, "start": 228.685, "word": "is" }, { "confidence": 1, "end": 229.08499, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.9169922, "start": 228.845, "word": "where" }, { "confidence": 0.75561523, "end": 229.565, "punctuated_word": "webpack", "speaker": 0, "speaker_confidence": 0.9169922, "start": 229.08499, "word": "webpack" }, { "confidence": 0.9951172, "end": 229.805, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.9169922, "start": 229.565, "word": "will" }, { "confidence": 1, "end": 230.125, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.9169922, "start": 229.805, "word": "build" }, { "confidence": 1, "end": 230.205, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.9169922, "start": 230.125, "word": "our" }, { "confidence": 1, "end": 230.44499, "punctuated_word": "source", "speaker": 0, "speaker_confidence": 0.9169922, "start": 230.205, "word": "source" }, { "confidence": 0.99902344, "end": 230.94499, "punctuated_word": "code.", "speaker": 0, "speaker_confidence": 0.9169922, "start": 230.44499, "word": "code" }, { "confidence": 0.9970703, "end": 231.59, "punctuated_word": "After", "speaker": 0, "speaker_confidence": 0.77441406, "start": 231.35, "word": "after" }, { "confidence": 0.99609375, "end": 231.83, "punctuated_word": "that,", "speaker": 0, "speaker_confidence": 0.77441406, "start": 231.59, "word": "that" }, { "confidence": 1, "end": 232.07, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.77441406, "start": 231.83, "word": "we'll" }, { "confidence": 1, "end": 232.23, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.77441406, "start": 232.07, "word": "add" }, { "confidence": 1, "end": 232.39, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.77441406, "start": 232.23, "word": "a" }, { "confidence": 0.9838867, "end": 232.71, "punctuated_word": "deferred", "speaker": 0, "speaker_confidence": 0.77441406, "start": 232.39, "word": "deferred" }, { "confidence": 0.99902344, "end": 233.03, "punctuated_word": "script", "speaker": 0, "speaker_confidence": 0.77441406, "start": 232.71, "word": "script" }, { "confidence": 0.9980469, "end": 233.27, "punctuated_word": "tag", "speaker": 0, "speaker_confidence": 0.77441406, "start": 233.03, "word": "tag" }, { "confidence": 1, "end": 233.43001, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.77441406, "start": 233.27, "word": "for" }, { "confidence": 1, "end": 233.67, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.77441406, "start": 233.43001, "word": "the" }, { "confidence": 0.97998047, "end": 233.99, "punctuated_word": "Google", "speaker": 0, "speaker_confidence": 0.77441406, "start": 233.67, "word": "google" }, { "confidence": 0.9614258, "end": 234.39, "punctuated_word": "Maps", "speaker": 0, "speaker_confidence": 0.77441406, "start": 233.99, "word": "maps" }, { "confidence": 0.94628906, "end": 234.89, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.77441406, "start": 234.39, "word": "javascript" }, { "confidence": 0.9970703, "end": 235.45, "punctuated_word": "API.", "speaker": 0, "speaker_confidence": 0.77441406, "start": 234.95, "word": "api" }, { "confidence": 0.6689453, "end": 235.99, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.7324219, "start": 235.83, "word": "this" }, { "confidence": 1, "end": 236.31, "punctuated_word": "script", "speaker": 0, "speaker_confidence": 0.7324219, "start": 235.99, "word": "script" }, { "confidence": 1, "end": 236.55, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.7324219, "start": 236.31, "word": "has" }, { "confidence": 0.5961914, "end": 236.71, "punctuated_word": "2", "speaker": 0, "speaker_confidence": 0.7324219, "start": 236.55, "word": "2" }, { "confidence": 0.99609375, "end": 237.11, "punctuated_word": "required", "speaker": 0, "speaker_confidence": 0.7324219, "start": 236.71, "word": "required" }, { "confidence": 0.9890137, "end": 237.61, "punctuated_word": "parameters.", "speaker": 0, "speaker_confidence": 0.7324219, "start": 237.11, "word": "parameters" }, { "confidence": 0.99902344, "end": 237.99, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.7324219, "start": 237.83, "word": "the" }, { "confidence": 0.9980469, "end": 238.23, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 0.7324219, "start": 237.99, "word": "first" }, { "confidence": 0.91259766, "end": 238.47, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.7324219, "start": 238.23, "word": "one" }, { "confidence": 1, "end": 238.63, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7324219, "start": 238.47, "word": "is" }, { "confidence": 0.9970703, "end": 238.985, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7324219, "start": 238.63, "word": "the" }, { "confidence": 0.9716797, "end": 239.145, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.7324219, "start": 239.065, "word": "by" }, { "confidence": 0.7215169, "end": 239.625, "punctuated_word": "PIKey,", "speaker": 0, "speaker_confidence": 0.6567383, "start": 239.145, "word": "pikey" }, { "confidence": 0.99902344, "end": 239.785, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.6567383, "start": 239.625, "word": "which" }, { "confidence": 1, "end": 239.945, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.6567383, "start": 239.785, "word": "is" }, { "confidence": 0.99902344, "end": 240.105, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6567383, "start": 239.945, "word": "the" }, { "confidence": 0.9760742, "end": 240.505, "punctuated_word": "browser", "speaker": 0, "speaker_confidence": 0.6567383, "start": 240.105, "word": "browser" }, { "confidence": 0.99316406, "end": 240.825, "punctuated_word": "API", "speaker": 0, "speaker_confidence": 0.6567383, "start": 240.505, "word": "api" }, { "confidence": 0.8798828, "end": 241.065, "punctuated_word": "key", "speaker": 0, "speaker_confidence": 0.6567383, "start": 240.825, "word": "key" }, { "confidence": 0.99609375, "end": 241.225, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.6567383, "start": 241.065, "word": "that" }, { "confidence": 1, "end": 241.30501, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.72021484, "start": 241.225, "word": "you" }, { "confidence": 0.99902344, "end": 241.545, "punctuated_word": "got", "speaker": 0, "speaker_confidence": 0.72021484, "start": 241.30501, "word": "got" }, { "confidence": 1, "end": 241.705, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.72021484, "start": 241.545, "word": "from" }, { "confidence": 0.9970703, "end": 241.945, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.72021484, "start": 241.705, "word": "the" }, { "confidence": 0.9970703, "end": 242.185, "punctuated_word": "Google", "speaker": 0, "speaker_confidence": 0.72021484, "start": 241.945, "word": "google" }, { "confidence": 0.9873047, "end": 242.505, "punctuated_word": "Cloud", "speaker": 0, "speaker_confidence": 0.72021484, "start": 242.185, "word": "cloud" }, { "confidence": 0.9086914, "end": 242.825, "punctuated_word": "Platform", "speaker": 0, "speaker_confidence": 0.72021484, "start": 242.505, "word": "platform" }, { "confidence": 0.7644043, "end": 243.325, "punctuated_word": "console.", "speaker": 0, "speaker_confidence": 0.72021484, "start": 242.825, "word": "console" }, { "confidence": 0.5854492, "end": 243.945, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.72021484, "start": 243.785, "word": "then" }, { "confidence": 0.99902344, "end": 244.025, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.72021484, "start": 243.945, "word": "the" }, { "confidence": 0.9941406, "end": 244.425, "punctuated_word": "callback", "speaker": 0, "speaker_confidence": 0.72021484, "start": 244.025, "word": "callback" }, { "confidence": 1, "end": 244.665, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.72021484, "start": 244.425, "word": "is" }, { "confidence": 1, "end": 244.745, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.72021484, "start": 244.665, "word": "the" }, { "confidence": 1, "end": 244.905, "punctuated_word": "name", "speaker": 0, "speaker_confidence": 0.72021484, "start": 244.745, "word": "name" }, { "confidence": 1, "end": 245.065, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.72021484, "start": 244.905, "word": "of" }, { "confidence": 0.9970703, "end": 245.145, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.72021484, "start": 245.065, "word": "a" }, { "confidence": 1, "end": 245.545, "punctuated_word": "function", "speaker": 0, "speaker_confidence": 0.859375, "start": 245.145, "word": "function" }, { "confidence": 0.9536133, "end": 245.865, "punctuated_word": "defined", "speaker": 0, "speaker_confidence": 0.859375, "start": 245.545, "word": "defined" }, { "confidence": 1, "end": 246.025, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.859375, "start": 245.865, "word": "on" }, { "confidence": 0.99902344, "end": 246.185, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.859375, "start": 246.025, "word": "the" }, { "confidence": 0.9921875, "end": 246.63, "punctuated_word": "window", "speaker": 0, "speaker_confidence": 0.859375, "start": 246.185, "word": "window" }, { "confidence": 0.85498047, "end": 246.87001, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.859375, "start": 246.71, "word": "that" }, { "confidence": 0.9975586, "end": 247.37001, "punctuated_word": "initializes", "speaker": 0, "speaker_confidence": 0.859375, "start": 246.87001, "word": "initializes" }, { "confidence": 0.99902344, "end": 247.75, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.859375, "start": 247.59001, "word": "the" }, { "confidence": 0.9980469, "end": 248.07, "punctuated_word": "map", "speaker": 0, "speaker_confidence": 0.859375, "start": 247.75, "word": "map" }, { "confidence": 1, "end": 248.23001, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.859375, "start": 248.07, "word": "with" }, { "confidence": 0.99902344, "end": 248.55, "punctuated_word": "whatever", "speaker": 0, "speaker_confidence": 0.859375, "start": 248.23001, "word": "whatever" }, { "confidence": 0.9980469, "end": 248.95001, "punctuated_word": "options", "speaker": 0, "speaker_confidence": 0.859375, "start": 248.55, "word": "options" }, { "confidence": 1, "end": 249.11, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.859375, "start": 248.95001, "word": "you" }, { "confidence": 0.99902344, "end": 249.35, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.859375, "start": 249.11, "word": "want" }, { "confidence": 0.9980469, "end": 249.51001, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.859375, "start": 249.35, "word": "to" }, { "confidence": 1, "end": 249.75, "punctuated_word": "pass", "speaker": 0, "speaker_confidence": 0.859375, "start": 249.51001, "word": "pass" }, { "confidence": 0.99902344, "end": 249.91, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.859375, "start": 249.75, "word": "to" }, { "confidence": 0.99902344, "end": 250.39, "punctuated_word": "it.", "speaker": 0, "speaker_confidence": 0.859375, "start": 249.91, "word": "it" }, { "confidence": 0.9995117, "end": 250.63, "punctuated_word": "We'll", "speaker": 0, "speaker_confidence": 0.859375, "start": 250.39, "word": "we'll" }, { "confidence": 0.99902344, "end": 250.87001, "punctuated_word": "define", "speaker": 0, "speaker_confidence": 0.859375, "start": 250.63, "word": "define" }, { "confidence": 1, "end": 250.95001, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.859375, "start": 250.87001, "word": "that" }, { "confidence": 0.70410156, "end": 251.11, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.859375, "start": 250.95001, "word": "one" }, { "confidence": 0.99609375, "end": 251.27, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.859375, "start": 251.11, "word": "in" }, { "confidence": 0.9970703, "end": 251.39001, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.7285156, "start": 251.27, "word": "just" }, { "confidence": 0.9970703, "end": 251.51001, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7285156, "start": 251.39001, "word": "a" }, { "confidence": 1, "end": 251.75, "punctuated_word": "minute", "speaker": 0, "speaker_confidence": 0.7285156, "start": 251.51001, "word": "minute" }, { "confidence": 0.9970703, "end": 251.91, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7285156, "start": 251.75, "word": "in" }, { "confidence": 1, "end": 252.15001, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.7285156, "start": 251.91, "word": "our" }, { "confidence": 0.9482422, "end": 252.63, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.7285156, "start": 252.15001, "word": "javascript" }, { "confidence": 0.9926758, "end": 253.13, "punctuated_word": "code.", "speaker": 0, "speaker_confidence": 0.7285156, "start": 252.63, "word": "code" }, { "confidence": 0.9970703, "end": 253.51001, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.69677734, "start": 253.35, "word": "then" }, { "confidence": 0.9970703, "end": 253.67, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.69677734, "start": 253.51001, "word": "the" }, { "confidence": 1, "end": 253.83, "punctuated_word": "last", "speaker": 0, "speaker_confidence": 0.69677734, "start": 253.67, "word": "last" }, { "confidence": 0.9980469, "end": 254.07, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.69677734, "start": 253.83, "word": "thing" }, { "confidence": 0.8479004, "end": 254.23001, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.69677734, "start": 254.07, "word": "we'll" }, { "confidence": 0.95947266, "end": 254.47, "punctuated_word": "wanna", "speaker": 0, "speaker_confidence": 0.69677734, "start": 254.23001, "word": "wanna" }, { "confidence": 0.99121094, "end": 254.63, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.69677734, "start": 254.47, "word": "do" }, { "confidence": 1, "end": 254.87001, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.69677734, "start": 254.63, "word": "is" }, { "confidence": 0.9970703, "end": 255.03, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.69677734, "start": 254.87001, "word": "go" }, { "confidence": 0.9790039, "end": 255.27, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.69677734, "start": 255.03, "word": "into" }, { "confidence": 0.9951172, "end": 255.43001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.69677734, "start": 255.27, "word": "the" }, { "confidence": 0.99902344, "end": 255.67, "punctuated_word": "body", "speaker": 0, "speaker_confidence": 0.69677734, "start": 255.43001, "word": "body" }, { "confidence": 0.9970703, "end": 255.83, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.69677734, "start": 255.67, "word": "of" }, { "confidence": 0.99316406, "end": 255.91, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8222656, "start": 255.83, "word": "the" }, { "confidence": 0.9760742, "end": 256.41, "punctuated_word": "HTML", "speaker": 0, "speaker_confidence": 0.8222656, "start": 255.91, "word": "html" }, { "confidence": 0.9160156, "end": 256.935, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8222656, "start": 256.69498, "word": "and" }, { "confidence": 0.99609375, "end": 257.015, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.8222656, "start": 256.935, "word": "add" }, { "confidence": 0.9970703, "end": 257.095, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8222656, "start": 257.015, "word": "a" }, { "confidence": 0.92333984, "end": 257.495, "punctuated_word": "div", "speaker": 0, "speaker_confidence": 0.8222656, "start": 257.095, "word": "div" }, { "confidence": 0.9951172, "end": 257.655, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.8222656, "start": 257.495, "word": "with" }, { "confidence": 0.99609375, "end": 257.815, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.8222656, "start": 257.655, "word": "an" }, { "confidence": 0.59472656, "end": 258.13498, "punctuated_word": "id", "speaker": 0, "speaker_confidence": 0.8222656, "start": 257.815, "word": "id" }, { "confidence": 0.99316406, "end": 258.29498, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8222656, "start": 258.13498, "word": "of" }, { "confidence": 0.99316406, "end": 258.79498, "punctuated_word": "map.", "speaker": 0, "speaker_confidence": 0.8222656, "start": 258.29498, "word": "map" }, { "confidence": 0.9970703, "end": 259.255, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.8222656, "start": 259.01498, "word": "this" }, { "confidence": 0.9980469, "end": 259.41498, "punctuated_word": "div", "speaker": 0, "speaker_confidence": 0.8222656, "start": 259.255, "word": "div" }, { "confidence": 0.99902344, "end": 259.57498, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.8222656, "start": 259.41498, "word": "will" }, { "confidence": 0.9980469, "end": 259.735, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.8222656, "start": 259.57498, "word": "be" }, { "confidence": 0.9980469, "end": 260.055, "punctuated_word": "replaced", "speaker": 0, "speaker_confidence": 0.8222656, "start": 259.735, "word": "replaced" }, { "confidence": 0.9980469, "end": 260.13498, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.74902344, "start": 260.055, "word": "by" }, { "confidence": 0.99902344, "end": 260.29498, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.74902344, "start": 260.13498, "word": "the" }, { "confidence": 0.99121094, "end": 260.615, "punctuated_word": "actual", "speaker": 0, "speaker_confidence": 0.74902344, "start": 260.29498, "word": "actual" }, { "confidence": 0.99316406, "end": 260.85498, "punctuated_word": "Google", "speaker": 0, "speaker_confidence": 0.74902344, "start": 260.615, "word": "google" }, { "confidence": 0.7062988, "end": 261.175, "punctuated_word": "map,", "speaker": 0, "speaker_confidence": 0.74902344, "start": 260.85498, "word": "map" }, { "confidence": 0.99902344, "end": 261.41498, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.74902344, "start": 261.175, "word": "and" }, { "confidence": 0.98535156, "end": 261.57498, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.74902344, "start": 261.41498, "word": "in" }, { "confidence": 0.99902344, "end": 261.735, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.74902344, "start": 261.57498, "word": "our" }, { "confidence": 0.9367676, "end": 261.97498, "punctuated_word": "case,", "speaker": 0, "speaker_confidence": 0.74902344, "start": 261.735, "word": "case" }, { "confidence": 1, "end": 262.13498, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.74902344, "start": 261.97498, "word": "we" }, { "confidence": 0.9980469, "end": 262.375, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.74902344, "start": 262.13498, "word": "want" }, { "confidence": 0.99902344, "end": 262.455, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.5932617, "start": 262.375, "word": "to" }, { "confidence": 1, "end": 262.85498, "punctuated_word": "display", "speaker": 0, "speaker_confidence": 0.5932617, "start": 262.455, "word": "display" }, { "confidence": 0.99902344, "end": 263.01498, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.5932617, "start": 262.85498, "word": "a" }, { "confidence": 0.9980469, "end": 263.255, "punctuated_word": "full", "speaker": 0, "speaker_confidence": 0.5932617, "start": 263.01498, "word": "full" }, { "confidence": 0.97802734, "end": 263.495, "punctuated_word": "screen", "speaker": 0, "speaker_confidence": 0.5932617, "start": 263.255, "word": "screen" }, { "confidence": 0.7441406, "end": 263.9, "punctuated_word": "map.", "speaker": 0, "speaker_confidence": 0.5932617, "start": 263.495, "word": "map" }, { "confidence": 0.6425781, "end": 263.97998, "punctuated_word": "So", "speaker": 0, "speaker_confidence": 0.7910156, "start": 263.9, "word": "so" }, { "confidence": 0.98999023, "end": 264.06, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.7910156, "start": 263.97998, "word": "we'll" }, { "confidence": 0.9980469, "end": 264.38, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.7910156, "start": 264.06, "word": "use" }, { "confidence": 0.99902344, "end": 264.54, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.7910156, "start": 264.38, "word": "some" }, { "confidence": 0.9941406, "end": 265.04, "punctuated_word": "CSS", "speaker": 0, "speaker_confidence": 0.7910156, "start": 264.54, "word": "css" }, { "confidence": 0.99902344, "end": 265.34, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7910156, "start": 265.1, "word": "to" }, { "confidence": 1, "end": 265.58, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.7910156, "start": 265.34, "word": "set" }, { "confidence": 0.9980469, "end": 265.74, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7910156, "start": 265.58, "word": "the" }, { "confidence": 1, "end": 266.06, "punctuated_word": "width", "speaker": 0, "speaker_confidence": 0.7910156, "start": 265.74, "word": "width" }, { "confidence": 0.99609375, "end": 266.13998, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7910156, "start": 266.06, "word": "and" }, { "confidence": 1, "end": 266.46, "punctuated_word": "height", "speaker": 0, "speaker_confidence": 0.7910156, "start": 266.13998, "word": "height" }, { "confidence": 1, "end": 266.62, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7910156, "start": 266.46, "word": "to" }, { "confidence": 0.87231445, "end": 267.12, "punctuated_word": "100%", "speaker": 0, "speaker_confidence": 0.7910156, "start": 266.62, "word": "100%" }, { "confidence": 1, "end": 267.58, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7910156, "start": 267.34, "word": "of" }, { "confidence": 1, "end": 267.66, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7910156, "start": 267.58, "word": "the" }, { "confidence": 0.99104816, "end": 268.16, "punctuated_word": "viewport.", "speaker": 0, "speaker_confidence": 0.7910156, "start": 267.66, "word": "viewport" }, { "confidence": 1, "end": 268.78, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.56640625, "start": 268.62, "word": "now" }, { "confidence": 0.99902344, "end": 268.94, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.56640625, "start": 268.78, "word": "we'll" }, { "confidence": 1, "end": 269.02, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.56640625, "start": 268.94, "word": "go" }, { "confidence": 1, "end": 269.18, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 0.56640625, "start": 269.02, "word": "ahead" }, { "confidence": 0.9980469, "end": 269.34, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.56640625, "start": 269.18, "word": "and" }, { "confidence": 1, "end": 269.58, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.56640625, "start": 269.34, "word": "open" }, { "confidence": 0.9970703, "end": 269.66, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.56640625, "start": 269.58, "word": "up" }, { "confidence": 1, "end": 269.9, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.56640625, "start": 269.66, "word": "our" }, { "confidence": 0.9873047, "end": 270.38, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.56640625, "start": 269.9, "word": "javascript" }, { "confidence": 0.9812012, "end": 270.78, "punctuated_word": "file,", "speaker": 0, "speaker_confidence": 0.56640625, "start": 270.38, "word": "file" }, { "confidence": 1, "end": 270.94, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7988281, "start": 270.78, "word": "and" }, { "confidence": 0.98999023, "end": 271.18, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.7988281, "start": 270.94, "word": "we'll" }, { "confidence": 1, "end": 271.34, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.7988281, "start": 271.18, "word": "want" }, { "confidence": 0.99902344, "end": 271.5, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7988281, "start": 271.34, "word": "to" }, { "confidence": 1, "end": 271.82, "punctuated_word": "define", "speaker": 0, "speaker_confidence": 0.7988281, "start": 271.5, "word": "define" }, { "confidence": 1, "end": 271.97998, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7988281, "start": 271.82, "word": "a" }, { "confidence": 1, "end": 272.38, "punctuated_word": "function", "speaker": 0, "speaker_confidence": 0.7988281, "start": 271.97998, "word": "function" }, { "confidence": 1, "end": 272.53998, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.7988281, "start": 272.38, "word": "on" }, { "confidence": 1, "end": 272.69998, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7988281, "start": 272.53998, "word": "the" }, { "confidence": 0.890625, "end": 273.1, "punctuated_word": "window", "speaker": 0, "speaker_confidence": 0.7988281, "start": 272.69998, "word": "window" }, { "confidence": 0.99902344, "end": 273.6, "punctuated_word": "object.", "speaker": 0, "speaker_confidence": 0.7988281, "start": 273.1, "word": "object" }, { "confidence": 0.9980469, "end": 273.85498, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.7988281, "start": 273.69498, "word": "this" }, { "confidence": 1, "end": 274.01498, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7988281, "start": 273.85498, "word": "is" }, { "confidence": 1, "end": 274.095, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.61816406, "start": 274.01498, "word": "the" }, { "confidence": 0.9980469, "end": 274.57498, "punctuated_word": "callback", "speaker": 0, "speaker_confidence": 0.61816406, "start": 274.095, "word": "callback" }, { "confidence": 0.99609375, "end": 274.735, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.61816406, "start": 274.57498, "word": "that" }, { "confidence": 0.99902344, "end": 274.895, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.61816406, "start": 274.735, "word": "we" }, { "confidence": 0.9951172, "end": 275.13498, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.61816406, "start": 274.895, "word": "set" }, { "confidence": 0.99902344, "end": 275.215, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.6088867, "start": 275.13498, "word": "on" }, { "confidence": 1, "end": 275.375, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6088867, "start": 275.215, "word": "the" }, { "confidence": 0.9902344, "end": 275.69498, "punctuated_word": "Google", "speaker": 0, "speaker_confidence": 0.6088867, "start": 275.375, "word": "google" }, { "confidence": 0.83447266, "end": 275.935, "punctuated_word": "Maps", "speaker": 0, "speaker_confidence": 0.6088867, "start": 275.69498, "word": "maps" }, { "confidence": 0.9614258, "end": 276.175, "punctuated_word": "script", "speaker": 0, "speaker_confidence": 0.6088867, "start": 275.935, "word": "script" }, { "confidence": 1, "end": 276.675, "punctuated_word": "tag.", "speaker": 0, "speaker_confidence": 0.6088867, "start": 276.175, "word": "tag" }, { "confidence": 0.9980469, "end": 277.055, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.8066406, "start": 276.895, "word": "the" }, { "confidence": 0.95947266, "end": 277.29498, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 0.8066406, "start": 277.055, "word": "first" }, { "confidence": 1, "end": 277.69498, "punctuated_word": "argument", "speaker": 0, "speaker_confidence": 0.8066406, "start": 277.29498, "word": "argument" }, { "confidence": 1, "end": 277.935, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8066406, "start": 277.69498, "word": "is" }, { "confidence": 1, "end": 278.095, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8066406, "start": 277.935, "word": "the" }, { "confidence": 0.99609375, "end": 278.41498, "punctuated_word": "actual", "speaker": 0, "speaker_confidence": 0.8066406, "start": 278.095, "word": "actual" }, { "confidence": 0.9536133, "end": 278.655, "punctuated_word": "div", "speaker": 0, "speaker_confidence": 0.8066406, "start": 278.41498, "word": "div" }, { "confidence": 1, "end": 278.735, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8066406, "start": 278.655, "word": "that" }, { "confidence": 0.9980469, "end": 278.97498, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.8066406, "start": 278.735, "word": "will" }, { "confidence": 0.99902344, "end": 279.055, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.8066406, "start": 278.97498, "word": "be" }, { "confidence": 0.9980469, "end": 279.455, "punctuated_word": "replaced", "speaker": 0, "speaker_confidence": 0.8066406, "start": 279.055, "word": "replaced" }, { "confidence": 1, "end": 279.615, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.8066406, "start": 279.455, "word": "by" }, { "confidence": 1, "end": 279.69498, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6376953, "start": 279.615, "word": "the" }, { "confidence": 0.8959961, "end": 279.935, "punctuated_word": "map,", "speaker": 0, "speaker_confidence": 0.6376953, "start": 279.69498, "word": "map" }, { "confidence": 0.99902344, "end": 280.175, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.6376953, "start": 279.935, "word": "so" }, { "confidence": 0.99658203, "end": 280.255, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.6376953, "start": 280.175, "word": "we'll" }, { "confidence": 1, "end": 280.41498, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.6376953, "start": 280.255, "word": "go" }, { "confidence": 1, "end": 280.655, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 0.6376953, "start": 280.41498, "word": "ahead" }, { "confidence": 0.99902344, "end": 280.735, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6376953, "start": 280.655, "word": "and" }, { "confidence": 1, "end": 280.895, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.6376953, "start": 280.735, "word": "get" }, { "confidence": 1, "end": 281.13498, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.6376953, "start": 280.895, "word": "that" }, { "confidence": 1, "end": 281.215, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.58496094, "start": 281.13498, "word": "by" }, { "confidence": 0.9941406, "end": 281.455, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.58496094, "start": 281.215, "word": "its" }, { "confidence": 0.95092773, "end": 281.95, "punctuated_word": "ID.", "speaker": 0, "speaker_confidence": 0.58496094, "start": 281.455, "word": "id" }, { "confidence": 0.97509766, "end": 282.11002, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.58496094, "start": 281.95, "word": "and" }, { "confidence": 0.99609375, "end": 282.23, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.58496094, "start": 282.11002, "word": "then" }, { "confidence": 0.99902344, "end": 282.35, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.58496094, "start": 282.23, "word": "you" }, { "confidence": 0.9980469, "end": 282.43002, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.58496094, "start": 282.35, "word": "can" }, { "confidence": 0.9980469, "end": 282.59003, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.7182617, "start": 282.43002, "word": "add" }, { "confidence": 0.99902344, "end": 282.67, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7182617, "start": 282.59003, "word": "a" }, { "confidence": 1, "end": 282.91, "punctuated_word": "bunch", "speaker": 0, "speaker_confidence": 0.7182617, "start": 282.67, "word": "bunch" }, { "confidence": 1, "end": 283.07, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7182617, "start": 282.91, "word": "of" }, { "confidence": 0.99902344, "end": 283.39, "punctuated_word": "additional", "speaker": 0, "speaker_confidence": 0.7182617, "start": 283.07, "word": "additional" }, { "confidence": 1, "end": 283.71002, "punctuated_word": "options", "speaker": 0, "speaker_confidence": 0.7182617, "start": 283.39, "word": "options" }, { "confidence": 0.9980469, "end": 283.95, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0.7182617, "start": 283.71002, "word": "here" }, { "confidence": 0.9863281, "end": 284.35, "punctuated_word": "depending", "speaker": 0, "speaker_confidence": 0.7182617, "start": 283.95, "word": "depending" }, { "confidence": 0.99902344, "end": 284.51, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.7182617, "start": 284.35, "word": "on" }, { "confidence": 1, "end": 284.67, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.7182617, "start": 284.51, "word": "how" }, { "confidence": 1, "end": 284.75, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.8232422, "start": 284.67, "word": "you" }, { "confidence": 1, "end": 284.99002, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.8232422, "start": 284.75, "word": "want" }, { "confidence": 0.9980469, "end": 285.15002, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8232422, "start": 284.99002, "word": "to" }, { "confidence": 0.99902344, "end": 285.63, "punctuated_word": "customize", "speaker": 0, "speaker_confidence": 0.8232422, "start": 285.15002, "word": "customize" }, { "confidence": 1, "end": 285.71002, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.8232422, "start": 285.63, "word": "your" }, { "confidence": 0.99853516, "end": 286.21002, "punctuated_word": "app.", "speaker": 0, "speaker_confidence": 0.8232422, "start": 285.71002, "word": "app" }, { "confidence": 0.99902344, "end": 286.67, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.8232422, "start": 286.51, "word": "in" }, { "confidence": 0.99316406, "end": 286.99002, "punctuated_word": "fact,", "speaker": 0, "speaker_confidence": 0.8232422, "start": 286.67, "word": "fact" }, { "confidence": 0.9980469, "end": 287.31, "punctuated_word": "Google", "speaker": 0, "speaker_confidence": 0.8232422, "start": 286.99002, "word": "google" }, { "confidence": 1, "end": 287.63, "punctuated_word": "provides", "speaker": 0, "speaker_confidence": 0.8232422, "start": 287.31, "word": "provides" }, { "confidence": 1, "end": 287.79, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8232422, "start": 287.63, "word": "a" }, { "confidence": 0.9980469, "end": 288.27002, "punctuated_word": "wizard", "speaker": 0, "speaker_confidence": 0.8232422, "start": 287.79, "word": "wizard" }, { "confidence": 1, "end": 288.43002, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8232422, "start": 288.27002, "word": "that" }, { "confidence": 1, "end": 288.67, "punctuated_word": "helps", "speaker": 0, "speaker_confidence": 0.8232422, "start": 288.43002, "word": "helps" }, { "confidence": 1, "end": 288.83002, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.8232422, "start": 288.67, "word": "you" }, { "confidence": 1, "end": 289.23, "punctuated_word": "quickly", "speaker": 0, "speaker_confidence": 0.8232422, "start": 288.83002, "word": "quickly" }, { "confidence": 0.99902344, "end": 289.63, "punctuated_word": "customize", "speaker": 0, "speaker_confidence": 0.8232422, "start": 289.23, "word": "customize" }, { "confidence": 1, "end": 289.79, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8232422, "start": 289.63, "word": "the" }, { "confidence": 1, "end": 290.27002, "punctuated_word": "appearance", "speaker": 0, "speaker_confidence": 0.8232422, "start": 289.79, "word": "appearance" }, { "confidence": 1, "end": 290.35, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8232422, "start": 290.27002, "word": "of" }, { "confidence": 1, "end": 290.51, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.8232422, "start": 290.35, "word": "your" }, { "confidence": 0.9770508, "end": 290.825, "punctuated_word": "map.", "speaker": 0, "speaker_confidence": 0.8232422, "start": 290.51, "word": "map" }, { "confidence": 0.79125977, "end": 290.905, "punctuated_word": "It.", "speaker": 0, "speaker_confidence": 0.6357422, "start": 290.825, "word": "it" }, { "confidence": 1, "end": 291.065, "punctuated_word": "That's", "speaker": 0, "speaker_confidence": 0.6357422, "start": 290.905, "word": "that's" }, { "confidence": 0.99902344, "end": 291.14502, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.6357422, "start": 291.065, "word": "how" }, { "confidence": 1, "end": 291.225, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.6357422, "start": 291.14502, "word": "i" }, { "confidence": 1, "end": 291.545, "punctuated_word": "created", "speaker": 0, "speaker_confidence": 0.6357422, "start": 291.225, "word": "created" }, { "confidence": 1, "end": 291.785, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6357422, "start": 291.545, "word": "the" }, { "confidence": 0.9980469, "end": 292.02502, "punctuated_word": "dark", "speaker": 0, "speaker_confidence": 0.6357422, "start": 291.785, "word": "dark" }, { "confidence": 0.9892578, "end": 292.185, "punctuated_word": "map", "speaker": 0, "speaker_confidence": 0.6357422, "start": 292.02502, "word": "map" }, { "confidence": 0.99902344, "end": 292.345, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.6357422, "start": 292.185, "word": "that" }, { "confidence": 1, "end": 292.505, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.6357422, "start": 292.345, "word": "you" }, { "confidence": 1, "end": 292.665, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.6357422, "start": 292.505, "word": "see" }, { "confidence": 1, "end": 292.74503, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.4663086, "start": 292.665, "word": "in" }, { "confidence": 1, "end": 292.825, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.4663086, "start": 292.74503, "word": "the" }, { "confidence": 1, "end": 293.325, "punctuated_word": "demo.", "speaker": 0, "speaker_confidence": 0.4663086, "start": 292.825, "word": "demo" }, { "confidence": 0.9970703, "end": 293.945, "punctuated_word": "So", "speaker": 0, "speaker_confidence": 0.4663086, "start": 293.785, "word": "so" }, { "confidence": 1, "end": 294.105, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 0.4663086, "start": 293.945, "word": "now" }, { "confidence": 0.99902344, "end": 294.265, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.4663086, "start": 294.105, "word": "that" }, { "confidence": 1, "end": 294.345, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.47216797, "start": 294.265, "word": "we" }, { "confidence": 1, "end": 294.505, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.47216797, "start": 294.345, "word": "have" }, { "confidence": 0.98828125, "end": 294.825, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.47216797, "start": 294.505, "word": "this" }, { "confidence": 0.92578125, "end": 294.98502, "punctuated_word": "init", "speaker": 0, "speaker_confidence": 0.47216797, "start": 294.825, "word": "init" }, { "confidence": 0.7973633, "end": 295.30502, "punctuated_word": "map", "speaker": 0, "speaker_confidence": 0.47216797, "start": 294.98502, "word": "map" }, { "confidence": 1, "end": 295.625, "punctuated_word": "function", "speaker": 0, "speaker_confidence": 0.47216797, "start": 295.30502, "word": "function" }, { "confidence": 1, "end": 295.785, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.47216797, "start": 295.625, "word": "on" }, { "confidence": 1, "end": 295.86502, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5913086, "start": 295.785, "word": "the" }, { "confidence": 0.99902344, "end": 296.265, "punctuated_word": "window,", "speaker": 0, "speaker_confidence": 0.5913086, "start": 295.86502, "word": "window" }, { "confidence": 1, "end": 296.42502, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.5913086, "start": 296.265, "word": "we" }, { "confidence": 0.9980469, "end": 296.58502, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.5913086, "start": 296.42502, "word": "can" }, { "confidence": 1, "end": 296.905, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.5913086, "start": 296.58502, "word": "run" }, { "confidence": 0.8125, "end": 297.30502, "punctuated_word": "npm", "speaker": 0, "speaker_confidence": 0.5913086, "start": 296.905, "word": "npm" }, { "confidence": 0.99902344, "end": 297.785, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 0.5913086, "start": 297.30502, "word": "start" }, { "confidence": 1, "end": 297.86502, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6484375, "start": 297.785, "word": "to" }, { "confidence": 1, "end": 298.185, "punctuated_word": "tell", "speaker": 0, "speaker_confidence": 0.6484375, "start": 297.86502, "word": "tell" }, { "confidence": 0.84350586, "end": 298.665, "punctuated_word": "webpack", "speaker": 0, "speaker_confidence": 0.6484375, "start": 298.185, "word": "webpack" }, { "confidence": 0.99902344, "end": 298.825, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6484375, "start": 298.665, "word": "to" }, { "confidence": 0.99902344, "end": 299.065, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.6484375, "start": 298.825, "word": "build" }, { "confidence": 1, "end": 299.225, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.6484375, "start": 299.065, "word": "our" }, { "confidence": 0.9597168, "end": 299.67, "punctuated_word": "code.", "speaker": 0, "speaker_confidence": 0.6484375, "start": 299.225, "word": "code" }, { "confidence": 0.4390869, "end": 299.75, "punctuated_word": "It.", "speaker": 0, "speaker_confidence": 0.44921875, "start": 299.67, "word": "it" }, { "confidence": 0.87158203, "end": 299.91, "punctuated_word": "That", "speaker": 0, "speaker_confidence": 0.44921875, "start": 299.75, "word": "that" }, { "confidence": 0.9892578, "end": 300.07, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.44921875, "start": 299.91, "word": "will" }, { "confidence": 0.9980469, "end": 300.31003, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.44921875, "start": 300.07, "word": "also" }, { "confidence": 0.9980469, "end": 300.55002, "punctuated_word": "spin", "speaker": 0, "speaker_confidence": 0.44921875, "start": 300.31003, "word": "spin" }, { "confidence": 0.9970703, "end": 300.71002, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.44921875, "start": 300.55002, "word": "up" }, { "confidence": 0.99609375, "end": 300.79, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.66503906, "start": 300.71002, "word": "a" }, { "confidence": 0.99902344, "end": 301.11002, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 0.66503906, "start": 300.79, "word": "server" }, { "confidence": 0.9970703, "end": 301.27002, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.66503906, "start": 301.11002, "word": "on" }, { "confidence": 0.9760742, "end": 301.59003, "punctuated_word": "local", "speaker": 0, "speaker_confidence": 0.66503906, "start": 301.27002, "word": "local" }, { "confidence": 0.6855469, "end": 301.83002, "punctuated_word": "host", "speaker": 0, "speaker_confidence": 0.66503906, "start": 301.59003, "word": "host" }, { "confidence": 0.71468097, "end": 302.33002, "punctuated_word": "8080.", "speaker": 0, "speaker_confidence": 0.66503906, "start": 301.83002, "word": "8080" }, { "confidence": 0.99609375, "end": 302.71002, "punctuated_word": "So", "speaker": 0, "speaker_confidence": 0.66503906, "start": 302.55002, "word": "so" }, { "confidence": 0.99902344, "end": 302.79, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.66503906, "start": 302.71002, "word": "if" }, { "confidence": 0.99902344, "end": 302.87003, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7207031, "start": 302.79, "word": "you" }, { "confidence": 0.99902344, "end": 303.27002, "punctuated_word": "navigate", "speaker": 0, "speaker_confidence": 0.7207031, "start": 302.87003, "word": "navigate" }, { "confidence": 0.9975586, "end": 303.67, "punctuated_word": "there,", "speaker": 0, "speaker_confidence": 0.7207031, "start": 303.27002, "word": "there" }, { "confidence": 1, "end": 303.83002, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7207031, "start": 303.67, "word": "you" }, { "confidence": 0.99902344, "end": 304.07, "punctuated_word": "should", "speaker": 0, "speaker_confidence": 0.7207031, "start": 303.83002, "word": "should" }, { "confidence": 0.9980469, "end": 304.31003, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.7207031, "start": 304.07, "word": "see" }, { "confidence": 0.9921875, "end": 304.55002, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7207031, "start": 304.31003, "word": "the" }, { "confidence": 1, "end": 304.95, "punctuated_word": "default", "speaker": 0, "speaker_confidence": 0.7207031, "start": 304.55002, "word": "default" }, { "confidence": 0.9980469, "end": 305.19, "punctuated_word": "map", "speaker": 0, "speaker_confidence": 0.7207031, "start": 304.95, "word": "map" }, { "confidence": 0.9951172, "end": 305.27002, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.8466797, "start": 305.19, "word": "at" }, { "confidence": 0.99902344, "end": 305.35, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.8466797, "start": 305.27002, "word": "this" }, { "confidence": 0.79663086, "end": 305.85, "punctuated_word": "point,", "speaker": 0, "speaker_confidence": 0.8466797, "start": 305.35, "word": "point" }, { "confidence": 0.99902344, "end": 306.15002, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8466797, "start": 305.91, "word": "and" }, { "confidence": 0.99902344, "end": 306.31003, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.8466797, "start": 306.15002, "word": "your" }, { "confidence": 0.99902344, "end": 306.47, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.8466797, "start": 306.31003, "word": "code" }, { "confidence": 0.99902344, "end": 306.71002, "punctuated_word": "should", "speaker": 0, "speaker_confidence": 0.8466797, "start": 306.47, "word": "should" }, { "confidence": 0.9941406, "end": 307.19, "punctuated_word": "rebuild", "speaker": 0, "speaker_confidence": 0.8466797, "start": 306.71002, "word": "rebuild" }, { "confidence": 0.53759766, "end": 307.67, "punctuated_word": "anytime", "speaker": 0, "speaker_confidence": 0.8466797, "start": 307.19, "word": "anytime" }, { "confidence": 0.9951172, "end": 307.91, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.8466797, "start": 307.67, "word": "you" }, { "confidence": 0.9970703, "end": 308.15002, "punctuated_word": "update", "speaker": 0, "speaker_confidence": 0.8466797, "start": 307.91, "word": "update" }, { "confidence": 0.9980469, "end": 308.39, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8466797, "start": 308.15002, "word": "and" }, { "confidence": 1, "end": 308.63, "punctuated_word": "save", "speaker": 0, "speaker_confidence": 0.8466797, "start": 308.39, "word": "save" }, { "confidence": 0.9941406, "end": 308.79, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8466797, "start": 308.63, "word": "the" }, { "confidence": 0.92578125, "end": 309.27002, "punctuated_word": "index", "speaker": 0, "speaker_confidence": 0.8466797, "start": 308.79, "word": "index" }, { "confidence": 0.49609375, "end": 309.595, "punctuated_word": "JS", "speaker": 0, "speaker_confidence": 0.8466797, "start": 309.27002, "word": "js" }, { "confidence": 0.9536133, "end": 309.675, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.8466797, "start": 309.595, "word": "by" }, { "confidence": 0.8601074, "end": 310.175, "punctuated_word": "file.", "speaker": 0, "speaker_confidence": 0.8466797, "start": 309.675, "word": "file" }, { "confidence": 0.9970703, "end": 310.555, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.6020508, "start": 310.475, "word": "now" }, { "confidence": 0.9873047, "end": 310.715, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.6020508, "start": 310.555, "word": "that" }, { "confidence": 0.9980469, "end": 310.875, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.6020508, "start": 310.715, "word": "we" }, { "confidence": 0.9941406, "end": 311.035, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.6020508, "start": 310.875, "word": "have" }, { "confidence": 0.94921875, "end": 311.275, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.6020508, "start": 311.035, "word": "this" }, { "confidence": 0.9667969, "end": 311.515, "punctuated_word": "initial", "speaker": 0, "speaker_confidence": 0.6020508, "start": 311.275, "word": "initial" }, { "confidence": 0.82714844, "end": 311.835, "punctuated_word": "setup", "speaker": 0, "speaker_confidence": 0.6020508, "start": 311.515, "word": "setup" }, { "confidence": 0.9838867, "end": 311.995, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.6020508, "start": 311.835, "word": "out" }, { "confidence": 0.9921875, "end": 312.075, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.6020508, "start": 311.995, "word": "of" }, { "confidence": 0.99609375, "end": 312.155, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6020508, "start": 312.075, "word": "the" }, { "confidence": 0.99609375, "end": 312.395, "punctuated_word": "way,", "speaker": 0, "speaker_confidence": 0.8457031, "start": 312.155, "word": "way" }, { "confidence": 0.99902344, "end": 312.635, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.8457031, "start": 312.395, "word": "we" }, { "confidence": 0.9838867, "end": 312.875, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.8457031, "start": 312.635, "word": "need" }, { "confidence": 0.9921875, "end": 312.955, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8457031, "start": 312.875, "word": "to" }, { "confidence": 0.9951172, "end": 313.115, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.8457031, "start": 312.955, "word": "get" }, { "confidence": 0.984375, "end": 313.355, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.8457031, "start": 313.115, "word": "some" }, { "confidence": 0.9819336, "end": 313.755, "punctuated_word": "actual", "speaker": 0, "speaker_confidence": 0.8457031, "start": 313.355, "word": "actual" }, { "confidence": 1, "end": 314.075, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.8457031, "start": 313.755, "word": "data" }, { "confidence": 0.9892578, "end": 314.23502, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8457031, "start": 314.075, "word": "to" }, { "confidence": 1, "end": 314.555, "punctuated_word": "display", "speaker": 0, "speaker_confidence": 0.8457031, "start": 314.23502, "word": "display" }, { "confidence": 0.9970703, "end": 314.715, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8457031, "start": 314.555, "word": "on" }, { "confidence": 0.99609375, "end": 314.875, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8457031, "start": 314.715, "word": "the" }, { "confidence": 0.99902344, "end": 315.375, "punctuated_word": "map.", "speaker": 0, "speaker_confidence": 0.8457031, "start": 314.875, "word": "map" }, { "confidence": 0.97998047, "end": 316.075, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.8457031, "start": 315.835, "word": "now" }, { "confidence": 0.90234375, "end": 316.23502, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.8457031, "start": 316.075, "word": "this" }, { "confidence": 0.9951172, "end": 316.395, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7128906, "start": 316.23502, "word": "can" }, { "confidence": 0.9951172, "end": 316.635, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.7128906, "start": 316.395, "word": "be" }, { "confidence": 0.9550781, "end": 316.875, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 0.7128906, "start": 316.635, "word": "very" }, { "confidence": 1, "end": 317.115, "punctuated_word": "easy", "speaker": 0, "speaker_confidence": 0.7128906, "start": 316.875, "word": "easy" }, { "confidence": 0.98095703, "end": 317.355, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.7128906, "start": 317.115, "word": "or" }, { "confidence": 0.9160156, "end": 317.595, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 0.7128906, "start": 317.355, "word": "very" }, { "confidence": 1, "end": 318.095, "punctuated_word": "difficult", "speaker": 0, "speaker_confidence": 0.7128906, "start": 317.595, "word": "difficult" }, { "confidence": 0.9980469, "end": 318.57, "punctuated_word": "depending", "speaker": 0, "speaker_confidence": 0.7128906, "start": 318.25, "word": "depending" }, { "confidence": 1, "end": 318.61002, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.54296875, "start": 318.57, "word": "on" }, { "confidence": 1, "end": 318.65002, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.54296875, "start": 318.61002, "word": "the" }, { "confidence": 1, "end": 319.05002, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.54296875, "start": 318.65002, "word": "data" }, { "confidence": 0.9980469, "end": 319.21002, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.54296875, "start": 319.05002, "word": "you're" }, { "confidence": 1, "end": 319.45, "punctuated_word": "working", "speaker": 0, "speaker_confidence": 0.54296875, "start": 319.21002, "word": "working" }, { "confidence": 0.9995117, "end": 319.95, "punctuated_word": "with.", "speaker": 0, "speaker_confidence": 0.54296875, "start": 319.45, "word": "with" }, { "confidence": 0.99902344, "end": 320.33002, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.85253906, "start": 320.17, "word": "if" }, { "confidence": 1, "end": 320.41, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.85253906, "start": 320.33002, "word": "you" }, { "confidence": 0.9038086, "end": 320.65002, "punctuated_word": "wanna", "speaker": 0, "speaker_confidence": 0.85253906, "start": 320.41, "word": "wanna" }, { "confidence": 0.9970703, "end": 320.81003, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.85253906, "start": 320.65002, "word": "go" }, { "confidence": 0.98828125, "end": 320.89, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.85253906, "start": 320.81003, "word": "the" }, { "confidence": 1, "end": 321.13, "punctuated_word": "easy", "speaker": 0, "speaker_confidence": 0.85253906, "start": 320.89, "word": "easy" }, { "confidence": 0.99609375, "end": 321.45, "punctuated_word": "route,", "speaker": 0, "speaker_confidence": 0.85253906, "start": 321.13, "word": "route" }, { "confidence": 1, "end": 321.61002, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.85253906, "start": 321.45, "word": "you" }, { "confidence": 0.9980469, "end": 321.77002, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.85253906, "start": 321.61002, "word": "can" }, { "confidence": 1, "end": 322.01, "punctuated_word": "simply", "speaker": 0, "speaker_confidence": 0.85253906, "start": 321.77002, "word": "simply" }, { "confidence": 1, "end": 322.25, "punctuated_word": "grab", "speaker": 0, "speaker_confidence": 0.85253906, "start": 322.01, "word": "grab" }, { "confidence": 0.99902344, "end": 322.41, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.85253906, "start": 322.25, "word": "the" }, { "confidence": 0.9951172, "end": 322.73, "punctuated_word": "JSON", "speaker": 0, "speaker_confidence": 0.85253906, "start": 322.41, "word": "json" }, { "confidence": 0.9970703, "end": 323.05002, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.85253906, "start": 322.73, "word": "data" }, { "confidence": 1, "end": 323.29, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.85253906, "start": 323.05002, "word": "that" }, { "confidence": 1, "end": 323.53, "punctuated_word": "lives", "speaker": 0, "speaker_confidence": 0.85253906, "start": 323.29, "word": "lives" }, { "confidence": 0.99902344, "end": 323.69, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.85253906, "start": 323.53, "word": "on" }, { "confidence": 0.99902344, "end": 323.85, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.85253906, "start": 323.69, "word": "my" }, { "confidence": 0.9819336, "end": 324.09003, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.85253906, "start": 323.85, "word": "web" }, { "confidence": 0.9560547, "end": 324.59003, "punctuated_word": "server.", "speaker": 0, "speaker_confidence": 0.85253906, "start": 324.09003, "word": "server" }, { "confidence": 0.9970703, "end": 325.05002, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.5996094, "start": 324.89, "word": "but" }, { "confidence": 0.9980469, "end": 325.29, "punctuated_word": "since", "speaker": 0, "speaker_confidence": 0.5996094, "start": 325.05002, "word": "since" }, { "confidence": 0.99609375, "end": 325.45, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.5996094, "start": 325.29, "word": "you're" }, { "confidence": 0.9970703, "end": 325.53, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.5996094, "start": 325.45, "word": "a" }, { "confidence": 0.99658203, "end": 326.01, "punctuated_word": "developer,", "speaker": 0, "speaker_confidence": 0.5996094, "start": 325.53, "word": "developer" }, { "confidence": 0.99560547, "end": 326.17, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.5996094, "start": 326.01, "word": "i'm" }, { "confidence": 1, "end": 326.57, "punctuated_word": "assuming", "speaker": 0, "speaker_confidence": 0.5996094, "start": 326.17, "word": "assuming" }, { "confidence": 0.99609375, "end": 326.65002, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.3491211, "start": 326.57, "word": "you" }, { "confidence": 0.9951172, "end": 326.89, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.3491211, "start": 326.65002, "word": "want" }, { "confidence": 0.9863281, "end": 327.05002, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.3491211, "start": 326.89, "word": "to" }, { "confidence": 0.9892578, "end": 327.21002, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.3491211, "start": 327.05002, "word": "use" }, { "confidence": 0.97998047, "end": 327.37003, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.3491211, "start": 327.21002, "word": "your" }, { "confidence": 0.90478516, "end": 327.45, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 0.3491211, "start": 327.37003, "word": "own" }, { "confidence": 0.54003906, "end": 327.825, "punctuated_word": "custom", "speaker": 0, "speaker_confidence": 0.5546875, "start": 327.45, "word": "custom" }, { "confidence": 0.81933594, "end": 328.065, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.5546875, "start": 327.905, "word": "by" }, { "confidence": 0.87768555, "end": 328.46503, "punctuated_word": "data.", "speaker": 0, "speaker_confidence": 0.5546875, "start": 328.065, "word": "data" }, { "confidence": 0.99902344, "end": 328.625, "punctuated_word": "A", "speaker": 0, "speaker_confidence": 0.5546875, "start": 328.46503, "word": "a" }, { "confidence": 1, "end": 328.785, "punctuated_word": "great", "speaker": 0, "speaker_confidence": 0.5546875, "start": 328.625, "word": "great" }, { "confidence": 1, "end": 328.945, "punctuated_word": "place", "speaker": 0, "speaker_confidence": 0.82128906, "start": 328.785, "word": "place" }, { "confidence": 0.99902344, "end": 329.105, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.82128906, "start": 328.945, "word": "to" }, { "confidence": 1, "end": 329.265, "punctuated_word": "find", "speaker": 0, "speaker_confidence": 0.82128906, "start": 329.105, "word": "find" }, { "confidence": 0.99609375, "end": 329.505, "punctuated_word": "free", "speaker": 0, "speaker_confidence": 0.82128906, "start": 329.265, "word": "free" }, { "confidence": 1, "end": 329.74503, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.82128906, "start": 329.505, "word": "data" }, { "confidence": 0.9970703, "end": 329.905, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.82128906, "start": 329.74503, "word": "that's" }, { "confidence": 0.99902344, "end": 330.225, "punctuated_word": "already", "speaker": 0, "speaker_confidence": 0.82128906, "start": 329.905, "word": "already" }, { "confidence": 0.9970703, "end": 330.385, "punctuated_word": "well", "speaker": 0, "speaker_confidence": 0.82128906, "start": 330.225, "word": "well" }, { "confidence": 0.99902344, "end": 330.885, "punctuated_word": "formatted", "speaker": 0, "speaker_confidence": 0.82128906, "start": 330.385, "word": "formatted" }, { "confidence": 1, "end": 331.105, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.82128906, "start": 330.945, "word": "is" }, { "confidence": 0.99902344, "end": 331.345, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.82128906, "start": 331.105, "word": "from" }, { "confidence": 0.9970703, "end": 331.825, "punctuated_word": "Kaggle", "speaker": 0, "speaker_confidence": 0.82128906, "start": 331.345, "word": "kaggle" }, { "confidence": 0.7338867, "end": 332.325, "punctuated_word": "datasets,", "speaker": 0, "speaker_confidence": 0.82128906, "start": 331.825, "word": "datasets" }, { "confidence": 0.9980469, "end": 333.105, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.59228516, "start": 332.945, "word": "but" }, { "confidence": 0.9970703, "end": 333.185, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.59228516, "start": 333.105, "word": "in" }, { "confidence": 1, "end": 333.42502, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 0.59228516, "start": 333.185, "word": "most" }, { "confidence": 0.8984375, "end": 333.825, "punctuated_word": "cases,", "speaker": 0, "speaker_confidence": 0.59228516, "start": 333.42502, "word": "cases" }, { "confidence": 0.9970703, "end": 333.98502, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.59228516, "start": 333.825, "word": "this" }, { "confidence": 1, "end": 334.30502, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.59228516, "start": 333.98502, "word": "data" }, { "confidence": 1, "end": 334.46503, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.59228516, "start": 334.30502, "word": "is" }, { "confidence": 0.99902344, "end": 334.58502, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.59228516, "start": 334.46503, "word": "going" }, { "confidence": 0.99902344, "end": 334.70502, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6484375, "start": 334.58502, "word": "to" }, { "confidence": 1, "end": 334.945, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.6484375, "start": 334.70502, "word": "be" }, { "confidence": 0.9970703, "end": 335.105, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.6484375, "start": 334.945, "word": "in" }, { "confidence": 0.9658203, "end": 335.505, "punctuated_word": "CSV", "speaker": 0, "speaker_confidence": 0.6484375, "start": 335.105, "word": "csv" }, { "confidence": 1, "end": 336.005, "punctuated_word": "format.", "speaker": 0, "speaker_confidence": 0.6484375, "start": 335.505, "word": "format" }, { "confidence": 0.99902344, "end": 336.48, "punctuated_word": "An", "speaker": 0, "speaker_confidence": 0.6484375, "start": 336.32, "word": "an" }, { "confidence": 1, "end": 336.64, "punctuated_word": "easy", "speaker": 0, "speaker_confidence": 0.6484375, "start": 336.48, "word": "easy" }, { "confidence": 0.99902344, "end": 336.80002, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 0.6245117, "start": 336.64, "word": "way" }, { "confidence": 0.99902344, "end": 336.96, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6245117, "start": 336.80002, "word": "to" }, { "confidence": 1, "end": 337.2, "punctuated_word": "convert", "speaker": 0, "speaker_confidence": 0.6245117, "start": 336.96, "word": "convert" }, { "confidence": 0.99902344, "end": 337.44, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.6245117, "start": 337.2, "word": "this" }, { "confidence": 1, "end": 337.76, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.6245117, "start": 337.44, "word": "data" }, { "confidence": 0.9970703, "end": 337.92, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6245117, "start": 337.76, "word": "to" }, { "confidence": 0.99902344, "end": 338, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8144531, "start": 337.92, "word": "the" }, { "confidence": 1, "end": 338.32, "punctuated_word": "proper", "speaker": 0, "speaker_confidence": 0.8144531, "start": 338, "word": "proper" }, { "confidence": 1, "end": 338.80002, "punctuated_word": "format", "speaker": 0, "speaker_confidence": 0.8144531, "start": 338.32, "word": "format" }, { "confidence": 1, "end": 338.96, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8144531, "start": 338.80002, "word": "is" }, { "confidence": 1, "end": 339.12, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8144531, "start": 338.96, "word": "to" }, { "confidence": 0.99902344, "end": 339.36002, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.8144531, "start": 339.12, "word": "use" }, { "confidence": 1, "end": 339.6, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8144531, "start": 339.36002, "word": "the" }, { "confidence": 0.91845703, "end": 339.92, "punctuated_word": "node", "speaker": 0, "speaker_confidence": 0.8144531, "start": 339.6, "word": "node" }, { "confidence": 0.9970703, "end": 340.4, "punctuated_word": "package", "speaker": 0, "speaker_confidence": 0.8144531, "start": 339.92, "word": "package" }, { "confidence": 0.79833984, "end": 340.88, "punctuated_word": "convert", "speaker": 0, "speaker_confidence": 0.8144531, "start": 340.4, "word": "convert" }, { "confidence": 0.77685547, "end": 341.38, "punctuated_word": "CSV", "speaker": 0, "speaker_confidence": 0.8144531, "start": 340.88, "word": "csv" }, { "confidence": 0.96875, "end": 341.68, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8144531, "start": 341.44, "word": "to" }, { "confidence": 0.99365234, "end": 342.18, "punctuated_word": "JSON.", "speaker": 0, "speaker_confidence": 0.8144531, "start": 341.68, "word": "json" }, { "confidence": 0.99902344, "end": 342.64, "punctuated_word": "From", "speaker": 0, "speaker_confidence": 0.7158203, "start": 342.48, "word": "from" }, { "confidence": 0.9970703, "end": 342.88, "punctuated_word": "there,", "speaker": 0, "speaker_confidence": 0.7158203, "start": 342.64, "word": "there" }, { "confidence": 0.99902344, "end": 343.12, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.7158203, "start": 342.88, "word": "create" }, { "confidence": 1, "end": 343.2, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7158203, "start": 343.12, "word": "a" }, { "confidence": 1, "end": 343.44, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.7158203, "start": 343.2, "word": "file" }, { "confidence": 1, "end": 343.76, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 0.7158203, "start": 343.44, "word": "called" }, { "confidence": 0.9902344, "end": 344.08002, "punctuated_word": "convert", "speaker": 0, "speaker_confidence": 0.7158203, "start": 343.76, "word": "convert" }, { "confidence": 0.6496582, "end": 344.58002, "punctuated_word": "dotjs", "speaker": 0, "speaker_confidence": 0.7158203, "start": 344.08002, "word": "dotjs" }, { "confidence": 0.9116211, "end": 344.88, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7158203, "start": 344.72, "word": "in" }, { "confidence": 1, "end": 344.96, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9433594, "start": 344.88, "word": "the" }, { "confidence": 0.9951172, "end": 345.12, "punctuated_word": "root", "speaker": 0, "speaker_confidence": 0.9433594, "start": 344.96, "word": "root" }, { "confidence": 1, "end": 345.28, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9433594, "start": 345.12, "word": "of" }, { "confidence": 1, "end": 345.44, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.9433594, "start": 345.28, "word": "your" }, { "confidence": 0.9794922, "end": 345.94, "punctuated_word": "project.", "speaker": 0, "speaker_confidence": 0.9433594, "start": 345.44, "word": "project" }, { "confidence": 0.98828125, "end": 346.54498, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.9433594, "start": 346.22498, "word": "then" }, { "confidence": 0.9941406, "end": 346.625, "punctuated_word": "inside", "speaker": 0, "speaker_confidence": 0.9433594, "start": 346.54498, "word": "inside" }, { "confidence": 0.9970703, "end": 346.865, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9433594, "start": 346.625, "word": "the" }, { "confidence": 0.9951172, "end": 347.185, "punctuated_word": "script,", "speaker": 0, "speaker_confidence": 0.9433594, "start": 346.865, "word": "script" }, { "confidence": 1, "end": 347.345, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.9433594, "start": 347.185, "word": "we" }, { "confidence": 1, "end": 347.50497, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9433594, "start": 347.345, "word": "can" }, { "confidence": 1, "end": 347.82498, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.9433594, "start": 347.50497, "word": "create" }, { "confidence": 1, "end": 347.985, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9433594, "start": 347.82498, "word": "a" }, { "confidence": 1, "end": 348.22498, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 0.9433594, "start": 347.985, "word": "very" }, { "confidence": 1, "end": 348.54498, "punctuated_word": "simple", "speaker": 0, "speaker_confidence": 0.9433594, "start": 348.22498, "word": "simple" }, { "confidence": 0.56347656, "end": 348.785, "punctuated_word": "node", "speaker": 0, "speaker_confidence": 0.9433594, "start": 348.54498, "word": "node" }, { "confidence": 0.9980469, "end": 349.10498, "punctuated_word": "script", "speaker": 0, "speaker_confidence": 0.9433594, "start": 348.785, "word": "script" }, { "confidence": 0.99902344, "end": 349.345, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9433594, "start": 349.10498, "word": "that" }, { "confidence": 1, "end": 349.50497, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.9433594, "start": 349.345, "word": "has" }, { "confidence": 0.9980469, "end": 349.66498, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.9433594, "start": 349.50497, "word": "an" }, { "confidence": 0.99902344, "end": 349.985, "punctuated_word": "input", "speaker": 0, "speaker_confidence": 0.9433594, "start": 349.66498, "word": "input" }, { "confidence": 0.6821289, "end": 350.145, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9433594, "start": 349.985, "word": "in" }, { "confidence": 0.9716797, "end": 350.625, "punctuated_word": "CSV", "speaker": 0, "speaker_confidence": 0.9433594, "start": 350.145, "word": "csv" }, { "confidence": 1, "end": 351.025, "punctuated_word": "format", "speaker": 0, "speaker_confidence": 0.9433594, "start": 350.625, "word": "format" }, { "confidence": 0.83251953, "end": 351.185, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9433594, "start": 351.025, "word": "and" }, { "confidence": 0.9980469, "end": 351.345, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.9433594, "start": 351.185, "word": "then" }, { "confidence": 0.9970703, "end": 351.50497, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.9433594, "start": 351.345, "word": "an" }, { "confidence": 1, "end": 351.82498, "punctuated_word": "output", "speaker": 0, "speaker_confidence": 0.9433594, "start": 351.50497, "word": "output" }, { "confidence": 0.9760742, "end": 351.985, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9433594, "start": 351.82498, "word": "in" }, { "confidence": 0.9970703, "end": 352.485, "punctuated_word": "JSON.", "speaker": 0, "speaker_confidence": 0.9433594, "start": 351.985, "word": "json" }, { "confidence": 1, "end": 353.10498, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.88183594, "start": 352.94498, "word": "now" }, { "confidence": 0.99609375, "end": 353.185, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.88183594, "start": 353.10498, "word": "we" }, { "confidence": 1, "end": 353.345, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.88183594, "start": 353.185, "word": "can" }, { "confidence": 0.9951172, "end": 353.58, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.88183594, "start": 353.345, "word": "just" }, { "confidence": 0.9921875, "end": 353.74, "punctuated_word": "Run", "speaker": 0, "speaker_confidence": 0.88183594, "start": 353.58, "word": "run" }, { "confidence": 1, "end": 353.9, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.88183594, "start": 353.74, "word": "that" }, { "confidence": 1, "end": 354.06, "punctuated_word": "script", "speaker": 0, "speaker_confidence": 0.88183594, "start": 353.9, "word": "script" }, { "confidence": 1, "end": 354.22, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.88183594, "start": 354.06, "word": "from" }, { "confidence": 1, "end": 354.46, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.88183594, "start": 354.22, "word": "the" }, { "confidence": 0.9941406, "end": 354.69998, "punctuated_word": "command", "speaker": 0, "speaker_confidence": 0.88183594, "start": 354.46, "word": "command" }, { "confidence": 0.99902344, "end": 354.93997, "punctuated_word": "line", "speaker": 0, "speaker_confidence": 0.88183594, "start": 354.69998, "word": "line" }, { "confidence": 0.62402344, "end": 355.18, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.88183594, "start": 354.93997, "word": "and" }, { "confidence": 0.9890137, "end": 355.34, "punctuated_word": "we've", "speaker": 0, "speaker_confidence": 0.88183594, "start": 355.18, "word": "we've" }, { "confidence": 0.99902344, "end": 355.74, "punctuated_word": "magically", "speaker": 0, "speaker_confidence": 0.88183594, "start": 355.34, "word": "magically" }, { "confidence": 1, "end": 356.13998, "punctuated_word": "converted", "speaker": 0, "speaker_confidence": 0.88183594, "start": 355.74, "word": "converted" }, { "confidence": 1, "end": 356.37997, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.88183594, "start": 356.13998, "word": "our" }, { "confidence": 1, "end": 356.69998, "punctuated_word": "custom", "speaker": 0, "speaker_confidence": 0.88183594, "start": 356.37997, "word": "custom" }, { "confidence": 0.87353516, "end": 357.19998, "punctuated_word": "dataset", "speaker": 0, "speaker_confidence": 0.88183594, "start": 356.69998, "word": "dataset" }, { "confidence": 0.9970703, "end": 357.65997, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.88183594, "start": 357.25998, "word": "into" }, { "confidence": 0.96972656, "end": 358.13998, "punctuated_word": "JSON", "speaker": 0, "speaker_confidence": 0.88183594, "start": 357.65997, "word": "json" }, { "confidence": 1, "end": 358.46, "punctuated_word": "format", "speaker": 0, "speaker_confidence": 0.88183594, "start": 358.13998, "word": "format" }, { "confidence": 0.99902344, "end": 358.62, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.88183594, "start": 358.46, "word": "that" }, { "confidence": 1, "end": 358.69998, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.8852539, "start": 358.62, "word": "we" }, { "confidence": 1, "end": 358.86, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.8852539, "start": 358.69998, "word": "can" }, { "confidence": 1, "end": 359.09998, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.8852539, "start": 358.86, "word": "use" }, { "confidence": 1, "end": 359.25998, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.8852539, "start": 359.09998, "word": "with" }, { "confidence": 0.9589844, "end": 359.5, "punctuated_word": "deck", "speaker": 0, "speaker_confidence": 0.8852539, "start": 359.25998, "word": "deck" }, { "confidence": 0.64953613, "end": 360, "punctuated_word": "gl.", "speaker": 0, "speaker_confidence": 0.8852539, "start": 359.5, "word": "gl" }, { "confidence": 0.9873047, "end": 360.62, "punctuated_word": "Your", "speaker": 0, "speaker_confidence": 0.8852539, "start": 360.37997, "word": "your" }, { "confidence": 1, "end": 360.86, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.8852539, "start": 360.62, "word": "data" }, { "confidence": 1, "end": 361.02, "punctuated_word": "should", "speaker": 0, "speaker_confidence": 0.8852539, "start": 360.86, "word": "should" }, { "confidence": 1, "end": 361.25998, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.8852539, "start": 361.02, "word": "be" }, { "confidence": 0.96875, "end": 361.5, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.8852539, "start": 361.25998, "word": "an" }, { "confidence": 0.99902344, "end": 361.74, "punctuated_word": "array", "speaker": 0, "speaker_confidence": 0.8852539, "start": 361.5, "word": "array" }, { "confidence": 1, "end": 361.9, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8852539, "start": 361.74, "word": "of" }, { "confidence": 0.9941406, "end": 362.4, "punctuated_word": "JSON", "speaker": 0, "speaker_confidence": 0.8852539, "start": 361.9, "word": "json" }, { "confidence": 0.81347656, "end": 362.96, "punctuated_word": "objects,", "speaker": 0, "speaker_confidence": 0.8852539, "start": 362.46, "word": "objects" }, { "confidence": 0.9863281, "end": 363.315, "punctuated_word": "So", "speaker": 0, "speaker_confidence": 0.8852539, "start": 363.07498, "word": "so" }, { "confidence": 0.9838867, "end": 363.395, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8852539, "start": 363.315, "word": "in" }, { "confidence": 1, "end": 363.475, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.8852539, "start": 363.395, "word": "our" }, { "confidence": 1, "end": 363.79498, "punctuated_word": "case", "speaker": 0, "speaker_confidence": 0.8852539, "start": 363.475, "word": "case" }, { "confidence": 0.5722656, "end": 363.875, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8852539, "start": 363.79498, "word": "it" }, { "confidence": 1, "end": 364.115, "punctuated_word": "looks", "speaker": 0, "speaker_confidence": 0.8852539, "start": 363.875, "word": "looks" }, { "confidence": 1, "end": 364.275, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.8852539, "start": 364.115, "word": "like" }, { "confidence": 0.95703125, "end": 364.775, "punctuated_word": "this.", "speaker": 0, "speaker_confidence": 0.8852539, "start": 364.275, "word": "this" }, { "confidence": 0.9970703, "end": 365.235, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.75683594, "start": 365.07498, "word": "the" }, { "confidence": 0.99902344, "end": 365.635, "punctuated_word": "property", "speaker": 0, "speaker_confidence": 0.75683594, "start": 365.235, "word": "property" }, { "confidence": 1, "end": 365.875, "punctuated_word": "names", "speaker": 0, "speaker_confidence": 0.75683594, "start": 365.635, "word": "names" }, { "confidence": 1, "end": 366.035, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.75683594, "start": 365.875, "word": "on" }, { "confidence": 0.99902344, "end": 366.195, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.75683594, "start": 366.035, "word": "this" }, { "confidence": 0.98535156, "end": 366.595, "punctuated_word": "object", "speaker": 0, "speaker_confidence": 0.75683594, "start": 366.195, "word": "object" }, { "confidence": 1, "end": 366.755, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.75683594, "start": 366.595, "word": "can" }, { "confidence": 1, "end": 366.995, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.75683594, "start": 366.755, "word": "be" }, { "confidence": 1, "end": 367.315, "punctuated_word": "anything", "speaker": 0, "speaker_confidence": 0.75683594, "start": 366.995, "word": "anything" }, { "confidence": 1, "end": 367.475, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.75683594, "start": 367.315, "word": "you" }, { "confidence": 0.8586426, "end": 367.875, "punctuated_word": "want,", "speaker": 0, "speaker_confidence": 0.75683594, "start": 367.475, "word": "want" }, { "confidence": 0.99902344, "end": 368.035, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.75683594, "start": 367.875, "word": "so" }, { "confidence": 1, "end": 368.115, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.8457031, "start": 368.035, "word": "you" }, { "confidence": 1, "end": 368.35498, "punctuated_word": "don't", "speaker": 0, "speaker_confidence": 0.8457031, "start": 368.115, "word": "don't" }, { "confidence": 0.99902344, "end": 368.51498, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 0.8457031, "start": 368.35498, "word": "really" }, { "confidence": 1, "end": 368.755, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.8457031, "start": 368.51498, "word": "need" }, { "confidence": 0.99902344, "end": 368.915, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8457031, "start": 368.755, "word": "to" }, { "confidence": 1, "end": 369.315, "punctuated_word": "format", "speaker": 0, "speaker_confidence": 0.8457031, "start": 368.915, "word": "format" }, { "confidence": 1, "end": 369.475, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.8457031, "start": 369.315, "word": "your" }, { "confidence": 1, "end": 369.79498, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.8457031, "start": 369.475, "word": "data" }, { "confidence": 1, "end": 369.955, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8457031, "start": 369.79498, "word": "in" }, { "confidence": 1, "end": 370.195, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 0.8457031, "start": 369.955, "word": "any" }, { "confidence": 1, "end": 370.51498, "punctuated_word": "special", "speaker": 0, "speaker_confidence": 0.8457031, "start": 370.195, "word": "special" }, { "confidence": 1, "end": 370.91, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 0.8457031, "start": 370.51498, "word": "way" }, { "confidence": 0.88183594, "end": 371.23, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.8457031, "start": 370.91, "word": "because" }, { "confidence": 0.87597656, "end": 371.31, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.8457031, "start": 371.23, "word": "as" }, { "confidence": 0.984375, "end": 371.39, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 0.8720703, "start": 371.31, "word": "you'll" }, { "confidence": 0.99609375, "end": 371.63, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.8720703, "start": 371.39, "word": "see" }, { "confidence": 0.9980469, "end": 371.79, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8720703, "start": 371.63, "word": "in" }, { "confidence": 1, "end": 371.87, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8720703, "start": 371.79, "word": "the" }, { "confidence": 0.9675293, "end": 372.11002, "punctuated_word": "code,", "speaker": 0, "speaker_confidence": 0.8720703, "start": 371.87, "word": "code" }, { "confidence": 1, "end": 372.35, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.8720703, "start": 372.11002, "word": "we" }, { "confidence": 0.9902344, "end": 372.51, "punctuated_word": "tell", "speaker": 0, "speaker_confidence": 0.8720703, "start": 372.35, "word": "tell" }, { "confidence": 0.7077637, "end": 372.75, "punctuated_word": "deck.", "speaker": 0, "speaker_confidence": 0.8720703, "start": 372.51, "word": "deck" }, { "confidence": 0.6303711, "end": 373.07, "punctuated_word": "Gl", "speaker": 0, "speaker_confidence": 0.8720703, "start": 372.75, "word": "gl" }, { "confidence": 0.9980469, "end": 373.47, "punctuated_word": "exactly", "speaker": 0, "speaker_confidence": 0.8720703, "start": 373.07, "word": "exactly" }, { "confidence": 0.99902344, "end": 373.63, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.8720703, "start": 373.47, "word": "how" }, { "confidence": 0.9980469, "end": 373.95, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8720703, "start": 373.63, "word": "to" }, { "confidence": 1, "end": 374.35, "punctuated_word": "access", "speaker": 0, "speaker_confidence": 0.8720703, "start": 373.95, "word": "access" }, { "confidence": 0.9863281, "end": 374.51, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.8720703, "start": 374.35, "word": "this" }, { "confidence": 0.9995117, "end": 375.01, "punctuated_word": "data.", "speaker": 0, "speaker_confidence": 0.8720703, "start": 374.51, "word": "data" }, { "confidence": 0.99902344, "end": 375.31, "punctuated_word": "Let's", "speaker": 0, "speaker_confidence": 0.7758789, "start": 375.15, "word": "let's" }, { "confidence": 1, "end": 375.47, "punctuated_word": "move", "speaker": 0, "speaker_confidence": 0.7758789, "start": 375.31, "word": "move" }, { "confidence": 0.9165039, "end": 375.79, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.7758789, "start": 375.47, "word": "into" }, { "confidence": 0.99609375, "end": 375.95, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.7758789, "start": 375.79, "word": "our" }, { "confidence": 0.77490234, "end": 376.35, "punctuated_word": "index.", "speaker": 0, "speaker_confidence": 0.7758789, "start": 375.95, "word": "index" }, { "confidence": 0.7788086, "end": 376.67, "punctuated_word": "Js", "speaker": 0, "speaker_confidence": 0.7758789, "start": 376.35, "word": "js" }, { "confidence": 0.8466797, "end": 377.07, "punctuated_word": "file,", "speaker": 0, "speaker_confidence": 0.7758789, "start": 376.67, "word": "file" }, { "confidence": 0.99902344, "end": 377.23, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7758789, "start": 377.07, "word": "and" }, { "confidence": 0.99902344, "end": 377.39, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.7758789, "start": 377.23, "word": "we'll" }, { "confidence": 0.9980469, "end": 377.71, "punctuated_word": "import", "speaker": 0, "speaker_confidence": 0.7758789, "start": 377.39, "word": "import" }, { "confidence": 0.86279297, "end": 378.03, "punctuated_word": "Google", "speaker": 0, "speaker_confidence": 0.7758789, "start": 377.71, "word": "google" }, { "confidence": 0.96875, "end": 378.35, "punctuated_word": "Maps", "speaker": 0, "speaker_confidence": 0.7758789, "start": 378.03, "word": "maps" }, { "confidence": 0.9472656, "end": 378.75, "punctuated_word": "overlay", "speaker": 0, "speaker_confidence": 0.7758789, "start": 378.35, "word": "overlay" }, { "confidence": 0.8100586, "end": 378.91, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.7758789, "start": 378.75, "word": "as" }, { "confidence": 1, "end": 379.07, "punctuated_word": "well", "speaker": 0, "speaker_confidence": 0.7758789, "start": 378.91, "word": "well" }, { "confidence": 0.99609375, "end": 379.15, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 1, "start": 379.07, "word": "as" }, { "confidence": 0.9980469, "end": 379.39, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 379.15, "word": "the" }, { "confidence": 0.9980469, "end": 379.63, "punctuated_word": "layers", "speaker": 0, "speaker_confidence": 1, "start": 379.39, "word": "layers" }, { "confidence": 0.99609375, "end": 379.79, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 379.63, "word": "that" }, { "confidence": 0.9941406, "end": 379.95, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 1, "start": 379.79, "word": "we" }, { "confidence": 0.99609375, "end": 380.11002, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 1, "start": 379.95, "word": "want" }, { "confidence": 0.98535156, "end": 380.415, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 380.11002, "word": "to" }, { "confidence": 0.9370117, "end": 380.655, "punctuated_word": "display", "speaker": 0, "speaker_confidence": 1, "start": 380.495, "word": "display" }, { "confidence": 0.99902344, "end": 380.89502, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 1, "start": 380.655, "word": "from" }, { "confidence": 0.7196045, "end": 381.255, "punctuated_word": "deck.", "speaker": 0, "speaker_confidence": 1, "start": 380.89502, "word": "deck" }, { "confidence": 0.9343262, "end": 381.61502, "punctuated_word": "Gl.", "speaker": 0, "speaker_confidence": 1, "start": 381.255, "word": "gl" }, { "confidence": 0.99902344, "end": 381.775, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 1, "start": 381.61502, "word": "now" }, { "confidence": 0.87158203, "end": 382.015, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 381.775, "word": "like" }, { "confidence": 0.9970703, "end": 382.095, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 1, "start": 382.015, "word": "i" }, { "confidence": 1, "end": 382.255, "punctuated_word": "said", "speaker": 0, "speaker_confidence": 1, "start": 382.095, "word": "said" }, { "confidence": 0.9885254, "end": 382.73502, "punctuated_word": "earlier,", "speaker": 0, "speaker_confidence": 1, "start": 382.255, "word": "earlier" }, { "confidence": 0.98706055, "end": 382.975, "punctuated_word": "deck.", "speaker": 0, "speaker_confidence": 1, "start": 382.73502, "word": "deck" }, { "confidence": 0.96435547, "end": 383.295, "punctuated_word": "Gl", "speaker": 0, "speaker_confidence": 1, "start": 382.975, "word": "gl" }, { "confidence": 0.9980469, "end": 383.535, "punctuated_word": "uses", "speaker": 0, "speaker_confidence": 1, "start": 383.295, "word": "uses" }, { "confidence": 0.99902344, "end": 383.695, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 383.535, "word": "a" }, { "confidence": 0.99902344, "end": 384.095, "punctuated_word": "reactive", "speaker": 0, "speaker_confidence": 1, "start": 383.695, "word": "reactive" }, { "confidence": 0.9902344, "end": 384.575, "punctuated_word": "programming", "speaker": 0, "speaker_confidence": 1, "start": 384.095, "word": "programming" }, { "confidence": 0.97314453, "end": 385.075, "punctuated_word": "paradigm,", "speaker": 0, "speaker_confidence": 1, "start": 384.575, "word": "paradigm" }, { "confidence": 0.9980469, "end": 385.375, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 1, "start": 385.135, "word": "so" }, { "confidence": 0.9980469, "end": 385.535, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 1, "start": 385.375, "word": "i" }, { "confidence": 0.9838867, "end": 385.695, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 385.535, "word": "like" }, { "confidence": 1, "end": 385.855, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 385.695, "word": "to" }, { "confidence": 1, "end": 386.17502, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 1, "start": 385.855, "word": "create" }, { "confidence": 1, "end": 386.33502, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 1, "start": 386.17502, "word": "my" }, { "confidence": 1, "end": 386.83502, "punctuated_word": "layers", "speaker": 0, "speaker_confidence": 1, "start": 386.33502, "word": "layers" }, { "confidence": 0.99902344, "end": 387.215, "punctuated_word": "inside", "speaker": 0, "speaker_confidence": 1, "start": 386.89502, "word": "inside" }, { "confidence": 0.99902344, "end": 387.375, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 387.215, "word": "of" }, { "confidence": 0.99902344, "end": 387.535, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 387.375, "word": "a" }, { "confidence": 0.9995117, "end": 388.035, "punctuated_word": "function.", "speaker": 0, "speaker_confidence": 1, "start": 387.535, "word": "function" }, { "confidence": 0.859375, "end": 388.69, "punctuated_word": "Anytime", "speaker": 0, "speaker_confidence": 1, "start": 388.37, "word": "anytime" }, { "confidence": 0.9970703, "end": 388.93, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 1, "start": 388.69, "word": "your" }, { "confidence": 0.9980469, "end": 389.16998, "punctuated_word": "map", "speaker": 0, "speaker_confidence": 1, "start": 388.93, "word": "map" }, { "confidence": 0.9970703, "end": 389.41, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 1, "start": 389.16998, "word": "or" }, { "confidence": 0.9980469, "end": 389.72998, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 1, "start": 389.41, "word": "data" }, { "confidence": 0.9909668, "end": 390.13, "punctuated_word": "changes,", "speaker": 0, "speaker_confidence": 1, "start": 389.72998, "word": "changes" }, { "confidence": 1, "end": 390.37, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 390.13, "word": "you" }, { "confidence": 0.9970703, "end": 390.53, "punctuated_word": "tell", "speaker": 0, "speaker_confidence": 1, "start": 390.37, "word": "tell" }, { "confidence": 0.9550781, "end": 390.85, "punctuated_word": "deck", "speaker": 0, "speaker_confidence": 1, "start": 390.53, "word": "deck" }, { "confidence": 0.3449707, "end": 391.16998, "punctuated_word": "gl", "speaker": 0, "speaker_confidence": 1, "start": 390.85, "word": "gl" }, { "confidence": 0.9980469, "end": 391.33, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 391.16998, "word": "to" }, { "confidence": 0.9970703, "end": 391.81, "punctuated_word": "rebuild", "speaker": 0, "speaker_confidence": 1, "start": 391.33, "word": "rebuild" }, { "confidence": 1, "end": 391.97, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 391.81, "word": "the" }, { "confidence": 1, "end": 392.28998, "punctuated_word": "entire", "speaker": 0, "speaker_confidence": 1, "start": 391.97, "word": "entire" }, { "confidence": 0.99902344, "end": 392.78998, "punctuated_word": "map.", "speaker": 0, "speaker_confidence": 1, "start": 392.28998, "word": "map" }, { "confidence": 0.99902344, "end": 393.00998, "punctuated_word": "Under", "speaker": 0, "speaker_confidence": 1, "start": 392.85, "word": "under" }, { "confidence": 1, "end": 393.16998, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 393.00998, "word": "the" }, { "confidence": 0.94799805, "end": 393.33, "punctuated_word": "hood,", "speaker": 0, "speaker_confidence": 1, "start": 393.16998, "word": "hood" }, { "confidence": 0.99853516, "end": 393.56998, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 1, "start": 393.33, "word": "it's" }, { "confidence": 1, "end": 393.72998, "punctuated_word": "looking", "speaker": 0, "speaker_confidence": 1, "start": 393.56998, "word": "looking" }, { "confidence": 0.9970703, "end": 393.97, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 1, "start": 393.72998, "word": "at" }, { "confidence": 0.96240234, "end": 394.05, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 393.97, "word": "the" }, { "confidence": 0.9482422, "end": 394.28998, "punctuated_word": "diff", "speaker": 0, "speaker_confidence": 0.83496094, "start": 394.05, "word": "diff" }, { "confidence": 0.9951172, "end": 394.53, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.83496094, "start": 394.28998, "word": "to" }, { "confidence": 0.9980469, "end": 394.77, "punctuated_word": "update", "speaker": 0, "speaker_confidence": 0.83496094, "start": 394.53, "word": "update" }, { "confidence": 0.99902344, "end": 395.09, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 0.83496094, "start": 394.77, "word": "things" }, { "confidence": 0.8972168, "end": 395.59, "punctuated_word": "efficiently,", "speaker": 0, "speaker_confidence": 0.83496094, "start": 395.09, "word": "efficiently" }, { "confidence": 0.99902344, "end": 395.97, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 0.83496094, "start": 395.72998, "word": "very" }, { "confidence": 0.99902344, "end": 396.37, "punctuated_word": "similar", "speaker": 0, "speaker_confidence": 0.83496094, "start": 395.97, "word": "similar" }, { "confidence": 0.9980469, "end": 396.53, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.83496094, "start": 396.37, "word": "to" }, { "confidence": 0.6425781, "end": 396.93, "punctuated_word": "React", "speaker": 0, "speaker_confidence": 0.83496094, "start": 396.53, "word": "react" }, { "confidence": 0.861084, "end": 397.43, "punctuated_word": "JS.", "speaker": 0, "speaker_confidence": 0.83496094, "start": 396.93, "word": "js" }, { "confidence": 0.9921875, "end": 397.685, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.83496094, "start": 397.525, "word": "it" }, { "confidence": 1, "end": 397.845, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.83496094, "start": 397.685, "word": "can" }, { "confidence": 1, "end": 397.92502, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 1, "start": 397.845, "word": "do" }, { "confidence": 1, "end": 398.245, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 397.92502, "word": "that" }, { "confidence": 0.9633789, "end": 398.64502, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 1, "start": 398.245, "word": "because" }, { "confidence": 0.99902344, "end": 398.805, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 1, "start": 398.64502, "word": "every" }, { "confidence": 1, "end": 399.20502, "punctuated_word": "layer", "speaker": 0, "speaker_confidence": 1, "start": 398.805, "word": "layer" }, { "confidence": 0.99902344, "end": 399.36502, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 399.20502, "word": "is" }, { "confidence": 1, "end": 399.765, "punctuated_word": "required", "speaker": 0, "speaker_confidence": 1, "start": 399.36502, "word": "required" }, { "confidence": 1, "end": 399.92502, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 399.765, "word": "to" }, { "confidence": 1, "end": 400.165, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 1, "start": 399.92502, "word": "have" }, { "confidence": 0.9970703, "end": 400.245, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 400.165, "word": "a" }, { "confidence": 0.9980469, "end": 400.64502, "punctuated_word": "unique", "speaker": 0, "speaker_confidence": 1, "start": 400.245, "word": "unique" }, { "confidence": 0.9265137, "end": 401.14502, "punctuated_word": "ID,", "speaker": 0, "speaker_confidence": 1, "start": 400.64502, "word": "id" }, { "confidence": 1, "end": 401.36502, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 401.20502, "word": "and" }, { "confidence": 0.98291016, "end": 401.605, "punctuated_word": "deck", "speaker": 0, "speaker_confidence": 1, "start": 401.36502, "word": "deck" }, { "confidence": 0.37768555, "end": 401.92502, "punctuated_word": "gl", "speaker": 0, "speaker_confidence": 1, "start": 401.605, "word": "gl" }, { "confidence": 0.99902344, "end": 402.245, "punctuated_word": "uses", "speaker": 0, "speaker_confidence": 1, "start": 401.92502, "word": "uses" }, { "confidence": 0.99902344, "end": 402.405, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 402.245, "word": "that" }, { "confidence": 0.99609375, "end": 402.565, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 402.405, "word": "to" }, { "confidence": 1, "end": 402.805, "punctuated_word": "track", "speaker": 0, "speaker_confidence": 1, "start": 402.565, "word": "track" }, { "confidence": 0.97998047, "end": 402.965, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 402.805, "word": "the" }, { "confidence": 1, "end": 403.36502, "punctuated_word": "changes", "speaker": 0, "speaker_confidence": 1, "start": 402.965, "word": "changes" }, { "confidence": 1, "end": 403.525, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 403.36502, "word": "for" }, { "confidence": 1, "end": 403.765, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 403.525, "word": "that" }, { "confidence": 1, "end": 404.165, "punctuated_word": "specific", "speaker": 0, "speaker_confidence": 1, "start": 403.765, "word": "specific" }, { "confidence": 0.9995117, "end": 404.665, "punctuated_word": "layer.", "speaker": 0, "speaker_confidence": 1, "start": 404.165, "word": "layer" }, { "confidence": 0.692749, "end": 404.89713, "punctuated_word": "It.", "speaker": 0, "speaker_confidence": 1, "start": 404.67, "word": "it" }, { "confidence": 0.9980469, "end": 405.12427, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 1, "start": 404.89713, "word": "the" }, { "confidence": 1, "end": 405.35138, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 1, "start": 405.12427, "word": "next" }, { "confidence": 0.99902344, "end": 405.57852, "punctuated_word": "option", "speaker": 0, "speaker_confidence": 1, "start": 405.35138, "word": "option" }, { "confidence": 0.97802734, "end": 405.80563, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 405.57852, "word": "that" }, { "confidence": 0.9970703, "end": 406.03278, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 1, "start": 405.80563, "word": "you'll" }, { "confidence": 1, "end": 406.2599, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 1, "start": 406.03278, "word": "need" }, { "confidence": 0.99902344, "end": 406.487, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 406.2599, "word": "to" }, { "confidence": 1, "end": 406.71414, "punctuated_word": "pass", "speaker": 0, "speaker_confidence": 1, "start": 406.487, "word": "pass" }, { "confidence": 0.99902344, "end": 406.94125, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 406.71414, "word": "is" }, { "confidence": 0.99902344, "end": 407.1684, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 406.94125, "word": "the" }, { "confidence": 0.9885254, "end": 407.3955, "punctuated_word": "data.", "speaker": 0, "speaker_confidence": 1, "start": 407.1684, "word": "data" }, { "confidence": 0.99902344, "end": 407.62265, "punctuated_word": "So", "speaker": 0, "speaker_confidence": 1, "start": 407.3955, "word": "so" }, { "confidence": 0.96435547, "end": 407.84976, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 407.62265, "word": "in" }, { "confidence": 1, "end": 408.07687, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 1, "start": 407.84976, "word": "our" }, { "confidence": 0.9914551, "end": 408.30402, "punctuated_word": "case,", "speaker": 0, "speaker_confidence": 1, "start": 408.07687, "word": "case" }, { "confidence": 1, "end": 408.53113, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 1, "start": 408.30402, "word": "this" }, { "confidence": 0.9790039, "end": 408.75827, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 1, "start": 408.53113, "word": "will" }, { "confidence": 0.9589844, "end": 408.98538, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 1, "start": 408.75827, "word": "just" }, { "confidence": 0.99902344, "end": 409.21252, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 1, "start": 408.98538, "word": "be" }, { "confidence": 0.9970703, "end": 409.43964, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 409.21252, "word": "the" }, { "confidence": 1, "end": 409.66675, "punctuated_word": "path", "speaker": 0, "speaker_confidence": 1, "start": 409.43964, "word": "path" }, { "confidence": 1, "end": 409.8939, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 409.66675, "word": "to" }, { "confidence": 0.9970703, "end": 410.121, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 409.8939, "word": "the" }, { "confidence": 0.99902344, "end": 410.34814, "punctuated_word": "local", "speaker": 0, "speaker_confidence": 1, "start": 410.121, "word": "local" }, { "confidence": 0.9838867, "end": 410.57526, "punctuated_word": "JSON", "speaker": 0, "speaker_confidence": 1, "start": 410.34814, "word": "json" }, { "confidence": 0.9797363, "end": 410.80237, "punctuated_word": "file,", "speaker": 0, "speaker_confidence": 1, "start": 410.57526, "word": "file" }, { "confidence": 1, "end": 411.0295, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 1, "start": 410.80237, "word": "but" }, { "confidence": 0.99902344, "end": 411.25662, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 1, "start": 411.0295, "word": "this" }, { "confidence": 0.99121094, "end": 411.48376, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 1, "start": 411.25662, "word": "could" }, { "confidence": 0.9980469, "end": 411.71088, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 1, "start": 411.48376, "word": "also" }, { "confidence": 1, "end": 411.93802, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 1, "start": 411.71088, "word": "be" }, { "confidence": 0.9980469, "end": 412.16513, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 411.93802, "word": "a" }, { "confidence": 0.99316406, "end": 412.39224, "punctuated_word": "remote", "speaker": 0, "speaker_confidence": 0.85546875, "start": 412.16513, "word": "remote" }, { "confidence": 0.98535156, "end": 412.6194, "punctuated_word": "URL", "speaker": 0, "speaker_confidence": 0.85546875, "start": 412.39224, "word": "url" }, { "confidence": 0.8442383, "end": 412.8465, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.85546875, "start": 412.6194, "word": "or" }, { "confidence": 1, "end": 413.07364, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.85546875, "start": 412.8465, "word": "a" }, { "confidence": 0.57910156, "end": 413.30075, "punctuated_word": "promise", "speaker": 0, "speaker_confidence": 0.85546875, "start": 413.07364, "word": "promise" }, { "confidence": 1, "end": 413.5279, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.85546875, "start": 413.30075, "word": "that" }, { "confidence": 0.99902344, "end": 413.755, "punctuated_word": "resolves", "speaker": 0, "speaker_confidence": 0.85546875, "start": 413.5279, "word": "resolves" }, { "confidence": 0.7836914, "end": 413.995, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.85546875, "start": 413.755, "word": "to" }, { "confidence": 0.99609375, "end": 414.155, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.85546875, "start": 413.995, "word": "the" }, { "confidence": 0.9970703, "end": 414.635, "punctuated_word": "JSON", "speaker": 0, "speaker_confidence": 0.85546875, "start": 414.155, "word": "json" }, { "confidence": 0.970459, "end": 415.135, "punctuated_word": "object.", "speaker": 0, "speaker_confidence": 0.85546875, "start": 414.635, "word": "object" }, { "confidence": 1, "end": 415.755, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.85546875, "start": 415.435, "word": "now" }, { "confidence": 0.75146484, "end": 415.915, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 0.85546875, "start": 415.755, "word": "every" }, { "confidence": 1, "end": 416.23502, "punctuated_word": "layer", "speaker": 0, "speaker_confidence": 0.85546875, "start": 415.915, "word": "layer" }, { "confidence": 1, "end": 416.475, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.85546875, "start": 416.23502, "word": "has" }, { "confidence": 1, "end": 416.555, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.85546875, "start": 416.475, "word": "a" }, { "confidence": 1, "end": 416.875, "punctuated_word": "variety", "speaker": 0, "speaker_confidence": 0.85546875, "start": 416.555, "word": "variety" }, { "confidence": 1, "end": 417.035, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.85546875, "start": 416.875, "word": "of" }, { "confidence": 0.99609375, "end": 417.435, "punctuated_word": "optional", "speaker": 0, "speaker_confidence": 0.85546875, "start": 417.035, "word": "optional" }, { "confidence": 1, "end": 417.835, "punctuated_word": "parameters", "speaker": 0, "speaker_confidence": 0.85546875, "start": 417.435, "word": "parameters" }, { "confidence": 0.98535156, "end": 417.915, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.85546875, "start": 417.835, "word": "that" }, { "confidence": 1, "end": 417.995, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.9277344, "start": 417.915, "word": "you" }, { "confidence": 0.99902344, "end": 418.23502, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9277344, "start": 417.995, "word": "can" }, { "confidence": 1, "end": 418.475, "punctuated_word": "pass", "speaker": 0, "speaker_confidence": 0.9277344, "start": 418.23502, "word": "pass" }, { "confidence": 0.9951172, "end": 418.715, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9277344, "start": 418.475, "word": "to" }, { "confidence": 0.9980469, "end": 419.195, "punctuated_word": "customize", "speaker": 0, "speaker_confidence": 0.9277344, "start": 418.715, "word": "customize" }, { "confidence": 1, "end": 419.355, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9277344, "start": 419.195, "word": "the" }, { "confidence": 0.99902344, "end": 419.595, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 0.9277344, "start": 419.355, "word": "way" }, { "confidence": 0.9873047, "end": 419.755, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9277344, "start": 419.595, "word": "the" }, { "confidence": 0.99902344, "end": 420.075, "punctuated_word": "points", "speaker": 0, "speaker_confidence": 0.9277344, "start": 419.755, "word": "points" }, { "confidence": 0.99902344, "end": 420.315, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.9277344, "start": 420.075, "word": "are" }, { "confidence": 0.98168945, "end": 420.815, "punctuated_word": "displayed.", "speaker": 0, "speaker_confidence": 0.9277344, "start": 420.315, "word": "displayed" }, { "confidence": 0.99609375, "end": 421.18, "punctuated_word": "Things", "speaker": 0, "speaker_confidence": 0.9277344, "start": 420.93997, "word": "things" }, { "confidence": 0.9980469, "end": 421.34, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.9277344, "start": 421.18, "word": "like" }, { "confidence": 0.9633789, "end": 421.84, "punctuated_word": "opacity", "speaker": 0, "speaker_confidence": 0.9277344, "start": 421.34, "word": "opacity" }, { "confidence": 0.9892578, "end": 422.21997, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9277344, "start": 421.97998, "word": "and" }, { "confidence": 0.99121094, "end": 422.53998, "punctuated_word": "pixel", "speaker": 0, "speaker_confidence": 0.9277344, "start": 422.21997, "word": "pixel" }, { "confidence": 0.85058594, "end": 422.93997, "punctuated_word": "radius", "speaker": 0, "speaker_confidence": 0.9277344, "start": 422.53998, "word": "radius" }, { "confidence": 0.9980469, "end": 423.09998, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.9277344, "start": 422.93997, "word": "are" }, { "confidence": 0.98828125, "end": 423.34, "punctuated_word": "pretty", "speaker": 0, "speaker_confidence": 0.9277344, "start": 423.09998, "word": "pretty" }, { "confidence": 1, "end": 423.58, "punctuated_word": "self", "speaker": 0, "speaker_confidence": 0.9277344, "start": 423.34, "word": "self" }, { "confidence": 0.9995117, "end": 424.08, "punctuated_word": "explanatory.", "speaker": 0, "speaker_confidence": 0.9277344, "start": 423.58, "word": "explanatory" }, { "confidence": 0.99902344, "end": 424.86, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.9277344, "start": 424.53998, "word": "now" }, { "confidence": 0.9838867, "end": 425.02, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.9277344, "start": 424.86, "word": "for" }, { "confidence": 0.99902344, "end": 425.18, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 1, "start": 425.02, "word": "every" }, { "confidence": 0.9980469, "end": 425.41998, "punctuated_word": "point", "speaker": 0, "speaker_confidence": 1, "start": 425.18, "word": "point" }, { "confidence": 0.99121094, "end": 425.5, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 425.41998, "word": "in" }, { "confidence": 0.9892578, "end": 425.65997, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 425.5, "word": "the" }, { "confidence": 0.9892578, "end": 426.15997, "punctuated_word": "dataset,", "speaker": 0, "speaker_confidence": 1, "start": 425.65997, "word": "dataset" }, { "confidence": 0.8959961, "end": 426.53998, "punctuated_word": "deck", "speaker": 0, "speaker_confidence": 1, "start": 426.21997, "word": "deck" }, { "confidence": 0.40966797, "end": 426.86, "punctuated_word": "gl", "speaker": 0, "speaker_confidence": 1, "start": 426.53998, "word": "gl" }, { "confidence": 0.99902344, "end": 427.02, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 426.86, "word": "is" }, { "confidence": 0.9873047, "end": 427.25998, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 1, "start": 427.02, "word": "going" }, { "confidence": 0.99902344, "end": 427.34, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 427.25998, "word": "to" }, { "confidence": 0.9970703, "end": 427.58, "punctuated_word": "call", "speaker": 0, "speaker_confidence": 1, "start": 427.34, "word": "call" }, { "confidence": 0.96777344, "end": 427.74, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 427.58, "word": "the" }, { "confidence": 1, "end": 428.24, "punctuated_word": "function", "speaker": 0, "speaker_confidence": 1, "start": 427.74, "word": "function" }, { "confidence": 0.99316406, "end": 428.46, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 428.3, "word": "that" }, { "confidence": 0.99902344, "end": 428.62, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 428.46, "word": "you" }, { "confidence": 0.9863281, "end": 428.93997, "punctuated_word": "pass", "speaker": 0, "speaker_confidence": 1, "start": 428.62, "word": "pass" }, { "confidence": 1, "end": 429.18, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 428.93997, "word": "to" }, { "confidence": 0.9760742, "end": 429.34, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 1, "start": 429.18, "word": "get" }, { "confidence": 0.91308594, "end": 429.84, "punctuated_word": "position.", "speaker": 0, "speaker_confidence": 1, "start": 429.34, "word": "position" }, { "confidence": 0.99121094, "end": 430.415, "punctuated_word": "So", "speaker": 0, "speaker_confidence": 1, "start": 430.175, "word": "so" }, { "confidence": 0.82714844, "end": 430.575, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 1, "start": 430.415, "word": "get" }, { "confidence": 0.9604492, "end": 431.075, "punctuated_word": "position", "speaker": 0, "speaker_confidence": 1, "start": 430.575, "word": "position" }, { "confidence": 1, "end": 431.375, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 431.135, "word": "is" }, { "confidence": 0.99902344, "end": 431.615, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 1, "start": 431.375, "word": "very" }, { "confidence": 1, "end": 431.935, "punctuated_word": "similar", "speaker": 0, "speaker_confidence": 1, "start": 431.615, "word": "similar" }, { "confidence": 0.9980469, "end": 432.095, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 431.935, "word": "to" }, { "confidence": 0.9921875, "end": 432.255, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 432.095, "word": "a" }, { "confidence": 0.78759766, "end": 432.495, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 432.255, "word": "for" }, { "confidence": 0.9716797, "end": 432.655, "punctuated_word": "each", "speaker": 0, "speaker_confidence": 1, "start": 432.495, "word": "each" }, { "confidence": 0.9970703, "end": 433.135, "punctuated_word": "loop", "speaker": 0, "speaker_confidence": 1, "start": 432.655, "word": "loop" }, { "confidence": 0.5986328, "end": 433.455, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 1, "start": 433.135, "word": "where" }, { "confidence": 0.9838867, "end": 433.775, "punctuated_word": "d", "speaker": 0, "speaker_confidence": 1, "start": 433.455, "word": "d" }, { "confidence": 0.9980469, "end": 434.255, "punctuated_word": "represents", "speaker": 0, "speaker_confidence": 1, "start": 433.775, "word": "represents" }, { "confidence": 0.9970703, "end": 434.495, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 434.255, "word": "an" }, { "confidence": 1, "end": 434.995, "punctuated_word": "individual", "speaker": 0, "speaker_confidence": 1, "start": 434.495, "word": "individual" }, { "confidence": 1, "end": 435.535, "punctuated_word": "object", "speaker": 0, "speaker_confidence": 1, "start": 435.135, "word": "object" }, { "confidence": 1, "end": 435.615, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 435.535, "word": "in" }, { "confidence": 1, "end": 435.775, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 435.615, "word": "the" }, { "confidence": 0.84643555, "end": 436.275, "punctuated_word": "dataset.", "speaker": 0, "speaker_confidence": 1, "start": 435.775, "word": "dataset" }, { "confidence": 0.9980469, "end": 436.73502, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 1, "start": 436.495, "word": "the" }, { "confidence": 1, "end": 437.055, "punctuated_word": "function", "speaker": 0, "speaker_confidence": 1, "start": 436.73502, "word": "function" }, { "confidence": 1, "end": 437.295, "punctuated_word": "needs", "speaker": 0, "speaker_confidence": 1, "start": 437.055, "word": "needs" }, { "confidence": 1, "end": 437.375, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 437.295, "word": "to" }, { "confidence": 1, "end": 437.695, "punctuated_word": "return", "speaker": 0, "speaker_confidence": 1, "start": 437.375, "word": "return" }, { "confidence": 0.9921875, "end": 437.855, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 437.695, "word": "an" }, { "confidence": 0.99902344, "end": 438.175, "punctuated_word": "array", "speaker": 0, "speaker_confidence": 1, "start": 437.855, "word": "array" }, { "confidence": 0.99902344, "end": 438.335, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 438.175, "word": "of" }, { "confidence": 0.9970703, "end": 438.495, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 438.335, "word": "the" }, { "confidence": 0.9941406, "end": 438.995, "punctuated_word": "longitude", "speaker": 0, "speaker_confidence": 1, "start": 438.495, "word": "longitude" }, { "confidence": 0.7973633, "end": 439.51, "punctuated_word": "point", "speaker": 0, "speaker_confidence": 1, "start": 439.055, "word": "point" }, { "confidence": 0.9277344, "end": 439.67, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 439.51, "word": "and" }, { "confidence": 0.8222656, "end": 439.83002, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 439.67, "word": "the" }, { "confidence": 0.8857422, "end": 440.23, "punctuated_word": "latitude", "speaker": 0, "speaker_confidence": 1, "start": 439.83002, "word": "latitude" }, { "confidence": 0.98535156, "end": 440.55002, "punctuated_word": "point", "speaker": 0, "speaker_confidence": 1, "start": 440.23, "word": "point" }, { "confidence": 0.6381836, "end": 440.79, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 440.55002, "word": "in" }, { "confidence": 1, "end": 440.95, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 440.79, "word": "that" }, { "confidence": 0.99560547, "end": 441.45, "punctuated_word": "order.", "speaker": 0, "speaker_confidence": 1, "start": 440.95, "word": "order" }, { "confidence": 0.99902344, "end": 441.83002, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 1, "start": 441.59, "word": "it's" }, { "confidence": 1, "end": 442.07, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 1, "start": 441.83002, "word": "not" }, { "confidence": 0.86572266, "end": 442.47, "punctuated_word": "latitude", "speaker": 0, "speaker_confidence": 1, "start": 442.07, "word": "latitude" }, { "confidence": 0.93066406, "end": 442.97, "punctuated_word": "longitude", "speaker": 0, "speaker_confidence": 1, "start": 442.47, "word": "longitude" }, { "confidence": 0.88964844, "end": 443.19, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 443.03, "word": "like" }, { "confidence": 0.9980469, "end": 443.35, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 443.19, "word": "you" }, { "confidence": 0.9980469, "end": 443.51, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 1, "start": 443.35, "word": "might" }, { "confidence": 0.99902344, "end": 443.67, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 1, "start": 443.51, "word": "see" }, { "confidence": 0.98291016, "end": 443.83002, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 443.67, "word": "in" }, { "confidence": 0.9980469, "end": 444.07, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 1, "start": 443.83002, "word": "other" }, { "confidence": 0.99609375, "end": 444.31, "punctuated_word": "map", "speaker": 0, "speaker_confidence": 1, "start": 444.07, "word": "map" }, { "confidence": 0.8527832, "end": 444.81, "punctuated_word": "programs,", "speaker": 0, "speaker_confidence": 1, "start": 444.31, "word": "programs" }, { "confidence": 0.9975586, "end": 445.11002, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 1, "start": 444.95, "word": "it's" }, { "confidence": 0.99609375, "end": 445.35, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 445.11002, "word": "the" }, { "confidence": 0.9980469, "end": 445.51, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 1, "start": 445.35, "word": "more" }, { "confidence": 0.9995117, "end": 446.01, "punctuated_word": "mathematically", "speaker": 0, "speaker_confidence": 1, "start": 445.51, "word": "mathematically" }, { "confidence": 1, "end": 446.39, "punctuated_word": "correct", "speaker": 0, "speaker_confidence": 1, "start": 446.07, "word": "correct" }, { "confidence": 1, "end": 446.89, "punctuated_word": "format", "speaker": 0, "speaker_confidence": 1, "start": 446.39, "word": "format" }, { "confidence": 0.99902344, "end": 447.11002, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 446.95, "word": "of" }, { "confidence": 0.8720703, "end": 447.35, "punctuated_word": "x", "speaker": 0, "speaker_confidence": 1, "start": 447.11002, "word": "x" }, { "confidence": 0.88061523, "end": 447.85, "punctuated_word": "y.", "speaker": 0, "speaker_confidence": 1, "start": 447.35, "word": "y" }, { "confidence": 0.9980469, "end": 448.255, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 1, "start": 448.095, "word": "you" }, { "confidence": 1, "end": 448.335, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 448.255, "word": "can" }, { "confidence": 0.99902344, "end": 448.575, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 1, "start": 448.335, "word": "also" }, { "confidence": 1, "end": 448.815, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 1, "start": 448.575, "word": "use" }, { "confidence": 0.99902344, "end": 449.215, "punctuated_word": "functions", "speaker": 0, "speaker_confidence": 1, "start": 448.815, "word": "functions" }, { "confidence": 1, "end": 449.375, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 449.215, "word": "to" }, { "confidence": 0.9921875, "end": 449.775, "punctuated_word": "compute", "speaker": 0, "speaker_confidence": 1, "start": 449.375, "word": "compute" }, { "confidence": 1, "end": 450.01498, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 1, "start": 449.775, "word": "other" }, { "confidence": 0.7578125, "end": 450.51498, "punctuated_word": "properties,", "speaker": 0, "speaker_confidence": 1, "start": 450.01498, "word": "properties" }, { "confidence": 1, "end": 450.815, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 450.575, "word": "like" }, { "confidence": 0.9589844, "end": 450.975, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 450.815, "word": "the" }, { "confidence": 0.99902344, "end": 451.375, "punctuated_word": "actual", "speaker": 0, "speaker_confidence": 1, "start": 450.975, "word": "actual" }, { "confidence": 0.99316406, "end": 451.615, "punctuated_word": "fill", "speaker": 0, "speaker_confidence": 1, "start": 451.375, "word": "fill" }, { "confidence": 0.9951172, "end": 451.935, "punctuated_word": "color", "speaker": 0, "speaker_confidence": 1, "start": 451.615, "word": "color" }, { "confidence": 1, "end": 452.095, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 1, "start": 451.935, "word": "on" }, { "confidence": 0.95410156, "end": 452.255, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 452.095, "word": "the" }, { "confidence": 0.9980469, "end": 452.575, "punctuated_word": "scatter", "speaker": 0, "speaker_confidence": 1, "start": 452.255, "word": "scatter" }, { "confidence": 0.7619629, "end": 453.075, "punctuated_word": "plot.", "speaker": 0, "speaker_confidence": 1, "start": 452.575, "word": "plot" }, { "confidence": 0.99902344, "end": 453.29498, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.7080078, "start": 453.215, "word": "in" }, { "confidence": 1, "end": 453.455, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.7080078, "start": 453.29498, "word": "this" }, { "confidence": 0.9995117, "end": 453.775, "punctuated_word": "case,", "speaker": 0, "speaker_confidence": 0.7080078, "start": 453.455, "word": "case" }, { "confidence": 0.9921875, "end": 453.935, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.7080078, "start": 453.775, "word": "i'm" }, { "confidence": 1, "end": 454.255, "punctuated_word": "looking", "speaker": 0, "speaker_confidence": 0.7080078, "start": 453.935, "word": "looking" }, { "confidence": 0.9970703, "end": 454.415, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.7080078, "start": 454.255, "word": "at" }, { "confidence": 0.93847656, "end": 454.575, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.7080078, "start": 454.415, "word": "if" }, { "confidence": 1, "end": 454.735, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7080078, "start": 454.575, "word": "the" }, { "confidence": 0.99902344, "end": 455.055, "punctuated_word": "number", "speaker": 0, "speaker_confidence": 0.7080078, "start": 454.735, "word": "number" }, { "confidence": 0.99902344, "end": 455.135, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7080078, "start": 455.055, "word": "of" }, { "confidence": 1, "end": 455.455, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.7080078, "start": 455.135, "word": "people" }, { "confidence": 0.99902344, "end": 455.695, "punctuated_word": "killed", "speaker": 0, "speaker_confidence": 0.7080078, "start": 455.455, "word": "killed" }, { "confidence": 0.9970703, "end": 455.775, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9316406, "start": 455.695, "word": "in" }, { "confidence": 1, "end": 455.935, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.9316406, "start": 455.775, "word": "this" }, { "confidence": 1, "end": 456.415, "punctuated_word": "incident", "speaker": 0, "speaker_confidence": 0.9316406, "start": 455.935, "word": "incident" }, { "confidence": 0.99902344, "end": 456.495, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9316406, "start": 456.415, "word": "is" }, { "confidence": 1, "end": 456.815, "punctuated_word": "greater", "speaker": 0, "speaker_confidence": 0.9316406, "start": 456.495, "word": "greater" }, { "confidence": 0.99902344, "end": 457.055, "punctuated_word": "than", "speaker": 0, "speaker_confidence": 0.9316406, "start": 456.815, "word": "than" }, { "confidence": 0.95214844, "end": 457.29498, "punctuated_word": "0,", "speaker": 0, "speaker_confidence": 0.9316406, "start": 457.055, "word": "0" }, { "confidence": 0.8857422, "end": 457.5, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9316406, "start": 457.29498, "word": "in" }, { "confidence": 0.9892578, "end": 457.75684, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9316406, "start": 457.5, "word": "in" }, { "confidence": 0.9970703, "end": 458.01367, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.9316406, "start": 457.75684, "word": "which" }, { "confidence": 1, "end": 458.2705, "punctuated_word": "case", "speaker": 0, "speaker_confidence": 0.9316406, "start": 458.01367, "word": "case" }, { "confidence": 0.9133301, "end": 458.52734, "punctuated_word": "I'll", "speaker": 0, "speaker_confidence": 0.9316406, "start": 458.2705, "word": "i'll" }, { "confidence": 1, "end": 458.78418, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.9316406, "start": 458.52734, "word": "make" }, { "confidence": 0.9970703, "end": 459.041, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9316406, "start": 458.78418, "word": "the" }, { "confidence": 0.984375, "end": 459.29782, "punctuated_word": "dot", "speaker": 0, "speaker_confidence": 0.9316406, "start": 459.041, "word": "dot" }, { "confidence": 0.7019043, "end": 459.55466, "punctuated_word": "red,", "speaker": 0, "speaker_confidence": 0.9316406, "start": 459.29782, "word": "red" }, { "confidence": 0.9970703, "end": 459.8115, "punctuated_word": "otherwise", "speaker": 0, "speaker_confidence": 0.9316406, "start": 459.55466, "word": "otherwise" }, { "confidence": 0.85180664, "end": 460.06833, "punctuated_word": "I'll", "speaker": 0, "speaker_confidence": 0.9316406, "start": 459.8115, "word": "i'll" }, { "confidence": 1, "end": 460.32516, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.9316406, "start": 460.06833, "word": "make" }, { "confidence": 1, "end": 460.582, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.9316406, "start": 460.32516, "word": "it" }, { "confidence": 0.99902344, "end": 460.83884, "punctuated_word": "orange", "speaker": 0, "speaker_confidence": 0.9316406, "start": 460.582, "word": "orange" }, { "confidence": 0.6616211, "end": 461.09567, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.9316406, "start": 460.83884, "word": "which" }, { "confidence": 1, "end": 461.3525, "punctuated_word": "means", "speaker": 0, "speaker_confidence": 0.9316406, "start": 461.09567, "word": "means" }, { "confidence": 0.99609375, "end": 461.6093, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9316406, "start": 461.3525, "word": "that" }, { "confidence": 1, "end": 461.86615, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.9316406, "start": 461.6093, "word": "there" }, { "confidence": 0.98828125, "end": 462.123, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.9316406, "start": 461.86615, "word": "are" }, { "confidence": 1, "end": 462.37982, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.9316406, "start": 462.123, "word": "only" }, { "confidence": 0.92871094, "end": 462.63666, "punctuated_word": "injuries.", "speaker": 0, "speaker_confidence": 0.9316406, "start": 462.37982, "word": "injuries" }, { "confidence": 0.99609375, "end": 462.8935, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.9316406, "start": 462.63666, "word": "and" }, { "confidence": 0.984375, "end": 463.15033, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.9316406, "start": 462.8935, "word": "that's" }, { "confidence": 1, "end": 463.40717, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.9316406, "start": 463.15033, "word": "all" }, { "confidence": 1, "end": 463.664, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.9316406, "start": 463.40717, "word": "it" }, { "confidence": 1, "end": 463.92084, "punctuated_word": "takes", "speaker": 0, "speaker_confidence": 0.9316406, "start": 463.664, "word": "takes" }, { "confidence": 1, "end": 464.17764, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9316406, "start": 463.92084, "word": "to" }, { "confidence": 1, "end": 464.43448, "punctuated_word": "define", "speaker": 0, "speaker_confidence": 0.9316406, "start": 464.17764, "word": "define" }, { "confidence": 1, "end": 464.6913, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9316406, "start": 464.43448, "word": "a" }, { "confidence": 0.5529785, "end": 464.94815, "punctuated_word": "scatterplot", "speaker": 0, "speaker_confidence": 0.9316406, "start": 464.6913, "word": "scatterplot" }, { "confidence": 0.9758301, "end": 465.205, "punctuated_word": "layer.", "speaker": 0, "speaker_confidence": 0.9316406, "start": 464.94815, "word": "layer" }, { "confidence": 0.9980469, "end": 465.44498, "punctuated_word": "From", "speaker": 0, "speaker_confidence": 0.89746094, "start": 465.28497, "word": "from" }, { "confidence": 0.9609375, "end": 465.60498, "punctuated_word": "there,", "speaker": 0, "speaker_confidence": 0.89746094, "start": 465.44498, "word": "there" }, { "confidence": 1, "end": 465.685, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.89746094, "start": 465.60498, "word": "i'm" }, { "confidence": 0.99902344, "end": 465.925, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.89746094, "start": 465.685, "word": "going" }, { "confidence": 0.99902344, "end": 466.16498, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.89746094, "start": 465.925, "word": "to" }, { "confidence": 1, "end": 466.485, "punctuated_word": "jump", "speaker": 0, "speaker_confidence": 0.89746094, "start": 466.16498, "word": "jump" }, { "confidence": 1, "end": 466.72498, "punctuated_word": "down", "speaker": 0, "speaker_confidence": 0.89746094, "start": 466.485, "word": "down" }, { "confidence": 0.9980469, "end": 467.04498, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.89746094, "start": 466.72498, "word": "into" }, { "confidence": 1, "end": 467.28497, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.89746094, "start": 467.04498, "word": "the" }, { "confidence": 0.6923828, "end": 467.525, "punctuated_word": "init", "speaker": 0, "speaker_confidence": 0.89746094, "start": 467.28497, "word": "init" }, { "confidence": 0.7324219, "end": 467.76498, "punctuated_word": "map", "speaker": 0, "speaker_confidence": 0.89746094, "start": 467.525, "word": "map" }, { "confidence": 1, "end": 468.085, "punctuated_word": "function", "speaker": 0, "speaker_confidence": 0.89746094, "start": 467.76498, "word": "function" }, { "confidence": 1, "end": 468.245, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.89746094, "start": 468.085, "word": "that" }, { "confidence": 1, "end": 468.32498, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.89746094, "start": 468.245, "word": "we" }, { "confidence": 1, "end": 468.56497, "punctuated_word": "wrote", "speaker": 0, "speaker_confidence": 0.89746094, "start": 468.32498, "word": "wrote" }, { "confidence": 0.99560547, "end": 469.06497, "punctuated_word": "earlier.", "speaker": 0, "speaker_confidence": 0.89746094, "start": 468.56497, "word": "earlier" }, { "confidence": 0.99902344, "end": 469.60498, "punctuated_word": "We'll", "speaker": 0, "speaker_confidence": 0.89746094, "start": 469.44498, "word": "we'll" }, { "confidence": 1, "end": 469.925, "punctuated_word": "define", "speaker": 0, "speaker_confidence": 0.89746094, "start": 469.60498, "word": "define" }, { "confidence": 1, "end": 470.00497, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.89746094, "start": 469.925, "word": "a" }, { "confidence": 1, "end": 470.485, "punctuated_word": "variable", "speaker": 0, "speaker_confidence": 0.89746094, "start": 470.00497, "word": "variable" }, { "confidence": 1, "end": 470.72498, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 0.89746094, "start": 470.485, "word": "called" }, { "confidence": 0.96435547, "end": 471.205, "punctuated_word": "overlay", "speaker": 0, "speaker_confidence": 0.89746094, "start": 470.72498, "word": "overlay" }, { "confidence": 0.9448242, "end": 471.525, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.89746094, "start": 471.205, "word": "that's" }, { "confidence": 1, "end": 471.76498, "punctuated_word": "equal", "speaker": 0, "speaker_confidence": 0.89746094, "start": 471.525, "word": "equal" }, { "confidence": 1, "end": 472.00497, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.89746094, "start": 471.76498, "word": "to" }, { "confidence": 0.9980469, "end": 472.16498, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.89746094, "start": 472.00497, "word": "a" }, { "confidence": 0.9951172, "end": 472.485, "punctuated_word": "Google", "speaker": 0, "speaker_confidence": 0.89746094, "start": 472.16498, "word": "google" }, { "confidence": 0.98095703, "end": 472.805, "punctuated_word": "Maps", "speaker": 0, "speaker_confidence": 0.89746094, "start": 472.485, "word": "maps" }, { "confidence": 0.96240234, "end": 473.205, "punctuated_word": "overlay", "speaker": 0, "speaker_confidence": 0.89746094, "start": 472.805, "word": "overlay" }, { "confidence": 0.77075195, "end": 473.705, "punctuated_word": "instance,", "speaker": 0, "speaker_confidence": 0.89746094, "start": 473.205, "word": "instance" }, { "confidence": 0.69091797, "end": 473.94, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.7783203, "start": 473.86, "word": "then" }, { "confidence": 0.99902344, "end": 474.02, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.7783203, "start": 473.94, "word": "it" }, { "confidence": 1, "end": 474.26, "punctuated_word": "takes", "speaker": 0, "speaker_confidence": 0.7783203, "start": 474.02, "word": "takes" }, { "confidence": 0.99902344, "end": 474.34, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.7783203, "start": 474.26, "word": "an" }, { "confidence": 1, "end": 474.66, "punctuated_word": "array", "speaker": 0, "speaker_confidence": 0.7783203, "start": 474.34, "word": "array" }, { "confidence": 1, "end": 474.74, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7783203, "start": 474.66, "word": "of" }, { "confidence": 1, "end": 475.06, "punctuated_word": "layers", "speaker": 0, "speaker_confidence": 0.7783203, "start": 474.74, "word": "layers" }, { "confidence": 1, "end": 475.22, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7783203, "start": 475.06, "word": "that" }, { "confidence": 0.99902344, "end": 475.38, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.7783203, "start": 475.22, "word": "will" }, { "confidence": 1, "end": 475.54, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.7783203, "start": 475.38, "word": "be" }, { "confidence": 1, "end": 475.78, "punctuated_word": "stacked", "speaker": 0, "speaker_confidence": 0.7783203, "start": 475.54, "word": "stacked" }, { "confidence": 0.99902344, "end": 475.94, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.7783203, "start": 475.78, "word": "on" }, { "confidence": 1, "end": 476.1, "punctuated_word": "top", "speaker": 0, "speaker_confidence": 0.7783203, "start": 475.94, "word": "top" }, { "confidence": 1, "end": 476.18, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7314453, "start": 476.1, "word": "of" }, { "confidence": 1, "end": 476.34, "punctuated_word": "each", "speaker": 0, "speaker_confidence": 0.7314453, "start": 476.18, "word": "each" }, { "confidence": 0.80908203, "end": 476.74, "punctuated_word": "other.", "speaker": 0, "speaker_confidence": 0.7314453, "start": 476.34, "word": "other" }, { "confidence": 1, "end": 476.9, "punctuated_word": "So", "speaker": 0, "speaker_confidence": 0.7314453, "start": 476.74, "word": "so" }, { "confidence": 1, "end": 477.06, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.7314453, "start": 476.9, "word": "we'll" }, { "confidence": 1, "end": 477.13998, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.7314453, "start": 477.06, "word": "go" }, { "confidence": 1, "end": 477.38, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 0.7314453, "start": 477.13998, "word": "ahead" }, { "confidence": 0.99902344, "end": 477.46, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7314453, "start": 477.38, "word": "and" }, { "confidence": 1, "end": 477.62, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.7314453, "start": 477.46, "word": "add" }, { "confidence": 1, "end": 477.86, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.7314453, "start": 477.62, "word": "our" }, { "confidence": 0.92578125, "end": 478.26, "punctuated_word": "scatter", "speaker": 0, "speaker_confidence": 0.7314453, "start": 477.86, "word": "scatter" }, { "confidence": 0.5878906, "end": 478.5, "punctuated_word": "plot", "speaker": 0, "speaker_confidence": 0.7314453, "start": 478.26, "word": "plot" }, { "confidence": 1, "end": 478.74, "punctuated_word": "function", "speaker": 0, "speaker_confidence": 0.87109375, "start": 478.5, "word": "function" }, { "confidence": 0.967041, "end": 479.24, "punctuated_word": "there.", "speaker": 0, "speaker_confidence": 0.87109375, "start": 478.74, "word": "there" }, { "confidence": 0.95703125, "end": 479.78, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.87109375, "start": 479.62, "word": "then" }, { "confidence": 0.9980469, "end": 479.86, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.87109375, "start": 479.78, "word": "the" }, { "confidence": 1, "end": 480.26, "punctuated_word": "final", "speaker": 0, "speaker_confidence": 0.87109375, "start": 479.86, "word": "final" }, { "confidence": 1, "end": 480.5, "punctuated_word": "step", "speaker": 0, "speaker_confidence": 0.87109375, "start": 480.26, "word": "step" }, { "confidence": 1, "end": 480.74, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.87109375, "start": 480.5, "word": "is" }, { "confidence": 1, "end": 480.9, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.87109375, "start": 480.74, "word": "to" }, { "confidence": 1, "end": 481.13998, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.87109375, "start": 480.9, "word": "add" }, { "confidence": 0.97509766, "end": 481.62, "punctuated_word": "overlay", "speaker": 0, "speaker_confidence": 0.87109375, "start": 481.13998, "word": "overlay" }, { "confidence": 0.9873047, "end": 481.86, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.87109375, "start": 481.62, "word": "set" }, { "confidence": 0.9902344, "end": 482.18, "punctuated_word": "map", "speaker": 0, "speaker_confidence": 0.87109375, "start": 481.86, "word": "map" }, { "confidence": 0.9980469, "end": 482.34, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.87109375, "start": 482.18, "word": "with" }, { "confidence": 0.9980469, "end": 482.5, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.87109375, "start": 482.34, "word": "the" }, { "confidence": 0.9980469, "end": 482.9, "punctuated_word": "actual", "speaker": 0, "speaker_confidence": 0.87109375, "start": 482.5, "word": "actual" }, { "confidence": 0.9970703, "end": 483.13998, "punctuated_word": "Google", "speaker": 0, "speaker_confidence": 0.87109375, "start": 482.9, "word": "google" }, { "confidence": 0.99121094, "end": 483.38, "punctuated_word": "Maps", "speaker": 0, "speaker_confidence": 0.87109375, "start": 483.13998, "word": "maps" }, { "confidence": 0.96875, "end": 483.765, "punctuated_word": "instance.", "speaker": 0, "speaker_confidence": 0.87109375, "start": 483.38, "word": "instance" }, { "confidence": 0.921875, "end": 484.265, "punctuated_word": "By", "speaker": 0, "speaker_confidence": 0.87109375, "start": 483.765, "word": "by" }, { "confidence": 0.9267578, "end": 484.565, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.87109375, "start": 484.40503, "word": "so" }, { "confidence": 1, "end": 484.725, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.87109375, "start": 484.565, "word": "that's" }, { "confidence": 1, "end": 484.885, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.79785156, "start": 484.725, "word": "how" }, { "confidence": 1, "end": 485.045, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.79785156, "start": 484.885, "word": "we" }, { "confidence": 0.99902344, "end": 485.445, "punctuated_word": "initialize", "speaker": 0, "speaker_confidence": 0.79785156, "start": 485.045, "word": "initialize" }, { "confidence": 0.9770508, "end": 485.52502, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.79785156, "start": 485.445, "word": "a" }, { "confidence": 1, "end": 485.765, "punctuated_word": "map", "speaker": 0, "speaker_confidence": 0.79785156, "start": 485.52502, "word": "map" }, { "confidence": 1, "end": 485.845, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.79785156, "start": 485.765, "word": "for" }, { "confidence": 0.99902344, "end": 486.005, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.79785156, "start": 485.845, "word": "the" }, { "confidence": 0.8286133, "end": 486.24503, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 0.79785156, "start": 486.005, "word": "first" }, { "confidence": 0.9975586, "end": 486.725, "punctuated_word": "time.", "speaker": 0, "speaker_confidence": 0.79785156, "start": 486.24503, "word": "time" }, { "confidence": 0.99902344, "end": 486.885, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.79785156, "start": 486.725, "word": "if" }, { "confidence": 1, "end": 487.045, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.79785156, "start": 486.885, "word": "you're" }, { "confidence": 1, "end": 487.445, "punctuated_word": "running", "speaker": 0, "speaker_confidence": 0.79785156, "start": 487.045, "word": "running" }, { "confidence": 1, "end": 487.68503, "punctuated_word": "updates", "speaker": 0, "speaker_confidence": 0.79785156, "start": 487.445, "word": "updates" }, { "confidence": 1, "end": 487.92502, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.79785156, "start": 487.68503, "word": "on" }, { "confidence": 0.9135742, "end": 488.005, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.79785156, "start": 487.92502, "word": "a" }, { "confidence": 0.99902344, "end": 488.325, "punctuated_word": "map,", "speaker": 0, "speaker_confidence": 0.79785156, "start": 488.005, "word": "map" }, { "confidence": 1, "end": 488.40503, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.80566406, "start": 488.325, "word": "you" }, { "confidence": 0.99902344, "end": 488.64502, "punctuated_word": "would", "speaker": 0, "speaker_confidence": 0.80566406, "start": 488.40503, "word": "would" }, { "confidence": 1, "end": 488.885, "punctuated_word": "call", "speaker": 0, "speaker_confidence": 0.80566406, "start": 488.64502, "word": "call" }, { "confidence": 0.9941406, "end": 489.20502, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.80566406, "start": 488.885, "word": "set" }, { "confidence": 0.93359375, "end": 489.605, "punctuated_word": "props", "speaker": 0, "speaker_confidence": 0.80566406, "start": 489.20502, "word": "props" }, { "confidence": 0.9428711, "end": 489.765, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.80566406, "start": 489.605, "word": "with" }, { "confidence": 1, "end": 490.005, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 0.80566406, "start": 489.765, "word": "any" }, { "confidence": 1, "end": 490.48502, "punctuated_word": "subsequent", "speaker": 0, "speaker_confidence": 0.80566406, "start": 490.005, "word": "subsequent" }, { "confidence": 1, "end": 490.96503, "punctuated_word": "updates", "speaker": 0, "speaker_confidence": 0.80566406, "start": 490.48502, "word": "updates" }, { "confidence": 1, "end": 491.125, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.80566406, "start": 490.96503, "word": "to" }, { "confidence": 1, "end": 491.20502, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.80566406, "start": 491.125, "word": "the" }, { "confidence": 1, "end": 491.445, "punctuated_word": "same", "speaker": 0, "speaker_confidence": 0.80566406, "start": 491.20502, "word": "same" }, { "confidence": 0.9995117, "end": 491.945, "punctuated_word": "map.", "speaker": 0, "speaker_confidence": 0.80566406, "start": 491.445, "word": "map" }, { "confidence": 0.99609375, "end": 492.22, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.77001953, "start": 492.14, "word": "i" }, { "confidence": 1, "end": 492.38, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.77001953, "start": 492.22, "word": "just" }, { "confidence": 0.9970703, "end": 492.62003, "punctuated_word": "wanted", "speaker": 0, "speaker_confidence": 0.77001953, "start": 492.38, "word": "wanted" }, { "confidence": 0.99902344, "end": 492.78, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.77001953, "start": 492.62003, "word": "to" }, { "confidence": 1, "end": 492.94, "punctuated_word": "point", "speaker": 0, "speaker_confidence": 0.77001953, "start": 492.78, "word": "point" }, { "confidence": 1, "end": 493.18002, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.77001953, "start": 492.94, "word": "that" }, { "confidence": 0.98291016, "end": 493.42, "punctuated_word": "out,", "speaker": 0, "speaker_confidence": 0.77001953, "start": 493.18002, "word": "out" }, { "confidence": 1, "end": 493.58002, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.77001953, "start": 493.42, "word": "but" }, { "confidence": 0.9980469, "end": 493.74002, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.77001953, "start": 493.58002, "word": "we're" }, { "confidence": 0.98828125, "end": 494.06, "punctuated_word": "actually", "speaker": 0, "speaker_confidence": 0.77001953, "start": 493.74002, "word": "actually" }, { "confidence": 1, "end": 494.22, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.77001953, "start": 494.06, "word": "not" }, { "confidence": 0.9980469, "end": 494.46002, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.77001953, "start": 494.22, "word": "going" }, { "confidence": 0.9980469, "end": 494.54, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.77001953, "start": 494.46002, "word": "to" }, { "confidence": 1, "end": 494.62003, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.71972656, "start": 494.54, "word": "use" }, { "confidence": 0.99609375, "end": 494.86002, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.71972656, "start": 494.62003, "word": "it" }, { "confidence": 0.99902344, "end": 495.02002, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.71972656, "start": 494.86002, "word": "in" }, { "confidence": 0.9448242, "end": 495.18002, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.71972656, "start": 495.02002, "word": "this" }, { "confidence": 0.99902344, "end": 495.66, "punctuated_word": "simplified", "speaker": 0, "speaker_confidence": 0.71972656, "start": 495.18002, "word": "simplified" }, { "confidence": 0.9995117, "end": 496.16, "punctuated_word": "demo.", "speaker": 0, "speaker_confidence": 0.71972656, "start": 495.66, "word": "demo" }, { "confidence": 0.99902344, "end": 496.38, "punctuated_word": "From", "speaker": 0, "speaker_confidence": 0.71972656, "start": 496.22, "word": "from" }, { "confidence": 0.88305664, "end": 496.54, "punctuated_word": "here,", "speaker": 0, "speaker_confidence": 0.71972656, "start": 496.38, "word": "here" }, { "confidence": 0.99902344, "end": 496.7, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.71972656, "start": 496.54, "word": "if" }, { "confidence": 1, "end": 496.78, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.79589844, "start": 496.7, "word": "you" }, { "confidence": 0.99316406, "end": 496.94, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.79589844, "start": 496.78, "word": "open" }, { "confidence": 0.9716797, "end": 497.1, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.79589844, "start": 496.94, "word": "the" }, { "confidence": 0.98535156, "end": 497.5, "punctuated_word": "browser,", "speaker": 0, "speaker_confidence": 0.79589844, "start": 497.1, "word": "browser" }, { "confidence": 1, "end": 497.58002, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.79589844, "start": 497.5, "word": "you" }, { "confidence": 1, "end": 497.82, "punctuated_word": "should", "speaker": 0, "speaker_confidence": 0.79589844, "start": 497.58002, "word": "should" }, { "confidence": 0.9970703, "end": 497.98, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.79589844, "start": 497.82, "word": "see" }, { "confidence": 0.99902344, "end": 498.22, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.79589844, "start": 497.98, "word": "all" }, { "confidence": 0.6088867, "end": 498.38, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.79589844, "start": 498.22, "word": "the" }, { "confidence": 1, "end": 498.7, "punctuated_word": "points", "speaker": 0, "speaker_confidence": 0.79589844, "start": 498.38, "word": "points" }, { "confidence": 1, "end": 499.1, "punctuated_word": "plotted", "speaker": 0, "speaker_confidence": 0.79589844, "start": 498.7, "word": "plotted" }, { "confidence": 1, "end": 499.26, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.79589844, "start": 499.1, "word": "on" }, { "confidence": 0.99902344, "end": 499.42, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.79589844, "start": 499.26, "word": "the" }, { "confidence": 0.86816406, "end": 499.92, "punctuated_word": "map.", "speaker": 0, "speaker_confidence": 0.79589844, "start": 499.42, "word": "map" }, { "confidence": 0.9970703, "end": 500.115, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.79589844, "start": 500.03497, "word": "but" }, { "confidence": 0.99316406, "end": 500.35498, "punctuated_word": "I'd", "speaker": 0, "speaker_confidence": 0.79589844, "start": 500.115, "word": "i'd" }, { "confidence": 1, "end": 500.395, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.79589844, "start": 500.35498, "word": "like" }, { "confidence": 0.9980469, "end": 500.435, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.79589844, "start": 500.395, "word": "to" }, { "confidence": 1, "end": 500.675, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.88183594, "start": 500.435, "word": "make" }, { "confidence": 0.9819336, "end": 500.91498, "punctuated_word": "these", "speaker": 0, "speaker_confidence": 0.88183594, "start": 500.675, "word": "these" }, { "confidence": 0.9951172, "end": 500.995, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.88183594, "start": 500.91498, "word": "a" }, { "confidence": 0.9980469, "end": 501.235, "punctuated_word": "little", "speaker": 0, "speaker_confidence": 0.88183594, "start": 500.995, "word": "little" }, { "confidence": 0.98828125, "end": 501.47498, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.88183594, "start": 501.235, "word": "more" }, { "confidence": 1, "end": 501.97498, "punctuated_word": "interactive", "speaker": 0, "speaker_confidence": 0.88183594, "start": 501.47498, "word": "interactive" }, { "confidence": 0.99902344, "end": 502.19498, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.88183594, "start": 502.03497, "word": "by" }, { "confidence": 1, "end": 502.51498, "punctuated_word": "adding", "speaker": 0, "speaker_confidence": 0.88183594, "start": 502.19498, "word": "adding" }, { "confidence": 0.99902344, "end": 502.595, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.88183594, "start": 502.51498, "word": "a" }, { "confidence": 0.9951172, "end": 503.07498, "punctuated_word": "tooltip", "speaker": 0, "speaker_confidence": 0.88183594, "start": 502.595, "word": "tooltip" }, { "confidence": 0.9980469, "end": 503.31497, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.88183594, "start": 503.07498, "word": "when" }, { "confidence": 0.95947266, "end": 503.47498, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.88183594, "start": 503.31497, "word": "the" }, { "confidence": 1, "end": 503.79498, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 0.88183594, "start": 503.47498, "word": "user" }, { "confidence": 1, "end": 504.03497, "punctuated_word": "hovers", "speaker": 0, "speaker_confidence": 0.88183594, "start": 503.79498, "word": "hovers" }, { "confidence": 0.99902344, "end": 504.275, "punctuated_word": "over", "speaker": 0, "speaker_confidence": 0.88183594, "start": 504.03497, "word": "over" }, { "confidence": 0.9980469, "end": 504.51498, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.88183594, "start": 504.275, "word": "an" }, { "confidence": 0.99902344, "end": 504.91498, "punctuated_word": "individual", "speaker": 0, "speaker_confidence": 0.88183594, "start": 504.51498, "word": "individual" }, { "confidence": 0.986084, "end": 505.41498, "punctuated_word": "point.", "speaker": 0, "speaker_confidence": 0.88183594, "start": 504.91498, "word": "point" }, { "confidence": 1, "end": 505.955, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.81640625, "start": 505.875, "word": "we" }, { "confidence": 1, "end": 506.115, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.81640625, "start": 505.955, "word": "can" }, { "confidence": 1, "end": 506.275, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.81640625, "start": 506.115, "word": "do" }, { "confidence": 1, "end": 506.51498, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.81640625, "start": 506.275, "word": "that" }, { "confidence": 1, "end": 506.675, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.81640625, "start": 506.51498, "word": "by" }, { "confidence": 1, "end": 506.995, "punctuated_word": "setting", "speaker": 0, "speaker_confidence": 0.81640625, "start": 506.675, "word": "setting" }, { "confidence": 0.99902344, "end": 507.155, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.81640625, "start": 506.995, "word": "the" }, { "confidence": 0.8701172, "end": 507.63498, "punctuated_word": "Pickable", "speaker": 0, "speaker_confidence": 0.81640625, "start": 507.155, "word": "pickable" }, { "confidence": 0.9951172, "end": 507.955, "punctuated_word": "option", "speaker": 0, "speaker_confidence": 0.81640625, "start": 507.63498, "word": "option" }, { "confidence": 1, "end": 508.19498, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.81640625, "start": 507.955, "word": "to" }, { "confidence": 0.6850586, "end": 508.51498, "punctuated_word": "true", "speaker": 0, "speaker_confidence": 0.81640625, "start": 508.19498, "word": "true" }, { "confidence": 0.99902344, "end": 508.675, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.81640625, "start": 508.51498, "word": "on" }, { "confidence": 0.99609375, "end": 508.835, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.81640625, "start": 508.675, "word": "the" }, { "confidence": 0.69628906, "end": 509.335, "punctuated_word": "scatterplot", "speaker": 0, "speaker_confidence": 0.81640625, "start": 508.835, "word": "scatterplot" }, { "confidence": 0.80981445, "end": 509.88, "punctuated_word": "layer.", "speaker": 0, "speaker_confidence": 0.81640625, "start": 509.395, "word": "layer" }, { "confidence": 0.9921875, "end": 510.28, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.81640625, "start": 510.04, "word": "and" }, { "confidence": 0.9980469, "end": 510.36002, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.81640625, "start": 510.28, "word": "then" }, { "confidence": 0.9482422, "end": 510.52002, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.7055664, "start": 510.36002, "word": "from" }, { "confidence": 0.98706055, "end": 510.84, "punctuated_word": "there,", "speaker": 0, "speaker_confidence": 0.7055664, "start": 510.52002, "word": "there" }, { "confidence": 1, "end": 511.08002, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.7055664, "start": 510.84, "word": "we'll" }, { "confidence": 1, "end": 511.48, "punctuated_word": "define", "speaker": 0, "speaker_confidence": 0.7055664, "start": 511.08002, "word": "define" }, { "confidence": 1, "end": 511.72, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7055664, "start": 511.48, "word": "a" }, { "confidence": 1, "end": 512.22, "punctuated_word": "function", "speaker": 0, "speaker_confidence": 0.7055664, "start": 511.72, "word": "function" }, { "confidence": 1, "end": 512.6, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7055664, "start": 512.28, "word": "that" }, { "confidence": 1, "end": 513, "punctuated_word": "runs", "speaker": 0, "speaker_confidence": 0.7055664, "start": 512.6, "word": "runs" }, { "confidence": 1, "end": 513.08, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.53515625, "start": 513, "word": "on" }, { "confidence": 0.99902344, "end": 513.32, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.53515625, "start": 513.08, "word": "the" }, { "confidence": 0.7631836, "end": 513.56, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.53515625, "start": 513.32, "word": "on" }, { "confidence": 0.9970703, "end": 513.88, "punctuated_word": "hover", "speaker": 0, "speaker_confidence": 0.53515625, "start": 513.56, "word": "hover" }, { "confidence": 0.99853516, "end": 514.38, "punctuated_word": "event.", "speaker": 0, "speaker_confidence": 0.53515625, "start": 513.88, "word": "event" }, { "confidence": 1, "end": 514.76, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.8779297, "start": 514.6, "word": "this" }, { "confidence": 0.9980469, "end": 514.92, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.8779297, "start": 514.76, "word": "will" }, { "confidence": 1, "end": 515.08, "punctuated_word": "give", "speaker": 0, "speaker_confidence": 0.8779297, "start": 514.92, "word": "give" }, { "confidence": 1, "end": 515.24, "punctuated_word": "us", "speaker": 0, "speaker_confidence": 0.8779297, "start": 515.08, "word": "us" }, { "confidence": 1, "end": 515.48, "punctuated_word": "access", "speaker": 0, "speaker_confidence": 0.8779297, "start": 515.24, "word": "access" }, { "confidence": 1, "end": 515.72003, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8779297, "start": 515.48, "word": "to" }, { "confidence": 1, "end": 515.8, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8779297, "start": 515.72003, "word": "the" }, { "confidence": 1, "end": 516.2, "punctuated_word": "actual", "speaker": 0, "speaker_confidence": 0.8779297, "start": 515.8, "word": "actual" }, { "confidence": 0.9921875, "end": 516.52, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.8779297, "start": 516.2, "word": "data" }, { "confidence": 0.99902344, "end": 516.84, "punctuated_word": "object", "speaker": 0, "speaker_confidence": 0.8779297, "start": 516.52, "word": "object" }, { "confidence": 0.99121094, "end": 517, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8779297, "start": 516.84, "word": "that" }, { "confidence": 1, "end": 517.5, "punctuated_word": "represents", "speaker": 0, "speaker_confidence": 0.8779297, "start": 517, "word": "represents" }, { "confidence": 1, "end": 517.8, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8779297, "start": 517.56, "word": "that" }, { "confidence": 0.9951172, "end": 518.04, "punctuated_word": "point", "speaker": 0, "speaker_confidence": 0.8779297, "start": 517.8, "word": "point" }, { "confidence": 0.8364258, "end": 518.2, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8779297, "start": 518.04, "word": "and" }, { "confidence": 0.99902344, "end": 518.44, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.8779297, "start": 518.2, "word": "then" }, { "confidence": 0.9873047, "end": 518.68, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.8779297, "start": 518.44, "word": "also" }, { "confidence": 0.9472656, "end": 518.92, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.8779297, "start": 518.68, "word": "its" }, { "confidence": 0.8173828, "end": 519.16003, "punctuated_word": "x", "speaker": 0, "speaker_confidence": 0.8779297, "start": 518.92, "word": "x" }, { "confidence": 0.75634766, "end": 519.32, "punctuated_word": "y", "speaker": 0, "speaker_confidence": 0.8779297, "start": 519.16003, "word": "y" }, { "confidence": 0.98657227, "end": 519.82, "punctuated_word": "coordinates.", "speaker": 0, "speaker_confidence": 0.8779297, "start": 519.32, "word": "coordinates" }, { "confidence": 0.99902344, "end": 520.665, "punctuated_word": "We'll", "speaker": 0, "speaker_confidence": 0.8779297, "start": 520.425, "word": "we'll" }, { "confidence": 1, "end": 520.90497, "punctuated_word": "grab", "speaker": 0, "speaker_confidence": 0.8779297, "start": 520.665, "word": "grab" }, { "confidence": 1, "end": 521.065, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.8095703, "start": 520.90497, "word": "an" }, { "confidence": 1, "end": 521.385, "punctuated_word": "element", "speaker": 0, "speaker_confidence": 0.8095703, "start": 521.065, "word": "element" }, { "confidence": 1, "end": 521.545, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.8095703, "start": 521.385, "word": "from" }, { "confidence": 0.99902344, "end": 521.705, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8095703, "start": 521.545, "word": "the" }, { "confidence": 0.84472656, "end": 521.945, "punctuated_word": "DOM", "speaker": 0, "speaker_confidence": 0.8095703, "start": 521.705, "word": "dom" }, { "confidence": 0.9980469, "end": 522.185, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 0.8095703, "start": 521.945, "word": "called" }, { "confidence": 0.7553711, "end": 522.685, "punctuated_word": "tooltip,", "speaker": 0, "speaker_confidence": 0.8095703, "start": 522.185, "word": "tooltip" }, { "confidence": 1, "end": 522.985, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8095703, "start": 522.825, "word": "and" }, { "confidence": 0.9770508, "end": 523.145, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.8095703, "start": 522.985, "word": "then" }, { "confidence": 0.984375, "end": 523.305, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.8095703, "start": 523.145, "word": "if" }, { "confidence": 1, "end": 523.46497, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.8095703, "start": 523.305, "word": "an" }, { "confidence": 1, "end": 523.865, "punctuated_word": "object", "speaker": 0, "speaker_confidence": 0.8095703, "start": 523.46497, "word": "object" }, { "confidence": 0.93896484, "end": 524.185, "punctuated_word": "exists,", "speaker": 0, "speaker_confidence": 0.8095703, "start": 523.865, "word": "exists" }, { "confidence": 1, "end": 524.425, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.8095703, "start": 524.185, "word": "we'll" }, { "confidence": 1, "end": 524.505, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.8095703, "start": 524.425, "word": "go" }, { "confidence": 1, "end": 524.665, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 0.83154297, "start": 524.505, "word": "ahead" }, { "confidence": 0.99902344, "end": 524.90497, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.83154297, "start": 524.665, "word": "and" }, { "confidence": 1, "end": 525.145, "punctuated_word": "insert", "speaker": 0, "speaker_confidence": 0.83154297, "start": 524.90497, "word": "insert" }, { "confidence": 1, "end": 525.385, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.83154297, "start": 525.145, "word": "some" }, { "confidence": 0.99609375, "end": 525.885, "punctuated_word": "HTML", "speaker": 0, "speaker_confidence": 0.83154297, "start": 525.385, "word": "html" }, { "confidence": 1, "end": 526.345, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.83154297, "start": 526.02496, "word": "into" }, { "confidence": 1, "end": 526.505, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.83154297, "start": 526.345, "word": "that" }, { "confidence": 1, "end": 526.985, "punctuated_word": "tooltip", "speaker": 0, "speaker_confidence": 0.83154297, "start": 526.505, "word": "tooltip" }, { "confidence": 0.99902344, "end": 527.305, "punctuated_word": "based", "speaker": 0, "speaker_confidence": 0.83154297, "start": 526.985, "word": "based" }, { "confidence": 1, "end": 527.385, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.83154297, "start": 527.305, "word": "on" }, { "confidence": 1, "end": 527.545, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.83154297, "start": 527.385, "word": "the" }, { "confidence": 1, "end": 527.945, "punctuated_word": "actual", "speaker": 0, "speaker_confidence": 0.83154297, "start": 527.545, "word": "actual" }, { "confidence": 0.9873047, "end": 528.265, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.83154297, "start": 527.945, "word": "data" }, { "confidence": 0.9946289, "end": 528.765, "punctuated_word": "object.", "speaker": 0, "speaker_confidence": 0.83154297, "start": 528.265, "word": "object" }, { "confidence": 0.99902344, "end": 529.1, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.8486328, "start": 528.94, "word": "and" }, { "confidence": 0.99902344, "end": 529.26, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.8486328, "start": 529.1, "word": "if" }, { "confidence": 0.9980469, "end": 529.33997, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.8486328, "start": 529.26, "word": "an" }, { "confidence": 1, "end": 529.74, "punctuated_word": "object", "speaker": 0, "speaker_confidence": 0.8486328, "start": 529.33997, "word": "object" }, { "confidence": 0.99316406, "end": 529.89996, "punctuated_word": "does", "speaker": 0, "speaker_confidence": 0.8486328, "start": 529.74, "word": "does" }, { "confidence": 0.99902344, "end": 530.14, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.8486328, "start": 529.89996, "word": "not" }, { "confidence": 0.99365234, "end": 530.54, "punctuated_word": "exist,", "speaker": 0, "speaker_confidence": 0.8486328, "start": 530.14, "word": "exist" }, { "confidence": 0.9980469, "end": 530.77997, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.8486328, "start": 530.54, "word": "we'll" }, { "confidence": 1, "end": 531.1, "punctuated_word": "simply", "speaker": 0, "speaker_confidence": 0.8486328, "start": 530.77997, "word": "simply" }, { "confidence": 1, "end": 531.26, "punctuated_word": "hide", "speaker": 0, "speaker_confidence": 0.8486328, "start": 531.1, "word": "hide" }, { "confidence": 0.9970703, "end": 531.42, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8486328, "start": 531.26, "word": "the" }, { "confidence": 0.9951172, "end": 531.89996, "punctuated_word": "tooltip", "speaker": 0, "speaker_confidence": 0.8486328, "start": 531.42, "word": "tooltip" }, { "confidence": 1, "end": 532.06, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.8486328, "start": 531.89996, "word": "by" }, { "confidence": 0.9980469, "end": 532.38, "punctuated_word": "setting", "speaker": 0, "speaker_confidence": 0.8486328, "start": 532.06, "word": "setting" }, { "confidence": 0.98291016, "end": 532.54, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.8486328, "start": 532.38, "word": "its" }, { "confidence": 0.9970703, "end": 533.04, "punctuated_word": "opacity", "speaker": 0, "speaker_confidence": 0.8486328, "start": 532.54, "word": "opacity" }, { "confidence": 1, "end": 533.33997, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8486328, "start": 533.1, "word": "to" }, { "confidence": 0.98413086, "end": 533.83997, "punctuated_word": "0.", "speaker": 0, "speaker_confidence": 0.8486328, "start": 533.33997, "word": "0" }, { "confidence": 0.9980469, "end": 534.06, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.8486328, "start": 533.89996, "word": "and" }, { "confidence": 0.99902344, "end": 534.22, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.8486328, "start": 534.06, "word": "you" }, { "confidence": 1, "end": 534.3, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.66503906, "start": 534.22, "word": "can" }, { "confidence": 0.99902344, "end": 534.62, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.66503906, "start": 534.3, "word": "also" }, { "confidence": 1, "end": 534.94, "punctuated_word": "handle", "speaker": 0, "speaker_confidence": 0.66503906, "start": 534.62, "word": "handle" }, { "confidence": 0.9970703, "end": 535.18, "punctuated_word": "click", "speaker": 0, "speaker_confidence": 0.66503906, "start": 534.94, "word": "click" }, { "confidence": 0.88842773, "end": 535.57996, "punctuated_word": "events,", "speaker": 0, "speaker_confidence": 0.66503906, "start": 535.18, "word": "events" }, { "confidence": 0.99902344, "end": 535.74, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.66503906, "start": 535.57996, "word": "so" }, { "confidence": 0.9970703, "end": 535.89996, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.66503906, "start": 535.74, "word": "if" }, { "confidence": 0.9863281, "end": 535.98, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.66503906, "start": 535.89996, "word": "the" }, { "confidence": 1, "end": 536.3, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 0.66503906, "start": 535.98, "word": "user" }, { "confidence": 0.99902344, "end": 536.54, "punctuated_word": "clicks", "speaker": 0, "speaker_confidence": 0.66503906, "start": 536.3, "word": "clicks" }, { "confidence": 0.99902344, "end": 536.62, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.66503906, "start": 536.54, "word": "on" }, { "confidence": 0.9941406, "end": 536.7, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.57421875, "start": 536.62, "word": "a" }, { "confidence": 0.99902344, "end": 537.1, "punctuated_word": "given", "speaker": 0, "speaker_confidence": 0.57421875, "start": 536.7, "word": "given" }, { "confidence": 0.9916992, "end": 537.33997, "punctuated_word": "point,", "speaker": 0, "speaker_confidence": 0.57421875, "start": 537.1, "word": "point" }, { "confidence": 0.9970703, "end": 537.5, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.57421875, "start": 537.33997, "word": "we" }, { "confidence": 0.9980469, "end": 537.66, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.57421875, "start": 537.5, "word": "can" }, { "confidence": 0.9941406, "end": 537.82, "punctuated_word": "take", "speaker": 0, "speaker_confidence": 0.57421875, "start": 537.66, "word": "take" }, { "confidence": 0.9892578, "end": 538.06, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.57421875, "start": 537.82, "word": "them" }, { "confidence": 0.9707031, "end": 538.14, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7998047, "start": 538.06, "word": "to" }, { "confidence": 0.7553711, "end": 538.545, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7998047, "start": 538.14, "word": "the" }, { "confidence": 0.25927734, "end": 539.02496, "punctuated_word": "instant", "speaker": 0, "speaker_confidence": 0.7998047, "start": 538.70496, "word": "instant" }, { "confidence": 0.7475586, "end": 539.505, "punctuated_word": "report", "speaker": 0, "speaker_confidence": 0.7998047, "start": 539.02496, "word": "report" }, { "confidence": 1, "end": 539.745, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.7998047, "start": 539.505, "word": "on" }, { "confidence": 0.9277344, "end": 539.985, "punctuated_word": "gun", "speaker": 0, "speaker_confidence": 0.7998047, "start": 539.745, "word": "gun" }, { "confidence": 0.9941406, "end": 540.385, "punctuated_word": "violence", "speaker": 0, "speaker_confidence": 0.7998047, "start": 539.985, "word": "violence" }, { "confidence": 0.99853516, "end": 540.885, "punctuated_word": "archive.", "speaker": 0, "speaker_confidence": 0.7998047, "start": 540.385, "word": "archive" }, { "confidence": 0.9980469, "end": 541.425, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.61279297, "start": 541.26495, "word": "now" }, { "confidence": 0.43237305, "end": 541.58496, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.61279297, "start": 541.425, "word": "a" }, { "confidence": 1, "end": 541.825, "punctuated_word": "problem", "speaker": 0, "speaker_confidence": 0.61279297, "start": 541.58496, "word": "problem" }, { "confidence": 1, "end": 541.985, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.61279297, "start": 541.825, "word": "with" }, { "confidence": 0.9980469, "end": 542.065, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.61279297, "start": 541.985, "word": "the" }, { "confidence": 1, "end": 542.305, "punctuated_word": "map", "speaker": 0, "speaker_confidence": 0.61279297, "start": 542.065, "word": "map" }, { "confidence": 0.9921875, "end": 542.70496, "punctuated_word": "currently", "speaker": 0, "speaker_confidence": 0.61279297, "start": 542.305, "word": "currently" }, { "confidence": 0.984375, "end": 542.865, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.61279297, "start": 542.70496, "word": "is" }, { "confidence": 0.99902344, "end": 543.02496, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.61279297, "start": 542.865, "word": "that" }, { "confidence": 0.9980469, "end": 543.185, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.61279297, "start": 543.02496, "word": "it's" }, { "confidence": 0.9506836, "end": 543.345, "punctuated_word": "kind", "speaker": 0, "speaker_confidence": 0.61279297, "start": 543.185, "word": "kind" }, { "confidence": 0.99902344, "end": 543.425, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9580078, "start": 543.345, "word": "of" }, { "confidence": 1, "end": 543.665, "punctuated_word": "hard", "speaker": 0, "speaker_confidence": 0.9580078, "start": 543.425, "word": "hard" }, { "confidence": 1, "end": 543.90497, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9580078, "start": 543.665, "word": "to" }, { "confidence": 0.9951172, "end": 544.385, "punctuated_word": "visualize", "speaker": 0, "speaker_confidence": 0.9580078, "start": 543.90497, "word": "visualize" }, { "confidence": 0.9838867, "end": 544.545, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9580078, "start": 544.385, "word": "a" }, { "confidence": 0.93391925, "end": 545.045, "punctuated_word": "140,000", "speaker": 0, "speaker_confidence": 0.9580078, "start": 544.545, "word": "140,000" }, { "confidence": 0.99902344, "end": 545.745, "punctuated_word": "points", "speaker": 0, "speaker_confidence": 0.9580078, "start": 545.505, "word": "points" }, { "confidence": 0.9921875, "end": 545.90497, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.9580078, "start": 545.745, "word": "all" }, { "confidence": 1, "end": 546.065, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.9580078, "start": 545.90497, "word": "at" }, { "confidence": 0.9995117, "end": 546.55, "punctuated_word": "once.", "speaker": 0, "speaker_confidence": 0.9580078, "start": 546.065, "word": "once" }, { "confidence": 0.9921875, "end": 547.29, "punctuated_word": "Fortunately,", "speaker": 0, "speaker_confidence": 0.9580078, "start": 546.79, "word": "fortunately" }, { "confidence": 0.98828125, "end": 547.75, "punctuated_word": "deck", "speaker": 0, "speaker_confidence": 0.9580078, "start": 547.51, "word": "deck" }, { "confidence": 0.74658203, "end": 547.99, "punctuated_word": "gl", "speaker": 0, "speaker_confidence": 0.9580078, "start": 547.75, "word": "gl" }, { "confidence": 0.99902344, "end": 548.31, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.9580078, "start": 547.99, "word": "has" }, { "confidence": 1, "end": 548.81, "punctuated_word": "aggregation", "speaker": 0, "speaker_confidence": 0.9580078, "start": 548.31, "word": "aggregation" }, { "confidence": 0.9970703, "end": 549.35, "punctuated_word": "layers", "speaker": 0, "speaker_confidence": 0.9580078, "start": 548.87, "word": "layers" }, { "confidence": 0.99902344, "end": 549.51, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9580078, "start": 549.35, "word": "that" }, { "confidence": 0.99902344, "end": 549.67, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.9580078, "start": 549.51, "word": "will" }, { "confidence": 1, "end": 550.07, "punctuated_word": "cluster", "speaker": 0, "speaker_confidence": 0.9580078, "start": 549.67, "word": "cluster" }, { "confidence": 1, "end": 550.23, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9580078, "start": 550.07, "word": "the" }, { "confidence": 0.9741211, "end": 550.63, "punctuated_word": "points", "speaker": 0, "speaker_confidence": 0.9580078, "start": 550.23, "word": "points" }, { "confidence": 0.9980469, "end": 551.02997, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.9580078, "start": 550.63, "word": "into" }, { "confidence": 1, "end": 551.51, "punctuated_word": "meaningful", "speaker": 0, "speaker_confidence": 0.9580078, "start": 551.02997, "word": "meaningful" }, { "confidence": 0.99902344, "end": 552.01, "punctuated_word": "shapes.", "speaker": 0, "speaker_confidence": 0.9580078, "start": 551.51, "word": "shapes" }, { "confidence": 1, "end": 552.47, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.9580078, "start": 552.31, "word": "this" }, { "confidence": 0.98657227, "end": 552.70996, "punctuated_word": "time,", "speaker": 0, "speaker_confidence": 0.9580078, "start": 552.47, "word": "time" }, { "confidence": 1, "end": 552.95, "punctuated_word": "let's", "speaker": 0, "speaker_confidence": 0.9580078, "start": 552.70996, "word": "let's" }, { "confidence": 1, "end": 553.02997, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.9580078, "start": 552.95, "word": "go" }, { "confidence": 1, "end": 553.19, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 0.9580078, "start": 553.02997, "word": "ahead" }, { "confidence": 0.99902344, "end": 553.26996, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9580078, "start": 553.19, "word": "and" }, { "confidence": 1, "end": 553.51, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.9580078, "start": 553.26996, "word": "create" }, { "confidence": 1, "end": 553.58997, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7265625, "start": 553.51, "word": "a" }, { "confidence": 1, "end": 554.07, "punctuated_word": "function", "speaker": 0, "speaker_confidence": 0.7265625, "start": 553.58997, "word": "function" }, { "confidence": 1, "end": 554.23, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7265625, "start": 554.07, "word": "that" }, { "confidence": 1, "end": 554.63, "punctuated_word": "returns", "speaker": 0, "speaker_confidence": 0.7265625, "start": 554.23, "word": "returns" }, { "confidence": 0.9980469, "end": 554.79, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7265625, "start": 554.63, "word": "a" }, { "confidence": 0.97802734, "end": 555.02997, "punctuated_word": "heat", "speaker": 0, "speaker_confidence": 0.7265625, "start": 554.79, "word": "heat" }, { "confidence": 0.6430664, "end": 555.19, "punctuated_word": "map", "speaker": 0, "speaker_confidence": 0.7265625, "start": 555.02997, "word": "map" }, { "confidence": 0.9995117, "end": 555.665, "punctuated_word": "layer.", "speaker": 0, "speaker_confidence": 0.7265625, "start": 555.19, "word": "layer" }, { "confidence": 0.9970703, "end": 555.90497, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 1, "start": 555.745, "word": "this" }, { "confidence": 0.9980469, "end": 556.14496, "punctuated_word": "function", "speaker": 0, "speaker_confidence": 1, "start": 555.90497, "word": "function" }, { "confidence": 0.9980469, "end": 556.545, "punctuated_word": "uses", "speaker": 0, "speaker_confidence": 1, "start": 556.14496, "word": "uses" }, { "confidence": 0.99609375, "end": 556.625, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 556.545, "word": "the" }, { "confidence": 0.99609375, "end": 556.865, "punctuated_word": "same", "speaker": 0, "speaker_confidence": 1, "start": 556.625, "word": "same" }, { "confidence": 0.9995117, "end": 557.185, "punctuated_word": "getter", "speaker": 0, "speaker_confidence": 1, "start": 556.865, "word": "getter" }, { "confidence": 0.9970703, "end": 557.425, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 557.185, "word": "for" }, { "confidence": 0.98339844, "end": 557.925, "punctuated_word": "position,", "speaker": 0, "speaker_confidence": 1, "start": 557.425, "word": "position" }, { "confidence": 0.99902344, "end": 558.305, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 558.14496, "word": "and" }, { "confidence": 0.99902344, "end": 558.46497, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 1, "start": 558.305, "word": "we" }, { "confidence": 0.9970703, "end": 558.70496, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 1, "start": 558.46497, "word": "also" }, { "confidence": 0.99902344, "end": 558.865, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 1, "start": 558.70496, "word": "have" }, { "confidence": 0.9951172, "end": 559.02496, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 558.865, "word": "the" }, { "confidence": 0.99902344, "end": 559.345, "punctuated_word": "option", "speaker": 0, "speaker_confidence": 1, "start": 559.02496, "word": "option" }, { "confidence": 0.9980469, "end": 559.505, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 559.345, "word": "to" }, { "confidence": 1, "end": 559.985, "punctuated_word": "calculate", "speaker": 0, "speaker_confidence": 1, "start": 559.505, "word": "calculate" }, { "confidence": 0.9838867, "end": 560.065, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 559.985, "word": "the" }, { "confidence": 0.99902344, "end": 560.38495, "punctuated_word": "weight", "speaker": 0, "speaker_confidence": 1, "start": 560.065, "word": "weight" }, { "confidence": 0.9951172, "end": 560.545, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 560.38495, "word": "for" }, { "confidence": 1, "end": 560.785, "punctuated_word": "each", "speaker": 0, "speaker_confidence": 1, "start": 560.545, "word": "each" }, { "confidence": 0.9995117, "end": 561.285, "punctuated_word": "point.", "speaker": 0, "speaker_confidence": 1, "start": 560.785, "word": "point" }, { "confidence": 0.99902344, "end": 561.665, "punctuated_word": "By", "speaker": 0, "speaker_confidence": 1, "start": 561.425, "word": "by" }, { "confidence": 0.99902344, "end": 562.14496, "punctuated_word": "default,", "speaker": 0, "speaker_confidence": 1, "start": 561.665, "word": "default" }, { "confidence": 0.99902344, "end": 562.38495, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 1, "start": 562.14496, "word": "every" }, { "confidence": 0.9970703, "end": 562.70496, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 1, "start": 562.38495, "word": "data" }, { "confidence": 0.9980469, "end": 562.945, "punctuated_word": "point", "speaker": 0, "speaker_confidence": 1, "start": 562.70496, "word": "point" }, { "confidence": 1, "end": 563.185, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 1, "start": 562.945, "word": "has" }, { "confidence": 0.99121094, "end": 563.345, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 563.185, "word": "a" }, { "confidence": 1, "end": 563.505, "punctuated_word": "weight", "speaker": 0, "speaker_confidence": 1, "start": 563.345, "word": "weight" }, { "confidence": 1, "end": 563.665, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 563.505, "word": "of" }, { "confidence": 0.9165039, "end": 564.06, "punctuated_word": "1,", "speaker": 0, "speaker_confidence": 1, "start": 563.665, "word": "1" }, { "confidence": 0.99902344, "end": 564.46, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 1, "start": 564.3, "word": "but" }, { "confidence": 0.9980469, "end": 564.54, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 1, "start": 564.46, "word": "we" }, { "confidence": 0.9980469, "end": 564.77997, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.8125, "start": 564.54, "word": "want" }, { "confidence": 0.9980469, "end": 564.94, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8125, "start": 564.77997, "word": "to" }, { "confidence": 0.8198242, "end": 565.18, "punctuated_word": "weight", "speaker": 0, "speaker_confidence": 0.8125, "start": 564.94, "word": "weight" }, { "confidence": 0.9980469, "end": 565.26, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8125, "start": 565.18, "word": "the" }, { "confidence": 0.9980469, "end": 565.58, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.8125, "start": 565.26, "word": "data" }, { "confidence": 0.9980469, "end": 565.9, "punctuated_word": "points", "speaker": 0, "speaker_confidence": 0.8125, "start": 565.58, "word": "points" }, { "confidence": 1, "end": 566.06, "punctuated_word": "based", "speaker": 0, "speaker_confidence": 0.8125, "start": 565.9, "word": "based" }, { "confidence": 1, "end": 566.3, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8125, "start": 566.06, "word": "on" }, { "confidence": 0.99121094, "end": 566.46, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.8125, "start": 566.3, "word": "how" }, { "confidence": 1, "end": 566.86, "punctuated_word": "violent", "speaker": 0, "speaker_confidence": 0.8125, "start": 566.46, "word": "violent" }, { "confidence": 0.9980469, "end": 567.02, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8125, "start": 566.86, "word": "the" }, { "confidence": 1, "end": 567.42, "punctuated_word": "incident", "speaker": 0, "speaker_confidence": 0.8125, "start": 567.02, "word": "incident" }, { "confidence": 0.98217773, "end": 567.92, "punctuated_word": "was.", "speaker": 0, "speaker_confidence": 0.8125, "start": 567.42, "word": "was" }, { "confidence": 0.99902344, "end": 568.22, "punctuated_word": "So", "speaker": 0, "speaker_confidence": 0.8125, "start": 568.06, "word": "so" }, { "confidence": 0.99853516, "end": 568.3, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.8125, "start": 568.22, "word": "we'll" }, { "confidence": 1, "end": 568.38, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.8125, "start": 568.3, "word": "go" }, { "confidence": 1, "end": 568.54, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 0.8125, "start": 568.38, "word": "ahead" }, { "confidence": 0.9980469, "end": 568.62, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8125, "start": 568.54, "word": "and" }, { "confidence": 1, "end": 568.86, "punctuated_word": "take", "speaker": 0, "speaker_confidence": 0.5908203, "start": 568.62, "word": "take" }, { "confidence": 1, "end": 569.02, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5908203, "start": 568.86, "word": "the" }, { "confidence": 1, "end": 569.42, "punctuated_word": "number", "speaker": 0, "speaker_confidence": 0.5908203, "start": 569.02, "word": "number" }, { "confidence": 0.9941406, "end": 569.5, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.5908203, "start": 569.42, "word": "of" }, { "confidence": 1, "end": 569.82, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.5908203, "start": 569.5, "word": "people" }, { "confidence": 1, "end": 570.06, "punctuated_word": "killed", "speaker": 0, "speaker_confidence": 0.5908203, "start": 569.82, "word": "killed" }, { "confidence": 1, "end": 570.14, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.6591797, "start": 570.06, "word": "in" }, { "confidence": 1, "end": 570.3, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.6591797, "start": 570.14, "word": "that" }, { "confidence": 1, "end": 570.8, "punctuated_word": "incident", "speaker": 0, "speaker_confidence": 0.6591797, "start": 570.3, "word": "incident" }, { "confidence": 0.8339844, "end": 571.1, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6591797, "start": 570.94, "word": "and" }, { "confidence": 0.9980469, "end": 571.34, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.6591797, "start": 571.1, "word": "then" }, { "confidence": 1, "end": 571.5, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.6591797, "start": 571.34, "word": "add" }, { "confidence": 0.99902344, "end": 571.66, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.6591797, "start": 571.5, "word": "it" }, { "confidence": 1, "end": 571.82, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6591797, "start": 571.66, "word": "to" }, { "confidence": 1, "end": 571.98, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6591797, "start": 571.82, "word": "the" }, { "confidence": 1, "end": 572.22, "punctuated_word": "number", "speaker": 0, "speaker_confidence": 0.6591797, "start": 571.98, "word": "number" }, { "confidence": 0.9980469, "end": 572.3, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.6591797, "start": 572.22, "word": "of" }, { "confidence": 0.9980469, "end": 572.62, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.91015625, "start": 572.3, "word": "people" }, { "confidence": 1, "end": 573.12, "punctuated_word": "injured", "speaker": 0, "speaker_confidence": 0.91015625, "start": 572.62, "word": "injured" }, { "confidence": 0.9267578, "end": 573.465, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.91015625, "start": 573.22504, "word": "by" }, { "confidence": 0.4020996, "end": 573.625, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.91015625, "start": 573.465, "word": "time" }, { "confidence": 0.8918457, "end": 574.125, "punctuated_word": "0.5.", "speaker": 0, "speaker_confidence": 0.91015625, "start": 573.625, "word": "0.5" }, { "confidence": 0.9980469, "end": 574.825, "punctuated_word": "So", "speaker": 0, "speaker_confidence": 0.91015625, "start": 574.66504, "word": "so" }, { "confidence": 1, "end": 574.905, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.91015625, "start": 574.825, "word": "you" }, { "confidence": 0.99902344, "end": 575.065, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.91015625, "start": 574.905, "word": "get" }, { "confidence": 1, "end": 575.145, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.91015625, "start": 575.065, "word": "the" }, { "confidence": 1, "end": 575.465, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 0.91015625, "start": 575.145, "word": "most" }, { "confidence": 0.99902344, "end": 575.705, "punctuated_word": "points", "speaker": 0, "speaker_confidence": 0.91015625, "start": 575.465, "word": "points" }, { "confidence": 1, "end": 575.78503, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.91015625, "start": 575.705, "word": "for" }, { "confidence": 1, "end": 576.10504, "punctuated_word": "killing", "speaker": 0, "speaker_confidence": 0.91015625, "start": 575.78503, "word": "killing" }, { "confidence": 0.953125, "end": 576.42505, "punctuated_word": "people,", "speaker": 0, "speaker_confidence": 0.91015625, "start": 576.10504, "word": "people" }, { "confidence": 1, "end": 576.66504, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.91015625, "start": 576.42505, "word": "but" }, { "confidence": 1, "end": 576.745, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.91015625, "start": 576.66504, "word": "you" }, { "confidence": 0.9980469, "end": 576.98505, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.91015625, "start": 576.745, "word": "also" }, { "confidence": 1, "end": 577.22504, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.91015625, "start": 576.98505, "word": "get" }, { "confidence": 1, "end": 577.54504, "punctuated_word": "bonus", "speaker": 0, "speaker_confidence": 0.91015625, "start": 577.22504, "word": "bonus" }, { "confidence": 1, "end": 577.78503, "punctuated_word": "points", "speaker": 0, "speaker_confidence": 0.91015625, "start": 577.54504, "word": "points" }, { "confidence": 1, "end": 577.945, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.91015625, "start": 577.78503, "word": "for" }, { "confidence": 0.99902344, "end": 578.34503, "punctuated_word": "injuring", "speaker": 0, "speaker_confidence": 0.91015625, "start": 577.945, "word": "injuring" }, { "confidence": 1, "end": 578.585, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.91015625, "start": 578.34503, "word": "people" }, { "confidence": 1, "end": 578.745, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.91015625, "start": 578.585, "word": "as" }, { "confidence": 0.9995117, "end": 579.245, "punctuated_word": "well.", "speaker": 0, "speaker_confidence": 0.91015625, "start": 578.745, "word": "well" }, { "confidence": 0.9995117, "end": 579.465, "punctuated_word": "We'll", "speaker": 0, "speaker_confidence": 0.69677734, "start": 579.305, "word": "we'll" }, { "confidence": 1, "end": 579.54504, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.69677734, "start": 579.465, "word": "go" }, { "confidence": 1, "end": 579.705, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 0.69677734, "start": 579.54504, "word": "ahead" }, { "confidence": 0.99902344, "end": 579.865, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.69677734, "start": 579.705, "word": "and" }, { "confidence": 1, "end": 580.025, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.69677734, "start": 579.865, "word": "set" }, { "confidence": 1, "end": 580.185, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.69677734, "start": 580.025, "word": "the" }, { "confidence": 0.98095703, "end": 580.505, "punctuated_word": "pixel", "speaker": 0, "speaker_confidence": 0.69677734, "start": 580.185, "word": "pixel" }, { "confidence": 0.9970703, "end": 580.905, "punctuated_word": "radius", "speaker": 0, "speaker_confidence": 0.69677734, "start": 580.505, "word": "radius" }, { "confidence": 0.9951172, "end": 581.065, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.69677734, "start": 580.905, "word": "to" }, { "confidence": 0.8852539, "end": 581.54504, "punctuated_word": "60,", "speaker": 0, "speaker_confidence": 0.69677734, "start": 581.065, "word": "60" }, { "confidence": 0.99121094, "end": 581.72, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.69677734, "start": 581.54504, "word": "and" }, { "confidence": 0.80322266, "end": 581.7999, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.73046875, "start": 581.72, "word": "and" }, { "confidence": 0.8051758, "end": 581.87994, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.73046875, "start": 581.7999, "word": "then" }, { "confidence": 0.99902344, "end": 582.04, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.73046875, "start": 581.87994, "word": "we" }, { "confidence": 0.85546875, "end": 582.12, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.73046875, "start": 582.04, "word": "could" }, { "confidence": 0.9980469, "end": 582.36, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.73046875, "start": 582.12, "word": "also" }, { "confidence": 0.99902344, "end": 582.75995, "punctuated_word": "customize", "speaker": 0, "speaker_confidence": 0.73046875, "start": 582.36, "word": "customize" }, { "confidence": 1, "end": 583.07996, "punctuated_word": "colors", "speaker": 0, "speaker_confidence": 0.73046875, "start": 582.75995, "word": "colors" }, { "confidence": 0.9970703, "end": 583.31995, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0.73046875, "start": 583.07996, "word": "here" }, { "confidence": 1, "end": 583.39996, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.73046875, "start": 583.31995, "word": "as" }, { "confidence": 0.94262695, "end": 583.63995, "punctuated_word": "well,", "speaker": 0, "speaker_confidence": 0.73046875, "start": 583.39996, "word": "well" }, { "confidence": 1, "end": 583.8, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.73046875, "start": 583.63995, "word": "but" }, { "confidence": 1, "end": 583.95996, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.73046875, "start": 583.8, "word": "we'll" }, { "confidence": 0.99902344, "end": 584.12, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.73046875, "start": 583.95996, "word": "just" }, { "confidence": 0.99902344, "end": 584.19995, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.79541016, "start": 584.12, "word": "go" }, { "confidence": 1, "end": 584.36, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 0.79541016, "start": 584.19995, "word": "ahead" }, { "confidence": 0.9970703, "end": 584.43994, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.79541016, "start": 584.36, "word": "and" }, { "confidence": 1, "end": 584.68, "punctuated_word": "skip", "speaker": 0, "speaker_confidence": 0.79541016, "start": 584.43994, "word": "skip" }, { "confidence": 1, "end": 584.83997, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.79541016, "start": 584.68, "word": "that" }, { "confidence": 1, "end": 585, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.79541016, "start": 584.83997, "word": "for" }, { "confidence": 1, "end": 585.5, "punctuated_word": "now.", "speaker": 0, "speaker_confidence": 0.79541016, "start": 585, "word": "now" }, { "confidence": 0.99902344, "end": 585.95996, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.79541016, "start": 585.8, "word": "and" }, { "confidence": 0.9947917, "end": 586.27997, "punctuated_word": "lastly,", "speaker": 0, "speaker_confidence": 0.79541016, "start": 585.95996, "word": "lastly" }, { "confidence": 1, "end": 586.51996, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.79541016, "start": 586.27997, "word": "we'll" }, { "confidence": 1, "end": 586.68, "punctuated_word": "come", "speaker": 0, "speaker_confidence": 0.79541016, "start": 586.51996, "word": "come" }, { "confidence": 1, "end": 586.92, "punctuated_word": "down", "speaker": 0, "speaker_confidence": 0.79541016, "start": 586.68, "word": "down" }, { "confidence": 1, "end": 587.24, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0.79541016, "start": 586.92, "word": "here" }, { "confidence": 0.9970703, "end": 587.39996, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.79541016, "start": 587.24, "word": "and" }, { "confidence": 0.99902344, "end": 587.56, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.79541016, "start": 587.39996, "word": "add" }, { "confidence": 0.99902344, "end": 587.72, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.79541016, "start": 587.56, "word": "the" }, { "confidence": 0.99121094, "end": 587.95996, "punctuated_word": "heat", "speaker": 0, "speaker_confidence": 0.79541016, "start": 587.72, "word": "heat" }, { "confidence": 0.9741211, "end": 588.19995, "punctuated_word": "map", "speaker": 0, "speaker_confidence": 0.79541016, "start": 587.95996, "word": "map" }, { "confidence": 1, "end": 588.36, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.79541016, "start": 588.19995, "word": "to" }, { "confidence": 1, "end": 588.51996, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.79541016, "start": 588.36, "word": "our" }, { "confidence": 0.99853516, "end": 589.01996, "punctuated_word": "layers.", "speaker": 0, "speaker_confidence": 0.79541016, "start": 588.51996, "word": "layers" }, { "confidence": 0.99609375, "end": 589.675, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.6977539, "start": 589.59503, "word": "you" }, { "confidence": 1, "end": 589.91504, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.6977539, "start": 589.675, "word": "can" }, { "confidence": 1, "end": 589.995, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.6977539, "start": 589.91504, "word": "see" }, { "confidence": 0.97509766, "end": 590.235, "punctuated_word": "I've", "speaker": 0, "speaker_confidence": 0.6977539, "start": 589.995, "word": "i've" }, { "confidence": 0.99121094, "end": 590.47504, "punctuated_word": "switched", "speaker": 0, "speaker_confidence": 0.6977539, "start": 590.235, "word": "switched" }, { "confidence": 0.99316406, "end": 590.635, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6977539, "start": 590.47504, "word": "the" }, { "confidence": 0.99902344, "end": 590.875, "punctuated_word": "map", "speaker": 0, "speaker_confidence": 0.6977539, "start": 590.635, "word": "map" }, { "confidence": 0.99902344, "end": 591.03503, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6977539, "start": 590.875, "word": "to" }, { "confidence": 0.99902344, "end": 591.35504, "punctuated_word": "dark", "speaker": 0, "speaker_confidence": 0.6977539, "start": 591.03503, "word": "dark" }, { "confidence": 0.99902344, "end": 591.59503, "punctuated_word": "mode", "speaker": 0, "speaker_confidence": 0.6977539, "start": 591.35504, "word": "mode" }, { "confidence": 0.9980469, "end": 591.755, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6977539, "start": 591.59503, "word": "to" }, { "confidence": 1, "end": 591.91504, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.6977539, "start": 591.755, "word": "see" }, { "confidence": 0.99902344, "end": 592.155, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 0.6977539, "start": 591.91504, "word": "things" }, { "confidence": 0.9951172, "end": 592.235, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.59375, "start": 592.155, "word": "a" }, { "confidence": 0.9921875, "end": 592.395, "punctuated_word": "little", "speaker": 0, "speaker_confidence": 0.59375, "start": 592.235, "word": "little" }, { "confidence": 0.98535156, "end": 592.555, "punctuated_word": "bit", "speaker": 0, "speaker_confidence": 0.59375, "start": 592.395, "word": "bit" }, { "confidence": 0.8947754, "end": 593.055, "punctuated_word": "better,", "speaker": 0, "speaker_confidence": 0.59375, "start": 592.555, "word": "better" }, { "confidence": 0.99902344, "end": 593.435, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.59375, "start": 593.275, "word": "and" }, { "confidence": 1, "end": 593.59503, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 0.59375, "start": 593.435, "word": "you'll" }, { "confidence": 1, "end": 593.995, "punctuated_word": "notice", "speaker": 0, "speaker_confidence": 0.59375, "start": 593.59503, "word": "notice" }, { "confidence": 0.9980469, "end": 594.075, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.59375, "start": 593.995, "word": "we" }, { "confidence": 1, "end": 594.315, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.89453125, "start": 594.075, "word": "get" }, { "confidence": 0.99609375, "end": 594.555, "punctuated_word": "different", "speaker": 0, "speaker_confidence": 0.89453125, "start": 594.315, "word": "different" }, { "confidence": 0.9995117, "end": 595.03503, "punctuated_word": "clustering", "speaker": 0, "speaker_confidence": 0.89453125, "start": 594.555, "word": "clustering" }, { "confidence": 1, "end": 595.515, "punctuated_word": "patterns", "speaker": 0, "speaker_confidence": 0.89453125, "start": 595.03503, "word": "patterns" }, { "confidence": 1, "end": 595.755, "punctuated_word": "based", "speaker": 0, "speaker_confidence": 0.89453125, "start": 595.515, "word": "based" }, { "confidence": 1, "end": 595.91504, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.89453125, "start": 595.755, "word": "on" }, { "confidence": 0.98828125, "end": 596.075, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.89453125, "start": 595.91504, "word": "the" }, { "confidence": 1, "end": 596.315, "punctuated_word": "zoom", "speaker": 0, "speaker_confidence": 0.89453125, "start": 596.075, "word": "zoom" }, { "confidence": 1, "end": 596.635, "punctuated_word": "level", "speaker": 0, "speaker_confidence": 0.89453125, "start": 596.315, "word": "level" }, { "confidence": 0.99902344, "end": 596.79504, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.89453125, "start": 596.635, "word": "of" }, { "confidence": 1, "end": 596.955, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.89453125, "start": 596.79504, "word": "the" }, { "confidence": 1, "end": 597.455, "punctuated_word": "map.", "speaker": 0, "speaker_confidence": 0.89453125, "start": 596.955, "word": "map" }, { "confidence": 0.9970703, "end": 597.7, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.89453125, "start": 597.54004, "word": "if" }, { "confidence": 0.99902344, "end": 597.86005, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.89453125, "start": 597.7, "word": "we" }, { "confidence": 1, "end": 598.02, "punctuated_word": "zoom", "speaker": 0, "speaker_confidence": 0.89453125, "start": 597.86005, "word": "zoom" }, { "confidence": 0.9838867, "end": 598.18, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.89453125, "start": 598.02, "word": "in" }, { "confidence": 0.9970703, "end": 598.34, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.89453125, "start": 598.18, "word": "all" }, { "confidence": 0.9980469, "end": 598.42004, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8413086, "start": 598.34, "word": "the" }, { "confidence": 0.99609375, "end": 598.66003, "punctuated_word": "way,", "speaker": 0, "speaker_confidence": 0.8413086, "start": 598.42004, "word": "way" }, { "confidence": 0.9970703, "end": 598.9, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.8413086, "start": 598.66003, "word": "we'll" }, { "confidence": 0.9819336, "end": 599.14, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 0.8413086, "start": 598.9, "word": "start" }, { "confidence": 0.9838867, "end": 599.22003, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8413086, "start": 599.14, "word": "to" }, { "confidence": 1, "end": 599.46, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.8413086, "start": 599.22003, "word": "see" }, { "confidence": 0.95947266, "end": 599.62, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8413086, "start": 599.46, "word": "the" }, { "confidence": 0.9921875, "end": 600.12, "punctuated_word": "individual", "speaker": 0, "speaker_confidence": 0.8413086, "start": 599.62, "word": "individual" }, { "confidence": 0.54541016, "end": 600.58, "punctuated_word": "instance", "speaker": 0, "speaker_confidence": 0.8413086, "start": 600.18, "word": "instance" }, { "confidence": 0.9970703, "end": 600.74005, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8413086, "start": 600.58, "word": "that" }, { "confidence": 0.9790039, "end": 601.06, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.8413086, "start": 600.74005, "word": "make" }, { "confidence": 0.9980469, "end": 601.22003, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.8413086, "start": 601.06, "word": "up" }, { "confidence": 0.9707031, "end": 601.46, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8413086, "start": 601.22003, "word": "the" }, { "confidence": 0.9951172, "end": 601.78, "punctuated_word": "larger", "speaker": 0, "speaker_confidence": 0.8413086, "start": 601.46, "word": "larger" }, { "confidence": 0.9975586, "end": 602.28, "punctuated_word": "clusters.", "speaker": 0, "speaker_confidence": 0.8413086, "start": 601.78, "word": "clusters" }, { "confidence": 0.9980469, "end": 602.98004, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.7890625, "start": 602.82, "word": "the" }, { "confidence": 0.7248535, "end": 603.38, "punctuated_word": "heatmap", "speaker": 0, "speaker_confidence": 0.7890625, "start": 602.98004, "word": "heatmap" }, { "confidence": 1, "end": 603.54004, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7890625, "start": 603.38, "word": "is" }, { "confidence": 0.9802246, "end": 603.94, "punctuated_word": "useful,", "speaker": 0, "speaker_confidence": 0.7890625, "start": 603.54004, "word": "useful" }, { "confidence": 1, "end": 604.10004, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.7890625, "start": 603.94, "word": "but" }, { "confidence": 0.9980469, "end": 604.26, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.7890625, "start": 604.10004, "word": "we" }, { "confidence": 0.9951172, "end": 604.42004, "punctuated_word": "may", "speaker": 0, "speaker_confidence": 0.7890625, "start": 604.26, "word": "may" }, { "confidence": 0.9921875, "end": 604.66003, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.7890625, "start": 604.42004, "word": "want" }, { "confidence": 0.9980469, "end": 604.82, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7890625, "start": 604.66003, "word": "to" }, { "confidence": 0.99609375, "end": 605.14, "punctuated_word": "cluster", "speaker": 0, "speaker_confidence": 0.7890625, "start": 604.82, "word": "cluster" }, { "confidence": 0.9873047, "end": 605.38, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.7890625, "start": 605.14, "word": "our" }, { "confidence": 0.9980469, "end": 605.7, "punctuated_word": "points", "speaker": 0, "speaker_confidence": 0.7890625, "start": 605.38, "word": "points" }, { "confidence": 0.99902344, "end": 605.94, "punctuated_word": "based", "speaker": 0, "speaker_confidence": 0.7890625, "start": 605.7, "word": "based" }, { "confidence": 0.99902344, "end": 606.10004, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.7890625, "start": 605.94, "word": "on" }, { "confidence": 0.99121094, "end": 606.18, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.69189453, "start": 606.10004, "word": "a" }, { "confidence": 1, "end": 606.68, "punctuated_word": "specific", "speaker": 0, "speaker_confidence": 0.69189453, "start": 606.18, "word": "specific" }, { "confidence": 0.7023926, "end": 607.24005, "punctuated_word": "boundary.", "speaker": 0, "speaker_confidence": 0.69189453, "start": 606.74005, "word": "boundary" }, { "confidence": 0.8203125, "end": 607.685, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.69189453, "start": 607.525, "word": "and" }, { "confidence": 0.9980469, "end": 607.84503, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.69189453, "start": 607.685, "word": "a" }, { "confidence": 0.9951172, "end": 607.925, "punctuated_word": "great", "speaker": 0, "speaker_confidence": 0.69189453, "start": 607.84503, "word": "great" }, { "confidence": 0.99902344, "end": 608.165, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 0.9506836, "start": 607.925, "word": "way" }, { "confidence": 0.99609375, "end": 608.245, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9506836, "start": 608.165, "word": "to" }, { "confidence": 0.99902344, "end": 608.405, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.9506836, "start": 608.245, "word": "do" }, { "confidence": 0.9951172, "end": 608.565, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9506836, "start": 608.405, "word": "that" }, { "confidence": 0.9941406, "end": 608.72504, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9506836, "start": 608.565, "word": "is" }, { "confidence": 0.9951172, "end": 608.885, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.9506836, "start": 608.72504, "word": "with" }, { "confidence": 0.9921875, "end": 609.045, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9506836, "start": 608.885, "word": "the" }, { "confidence": 0.84936523, "end": 609.545, "punctuated_word": "hexagon", "speaker": 0, "speaker_confidence": 0.9506836, "start": 609.045, "word": "hexagon" }, { "confidence": 0.99560547, "end": 610.105, "punctuated_word": "layer.", "speaker": 0, "speaker_confidence": 0.9506836, "start": 609.605, "word": "layer" }, { "confidence": 0.99902344, "end": 610.405, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.9506836, "start": 610.245, "word": "this" }, { "confidence": 0.9980469, "end": 610.645, "punctuated_word": "allows", "speaker": 0, "speaker_confidence": 0.9506836, "start": 610.405, "word": "allows" }, { "confidence": 0.9970703, "end": 610.885, "punctuated_word": "us", "speaker": 0, "speaker_confidence": 0.9506836, "start": 610.645, "word": "us" }, { "confidence": 1, "end": 611.045, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9506836, "start": 610.885, "word": "to" }, { "confidence": 0.99902344, "end": 611.445, "punctuated_word": "cluster", "speaker": 0, "speaker_confidence": 0.9506836, "start": 611.045, "word": "cluster" }, { "confidence": 0.9980469, "end": 611.685, "punctuated_word": "points", "speaker": 0, "speaker_confidence": 0.9506836, "start": 611.445, "word": "points" }, { "confidence": 0.98291016, "end": 611.925, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.9506836, "start": 611.685, "word": "into" }, { "confidence": 0.9980469, "end": 612.085, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9506836, "start": 611.925, "word": "a" }, { "confidence": 0.99902344, "end": 612.485, "punctuated_word": "specific", "speaker": 0, "speaker_confidence": 0.9506836, "start": 612.085, "word": "specific" }, { "confidence": 0.99902344, "end": 612.885, "punctuated_word": "radius", "speaker": 0, "speaker_confidence": 0.9506836, "start": 612.485, "word": "radius" }, { "confidence": 0.80615234, "end": 613.125, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9506836, "start": 612.885, "word": "and" }, { "confidence": 0.9633789, "end": 613.365, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.9506836, "start": 613.125, "word": "then" }, { "confidence": 0.9941406, "end": 613.685, "punctuated_word": "increase", "speaker": 0, "speaker_confidence": 0.9506836, "start": 613.365, "word": "increase" }, { "confidence": 0.9716797, "end": 613.84503, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.9506836, "start": 613.685, "word": "its" }, { "confidence": 0.9980469, "end": 614.34503, "punctuated_word": "elevation", "speaker": 0, "speaker_confidence": 0.9506836, "start": 613.84503, "word": "elevation" }, { "confidence": 0.9921875, "end": 614.565, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9428711, "start": 614.485, "word": "in" }, { "confidence": 0.9741211, "end": 614.85, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9428711, "start": 614.565, "word": "the" }, { "confidence": 0.82055664, "end": 615.08997, "punctuated_word": "3rd", "speaker": 0, "speaker_confidence": 0.9428711, "start": 614.93, "word": "3rd" }, { "confidence": 0.99609375, "end": 615.58997, "punctuated_word": "dimension", "speaker": 0, "speaker_confidence": 0.9428711, "start": 615.08997, "word": "dimension" }, { "confidence": 0.9243164, "end": 615.97, "punctuated_word": "based", "speaker": 0, "speaker_confidence": 0.9428711, "start": 615.73, "word": "based" }, { "confidence": 0.99902344, "end": 616.13, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.9428711, "start": 615.97, "word": "on" }, { "confidence": 0.9970703, "end": 616.37, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.9428711, "start": 616.13, "word": "how" }, { "confidence": 1, "end": 616.76996, "punctuated_word": "violent", "speaker": 0, "speaker_confidence": 0.9428711, "start": 616.37, "word": "violent" }, { "confidence": 0.99902344, "end": 616.93, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9428711, "start": 616.76996, "word": "that" }, { "confidence": 1, "end": 617.25, "punctuated_word": "area", "speaker": 0, "speaker_confidence": 0.9428711, "start": 616.93, "word": "area" }, { "confidence": 0.99902344, "end": 617.75, "punctuated_word": "is.", "speaker": 0, "speaker_confidence": 0.9428711, "start": 617.25, "word": "is" }, { "confidence": 1, "end": 618.20996, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.9428711, "start": 618.05, "word": "we" }, { "confidence": 1, "end": 618.37, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9428711, "start": 618.20996, "word": "can" }, { "confidence": 1, "end": 618.52997, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.9428711, "start": 618.37, "word": "do" }, { "confidence": 1, "end": 618.69, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9428711, "start": 618.52997, "word": "that" }, { "confidence": 1, "end": 618.85, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.9428711, "start": 618.69, "word": "by" }, { "confidence": 1, "end": 619.32996, "punctuated_word": "defining", "speaker": 0, "speaker_confidence": 0.9428711, "start": 618.85, "word": "defining" }, { "confidence": 1, "end": 619.49, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9428711, "start": 619.32996, "word": "a" }, { "confidence": 0.99902344, "end": 619.81, "punctuated_word": "getter", "speaker": 0, "speaker_confidence": 0.9428711, "start": 619.49, "word": "getter" }, { "confidence": 1, "end": 619.97, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.9428711, "start": 619.81, "word": "for" }, { "confidence": 0.9980469, "end": 620.20996, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9428711, "start": 619.97, "word": "the" }, { "confidence": 0.96240234, "end": 620.69, "punctuated_word": "elevation", "speaker": 0, "speaker_confidence": 0.9428711, "start": 620.20996, "word": "elevation" }, { "confidence": 0.9394531, "end": 621.00995, "punctuated_word": "weight", "speaker": 0, "speaker_confidence": 0.9428711, "start": 620.69, "word": "weight" }, { "confidence": 0.89990234, "end": 621.25, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.9428711, "start": 621.00995, "word": "using" }, { "confidence": 0.9941406, "end": 621.41, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9428711, "start": 621.25, "word": "the" }, { "confidence": 1, "end": 621.73, "punctuated_word": "same", "speaker": 0, "speaker_confidence": 0.9428711, "start": 621.41, "word": "same" }, { "confidence": 1, "end": 622.05, "punctuated_word": "logic", "speaker": 0, "speaker_confidence": 0.9428711, "start": 621.73, "word": "logic" }, { "confidence": 0.98291016, "end": 622.20996, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9428711, "start": 622.05, "word": "that" }, { "confidence": 0.9970703, "end": 622.37, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.9428711, "start": 622.20996, "word": "we" }, { "confidence": 0.9980469, "end": 622.61, "punctuated_word": "used", "speaker": 0, "speaker_confidence": 0.9428711, "start": 622.37, "word": "used" }, { "confidence": 1, "end": 622.76996, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9428711, "start": 622.61, "word": "in" }, { "confidence": 0.9970703, "end": 622.85, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9428711, "start": 622.76996, "word": "the" }, { "confidence": 1, "end": 623.25, "punctuated_word": "previous", "speaker": 0, "speaker_confidence": 0.9428711, "start": 622.85, "word": "previous" }, { "confidence": 0.99902344, "end": 623.75, "punctuated_word": "example.", "speaker": 0, "speaker_confidence": 0.9428711, "start": 623.25, "word": "example" }, { "confidence": 0.99902344, "end": 624.255, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.7871094, "start": 624.095, "word": "we" }, { "confidence": 1, "end": 624.415, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7871094, "start": 624.255, "word": "can" }, { "confidence": 0.99902344, "end": 624.815, "punctuated_word": "customize", "speaker": 0, "speaker_confidence": 0.7871094, "start": 624.415, "word": "customize" }, { "confidence": 1, "end": 624.975, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7871094, "start": 624.815, "word": "the" }, { "confidence": 1, "end": 625.295, "punctuated_word": "appearance", "speaker": 0, "speaker_confidence": 0.7871094, "start": 624.975, "word": "appearance" }, { "confidence": 1, "end": 625.535, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.7871094, "start": 625.295, "word": "with" }, { "confidence": 1, "end": 625.615, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7871094, "start": 625.535, "word": "a" }, { "confidence": 1, "end": 625.935, "punctuated_word": "variety", "speaker": 0, "speaker_confidence": 0.7871094, "start": 625.615, "word": "variety" }, { "confidence": 1, "end": 626.095, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7871094, "start": 625.935, "word": "of" }, { "confidence": 0.99609375, "end": 626.335, "punctuated_word": "different", "speaker": 0, "speaker_confidence": 0.7871094, "start": 626.095, "word": "different" }, { "confidence": 0.94677734, "end": 626.835, "punctuated_word": "parameters,", "speaker": 0, "speaker_confidence": 0.7871094, "start": 626.335, "word": "parameters" }, { "confidence": 1, "end": 627.375, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7871094, "start": 627.135, "word": "and" }, { "confidence": 1, "end": 627.455, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7871094, "start": 627.375, "word": "you" }, { "confidence": 0.99902344, "end": 627.615, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.55322266, "start": 627.455, "word": "can" }, { "confidence": 0.99902344, "end": 627.775, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 0.55322266, "start": 627.615, "word": "even" }, { "confidence": 0.99902344, "end": 628.015, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.55322266, "start": 627.775, "word": "use" }, { "confidence": 0.99902344, "end": 628.175, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.55322266, "start": 628.015, "word": "your" }, { "confidence": 0.99902344, "end": 628.415, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 0.55322266, "start": 628.175, "word": "own" }, { "confidence": 0.99902344, "end": 628.915, "punctuated_word": "algorithm", "speaker": 0, "speaker_confidence": 0.55322266, "start": 628.415, "word": "algorithm" }, { "confidence": 1, "end": 629.135, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6665039, "start": 628.975, "word": "to" }, { "confidence": 1, "end": 629.455, "punctuated_word": "control", "speaker": 0, "speaker_confidence": 0.6665039, "start": 629.135, "word": "control" }, { "confidence": 1, "end": 629.615, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.6665039, "start": 629.455, "word": "how" }, { "confidence": 0.99902344, "end": 629.695, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6665039, "start": 629.615, "word": "the" }, { "confidence": 1, "end": 630.095, "punctuated_word": "points", "speaker": 0, "speaker_confidence": 0.6665039, "start": 629.695, "word": "points" }, { "confidence": 1, "end": 630.255, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.6665039, "start": 630.095, "word": "are" }, { "confidence": 1, "end": 630.65497, "punctuated_word": "clustered", "speaker": 0, "speaker_confidence": 0.6665039, "start": 630.255, "word": "clustered" }, { "confidence": 0.9970703, "end": 630.895, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.6665039, "start": 630.65497, "word": "into" }, { "confidence": 0.99902344, "end": 631.055, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6665039, "start": 630.895, "word": "the" }, { "confidence": 0.9996745, "end": 631.555, "punctuated_word": "hexagon.", "speaker": 0, "speaker_confidence": 0.6665039, "start": 631.055, "word": "hexagon" }, { "confidence": 0.70214844, "end": 632.1, "punctuated_word": "Go", "speaker": 0, "speaker_confidence": 0.8671875, "start": 631.94, "word": "go" }, { "confidence": 0.99902344, "end": 632.34, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 0.8671875, "start": 632.1, "word": "ahead" }, { "confidence": 0.99902344, "end": 632.42, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8671875, "start": 632.34, "word": "and" }, { "confidence": 0.9980469, "end": 632.66, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.8671875, "start": 632.42, "word": "add" }, { "confidence": 0.95214844, "end": 633.14, "punctuated_word": "hexagon", "speaker": 0, "speaker_confidence": 0.8671875, "start": 632.66, "word": "hexagon" }, { "confidence": 0.99902344, "end": 633.38, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8671875, "start": 633.14, "word": "to" }, { "confidence": 0.9970703, "end": 633.54, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8671875, "start": 633.38, "word": "the" }, { "confidence": 0.9350586, "end": 634.02, "punctuated_word": "layers,", "speaker": 0, "speaker_confidence": 0.8671875, "start": 633.54, "word": "layers" }, { "confidence": 1, "end": 634.18, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8671875, "start": 634.02, "word": "and" }, { "confidence": 1, "end": 634.34, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 0.8671875, "start": 634.18, "word": "you'll" }, { "confidence": 0.99902344, "end": 634.5, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 0.8671875, "start": 634.34, "word": "now" }, { "confidence": 0.99902344, "end": 634.66, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.8671875, "start": 634.5, "word": "see" }, { "confidence": 0.9951172, "end": 634.82, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8671875, "start": 634.66, "word": "that" }, { "confidence": 1, "end": 634.9, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.8671875, "start": 634.82, "word": "we" }, { "confidence": 0.9980469, "end": 635.14, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.8671875, "start": 634.9, "word": "get" }, { "confidence": 0.9902344, "end": 635.3, "punctuated_word": "these", "speaker": 0, "speaker_confidence": 0.8671875, "start": 635.14, "word": "these" }, { "confidence": 1, "end": 635.8, "punctuated_word": "extruded", "speaker": 0, "speaker_confidence": 0.8671875, "start": 635.3, "word": "extruded" }, { "confidence": 0.99902344, "end": 636.26, "punctuated_word": "shapes", "speaker": 0, "speaker_confidence": 0.8671875, "start": 635.86, "word": "shapes" }, { "confidence": 1, "end": 636.34, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.88183594, "start": 636.26, "word": "on" }, { "confidence": 1, "end": 636.42, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.88183594, "start": 636.34, "word": "the" }, { "confidence": 0.9995117, "end": 636.92, "punctuated_word": "map.", "speaker": 0, "speaker_confidence": 0.88183594, "start": 636.42, "word": "map" }, { "confidence": 1, "end": 637.14, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.88183594, "start": 637.06, "word": "we" }, { "confidence": 1, "end": 637.3, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.88183594, "start": 637.14, "word": "can" }, { "confidence": 1, "end": 637.46, "punctuated_word": "look", "speaker": 0, "speaker_confidence": 0.88183594, "start": 637.3, "word": "look" }, { "confidence": 1, "end": 637.54, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.88183594, "start": 637.46, "word": "at" }, { "confidence": 0.99902344, "end": 637.7, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.88183594, "start": 637.54, "word": "the" }, { "confidence": 1, "end": 638.1, "punctuated_word": "elevation", "speaker": 0, "speaker_confidence": 0.88183594, "start": 637.7, "word": "elevation" }, { "confidence": 1, "end": 638.26, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.88183594, "start": 638.1, "word": "of" }, { "confidence": 0.99902344, "end": 638.42, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.88183594, "start": 638.26, "word": "the" }, { "confidence": 0.9995117, "end": 638.92, "punctuated_word": "hexagon", "speaker": 0, "speaker_confidence": 0.88183594, "start": 638.42, "word": "hexagon" }, { "confidence": 0.99902344, "end": 639.3, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.88183594, "start": 639.06, "word": "to" }, { "confidence": 1, "end": 639.7, "punctuated_word": "determine", "speaker": 0, "speaker_confidence": 0.88183594, "start": 639.3, "word": "determine" }, { "confidence": 1, "end": 639.86, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.88183594, "start": 639.7, "word": "how" }, { "confidence": 1, "end": 640.26, "punctuated_word": "violent", "speaker": 0, "speaker_confidence": 0.88183594, "start": 639.86, "word": "violent" }, { "confidence": 0.99902344, "end": 640.42, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.88183594, "start": 640.26, "word": "that" }, { "confidence": 0.99902344, "end": 640.82, "punctuated_word": "neighborhood", "speaker": 0, "speaker_confidence": 0.88183594, "start": 640.42, "word": "neighborhood" }, { "confidence": 0.7648926, "end": 641.32, "punctuated_word": "is,", "speaker": 0, "speaker_confidence": 0.88183594, "start": 640.82, "word": "is" }, { "confidence": 1, "end": 641.725, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8095703, "start": 641.645, "word": "and" }, { "confidence": 0.99902344, "end": 641.805, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8095703, "start": 641.725, "word": "the" }, { "confidence": 1, "end": 642.205, "punctuated_word": "color", "speaker": 0, "speaker_confidence": 0.8095703, "start": 641.805, "word": "color" }, { "confidence": 0.99902344, "end": 642.28503, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8095703, "start": 642.205, "word": "of" }, { "confidence": 0.99902344, "end": 642.445, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8095703, "start": 642.28503, "word": "the" }, { "confidence": 0.99902344, "end": 642.925, "punctuated_word": "hexagon", "speaker": 0, "speaker_confidence": 0.8095703, "start": 642.445, "word": "hexagon" }, { "confidence": 0.99902344, "end": 643.245, "punctuated_word": "becomes", "speaker": 0, "speaker_confidence": 0.8095703, "start": 642.925, "word": "becomes" }, { "confidence": 0.99902344, "end": 643.485, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.8095703, "start": 643.245, "word": "more" }, { "confidence": 0.99902344, "end": 643.885, "punctuated_word": "red", "speaker": 0, "speaker_confidence": 0.8095703, "start": 643.485, "word": "red" }, { "confidence": 0.9951172, "end": 644.045, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.8095703, "start": 643.885, "word": "as" }, { "confidence": 0.99902344, "end": 644.205, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8095703, "start": 644.045, "word": "the" }, { "confidence": 1, "end": 644.685, "punctuated_word": "violence", "speaker": 0, "speaker_confidence": 0.8095703, "start": 644.205, "word": "violence" }, { "confidence": 0.99902344, "end": 645.185, "punctuated_word": "increases.", "speaker": 0, "speaker_confidence": 0.8095703, "start": 644.685, "word": "increases" }, { "confidence": 0.99902344, "end": 645.72504, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.8046875, "start": 645.565, "word": "now" }, { "confidence": 0.74121094, "end": 645.885, "punctuated_word": "we've", "speaker": 0, "speaker_confidence": 0.8046875, "start": 645.72504, "word": "we've" }, { "confidence": 0.9980469, "end": 646.205, "punctuated_word": "barely", "speaker": 0, "speaker_confidence": 0.8046875, "start": 645.885, "word": "barely" }, { "confidence": 0.99902344, "end": 646.445, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.8046875, "start": 646.205, "word": "only" }, { "confidence": 0.9863281, "end": 646.765, "punctuated_word": "scratched", "speaker": 0, "speaker_confidence": 0.8046875, "start": 646.445, "word": "scratched" }, { "confidence": 0.9980469, "end": 646.925, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8046875, "start": 646.765, "word": "the" }, { "confidence": 1, "end": 647.325, "punctuated_word": "surface", "speaker": 0, "speaker_confidence": 0.8046875, "start": 646.925, "word": "surface" }, { "confidence": 0.99902344, "end": 647.485, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8046875, "start": 647.325, "word": "on" }, { "confidence": 0.9995117, "end": 647.72504, "punctuated_word": "what's", "speaker": 0, "speaker_confidence": 0.8046875, "start": 647.485, "word": "what's" }, { "confidence": 1, "end": 648.045, "punctuated_word": "possible", "speaker": 0, "speaker_confidence": 0.8046875, "start": 647.72504, "word": "possible" }, { "confidence": 1, "end": 648.205, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.8046875, "start": 648.045, "word": "with" }, { "confidence": 0.7194824, "end": 648.525, "punctuated_word": "deck.", "speaker": 0, "speaker_confidence": 0.8046875, "start": 648.205, "word": "deck" }, { "confidence": 0.9042969, "end": 649.025, "punctuated_word": "Gl.", "speaker": 0, "speaker_confidence": 0.8046875, "start": 648.525, "word": "gl" }, { "confidence": 0.9941406, "end": 649.27997, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.90771484, "start": 649.2, "word": "if" }, { "confidence": 1, "end": 649.36, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.90771484, "start": 649.27997, "word": "you" }, { "confidence": 1, "end": 649.6, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.90771484, "start": 649.36, "word": "need" }, { "confidence": 0.99902344, "end": 649.76, "punctuated_word": "high", "speaker": 0, "speaker_confidence": 0.90771484, "start": 649.6, "word": "high" }, { "confidence": 0.99609375, "end": 650.26, "punctuated_word": "performance", "speaker": 0, "speaker_confidence": 0.90771484, "start": 649.76, "word": "performance" }, { "confidence": 0.9941406, "end": 650.56, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.90771484, "start": 650.32, "word": "data" }, { "confidence": 0.9980469, "end": 651.06, "punctuated_word": "visualization", "speaker": 0, "speaker_confidence": 0.90771484, "start": 650.56, "word": "visualization" }, { "confidence": 0.9970703, "end": 651.44, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.90771484, "start": 651.27997, "word": "on" }, { "confidence": 0.99902344, "end": 651.6, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.90771484, "start": 651.44, "word": "a" }, { "confidence": 0.99902344, "end": 651.83997, "punctuated_word": "large", "speaker": 0, "speaker_confidence": 0.90771484, "start": 651.6, "word": "large" }, { "confidence": 0.84472656, "end": 652.08, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.90771484, "start": 651.83997, "word": "data" }, { "confidence": 0.9812012, "end": 652.32, "punctuated_word": "set,", "speaker": 0, "speaker_confidence": 0.90771484, "start": 652.08, "word": "set" }, { "confidence": 0.99853516, "end": 652.64, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.90771484, "start": 652.32, "word": "it's" }, { "confidence": 1, "end": 652.96, "punctuated_word": "definitely", "speaker": 0, "speaker_confidence": 0.90771484, "start": 652.64, "word": "definitely" }, { "confidence": 1, "end": 653.2, "punctuated_word": "worth", "speaker": 0, "speaker_confidence": 0.90771484, "start": 652.96, "word": "worth" }, { "confidence": 1, "end": 653.44, "punctuated_word": "checking", "speaker": 0, "speaker_confidence": 0.90771484, "start": 653.2, "word": "checking" }, { "confidence": 0.99609375, "end": 653.92, "punctuated_word": "out.", "speaker": 0, "speaker_confidence": 0.90771484, "start": 653.44, "word": "out" }, { "confidence": 0.9980469, "end": 654.08, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.90771484, "start": 653.92, "word": "i'm" }, { "confidence": 0.9716797, "end": 654.24, "punctuated_word": "gonna", "speaker": 0, "speaker_confidence": 0.90771484, "start": 654.08, "word": "gonna" }, { "confidence": 0.99609375, "end": 654.32, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.90771484, "start": 654.24, "word": "go" }, { "confidence": 0.9980469, "end": 654.4, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 0.6152344, "start": 654.32, "word": "ahead" }, { "confidence": 0.9892578, "end": 654.48, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6152344, "start": 654.4, "word": "and" }, { "confidence": 1, "end": 654.72, "punctuated_word": "wrap", "speaker": 0, "speaker_confidence": 0.6152344, "start": 654.48, "word": "wrap" }, { "confidence": 0.9970703, "end": 654.96, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 0.6152344, "start": 654.72, "word": "things" }, { "confidence": 0.99121094, "end": 655.04, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.6152344, "start": 654.96, "word": "up" }, { "confidence": 0.9375, "end": 655.44, "punctuated_word": "there.", "speaker": 0, "speaker_confidence": 0.6152344, "start": 655.04, "word": "there" }, { "confidence": 0.9921875, "end": 655.6, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.6152344, "start": 655.44, "word": "if" }, { "confidence": 0.99902344, "end": 655.68, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.6152344, "start": 655.6, "word": "this" }, { "confidence": 0.9980469, "end": 656, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.84472656, "start": 655.68, "word": "video" }, { "confidence": 0.9863281, "end": 656.24, "punctuated_word": "helped", "speaker": 0, "speaker_confidence": 0.84472656, "start": 656, "word": "helped" }, { "confidence": 0.9580078, "end": 656.4, "punctuated_word": "you,", "speaker": 0, "speaker_confidence": 0.84472656, "start": 656.24, "word": "you" }, { "confidence": 0.9951172, "end": 656.64, "punctuated_word": "please", "speaker": 0, "speaker_confidence": 0.84472656, "start": 656.4, "word": "please" }, { "confidence": 0.94384766, "end": 656.8, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.84472656, "start": 656.64, "word": "like" }, { "confidence": 0.8730469, "end": 657.125, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.84472656, "start": 656.8, "word": "and" }, { "confidence": 0.82006836, "end": 657.525, "punctuated_word": "scribe", "speaker": 0, "speaker_confidence": 0.84472656, "start": 657.125, "word": "scribe" }, { "confidence": 0.5620117, "end": 657.685, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.84472656, "start": 657.525, "word": "and" }, { "confidence": 0.99609375, "end": 658.085, "punctuated_word": "consider", "speaker": 0, "speaker_confidence": 0.84472656, "start": 657.685, "word": "consider" }, { "confidence": 0.99902344, "end": 658.485, "punctuated_word": "becoming", "speaker": 0, "speaker_confidence": 0.84472656, "start": 658.085, "word": "becoming" }, { "confidence": 1, "end": 658.645, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.84472656, "start": 658.485, "word": "a" }, { "confidence": 0.94140625, "end": 658.805, "punctuated_word": "pro", "speaker": 0, "speaker_confidence": 0.84472656, "start": 658.645, "word": "pro" }, { "confidence": 0.9892578, "end": 659.125, "punctuated_word": "member", "speaker": 0, "speaker_confidence": 0.84472656, "start": 658.805, "word": "member" }, { "confidence": 0.9902344, "end": 659.365, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.84472656, "start": 659.125, "word": "at" }, { "confidence": 0.5461426, "end": 659.865, "punctuated_word": "FireShip.", "speaker": 0, "speaker_confidence": 0.84472656, "start": 659.365, "word": "fireship" }, { "confidence": 0.8144531, "end": 660.245, "punctuated_word": "Io", "speaker": 0, "speaker_confidence": 0.84472656, "start": 659.925, "word": "io" }, { "confidence": 0.9873047, "end": 660.565, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.84472656, "start": 660.245, "word": "for" }, { "confidence": 1, "end": 660.965, "punctuated_word": "access", "speaker": 0, "speaker_confidence": 0.84472656, "start": 660.565, "word": "access" }, { "confidence": 1, "end": 661.125, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.84472656, "start": 660.965, "word": "to" }, { "confidence": 1, "end": 661.365, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 0.84472656, "start": 661.125, "word": "even" }, { "confidence": 1, "end": 661.605, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.84472656, "start": 661.365, "word": "more" }, { "confidence": 0.9995117, "end": 662.105, "punctuated_word": "content.", "speaker": 0, "speaker_confidence": 0.84472656, "start": 661.605, "word": "content" }, { "confidence": 0.9970703, "end": 662.645, "punctuated_word": "Thanks", "speaker": 0, "speaker_confidence": 0.84472656, "start": 662.325, "word": "thanks" }, { "confidence": 1, "end": 662.805, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.84472656, "start": 662.645, "word": "for" }, { "confidence": 0.85546875, "end": 663.205, "punctuated_word": "watching,", "speaker": 0, "speaker_confidence": 0.84472656, "start": 662.805, "word": "watching" }, { "confidence": 0.99902344, "end": 663.445, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.84472656, "start": 663.205, "word": "and" }, { "confidence": 0.99902344, "end": 663.605, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.84472656, "start": 663.445, "word": "i" }, { "confidence": 0.9980469, "end": 663.925, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.84472656, "start": 663.605, "word": "will" }, { "confidence": 0.99902344, "end": 664.165, "punctuated_word": "talk", "speaker": 0, "speaker_confidence": 0.84472656, "start": 663.925, "word": "talk" }, { "confidence": 0.99609375, "end": 664.245, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.84472656, "start": 664.165, "word": "to" }, { "confidence": 0.9951172, "end": 664.325, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.84472656, "start": 664.245, "word": "you" }, { "confidence": 0.95996094, "end": 664.62, "punctuated_word": "soon.", "speaker": 0, "speaker_confidence": 0.84472656, "start": 664.325, "word": "soon" }, { "confidence": 0.94140625, "end": 665.12, "punctuated_word": "By", "speaker": 0, "speaker_confidence": 0.84472656, "start": 664.62, "word": "by" } ] } ], "detected_language": "", "language_confidence": 0, "search": null } ], "summary": { "result": "success", "short": "The speakers discuss the use of deck gl and Google Maps in visualizing the safety of gun violence in data visualization. They explain how to use deck gl for building a new project, create a file for JavaScript, and create a deferred script tag. They also discuss the process of building an app, installing a dev server, and creating a file for the Google Maps API. The heat map is useful for data visualization and the speaker suggests using the same logic for the heat map layer. They also discuss the use of overlay and the cluster point process." }, "utterances": null } }
downloads\Visualize_140k_Gun_Violence_Incidents_with_Deck.gl_&_Google_Maps.wav
https://www.youtube.com/watch?v=e_5W-JF_E2U
Visualize 140k Gun Violence Incidents with Deck.gl & Google Maps
51,186
Fireship
148
Vite is a JavaScript build tool that makes it faster and easier to build web applications. It's similar to tools like Webpack, but relies on modern browser features like ES Modules to simplify and speed-up the build process. #javascript #webdev #100SecondsOfCode 🔗 Resources Vite Docs https://vitejs.dev Vite SSR Plugin https://vite-plugin-ssr.com Learn more about JS Bundlers https://youtu.be/5IG4UmULyoA 🔥 Get More Content - Upgrade to PRO Upgrade to Fireship PRO at https://fireship.io/pro Use code lORhwXd2 for 25% off your first payment. 🎨 My Editor Settings - Atom One Dark - vscode-icons - Fira Code Font 🔖 Topics Covered - What is Vite.js? - Vite vs Webpack - Who created Vite? - How does Vite work? - Module Bundlers in JavaScript
{ "metadata": { "channels": 1, "created": "2024-02-04T05:33:18.701Z", "duration": 148.32906, "model_info": { "30089e05-99d1-4376-b32e-c263170674af": { "arch": "nova-2", "name": "2-general-nova", "version": "2024-01-09.29447" } }, "models": [ "30089e05-99d1-4376-b32e-c263170674af" ], "request_id": "d192882c-9cb2-4276-afff-e24897311db1", "sha256": "8d8fb3612853e72ed466a1fbb94477234f21cc24319a174f4b1c7114807b927c", "summary_info": { "input_tokens": 618, "model_uuid": "67875a7f-c9c4-48a0-aa55-5bdb8a91c34a", "output_tokens": 101 }, "transaction_key": "deprecated", "warnings": null }, "results": { "channels": [ { "alternatives": [ { "confidence": 0.99902344, "entities": null, "paragraphs": { "paragraphs": [ { "end": 19.17, "num_words": 62, "sentences": [ { "end": 5.7799997, "start": 0.24, "text": "Vite, a JavaScript build tool that simplifies the way we build and develop front end web applications." }, { "end": 7.675, "start": 6, "text": "At its core, it does 2 things." }, { "end": 14.655001, "start": 7.915, "text": "1, serve your code locally during development, and 2, bundle your JavaScript, CSS, and other assets together for production." }, { "end": 17.83, "start": 14.7699995, "text": "There are many other tools out there that do the same thing like webpack." }, { "end": 19.17, "start": 17.89, "text": "So what makes Vite different?" } ], "speaker": 0, "start": 0.24 }, { "end": 41.995, "num_words": 79, "sentences": [ { "end": 21.89, "start": 19.17, "text": "Well, it was created by Evan Yu, who also created Vue." }, { "end": 25.495, "start": 21.89, "text": "Js, as a way to both simplify and beat up the build process." }, { "end": 31.015, "start": 25.495, "text": "Not long ago, web developers had no native way to combine JavaScript files together in a modular way." }, { "end": 37.239998, "start": 31.015, "text": "This led to tools like webpack and rollup that concatenate multiple files together into a single bundle for the browser." }, { "end": 41.995, "start": 37.239998, "text": "The problem is that this process becomes increasingly Flow, as the app adds more code and dependencies." } ], "speaker": 0, "start": 19.17 }, { "end": 76.284996, "num_words": 120, "sentences": [ { "end": 51.42, "start": 42.215, "text": "In 2015, ECMAScript modules were introduced, and by 2020, had wide browser support, allowing developers to import port and export code from different files in the browser." }, { "end": 57.145, "start": 51.48, "text": "Vite leverages native ES modules in the browser to load your code instantly no matter how large the app is." }, { "end": 61.545002, "start": 57.225002, "text": "It also supports hot module replacement for an extremely fast feedback loop during development." }, { "end": 70.65, "start": 61.545002, "text": "When building for production, it uses roll up under the hood, so you don't have to worry about configuring It's an opinionated tool that provides conventions that work out of the box for the majority of developers." }, { "end": 76.284996, "start": 70.71, "text": "To get started, run npm init vite from the command line and choose a starter project with your favorite front end framework." } ], "speaker": 0, "start": 42.215 }, { "end": 94.354996, "num_words": 64, "sentences": [ { "end": 78.925, "start": 76.284996, "text": "You'll notice the project comes with a vconfig file." }, { "end": 85.740005, "start": 78.925, "text": "It has a plugin ecosystem That can extend it with additional features, and you can also manually override the roll up defaults when necessary." }, { "end": 90.755, "start": 85.8, "text": "And there are some really cool plugins out there like Vite SSR that can do server side rendering like Next." }, { "end": 91.155, "start": 90.755, "text": "Js." }, { "end": 94.354996, "start": 91.155, "text": "Now to serve the application locally, run npm run dev." } ], "speaker": 0, "start": 76.284996 }, { "end": 126.045, "num_words": 128, "sentences": [ { "end": 99.48, "start": 94.354996, "text": "Even if I install a bunch of big dependencies like Lodash and Moment, the time to run the dev server does not change." }, { "end": 109.565, "start": 99.560005, "text": "Now if you open the network tab in the browser dev tools, you'll notice that instead of importing a single JavaScript bundle file, it's importing our actual source code, like a raw TSX file in this case." }, { "end": 115.805, "start": 109.565, "text": "It also makes TypeScript about 20 to 30 times faster because it skips type checking and uses esbuild to transpile your code." }, { "end": 120.92, "start": 115.805, "text": "Now Now as you're developing your app, you might change the state of it in the UI, then realize that some of the code needs to change." }, { "end": 126.045, "start": 120.92, "text": "When you modify the source code, the changes will be reflected instantly without losing that state of the application." } ], "speaker": 0, "start": 94.354996 }, { "end": 145.055, "num_words": 63, "sentences": [ { "end": 128.205, "start": 126.185, "text": "That's what we call hot module replacement." }, { "end": 131.305, "start": 128.505, "text": "Now run npm build to build the app for production." }, { "end": 139.535, "start": 131.305, "text": "This will generate a JavaScript bundle with rollup with a bunch of automatic optimizations, like automatic code splitting for any dynamic imports and CSS." }, { "end": 141.675, "start": 139.675, "text": "This has been beat in 100 seconds." }, { "end": 145.055, "start": 141.675, "text": "If you wanna see more short videos like this, hit the like button and subscribe." } ], "speaker": 0, "start": 126.185 }, { "end": 148.015, "num_words": 12, "sentences": [ { "end": 148.015, "start": 145.115, "text": "Thanks for watching and I will see you in the next one." } ], "speaker": 0, "start": 145.115 } ], "transcript": "\nSpeaker 0: Vite, a JavaScript build tool that simplifies the way we build and develop front end web applications. At its core, it does 2 things. 1, serve your code locally during development, and 2, bundle your JavaScript, CSS, and other assets together for production. There are many other tools out there that do the same thing like webpack. So what makes Vite different?\n\nWell, it was created by Evan Yu, who also created Vue. Js, as a way to both simplify and beat up the build process. Not long ago, web developers had no native way to combine JavaScript files together in a modular way. This led to tools like webpack and rollup that concatenate multiple files together into a single bundle for the browser. The problem is that this process becomes increasingly Flow, as the app adds more code and dependencies.\n\nIn 2015, ECMAScript modules were introduced, and by 2020, had wide browser support, allowing developers to import port and export code from different files in the browser. Vite leverages native ES modules in the browser to load your code instantly no matter how large the app is. It also supports hot module replacement for an extremely fast feedback loop during development. When building for production, it uses roll up under the hood, so you don't have to worry about configuring It's an opinionated tool that provides conventions that work out of the box for the majority of developers. To get started, run npm init vite from the command line and choose a starter project with your favorite front end framework.\n\nYou'll notice the project comes with a vconfig file. It has a plugin ecosystem That can extend it with additional features, and you can also manually override the roll up defaults when necessary. And there are some really cool plugins out there like Vite SSR that can do server side rendering like Next. Js. Now to serve the application locally, run npm run dev.\n\nEven if I install a bunch of big dependencies like Lodash and Moment, the time to run the dev server does not change. Now if you open the network tab in the browser dev tools, you'll notice that instead of importing a single JavaScript bundle file, it's importing our actual source code, like a raw TSX file in this case. It also makes TypeScript about 20 to 30 times faster because it skips type checking and uses esbuild to transpile your code. Now Now as you're developing your app, you might change the state of it in the UI, then realize that some of the code needs to change. When you modify the source code, the changes will be reflected instantly without losing that state of the application.\n\nThat's what we call hot module replacement. Now run npm build to build the app for production. This will generate a JavaScript bundle with rollup with a bunch of automatic optimizations, like automatic code splitting for any dynamic imports and CSS. This has been beat in 100 seconds. If you wanna see more short videos like this, hit the like button and subscribe.\n\nThanks for watching and I will see you in the next one." }, "summaries": null, "topics": [ { "end_word": 202, "start_word": 0, "text": "Vite, a JavaScript build tool that simplifies the way we build and develop front end web applications. At its core, it does 2 things. 1, serve your code locally during development, and 2, bundle your JavaScript, CSS, and other assets together for production. There are many other tools out there that do the same thing like webpack. So what makes Vite different? Well, it was created by Evan Yu, who also created Vue. Js, as a way to both simplify and beat up the build process. Not long ago, web developers had no native way to combine JavaScript files together in a modular way. This led to tools like webpack and rollup that concatenate multiple files together into a single bundle for the browser. The problem is that this process becomes increasingly Flow, as the app adds more code and dependencies. In 2015, ECMAScript modules were introduced, and by 2020, had wide browser support, allowing developers to import port and export code from different files in the browser. Vite leverages native ES modules in the browser to load your code instantly no matter how large the app is. It also supports hot module replacement for an extremely fast feedback loop during development.", "topics": [] }, { "end_word": 294, "start_word": 202, "text": "When building for production, it uses roll up under the hood, so you don't have to worry about configuring It's an opinionated tool that provides conventions that work out of the box for the majority of developers. To get started, run npm init vite from the command line and choose a starter project with your favorite front end framework. You'll notice the project comes with a vconfig file. It has a plugin ecosystem That can extend it with additional features, and you can also manually override the roll up defaults when necessary.", "topics": [ { "confidence": 0.36083922, "topic": "software development" }, { "confidence": 0.051798593, "topic": "software" } ] }, { "end_word": 385, "start_word": 294, "text": "And there are some really cool plugins out there like Vite SSR that can do server side rendering like Next. Js. Now to serve the application locally, run npm run dev. Even if I install a bunch of big dependencies like Lodash and Moment, the time to run the dev server does not change. Now if you open the network tab in the browser dev tools, you'll notice that instead of importing a single JavaScript bundle file, it's importing our actual source code, like a raw TSX file in this case.", "topics": [] }, { "end_word": 528, "start_word": 385, "text": "It also makes TypeScript about 20 to 30 times faster because it skips type checking and uses esbuild to transpile your code. Now Now as you're developing your app, you might change the state of it in the UI, then realize that some of the code needs to change. When you modify the source code, the changes will be reflected instantly without losing that state of the application. That's what we call hot module replacement. Now run npm build to build the app for production. This will generate a JavaScript bundle with rollup with a bunch of automatic optimizations, like automatic code splitting for any dynamic imports and CSS. This has been beat in 100 seconds. If you wanna see more short videos like this, hit the like button and subscribe. Thanks for watching and I will see you in the next one.", "topics": [ { "confidence": 0.1042992, "topic": "youtube" }, { "confidence": 0.017685039, "topic": "programming" }, { "confidence": 0.017283646, "topic": "software development" }, { "confidence": 0.008167887, "topic": "software" } ] } ], "transcript": "Vite, a JavaScript build tool that simplifies the way we build and develop front end web applications. At its core, it does 2 things. 1, serve your code locally during development, and 2, bundle your JavaScript, CSS, and other assets together for production. There are many other tools out there that do the same thing like webpack. So what makes Vite different? Well, it was created by Evan Yu, who also created Vue. Js, as a way to both simplify and beat up the build process. Not long ago, web developers had no native way to combine JavaScript files together in a modular way. This led to tools like webpack and rollup that concatenate multiple files together into a single bundle for the browser. The problem is that this process becomes increasingly Flow, as the app adds more code and dependencies. In 2015, ECMAScript modules were introduced, and by 2020, had wide browser support, allowing developers to import port and export code from different files in the browser. Vite leverages native ES modules in the browser to load your code instantly no matter how large the app is. It also supports hot module replacement for an extremely fast feedback loop during development. When building for production, it uses roll up under the hood, so you don't have to worry about configuring It's an opinionated tool that provides conventions that work out of the box for the majority of developers. To get started, run npm init vite from the command line and choose a starter project with your favorite front end framework. You'll notice the project comes with a vconfig file. It has a plugin ecosystem That can extend it with additional features, and you can also manually override the roll up defaults when necessary. And there are some really cool plugins out there like Vite SSR that can do server side rendering like Next. Js. Now to serve the application locally, run npm run dev. Even if I install a bunch of big dependencies like Lodash and Moment, the time to run the dev server does not change. Now if you open the network tab in the browser dev tools, you'll notice that instead of importing a single JavaScript bundle file, it's importing our actual source code, like a raw TSX file in this case. It also makes TypeScript about 20 to 30 times faster because it skips type checking and uses esbuild to transpile your code. Now Now as you're developing your app, you might change the state of it in the UI, then realize that some of the code needs to change. When you modify the source code, the changes will be reflected instantly without losing that state of the application. That's what we call hot module replacement. Now run npm build to build the app for production. This will generate a JavaScript bundle with rollup with a bunch of automatic optimizations, like automatic code splitting for any dynamic imports and CSS. This has been beat in 100 seconds. If you wanna see more short videos like this, hit the like button and subscribe. Thanks for watching and I will see you in the next one.", "translations": null, "words": [ { "confidence": 0.93929034, "end": 0.74, "punctuated_word": "Vite,", "speaker": 0, "speaker_confidence": 0.7080078, "start": 0.24, "word": "vite" }, { "confidence": 0.9921875, "end": 1.12, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7080078, "start": 0.96, "word": "a" }, { "confidence": 0.8330078, "end": 1.62, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.7080078, "start": 1.12, "word": "javascript" }, { "confidence": 0.99609375, "end": 1.92, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.7080078, "start": 1.68, "word": "build" }, { "confidence": 1, "end": 2.24, "punctuated_word": "tool", "speaker": 0, "speaker_confidence": 0.7080078, "start": 1.92, "word": "tool" }, { "confidence": 1, "end": 2.56, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7080078, "start": 2.24, "word": "that" }, { "confidence": 1, "end": 3.06, "punctuated_word": "simplifies", "speaker": 0, "speaker_confidence": 0.7080078, "start": 2.56, "word": "simplifies" }, { "confidence": 1, "end": 3.1999998, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7080078, "start": 3.12, "word": "the" }, { "confidence": 1, "end": 3.36, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 0.7080078, "start": 3.1999998, "word": "way" }, { "confidence": 1, "end": 3.6, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.7080078, "start": 3.36, "word": "we" }, { "confidence": 1, "end": 3.84, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.7080078, "start": 3.6, "word": "build" }, { "confidence": 0.9980469, "end": 4.16, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7080078, "start": 3.84, "word": "and" }, { "confidence": 1, "end": 4.64, "punctuated_word": "develop", "speaker": 0, "speaker_confidence": 0.7080078, "start": 4.16, "word": "develop" }, { "confidence": 0.9941406, "end": 4.88, "punctuated_word": "front", "speaker": 0, "speaker_confidence": 0.7080078, "start": 4.64, "word": "front" }, { "confidence": 0.8339844, "end": 5.04, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.7080078, "start": 4.88, "word": "end" }, { "confidence": 0.9970703, "end": 5.2799997, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.7080078, "start": 5.04, "word": "web" }, { "confidence": 0.9909668, "end": 5.7799997, "punctuated_word": "applications.", "speaker": 0, "speaker_confidence": 0.7080078, "start": 5.2799997, "word": "applications" }, { "confidence": 0.99902344, "end": 6.16, "punctuated_word": "At", "speaker": 0, "speaker_confidence": 0.7080078, "start": 6, "word": "at" }, { "confidence": 0.9921875, "end": 6.3999996, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.7080078, "start": 6.16, "word": "its" }, { "confidence": 0.890625, "end": 6.72, "punctuated_word": "core,", "speaker": 0, "speaker_confidence": 0.7080078, "start": 6.3999996, "word": "core" }, { "confidence": 0.9951172, "end": 6.8799996, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.7080078, "start": 6.72, "word": "it" }, { "confidence": 1, "end": 7.12, "punctuated_word": "does", "speaker": 0, "speaker_confidence": 0.7080078, "start": 6.8799996, "word": "does" }, { "confidence": 0.5385742, "end": 7.3599997, "punctuated_word": "2", "speaker": 0, "speaker_confidence": 0.7080078, "start": 7.12, "word": "2" }, { "confidence": 0.7751465, "end": 7.675, "punctuated_word": "things.", "speaker": 0, "speaker_confidence": 0.7080078, "start": 7.3599997, "word": "things" }, { "confidence": 0.8745117, "end": 8.155, "punctuated_word": "1,", "speaker": 0, "speaker_confidence": 0.7060547, "start": 7.915, "word": "1" }, { "confidence": 0.99902344, "end": 8.395, "punctuated_word": "serve", "speaker": 0, "speaker_confidence": 0.7060547, "start": 8.155, "word": "serve" }, { "confidence": 0.99902344, "end": 8.635, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.7060547, "start": 8.395, "word": "your" }, { "confidence": 0.99902344, "end": 8.875, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.7060547, "start": 8.635, "word": "code" }, { "confidence": 1, "end": 9.195, "punctuated_word": "locally", "speaker": 0, "speaker_confidence": 0.7060547, "start": 8.875, "word": "locally" }, { "confidence": 1, "end": 9.515, "punctuated_word": "during", "speaker": 0, "speaker_confidence": 0.7060547, "start": 9.195, "word": "during" }, { "confidence": 0.814209, "end": 10.015, "punctuated_word": "development,", "speaker": 0, "speaker_confidence": 0.7060547, "start": 9.515, "word": "development" }, { "confidence": 1, "end": 10.235001, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7060547, "start": 10.075, "word": "and" }, { "confidence": 0.9291992, "end": 10.735001, "punctuated_word": "2,", "speaker": 0, "speaker_confidence": 0.7060547, "start": 10.235001, "word": "2" }, { "confidence": 1, "end": 11.115, "punctuated_word": "bundle", "speaker": 0, "speaker_confidence": 0.7060547, "start": 10.795, "word": "bundle" }, { "confidence": 0.99902344, "end": 11.435, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.7060547, "start": 11.115, "word": "your" }, { "confidence": 0.95703125, "end": 11.935, "punctuated_word": "JavaScript,", "speaker": 0, "speaker_confidence": 0.7060547, "start": 11.435, "word": "javascript" }, { "confidence": 0.9814453, "end": 12.495, "punctuated_word": "CSS,", "speaker": 0, "speaker_confidence": 0.7060547, "start": 11.995, "word": "css" }, { "confidence": 1, "end": 12.795, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7060547, "start": 12.555, "word": "and" }, { "confidence": 1, "end": 13.035, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.7060547, "start": 12.795, "word": "other" }, { "confidence": 1, "end": 13.434999, "punctuated_word": "assets", "speaker": 0, "speaker_confidence": 0.7060547, "start": 13.035, "word": "assets" }, { "confidence": 1, "end": 13.915, "punctuated_word": "together", "speaker": 0, "speaker_confidence": 0.7060547, "start": 13.434999, "word": "together" }, { "confidence": 1, "end": 14.155001, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.7060547, "start": 13.915, "word": "for" }, { "confidence": 0.9995117, "end": 14.655001, "punctuated_word": "production.", "speaker": 0, "speaker_confidence": 0.7060547, "start": 14.155001, "word": "production" }, { "confidence": 1, "end": 14.929999, "punctuated_word": "There", "speaker": 0, "speaker_confidence": 0.7060547, "start": 14.7699995, "word": "there" }, { "confidence": 1, "end": 15.089999, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.7060547, "start": 14.929999, "word": "are" }, { "confidence": 1, "end": 15.169999, "punctuated_word": "many", "speaker": 0, "speaker_confidence": 0.7060547, "start": 15.089999, "word": "many" }, { "confidence": 0.99902344, "end": 15.49, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.7060547, "start": 15.169999, "word": "other" }, { "confidence": 1, "end": 15.73, "punctuated_word": "tools", "speaker": 0, "speaker_confidence": 0.7060547, "start": 15.49, "word": "tools" }, { "confidence": 1, "end": 15.889999, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.7060547, "start": 15.73, "word": "out" }, { "confidence": 1, "end": 16.13, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.7060547, "start": 15.889999, "word": "there" }, { "confidence": 0.9951172, "end": 16.289999, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7060547, "start": 16.13, "word": "that" }, { "confidence": 1, "end": 16.449999, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.7060547, "start": 16.289999, "word": "do" }, { "confidence": 1, "end": 16.529999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7060547, "start": 16.449999, "word": "the" }, { "confidence": 1, "end": 16.77, "punctuated_word": "same", "speaker": 0, "speaker_confidence": 0.75146484, "start": 16.529999, "word": "same" }, { "confidence": 0.9707031, "end": 17.01, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.75146484, "start": 16.77, "word": "thing" }, { "confidence": 0.5078125, "end": 17.33, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.75146484, "start": 17.01, "word": "like" }, { "confidence": 0.8595378, "end": 17.83, "punctuated_word": "webpack.", "speaker": 0, "speaker_confidence": 0.75146484, "start": 17.33, "word": "webpack" }, { "confidence": 1, "end": 18.05, "punctuated_word": "So", "speaker": 0, "speaker_confidence": 0.75146484, "start": 17.89, "word": "so" }, { "confidence": 0.9760742, "end": 18.289999, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.75146484, "start": 18.05, "word": "what" }, { "confidence": 0.99609375, "end": 18.529999, "punctuated_word": "makes", "speaker": 0, "speaker_confidence": 0.75146484, "start": 18.289999, "word": "makes" }, { "confidence": 0.9345703, "end": 18.77, "punctuated_word": "Vite", "speaker": 0, "speaker_confidence": 0.75146484, "start": 18.529999, "word": "vite" }, { "confidence": 0.99902344, "end": 19.17, "punctuated_word": "different?", "speaker": 0, "speaker_confidence": 0.75146484, "start": 18.77, "word": "different" }, { "confidence": 0.9975586, "end": 19.49, "punctuated_word": "Well,", "speaker": 0, "speaker_confidence": 0.75146484, "start": 19.17, "word": "well" }, { "confidence": 0.9980469, "end": 19.57, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.75146484, "start": 19.49, "word": "it" }, { "confidence": 1, "end": 19.73, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.75146484, "start": 19.57, "word": "was" }, { "confidence": 1, "end": 20.05, "punctuated_word": "created", "speaker": 0, "speaker_confidence": 0.75146484, "start": 19.73, "word": "created" }, { "confidence": 0.99902344, "end": 20.21, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.75146484, "start": 20.05, "word": "by" }, { "confidence": 0.9941406, "end": 20.529999, "punctuated_word": "Evan", "speaker": 0, "speaker_confidence": 0.75146484, "start": 20.21, "word": "evan" }, { "confidence": 0.81884766, "end": 20.77, "punctuated_word": "Yu,", "speaker": 0, "speaker_confidence": 0.75146484, "start": 20.529999, "word": "yu" }, { "confidence": 0.99902344, "end": 21.009998, "punctuated_word": "who", "speaker": 0, "speaker_confidence": 0.75146484, "start": 20.77, "word": "who" }, { "confidence": 1, "end": 21.25, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.75146484, "start": 21.009998, "word": "also" }, { "confidence": 1, "end": 21.57, "punctuated_word": "created", "speaker": 0, "speaker_confidence": 0.75146484, "start": 21.25, "word": "created" }, { "confidence": 0.88411456, "end": 21.89, "punctuated_word": "Vue.", "speaker": 0, "speaker_confidence": 0.75146484, "start": 21.57, "word": "vue" }, { "confidence": 0.7697754, "end": 22.21, "punctuated_word": "Js,", "speaker": 0, "speaker_confidence": 0.75146484, "start": 21.89, "word": "js" }, { "confidence": 0.99902344, "end": 22.449999, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.75146484, "start": 22.21, "word": "as" }, { "confidence": 1, "end": 22.609999, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.75146484, "start": 22.449999, "word": "a" }, { "confidence": 1, "end": 22.77, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 0.75146484, "start": 22.609999, "word": "way" }, { "confidence": 1, "end": 22.93, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.75146484, "start": 22.77, "word": "to" }, { "confidence": 1, "end": 23.25, "punctuated_word": "both", "speaker": 0, "speaker_confidence": 0.75146484, "start": 22.93, "word": "both" }, { "confidence": 0.99902344, "end": 23.73, "punctuated_word": "simplify", "speaker": 0, "speaker_confidence": 0.75146484, "start": 23.25, "word": "simplify" }, { "confidence": 0.9980469, "end": 24.135, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.75146484, "start": 23.73, "word": "and" }, { "confidence": 0.56396484, "end": 24.375, "punctuated_word": "beat", "speaker": 0, "speaker_confidence": 0.75146484, "start": 24.135, "word": "beat" }, { "confidence": 0.99609375, "end": 24.535, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.75146484, "start": 24.375, "word": "up" }, { "confidence": 0.99609375, "end": 24.615, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8925781, "start": 24.535, "word": "the" }, { "confidence": 0.97998047, "end": 25.015, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.8925781, "start": 24.615, "word": "build" }, { "confidence": 1, "end": 25.495, "punctuated_word": "process.", "speaker": 0, "speaker_confidence": 0.8925781, "start": 25.015, "word": "process" }, { "confidence": 1, "end": 25.655, "punctuated_word": "Not", "speaker": 0, "speaker_confidence": 0.8925781, "start": 25.495, "word": "not" }, { "confidence": 1, "end": 25.895, "punctuated_word": "long", "speaker": 0, "speaker_confidence": 0.8925781, "start": 25.655, "word": "long" }, { "confidence": 0.9980469, "end": 26.375, "punctuated_word": "ago,", "speaker": 0, "speaker_confidence": 0.8925781, "start": 25.895, "word": "ago" }, { "confidence": 0.9951172, "end": 26.615, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.8925781, "start": 26.375, "word": "web" }, { "confidence": 0.99902344, "end": 27.095001, "punctuated_word": "developers", "speaker": 0, "speaker_confidence": 0.8925781, "start": 26.615, "word": "developers" }, { "confidence": 0.9980469, "end": 27.335, "punctuated_word": "had", "speaker": 0, "speaker_confidence": 0.8925781, "start": 27.095001, "word": "had" }, { "confidence": 0.98828125, "end": 27.575, "punctuated_word": "no", "speaker": 0, "speaker_confidence": 0.8925781, "start": 27.335, "word": "no" }, { "confidence": 0.99902344, "end": 27.895, "punctuated_word": "native", "speaker": 0, "speaker_confidence": 0.8925781, "start": 27.575, "word": "native" }, { "confidence": 1, "end": 28.135, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 0.8925781, "start": 27.895, "word": "way" }, { "confidence": 1, "end": 28.295, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8925781, "start": 28.135, "word": "to" }, { "confidence": 0.99902344, "end": 28.695, "punctuated_word": "combine", "speaker": 0, "speaker_confidence": 0.8925781, "start": 28.295, "word": "combine" }, { "confidence": 0.9428711, "end": 29.175, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.8925781, "start": 28.695, "word": "javascript" }, { "confidence": 0.9941406, "end": 29.494999, "punctuated_word": "files", "speaker": 0, "speaker_confidence": 0.8925781, "start": 29.175, "word": "files" }, { "confidence": 1, "end": 29.895, "punctuated_word": "together", "speaker": 0, "speaker_confidence": 0.8925781, "start": 29.494999, "word": "together" }, { "confidence": 0.99902344, "end": 30.055, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8925781, "start": 29.895, "word": "in" }, { "confidence": 1, "end": 30.215, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8925781, "start": 30.055, "word": "a" }, { "confidence": 1, "end": 30.695, "punctuated_word": "modular", "speaker": 0, "speaker_confidence": 0.8925781, "start": 30.215, "word": "modular" }, { "confidence": 0.9970703, "end": 31.015, "punctuated_word": "way.", "speaker": 0, "speaker_confidence": 0.8925781, "start": 30.695, "word": "way" }, { "confidence": 0.9970703, "end": 31.255001, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.8925781, "start": 31.015, "word": "this" }, { "confidence": 0.96240234, "end": 31.415, "punctuated_word": "led", "speaker": 0, "speaker_confidence": 0.8925781, "start": 31.255001, "word": "led" }, { "confidence": 0.9921875, "end": 31.575, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8925781, "start": 31.415, "word": "to" }, { "confidence": 0.9980469, "end": 31.96, "punctuated_word": "tools", "speaker": 0, "speaker_confidence": 0.8925781, "start": 31.575, "word": "tools" }, { "confidence": 1, "end": 32.12, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.8925781, "start": 31.96, "word": "like" }, { "confidence": 0.86083984, "end": 32.44, "punctuated_word": "webpack", "speaker": 0, "speaker_confidence": 0.8925781, "start": 32.12, "word": "webpack" }, { "confidence": 0.9921875, "end": 32.68, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8925781, "start": 32.44, "word": "and" }, { "confidence": 0.75927734, "end": 33.16, "punctuated_word": "rollup", "speaker": 0, "speaker_confidence": 0.8925781, "start": 32.68, "word": "rollup" }, { "confidence": 0.88427734, "end": 33.399998, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8925781, "start": 33.16, "word": "that" }, { "confidence": 0.9736328, "end": 33.899998, "punctuated_word": "concatenate", "speaker": 0, "speaker_confidence": 0.8925781, "start": 33.399998, "word": "concatenate" }, { "confidence": 0.99902344, "end": 34.52, "punctuated_word": "multiple", "speaker": 0, "speaker_confidence": 0.8925781, "start": 34.12, "word": "multiple" }, { "confidence": 1, "end": 34.84, "punctuated_word": "files", "speaker": 0, "speaker_confidence": 0.8925781, "start": 34.52, "word": "files" }, { "confidence": 1, "end": 35.239998, "punctuated_word": "together", "speaker": 0, "speaker_confidence": 0.8925781, "start": 34.84, "word": "together" }, { "confidence": 0.99902344, "end": 35.559998, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.8925781, "start": 35.239998, "word": "into" }, { "confidence": 1, "end": 35.719997, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8925781, "start": 35.559998, "word": "a" }, { "confidence": 1, "end": 36.04, "punctuated_word": "single", "speaker": 0, "speaker_confidence": 0.8925781, "start": 35.719997, "word": "single" }, { "confidence": 1, "end": 36.44, "punctuated_word": "bundle", "speaker": 0, "speaker_confidence": 0.8925781, "start": 36.04, "word": "bundle" }, { "confidence": 1, "end": 36.6, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.8925781, "start": 36.44, "word": "for" }, { "confidence": 1, "end": 36.76, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8925781, "start": 36.6, "word": "the" }, { "confidence": 0.9995117, "end": 37.239998, "punctuated_word": "browser.", "speaker": 0, "speaker_confidence": 0.8925781, "start": 36.76, "word": "browser" }, { "confidence": 1, "end": 37.399998, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.8925781, "start": 37.239998, "word": "the" }, { "confidence": 1, "end": 37.8, "punctuated_word": "problem", "speaker": 0, "speaker_confidence": 0.8925781, "start": 37.399998, "word": "problem" }, { "confidence": 0.9980469, "end": 37.96, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8925781, "start": 37.8, "word": "is" }, { "confidence": 1, "end": 38.12, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8925781, "start": 37.96, "word": "that" }, { "confidence": 0.9951172, "end": 38.36, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.8925781, "start": 38.12, "word": "this" }, { "confidence": 1, "end": 38.76, "punctuated_word": "process", "speaker": 0, "speaker_confidence": 0.8925781, "start": 38.36, "word": "process" }, { "confidence": 1, "end": 39.079998, "punctuated_word": "becomes", "speaker": 0, "speaker_confidence": 0.8925781, "start": 38.76, "word": "becomes" }, { "confidence": 1, "end": 39.579998, "punctuated_word": "increasingly", "speaker": 0, "speaker_confidence": 0.8925781, "start": 39.079998, "word": "increasingly" }, { "confidence": 0.6413574, "end": 40.055, "punctuated_word": "Flow,", "speaker": 0, "speaker_confidence": 0.8925781, "start": 39.895, "word": "flow" }, { "confidence": 1, "end": 40.215, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.8925781, "start": 40.055, "word": "as" }, { "confidence": 1, "end": 40.295, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9296875, "start": 40.215, "word": "the" }, { "confidence": 0.99902344, "end": 40.695, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.9296875, "start": 40.295, "word": "app" }, { "confidence": 0.9951172, "end": 40.934998, "punctuated_word": "adds", "speaker": 0, "speaker_confidence": 0.9296875, "start": 40.695, "word": "adds" }, { "confidence": 1, "end": 41.094997, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.9296875, "start": 40.934998, "word": "more" }, { "confidence": 0.9970703, "end": 41.335, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.9296875, "start": 41.094997, "word": "code" }, { "confidence": 0.97314453, "end": 41.495, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9296875, "start": 41.335, "word": "and" }, { "confidence": 0.9951172, "end": 41.995, "punctuated_word": "dependencies.", "speaker": 0, "speaker_confidence": 0.9296875, "start": 41.495, "word": "dependencies" }, { "confidence": 0.9980469, "end": 42.375, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.9296875, "start": 42.215, "word": "in" }, { "confidence": 0.96972656, "end": 42.875, "punctuated_word": "2015,", "speaker": 0, "speaker_confidence": 0.9296875, "start": 42.375, "word": "2015" }, { "confidence": 0.9560547, "end": 43.594997, "punctuated_word": "ECMAScript", "speaker": 0, "speaker_confidence": 0.9296875, "start": 43.094997, "word": "ecmascript" }, { "confidence": 0.97802734, "end": 44.055, "punctuated_word": "modules", "speaker": 0, "speaker_confidence": 0.9296875, "start": 43.734997, "word": "modules" }, { "confidence": 0.98095703, "end": 44.295, "punctuated_word": "were", "speaker": 0, "speaker_confidence": 0.9296875, "start": 44.055, "word": "were" }, { "confidence": 0.76953125, "end": 44.774998, "punctuated_word": "introduced,", "speaker": 0, "speaker_confidence": 0.9296875, "start": 44.295, "word": "introduced" }, { "confidence": 0.9941406, "end": 44.934998, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9296875, "start": 44.774998, "word": "and" }, { "confidence": 0.921875, "end": 45.175, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.9296875, "start": 44.934998, "word": "by" }, { "confidence": 0.7368164, "end": 45.675, "punctuated_word": "2020,", "speaker": 0, "speaker_confidence": 0.9296875, "start": 45.175, "word": "2020" }, { "confidence": 0.9448242, "end": 46.055, "punctuated_word": "had", "speaker": 0, "speaker_confidence": 0.9296875, "start": 45.815, "word": "had" }, { "confidence": 0.984375, "end": 46.295, "punctuated_word": "wide", "speaker": 0, "speaker_confidence": 0.9296875, "start": 46.055, "word": "wide" }, { "confidence": 0.97998047, "end": 46.695, "punctuated_word": "browser", "speaker": 0, "speaker_confidence": 0.9296875, "start": 46.295, "word": "browser" }, { "confidence": 0.9260254, "end": 47.175, "punctuated_word": "support,", "speaker": 0, "speaker_confidence": 0.9296875, "start": 46.695, "word": "support" }, { "confidence": 0.99609375, "end": 47.495, "punctuated_word": "allowing", "speaker": 0, "speaker_confidence": 0.9296875, "start": 47.175, "word": "allowing" }, { "confidence": 0.99902344, "end": 47.995, "punctuated_word": "developers", "speaker": 0, "speaker_confidence": 0.9296875, "start": 47.495, "word": "developers" }, { "confidence": 0.92089844, "end": 48.295, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9296875, "start": 48.135, "word": "to" }, { "confidence": 0.5415039, "end": 48.6, "punctuated_word": "import", "speaker": 0, "speaker_confidence": 0.9296875, "start": 48.295, "word": "import" }, { "confidence": 0.7109375, "end": 48.84, "punctuated_word": "port", "speaker": 0, "speaker_confidence": 0.9296875, "start": 48.68, "word": "port" }, { "confidence": 0.7583008, "end": 49, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9296875, "start": 48.84, "word": "and" }, { "confidence": 1, "end": 49.48, "punctuated_word": "export", "speaker": 0, "speaker_confidence": 0.9296875, "start": 49, "word": "export" }, { "confidence": 0.9980469, "end": 49.719997, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.9296875, "start": 49.48, "word": "code" }, { "confidence": 1, "end": 49.96, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.9296875, "start": 49.719997, "word": "from" }, { "confidence": 1, "end": 50.28, "punctuated_word": "different", "speaker": 0, "speaker_confidence": 0.9296875, "start": 49.96, "word": "different" }, { "confidence": 1, "end": 50.6, "punctuated_word": "files", "speaker": 0, "speaker_confidence": 0.9296875, "start": 50.28, "word": "files" }, { "confidence": 1, "end": 50.76, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9296875, "start": 50.6, "word": "in" }, { "confidence": 0.99902344, "end": 50.92, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9296875, "start": 50.76, "word": "the" }, { "confidence": 0.99853516, "end": 51.42, "punctuated_word": "browser.", "speaker": 0, "speaker_confidence": 0.9296875, "start": 50.92, "word": "browser" }, { "confidence": 0.9790039, "end": 51.8, "punctuated_word": "Vite", "speaker": 0, "speaker_confidence": 0.9296875, "start": 51.48, "word": "vite" }, { "confidence": 0.9904785, "end": 52.28, "punctuated_word": "leverages", "speaker": 0, "speaker_confidence": 0.9296875, "start": 51.8, "word": "leverages" }, { "confidence": 0.9819336, "end": 52.68, "punctuated_word": "native", "speaker": 0, "speaker_confidence": 0.9296875, "start": 52.28, "word": "native" }, { "confidence": 0.93359375, "end": 52.92, "punctuated_word": "ES", "speaker": 0, "speaker_confidence": 0.9296875, "start": 52.68, "word": "es" }, { "confidence": 0.9560547, "end": 53.239998, "punctuated_word": "modules", "speaker": 0, "speaker_confidence": 0.9296875, "start": 52.92, "word": "modules" }, { "confidence": 0.9970703, "end": 53.399998, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9296875, "start": 53.239998, "word": "in" }, { "confidence": 1, "end": 53.559998, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9296875, "start": 53.399998, "word": "the" }, { "confidence": 1, "end": 54.039997, "punctuated_word": "browser", "speaker": 0, "speaker_confidence": 0.9296875, "start": 53.559998, "word": "browser" }, { "confidence": 0.99902344, "end": 54.199997, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9296875, "start": 54.039997, "word": "to" }, { "confidence": 1, "end": 54.44, "punctuated_word": "load", "speaker": 0, "speaker_confidence": 0.9296875, "start": 54.199997, "word": "load" }, { "confidence": 1, "end": 54.6, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.9296875, "start": 54.44, "word": "your" }, { "confidence": 1, "end": 54.839996, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.9296875, "start": 54.6, "word": "code" }, { "confidence": 1, "end": 55.339996, "punctuated_word": "instantly", "speaker": 0, "speaker_confidence": 0.9296875, "start": 54.839996, "word": "instantly" }, { "confidence": 0.7763672, "end": 55.64, "punctuated_word": "no", "speaker": 0, "speaker_confidence": 0.9296875, "start": 55.48, "word": "no" }, { "confidence": 1, "end": 55.96, "punctuated_word": "matter", "speaker": 0, "speaker_confidence": 0.9296875, "start": 55.64, "word": "matter" }, { "confidence": 1, "end": 56.12, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.9296875, "start": 55.96, "word": "how" }, { "confidence": 1, "end": 56.44, "punctuated_word": "large", "speaker": 0, "speaker_confidence": 0.9296875, "start": 56.12, "word": "large" }, { "confidence": 1, "end": 56.6, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9296875, "start": 56.44, "word": "the" }, { "confidence": 1, "end": 56.76, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.9296875, "start": 56.6, "word": "app" }, { "confidence": 1, "end": 57.145, "punctuated_word": "is.", "speaker": 0, "speaker_confidence": 0.9296875, "start": 56.76, "word": "is" }, { "confidence": 0.99902344, "end": 57.385002, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.77978516, "start": 57.225002, "word": "it" }, { "confidence": 1, "end": 57.465004, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.77978516, "start": 57.385002, "word": "also" }, { "confidence": 0.99609375, "end": 57.545002, "punctuated_word": "supports", "speaker": 0, "speaker_confidence": 0.77978516, "start": 57.465004, "word": "supports" }, { "confidence": 0.9472656, "end": 58.045002, "punctuated_word": "hot", "speaker": 0, "speaker_confidence": 0.77978516, "start": 57.545002, "word": "hot" }, { "confidence": 0.99902344, "end": 58.665, "punctuated_word": "module", "speaker": 0, "speaker_confidence": 0.77978516, "start": 58.265, "word": "module" }, { "confidence": 0.99902344, "end": 59.145, "punctuated_word": "replacement", "speaker": 0, "speaker_confidence": 0.77978516, "start": 58.665, "word": "replacement" }, { "confidence": 0.9428711, "end": 59.305, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.77978516, "start": 59.145, "word": "for" }, { "confidence": 1, "end": 59.465, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.77978516, "start": 59.305, "word": "an" }, { "confidence": 1, "end": 59.865, "punctuated_word": "extremely", "speaker": 0, "speaker_confidence": 0.77978516, "start": 59.465, "word": "extremely" }, { "confidence": 0.99902344, "end": 60.185, "punctuated_word": "fast", "speaker": 0, "speaker_confidence": 0.77978516, "start": 59.865, "word": "fast" }, { "confidence": 1, "end": 60.505, "punctuated_word": "feedback", "speaker": 0, "speaker_confidence": 0.77978516, "start": 60.185, "word": "feedback" }, { "confidence": 1, "end": 60.825, "punctuated_word": "loop", "speaker": 0, "speaker_confidence": 0.77978516, "start": 60.505, "word": "loop" }, { "confidence": 1, "end": 61.065, "punctuated_word": "during", "speaker": 0, "speaker_confidence": 0.77978516, "start": 60.825, "word": "during" }, { "confidence": 0.9980469, "end": 61.545002, "punctuated_word": "development.", "speaker": 0, "speaker_confidence": 0.77978516, "start": 61.065, "word": "development" }, { "confidence": 0.99902344, "end": 61.705, "punctuated_word": "When", "speaker": 0, "speaker_confidence": 0.77978516, "start": 61.545002, "word": "when" }, { "confidence": 0.99902344, "end": 62.025, "punctuated_word": "building", "speaker": 0, "speaker_confidence": 0.77978516, "start": 61.705, "word": "building" }, { "confidence": 0.99902344, "end": 62.185, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.77978516, "start": 62.025, "word": "for" }, { "confidence": 0.99853516, "end": 62.685, "punctuated_word": "production,", "speaker": 0, "speaker_confidence": 0.77978516, "start": 62.185, "word": "production" }, { "confidence": 0.98535156, "end": 62.825, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.77978516, "start": 62.745, "word": "it" }, { "confidence": 0.9980469, "end": 63.225, "punctuated_word": "uses", "speaker": 0, "speaker_confidence": 0.77978516, "start": 62.825, "word": "uses" }, { "confidence": 0.69189453, "end": 63.465, "punctuated_word": "roll", "speaker": 0, "speaker_confidence": 0.77978516, "start": 63.225, "word": "roll" }, { "confidence": 0.66064453, "end": 63.545, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.77978516, "start": 63.465, "word": "up" }, { "confidence": 0.9980469, "end": 63.785, "punctuated_word": "under", "speaker": 0, "speaker_confidence": 0.77978516, "start": 63.545, "word": "under" }, { "confidence": 0.9970703, "end": 63.865, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.24023438, "start": 63.785, "word": "the" }, { "confidence": 0.78344727, "end": 64.185, "punctuated_word": "hood,", "speaker": 0, "speaker_confidence": 0.24023438, "start": 63.865, "word": "hood" }, { "confidence": 0.9892578, "end": 64.425, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.24023438, "start": 64.185, "word": "so" }, { "confidence": 0.9921875, "end": 64.585, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.24023438, "start": 64.425, "word": "you" }, { "confidence": 0.9980469, "end": 64.745, "punctuated_word": "don't", "speaker": 0, "speaker_confidence": 0.24023438, "start": 64.585, "word": "don't" }, { "confidence": 0.99316406, "end": 64.905, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.24023438, "start": 64.745, "word": "have" }, { "confidence": 0.9760742, "end": 64.985, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.76220703, "start": 64.905, "word": "to" }, { "confidence": 0.9970703, "end": 65.145004, "punctuated_word": "worry", "speaker": 0, "speaker_confidence": 0.76220703, "start": 64.985, "word": "worry" }, { "confidence": 0.9614258, "end": 65.385, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.76220703, "start": 65.145004, "word": "about" }, { "confidence": 0.9807129, "end": 65.75, "punctuated_word": "configuring", "speaker": 0, "speaker_confidence": 0.76220703, "start": 65.385, "word": "configuring" }, { "confidence": 0.96533203, "end": 66.15, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.76220703, "start": 65.91, "word": "it's" }, { "confidence": 0.9951172, "end": 66.39, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.76220703, "start": 66.15, "word": "an" }, { "confidence": 1, "end": 66.87, "punctuated_word": "opinionated", "speaker": 0, "speaker_confidence": 0.76220703, "start": 66.39, "word": "opinionated" }, { "confidence": 1, "end": 67.19, "punctuated_word": "tool", "speaker": 0, "speaker_confidence": 0.76220703, "start": 66.87, "word": "tool" }, { "confidence": 0.9980469, "end": 67.43, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.76220703, "start": 67.19, "word": "that" }, { "confidence": 0.99902344, "end": 67.75, "punctuated_word": "provides", "speaker": 0, "speaker_confidence": 0.76220703, "start": 67.43, "word": "provides" }, { "confidence": 0.99902344, "end": 68.25, "punctuated_word": "conventions", "speaker": 0, "speaker_confidence": 0.76220703, "start": 67.75, "word": "conventions" }, { "confidence": 1, "end": 68.47, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.76220703, "start": 68.31, "word": "that" }, { "confidence": 0.9980469, "end": 68.63, "punctuated_word": "work", "speaker": 0, "speaker_confidence": 0.76220703, "start": 68.47, "word": "work" }, { "confidence": 0.9951172, "end": 68.79, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.76220703, "start": 68.63, "word": "out" }, { "confidence": 0.85253906, "end": 68.87, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9038086, "start": 68.79, "word": "of" }, { "confidence": 0.9941406, "end": 68.95, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9038086, "start": 68.87, "word": "the" }, { "confidence": 1, "end": 69.27, "punctuated_word": "box", "speaker": 0, "speaker_confidence": 0.9038086, "start": 68.95, "word": "box" }, { "confidence": 1, "end": 69.43, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.9038086, "start": 69.27, "word": "for" }, { "confidence": 0.9980469, "end": 69.59, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9038086, "start": 69.43, "word": "the" }, { "confidence": 1, "end": 69.99, "punctuated_word": "majority", "speaker": 0, "speaker_confidence": 0.9038086, "start": 69.59, "word": "majority" }, { "confidence": 1, "end": 70.15, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9038086, "start": 69.99, "word": "of" }, { "confidence": 0.9995117, "end": 70.65, "punctuated_word": "developers.", "speaker": 0, "speaker_confidence": 0.9038086, "start": 70.15, "word": "developers" }, { "confidence": 1, "end": 70.79, "punctuated_word": "To", "speaker": 0, "speaker_confidence": 0.9038086, "start": 70.71, "word": "to" }, { "confidence": 1, "end": 70.95, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.9038086, "start": 70.79, "word": "get" }, { "confidence": 0.99658203, "end": 71.43, "punctuated_word": "started,", "speaker": 0, "speaker_confidence": 0.9038086, "start": 70.95, "word": "started" }, { "confidence": 0.99902344, "end": 71.67, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.9038086, "start": 71.43, "word": "run" }, { "confidence": 0.90722656, "end": 72.15, "punctuated_word": "npm", "speaker": 0, "speaker_confidence": 0.9038086, "start": 71.67, "word": "npm" }, { "confidence": 0.9838867, "end": 72.47, "punctuated_word": "init", "speaker": 0, "speaker_confidence": 0.9038086, "start": 72.15, "word": "init" }, { "confidence": 0.61816406, "end": 72.765, "punctuated_word": "vite", "speaker": 0, "speaker_confidence": 0.9038086, "start": 72.47, "word": "vite" }, { "confidence": 1, "end": 72.925, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.9038086, "start": 72.765, "word": "from" }, { "confidence": 1, "end": 73.085, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9038086, "start": 72.925, "word": "the" }, { "confidence": 0.99902344, "end": 73.245, "punctuated_word": "command", "speaker": 0, "speaker_confidence": 0.9038086, "start": 73.085, "word": "command" }, { "confidence": 1, "end": 73.565, "punctuated_word": "line", "speaker": 0, "speaker_confidence": 0.9038086, "start": 73.245, "word": "line" }, { "confidence": 0.90771484, "end": 73.725, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9038086, "start": 73.565, "word": "and" }, { "confidence": 0.9941406, "end": 73.965, "punctuated_word": "choose", "speaker": 0, "speaker_confidence": 0.9038086, "start": 73.725, "word": "choose" }, { "confidence": 1, "end": 74.125, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9038086, "start": 73.965, "word": "a" }, { "confidence": 1, "end": 74.445, "punctuated_word": "starter", "speaker": 0, "speaker_confidence": 0.9038086, "start": 74.125, "word": "starter" }, { "confidence": 1, "end": 74.925, "punctuated_word": "project", "speaker": 0, "speaker_confidence": 0.9038086, "start": 74.445, "word": "project" }, { "confidence": 1, "end": 75.085, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.9038086, "start": 74.925, "word": "with" }, { "confidence": 1, "end": 75.245, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.9038086, "start": 75.085, "word": "your" }, { "confidence": 1, "end": 75.565, "punctuated_word": "favorite", "speaker": 0, "speaker_confidence": 0.9038086, "start": 75.245, "word": "favorite" }, { "confidence": 0.9980469, "end": 75.725, "punctuated_word": "front", "speaker": 0, "speaker_confidence": 0.9038086, "start": 75.565, "word": "front" }, { "confidence": 0.96777344, "end": 75.885, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.9038086, "start": 75.725, "word": "end" }, { "confidence": 0.9980469, "end": 76.284996, "punctuated_word": "framework.", "speaker": 0, "speaker_confidence": 0.9038086, "start": 75.885, "word": "framework" }, { "confidence": 1, "end": 76.525, "punctuated_word": "You'll", "speaker": 0, "speaker_confidence": 0.9038086, "start": 76.284996, "word": "you'll" }, { "confidence": 1, "end": 76.845, "punctuated_word": "notice", "speaker": 0, "speaker_confidence": 0.9038086, "start": 76.525, "word": "notice" }, { "confidence": 0.9951172, "end": 77.005, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9038086, "start": 76.845, "word": "the" }, { "confidence": 1, "end": 77.325, "punctuated_word": "project", "speaker": 0, "speaker_confidence": 0.9038086, "start": 77.005, "word": "project" }, { "confidence": 1, "end": 77.645, "punctuated_word": "comes", "speaker": 0, "speaker_confidence": 0.9038086, "start": 77.325, "word": "comes" }, { "confidence": 1, "end": 77.805, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.9038086, "start": 77.645, "word": "with" }, { "confidence": 0.99609375, "end": 77.965, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9038086, "start": 77.805, "word": "a" }, { "confidence": 0.77441406, "end": 78.465, "punctuated_word": "vconfig", "speaker": 0, "speaker_confidence": 0.9038086, "start": 77.965, "word": "vconfig" }, { "confidence": 0.9604492, "end": 78.925, "punctuated_word": "file.", "speaker": 0, "speaker_confidence": 0.9038086, "start": 78.525, "word": "file" }, { "confidence": 0.99902344, "end": 79.085, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.9038086, "start": 78.925, "word": "it" }, { "confidence": 1, "end": 79.245, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.9038086, "start": 79.085, "word": "has" }, { "confidence": 1, "end": 79.325, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9038086, "start": 79.245, "word": "a" }, { "confidence": 0.5917969, "end": 79.805, "punctuated_word": "plugin", "speaker": 0, "speaker_confidence": 0.9038086, "start": 79.325, "word": "plugin" }, { "confidence": 0.9970703, "end": 80.305, "punctuated_word": "ecosystem", "speaker": 0, "speaker_confidence": 0.9038086, "start": 79.805, "word": "ecosystem" }, { "confidence": 0.9970703, "end": 80.68, "punctuated_word": "That", "speaker": 0, "speaker_confidence": 0.9038086, "start": 80.520004, "word": "that" }, { "confidence": 0.9980469, "end": 80.840004, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9038086, "start": 80.68, "word": "can" }, { "confidence": 1, "end": 81.16, "punctuated_word": "extend", "speaker": 0, "speaker_confidence": 0.9038086, "start": 80.840004, "word": "extend" }, { "confidence": 1, "end": 81.32, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.9038086, "start": 81.16, "word": "it" }, { "confidence": 1, "end": 81.560005, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.9038086, "start": 81.32, "word": "with" }, { "confidence": 1, "end": 81.96, "punctuated_word": "additional", "speaker": 0, "speaker_confidence": 0.9038086, "start": 81.560005, "word": "additional" }, { "confidence": 0.8203125, "end": 82.44, "punctuated_word": "features,", "speaker": 0, "speaker_confidence": 0.9038086, "start": 81.96, "word": "features" }, { "confidence": 1, "end": 82.68, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9038086, "start": 82.44, "word": "and" }, { "confidence": 1, "end": 82.76, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.9038086, "start": 82.68, "word": "you" }, { "confidence": 1, "end": 83, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9038086, "start": 82.76, "word": "can" }, { "confidence": 1, "end": 83.240005, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.9038086, "start": 83, "word": "also" }, { "confidence": 1, "end": 83.72, "punctuated_word": "manually", "speaker": 0, "speaker_confidence": 0.9038086, "start": 83.240005, "word": "manually" }, { "confidence": 0.99902344, "end": 84.12, "punctuated_word": "override", "speaker": 0, "speaker_confidence": 0.9038086, "start": 83.72, "word": "override" }, { "confidence": 0.9970703, "end": 84.200005, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9038086, "start": 84.12, "word": "the" }, { "confidence": 0.97998047, "end": 84.44, "punctuated_word": "roll", "speaker": 0, "speaker_confidence": 0.9038086, "start": 84.200005, "word": "roll" }, { "confidence": 0.5839844, "end": 84.600006, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.9038086, "start": 84.44, "word": "up" }, { "confidence": 0.97998047, "end": 85, "punctuated_word": "defaults", "speaker": 0, "speaker_confidence": 0.9038086, "start": 84.600006, "word": "defaults" }, { "confidence": 0.99121094, "end": 85.240005, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.9038086, "start": 85, "word": "when" }, { "confidence": 0.9904785, "end": 85.740005, "punctuated_word": "necessary.", "speaker": 0, "speaker_confidence": 0.9038086, "start": 85.240005, "word": "necessary" }, { "confidence": 0.99902344, "end": 85.96, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.7998047, "start": 85.8, "word": "and" }, { "confidence": 0.99121094, "end": 86.12, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.7998047, "start": 85.96, "word": "there" }, { "confidence": 1, "end": 86.28, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.7998047, "start": 86.12, "word": "are" }, { "confidence": 1, "end": 86.44, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.7998047, "start": 86.28, "word": "some" }, { "confidence": 1, "end": 86.600006, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 0.7998047, "start": 86.44, "word": "really" }, { "confidence": 1, "end": 86.840004, "punctuated_word": "cool", "speaker": 0, "speaker_confidence": 0.7998047, "start": 86.600006, "word": "cool" }, { "confidence": 0.73339844, "end": 87.16, "punctuated_word": "plugins", "speaker": 0, "speaker_confidence": 0.7998047, "start": 86.840004, "word": "plugins" }, { "confidence": 1, "end": 87.32, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.7998047, "start": 87.16, "word": "out" }, { "confidence": 1, "end": 87.64, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.7998047, "start": 87.32, "word": "there" }, { "confidence": 0.5385742, "end": 87.96, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.7998047, "start": 87.64, "word": "like" }, { "confidence": 0.7282715, "end": 88.28, "punctuated_word": "Vite", "speaker": 0, "speaker_confidence": 0.7998047, "start": 87.96, "word": "vite" }, { "confidence": 0.8442383, "end": 88.78, "punctuated_word": "SSR", "speaker": 0, "speaker_confidence": 0.7998047, "start": 88.28, "word": "ssr" }, { "confidence": 0.9350586, "end": 89.08, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7998047, "start": 88.92, "word": "that" }, { "confidence": 1, "end": 89.240005, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7998047, "start": 89.08, "word": "can" }, { "confidence": 1, "end": 89.4, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.7998047, "start": 89.240005, "word": "do" }, { "confidence": 0.98095703, "end": 89.64, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 0.7998047, "start": 89.4, "word": "server" }, { "confidence": 0.8017578, "end": 89.795, "punctuated_word": "side", "speaker": 0, "speaker_confidence": 0.7998047, "start": 89.64, "word": "side" }, { "confidence": 0.99902344, "end": 90.275, "punctuated_word": "rendering", "speaker": 0, "speaker_confidence": 0.7998047, "start": 89.875, "word": "rendering" }, { "confidence": 0.98095703, "end": 90.435, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.7998047, "start": 90.275, "word": "like" }, { "confidence": 0.78515625, "end": 90.755, "punctuated_word": "Next.", "speaker": 0, "speaker_confidence": 0.7998047, "start": 90.435, "word": "next" }, { "confidence": 0.9572754, "end": 91.155, "punctuated_word": "Js.", "speaker": 0, "speaker_confidence": 0.7998047, "start": 90.755, "word": "js" }, { "confidence": 1, "end": 91.475, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.7998047, "start": 91.155, "word": "now" }, { "confidence": 0.94140625, "end": 91.555, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7998047, "start": 91.475, "word": "to" }, { "confidence": 0.99902344, "end": 91.795, "punctuated_word": "serve", "speaker": 0, "speaker_confidence": 0.7998047, "start": 91.555, "word": "serve" }, { "confidence": 1, "end": 91.955, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7998047, "start": 91.795, "word": "the" }, { "confidence": 1, "end": 92.354996, "punctuated_word": "application", "speaker": 0, "speaker_confidence": 0.7998047, "start": 91.955, "word": "application" }, { "confidence": 0.99609375, "end": 92.854996, "punctuated_word": "locally,", "speaker": 0, "speaker_confidence": 0.7998047, "start": 92.354996, "word": "locally" }, { "confidence": 0.99902344, "end": 93.235, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.7998047, "start": 92.915, "word": "run" }, { "confidence": 0.8833008, "end": 93.715, "punctuated_word": "npm", "speaker": 0, "speaker_confidence": 0.7998047, "start": 93.235, "word": "npm" }, { "confidence": 0.9873047, "end": 93.955, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.7998047, "start": 93.715, "word": "run" }, { "confidence": 0.9819336, "end": 94.354996, "punctuated_word": "dev.", "speaker": 0, "speaker_confidence": 0.7998047, "start": 93.955, "word": "dev" }, { "confidence": 0.99902344, "end": 94.595, "punctuated_word": "Even", "speaker": 0, "speaker_confidence": 0.7998047, "start": 94.354996, "word": "even" }, { "confidence": 0.99902344, "end": 94.674995, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.7998047, "start": 94.595, "word": "if" }, { "confidence": 1, "end": 94.835, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.6274414, "start": 94.674995, "word": "i" }, { "confidence": 0.9980469, "end": 94.994995, "punctuated_word": "install", "speaker": 0, "speaker_confidence": 0.6274414, "start": 94.835, "word": "install" }, { "confidence": 1, "end": 95.155, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6274414, "start": 94.994995, "word": "a" }, { "confidence": 1, "end": 95.314995, "punctuated_word": "bunch", "speaker": 0, "speaker_confidence": 0.6274414, "start": 95.155, "word": "bunch" }, { "confidence": 1, "end": 95.475, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.6274414, "start": 95.314995, "word": "of" }, { "confidence": 1, "end": 95.715, "punctuated_word": "big", "speaker": 0, "speaker_confidence": 0.6274414, "start": 95.475, "word": "big" }, { "confidence": 0.99902344, "end": 96.215, "punctuated_word": "dependencies", "speaker": 0, "speaker_confidence": 0.6274414, "start": 95.715, "word": "dependencies" }, { "confidence": 0.63671875, "end": 96.595, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.6274414, "start": 96.354996, "word": "like" }, { "confidence": 0.8171387, "end": 96.994995, "punctuated_word": "Lodash", "speaker": 0, "speaker_confidence": 0.6274414, "start": 96.595, "word": "lodash" }, { "confidence": 0.99609375, "end": 97.155, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6274414, "start": 96.994995, "word": "and" }, { "confidence": 0.82299805, "end": 97.555, "punctuated_word": "Moment,", "speaker": 0, "speaker_confidence": 0.6274414, "start": 97.155, "word": "moment" }, { "confidence": 0.99609375, "end": 97.715, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6274414, "start": 97.555, "word": "the" }, { "confidence": 1, "end": 97.955, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.6274414, "start": 97.715, "word": "time" }, { "confidence": 1, "end": 98.034996, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6274414, "start": 97.955, "word": "to" }, { "confidence": 1, "end": 98.195, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.7158203, "start": 98.034996, "word": "run" }, { "confidence": 1, "end": 98.354996, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7158203, "start": 98.195, "word": "the" }, { "confidence": 0.97314453, "end": 98.515, "punctuated_word": "dev", "speaker": 0, "speaker_confidence": 0.7158203, "start": 98.354996, "word": "dev" }, { "confidence": 0.9970703, "end": 98.915, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 0.7158203, "start": 98.515, "word": "server" }, { "confidence": 1, "end": 99.075, "punctuated_word": "does", "speaker": 0, "speaker_confidence": 0.7158203, "start": 98.915, "word": "does" }, { "confidence": 1, "end": 99.235, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.7158203, "start": 99.075, "word": "not" }, { "confidence": 1, "end": 99.48, "punctuated_word": "change.", "speaker": 0, "speaker_confidence": 0.7158203, "start": 99.235, "word": "change" }, { "confidence": 0.9980469, "end": 99.72, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.7158203, "start": 99.560005, "word": "now" }, { "confidence": 0.57666016, "end": 99.880005, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.7158203, "start": 99.72, "word": "if" }, { "confidence": 1, "end": 99.96001, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7158203, "start": 99.880005, "word": "you" }, { "confidence": 1, "end": 100.12, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.7158203, "start": 99.96001, "word": "open" }, { "confidence": 0.99902344, "end": 100.36, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7158203, "start": 100.12, "word": "the" }, { "confidence": 0.9589844, "end": 100.68, "punctuated_word": "network", "speaker": 0, "speaker_confidence": 0.7158203, "start": 100.36, "word": "network" }, { "confidence": 1, "end": 100.840004, "punctuated_word": "tab", "speaker": 0, "speaker_confidence": 0.7158203, "start": 100.68, "word": "tab" }, { "confidence": 0.9741211, "end": 100.920006, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.89453125, "start": 100.840004, "word": "in" }, { "confidence": 1, "end": 101.08, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.89453125, "start": 100.920006, "word": "the" }, { "confidence": 0.99316406, "end": 101.4, "punctuated_word": "browser", "speaker": 0, "speaker_confidence": 0.89453125, "start": 101.08, "word": "browser" }, { "confidence": 0.9223633, "end": 101.64, "punctuated_word": "dev", "speaker": 0, "speaker_confidence": 0.89453125, "start": 101.4, "word": "dev" }, { "confidence": 0.9880371, "end": 101.96001, "punctuated_word": "tools,", "speaker": 0, "speaker_confidence": 0.89453125, "start": 101.64, "word": "tools" }, { "confidence": 1, "end": 102.200005, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 0.89453125, "start": 101.96001, "word": "you'll" }, { "confidence": 1, "end": 102.520004, "punctuated_word": "notice", "speaker": 0, "speaker_confidence": 0.89453125, "start": 102.200005, "word": "notice" }, { "confidence": 0.99902344, "end": 102.76, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.89453125, "start": 102.520004, "word": "that" }, { "confidence": 0.99316406, "end": 103, "punctuated_word": "instead", "speaker": 0, "speaker_confidence": 0.89453125, "start": 102.76, "word": "instead" }, { "confidence": 0.99902344, "end": 103.240005, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.89453125, "start": 103, "word": "of" }, { "confidence": 1, "end": 103.64, "punctuated_word": "importing", "speaker": 0, "speaker_confidence": 0.89453125, "start": 103.240005, "word": "importing" }, { "confidence": 1, "end": 103.8, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.89453125, "start": 103.64, "word": "a" }, { "confidence": 1, "end": 104.200005, "punctuated_word": "single", "speaker": 0, "speaker_confidence": 0.89453125, "start": 103.8, "word": "single" }, { "confidence": 0.9707031, "end": 104.600006, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.89453125, "start": 104.200005, "word": "javascript" }, { "confidence": 0.99609375, "end": 105, "punctuated_word": "bundle", "speaker": 0, "speaker_confidence": 0.89453125, "start": 104.600006, "word": "bundle" }, { "confidence": 0.99658203, "end": 105.4, "punctuated_word": "file,", "speaker": 0, "speaker_confidence": 0.89453125, "start": 105, "word": "file" }, { "confidence": 0.9970703, "end": 105.72, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.89453125, "start": 105.4, "word": "it's" }, { "confidence": 1, "end": 106.04, "punctuated_word": "importing", "speaker": 0, "speaker_confidence": 0.89453125, "start": 105.72, "word": "importing" }, { "confidence": 1, "end": 106.28001, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.89453125, "start": 106.04, "word": "our" }, { "confidence": 1, "end": 106.765, "punctuated_word": "actual", "speaker": 0, "speaker_confidence": 0.89453125, "start": 106.28001, "word": "actual" }, { "confidence": 0.97998047, "end": 107.005, "punctuated_word": "source", "speaker": 0, "speaker_confidence": 0.89453125, "start": 106.765, "word": "source" }, { "confidence": 0.857666, "end": 107.405, "punctuated_word": "code,", "speaker": 0, "speaker_confidence": 0.89453125, "start": 107.005, "word": "code" }, { "confidence": 1, "end": 107.645, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.89453125, "start": 107.405, "word": "like" }, { "confidence": 0.96533203, "end": 107.885, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.89453125, "start": 107.645, "word": "a" }, { "confidence": 0.96875, "end": 108.205, "punctuated_word": "raw", "speaker": 0, "speaker_confidence": 0.89453125, "start": 107.885, "word": "raw" }, { "confidence": 0.86572266, "end": 108.604996, "punctuated_word": "TSX", "speaker": 0, "speaker_confidence": 0.89453125, "start": 108.205, "word": "tsx" }, { "confidence": 0.9980469, "end": 108.845, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.89453125, "start": 108.604996, "word": "file" }, { "confidence": 0.875, "end": 109.005, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.89453125, "start": 108.845, "word": "in" }, { "confidence": 0.99902344, "end": 109.085, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.89453125, "start": 109.005, "word": "this" }, { "confidence": 0.9975586, "end": 109.565, "punctuated_word": "case.", "speaker": 0, "speaker_confidence": 0.89453125, "start": 109.085, "word": "case" }, { "confidence": 0.99902344, "end": 109.645, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.76171875, "start": 109.565, "word": "it" }, { "confidence": 1, "end": 109.885, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.76171875, "start": 109.645, "word": "also" }, { "confidence": 0.99902344, "end": 110.045, "punctuated_word": "makes", "speaker": 0, "speaker_confidence": 0.76171875, "start": 109.885, "word": "makes" }, { "confidence": 0.90185547, "end": 110.545, "punctuated_word": "TypeScript", "speaker": 0, "speaker_confidence": 0.76171875, "start": 110.045, "word": "typescript" }, { "confidence": 1, "end": 110.845, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.76171875, "start": 110.604996, "word": "about" }, { "confidence": 0.9658203, "end": 111.165, "punctuated_word": "20", "speaker": 0, "speaker_confidence": 0.76171875, "start": 110.845, "word": "20" }, { "confidence": 0.9970703, "end": 111.245, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.76171875, "start": 111.165, "word": "to" }, { "confidence": 0.99609375, "end": 111.565, "punctuated_word": "30", "speaker": 0, "speaker_confidence": 0.76171875, "start": 111.245, "word": "30" }, { "confidence": 0.9970703, "end": 111.805, "punctuated_word": "times", "speaker": 0, "speaker_confidence": 0.76171875, "start": 111.565, "word": "times" }, { "confidence": 1, "end": 112.205, "punctuated_word": "faster", "speaker": 0, "speaker_confidence": 0.76171875, "start": 111.805, "word": "faster" }, { "confidence": 0.9453125, "end": 112.445, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.76171875, "start": 112.205, "word": "because" }, { "confidence": 1, "end": 112.604996, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.76171875, "start": 112.445, "word": "it" }, { "confidence": 1, "end": 112.925, "punctuated_word": "skips", "speaker": 0, "speaker_confidence": 0.76171875, "start": 112.604996, "word": "skips" }, { "confidence": 0.99902344, "end": 113.085, "punctuated_word": "type", "speaker": 0, "speaker_confidence": 0.76171875, "start": 112.925, "word": "type" }, { "confidence": 0.99609375, "end": 113.485, "punctuated_word": "checking", "speaker": 0, "speaker_confidence": 0.76171875, "start": 113.085, "word": "checking" }, { "confidence": 0.9873047, "end": 113.645, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.76171875, "start": 113.485, "word": "and" }, { "confidence": 0.99902344, "end": 113.965, "punctuated_word": "uses", "speaker": 0, "speaker_confidence": 0.76171875, "start": 113.645, "word": "uses" }, { "confidence": 0.7180176, "end": 114.465, "punctuated_word": "esbuild", "speaker": 0, "speaker_confidence": 0.76171875, "start": 113.965, "word": "esbuild" }, { "confidence": 0.9941406, "end": 114.765, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.76171875, "start": 114.604996, "word": "to" }, { "confidence": 0.9977214, "end": 115.265, "punctuated_word": "transpile", "speaker": 0, "speaker_confidence": 0.76171875, "start": 114.765, "word": "transpile" }, { "confidence": 1, "end": 115.485, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.76171875, "start": 115.325, "word": "your" }, { "confidence": 1, "end": 115.805, "punctuated_word": "code.", "speaker": 0, "speaker_confidence": 0.76171875, "start": 115.485, "word": "code" }, { "confidence": 1, "end": 115.88, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.76171875, "start": 115.805, "word": "now" }, { "confidence": 0.74902344, "end": 116.04, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.76171875, "start": 115.96, "word": "now" }, { "confidence": 0.90234375, "end": 116.119995, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.76171875, "start": 116.04, "word": "as" }, { "confidence": 0.99853516, "end": 116.28, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.5703125, "start": 116.119995, "word": "you're" }, { "confidence": 1, "end": 116.759995, "punctuated_word": "developing", "speaker": 0, "speaker_confidence": 0.5703125, "start": 116.28, "word": "developing" }, { "confidence": 1, "end": 116.92, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.5703125, "start": 116.759995, "word": "your" }, { "confidence": 0.99853516, "end": 117.079994, "punctuated_word": "app,", "speaker": 0, "speaker_confidence": 0.5703125, "start": 116.92, "word": "app" }, { "confidence": 1, "end": 117.24, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.5703125, "start": 117.079994, "word": "you" }, { "confidence": 1, "end": 117.399994, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 0.5703125, "start": 117.24, "word": "might" }, { "confidence": 1, "end": 117.71999, "punctuated_word": "change", "speaker": 0, "speaker_confidence": 0.5703125, "start": 117.399994, "word": "change" }, { "confidence": 0.9980469, "end": 117.799995, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5703125, "start": 117.71999, "word": "the" }, { "confidence": 1, "end": 117.96, "punctuated_word": "state", "speaker": 0, "speaker_confidence": 0.5703125, "start": 117.799995, "word": "state" }, { "confidence": 1, "end": 118.03999, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.5805664, "start": 117.96, "word": "of" }, { "confidence": 0.99902344, "end": 118.2, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.5805664, "start": 118.03999, "word": "it" }, { "confidence": 0.9980469, "end": 118.36, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.5805664, "start": 118.2, "word": "in" }, { "confidence": 0.9980469, "end": 118.439995, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5805664, "start": 118.36, "word": "the" }, { "confidence": 0.83984375, "end": 118.92, "punctuated_word": "UI,", "speaker": 0, "speaker_confidence": 0.5805664, "start": 118.439995, "word": "ui" }, { "confidence": 0.99609375, "end": 119.159996, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.5805664, "start": 118.92, "word": "then" }, { "confidence": 0.9951172, "end": 119.56, "punctuated_word": "realize", "speaker": 0, "speaker_confidence": 0.5805664, "start": 119.159996, "word": "realize" }, { "confidence": 0.99902344, "end": 119.71999, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.5805664, "start": 119.56, "word": "that" }, { "confidence": 0.99902344, "end": 119.88, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.5805664, "start": 119.71999, "word": "some" }, { "confidence": 1, "end": 119.96, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.92578125, "start": 119.88, "word": "of" }, { "confidence": 0.9980469, "end": 120.03999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.92578125, "start": 119.96, "word": "the" }, { "confidence": 0.99902344, "end": 120.28, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.92578125, "start": 120.03999, "word": "code" }, { "confidence": 0.99902344, "end": 120.52, "punctuated_word": "needs", "speaker": 0, "speaker_confidence": 0.92578125, "start": 120.28, "word": "needs" }, { "confidence": 0.99902344, "end": 120.6, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.92578125, "start": 120.52, "word": "to" }, { "confidence": 1, "end": 120.92, "punctuated_word": "change.", "speaker": 0, "speaker_confidence": 0.92578125, "start": 120.6, "word": "change" }, { "confidence": 0.9980469, "end": 121.159996, "punctuated_word": "When", "speaker": 0, "speaker_confidence": 0.92578125, "start": 120.92, "word": "when" }, { "confidence": 1, "end": 121.24, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.92578125, "start": 121.159996, "word": "you" }, { "confidence": 0.9951172, "end": 121.56, "punctuated_word": "modify", "speaker": 0, "speaker_confidence": 0.92578125, "start": 121.24, "word": "modify" }, { "confidence": 0.9951172, "end": 121.71999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.92578125, "start": 121.56, "word": "the" }, { "confidence": 1, "end": 121.96, "punctuated_word": "source", "speaker": 0, "speaker_confidence": 0.92578125, "start": 121.71999, "word": "source" }, { "confidence": 0.9975586, "end": 122.28, "punctuated_word": "code,", "speaker": 0, "speaker_confidence": 0.92578125, "start": 121.96, "word": "code" }, { "confidence": 0.9863281, "end": 122.439995, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.92578125, "start": 122.28, "word": "the" }, { "confidence": 0.9970703, "end": 122.759995, "punctuated_word": "changes", "speaker": 0, "speaker_confidence": 0.92578125, "start": 122.439995, "word": "changes" }, { "confidence": 0.9716797, "end": 122.92, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.92578125, "start": 122.759995, "word": "will" }, { "confidence": 0.94970703, "end": 123.079994, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.92578125, "start": 122.92, "word": "be" }, { "confidence": 0.96875, "end": 123.479996, "punctuated_word": "reflected", "speaker": 0, "speaker_confidence": 0.92578125, "start": 123.079994, "word": "reflected" }, { "confidence": 0.8642578, "end": 123.945, "punctuated_word": "instantly", "speaker": 0, "speaker_confidence": 0.92578125, "start": 123.479996, "word": "instantly" }, { "confidence": 0.9633789, "end": 124.505, "punctuated_word": "without", "speaker": 0, "speaker_confidence": 0.92578125, "start": 124.185, "word": "without" }, { "confidence": 0.99902344, "end": 124.825, "punctuated_word": "losing", "speaker": 0, "speaker_confidence": 0.92578125, "start": 124.505, "word": "losing" }, { "confidence": 0.5800781, "end": 125.065, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.92578125, "start": 124.825, "word": "that" }, { "confidence": 1, "end": 125.225, "punctuated_word": "state", "speaker": 0, "speaker_confidence": 0.92578125, "start": 125.065, "word": "state" }, { "confidence": 1, "end": 125.385, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.92578125, "start": 125.225, "word": "of" }, { "confidence": 1, "end": 125.545, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.92578125, "start": 125.385, "word": "the" }, { "confidence": 0.98950195, "end": 126.045, "punctuated_word": "application.", "speaker": 0, "speaker_confidence": 0.92578125, "start": 125.545, "word": "application" }, { "confidence": 0.9995117, "end": 126.425, "punctuated_word": "That's", "speaker": 0, "speaker_confidence": 0.92578125, "start": 126.185, "word": "that's" }, { "confidence": 1, "end": 126.585, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.92578125, "start": 126.425, "word": "what" }, { "confidence": 1, "end": 126.745, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.92578125, "start": 126.585, "word": "we" }, { "confidence": 1, "end": 127.065, "punctuated_word": "call", "speaker": 0, "speaker_confidence": 0.92578125, "start": 126.745, "word": "call" }, { "confidence": 0.9667969, "end": 127.305, "punctuated_word": "hot", "speaker": 0, "speaker_confidence": 0.92578125, "start": 127.065, "word": "hot" }, { "confidence": 0.99609375, "end": 127.705, "punctuated_word": "module", "speaker": 0, "speaker_confidence": 0.92578125, "start": 127.305, "word": "module" }, { "confidence": 0.9995117, "end": 128.205, "punctuated_word": "replacement.", "speaker": 0, "speaker_confidence": 0.92578125, "start": 127.705, "word": "replacement" }, { "confidence": 0.99902344, "end": 128.825, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.92578125, "start": 128.505, "word": "now" }, { "confidence": 0.8413086, "end": 129.065, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.92578125, "start": 128.825, "word": "run" }, { "confidence": 0.8642578, "end": 129.545, "punctuated_word": "npm", "speaker": 0, "speaker_confidence": 0.92578125, "start": 129.065, "word": "npm" }, { "confidence": 0.9980469, "end": 129.945, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.92578125, "start": 129.545, "word": "build" }, { "confidence": 0.9951172, "end": 130.105, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.92578125, "start": 129.945, "word": "to" }, { "confidence": 0.9970703, "end": 130.345, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.92578125, "start": 130.105, "word": "build" }, { "confidence": 0.9951172, "end": 130.505, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.92578125, "start": 130.345, "word": "the" }, { "confidence": 0.9892578, "end": 130.665, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.92578125, "start": 130.505, "word": "app" }, { "confidence": 0.9951172, "end": 130.825, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.92578125, "start": 130.665, "word": "for" }, { "confidence": 0.9921875, "end": 131.305, "punctuated_word": "production.", "speaker": 0, "speaker_confidence": 0.92578125, "start": 130.825, "word": "production" }, { "confidence": 0.9716797, "end": 131.545, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.92578125, "start": 131.305, "word": "this" }, { "confidence": 0.9428711, "end": 131.86, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.92578125, "start": 131.545, "word": "will" }, { "confidence": 0.86328125, "end": 132.1, "punctuated_word": "generate", "speaker": 0, "speaker_confidence": 0.92578125, "start": 131.94, "word": "generate" }, { "confidence": 0.99902344, "end": 132.26, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.92578125, "start": 132.1, "word": "a" }, { "confidence": 0.97314453, "end": 132.76, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.92578125, "start": 132.26, "word": "javascript" }, { "confidence": 0.9838867, "end": 133.14, "punctuated_word": "bundle", "speaker": 0, "speaker_confidence": 0.92578125, "start": 132.82, "word": "bundle" }, { "confidence": 0.99609375, "end": 133.3, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.92578125, "start": 133.14, "word": "with" }, { "confidence": 0.6459961, "end": 133.78, "punctuated_word": "rollup", "speaker": 0, "speaker_confidence": 0.92578125, "start": 133.3, "word": "rollup" }, { "confidence": 0.8413086, "end": 133.94, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.92578125, "start": 133.78, "word": "with" }, { "confidence": 1, "end": 134.1, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.92578125, "start": 133.94, "word": "a" }, { "confidence": 1, "end": 134.34, "punctuated_word": "bunch", "speaker": 0, "speaker_confidence": 0.92578125, "start": 134.1, "word": "bunch" }, { "confidence": 0.99902344, "end": 134.42, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.92578125, "start": 134.34, "word": "of" }, { "confidence": 1, "end": 134.92, "punctuated_word": "automatic", "speaker": 0, "speaker_confidence": 0.92578125, "start": 134.42, "word": "automatic" }, { "confidence": 0.8413086, "end": 135.56, "punctuated_word": "optimizations,", "speaker": 0, "speaker_confidence": 0.92578125, "start": 135.06, "word": "optimizations" }, { "confidence": 1, "end": 136.18, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.92578125, "start": 135.94, "word": "like" }, { "confidence": 0.9892578, "end": 136.58, "punctuated_word": "automatic", "speaker": 0, "speaker_confidence": 0.92578125, "start": 136.18, "word": "automatic" }, { "confidence": 0.9589844, "end": 136.82, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.92578125, "start": 136.58, "word": "code" }, { "confidence": 1, "end": 137.22, "punctuated_word": "splitting", "speaker": 0, "speaker_confidence": 0.92578125, "start": 136.82, "word": "splitting" }, { "confidence": 0.9970703, "end": 137.46, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.92578125, "start": 137.22, "word": "for" }, { "confidence": 1, "end": 137.7, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 0.92578125, "start": 137.46, "word": "any" }, { "confidence": 0.99902344, "end": 138.2, "punctuated_word": "dynamic", "speaker": 0, "speaker_confidence": 0.92578125, "start": 137.7, "word": "dynamic" }, { "confidence": 0.9980469, "end": 138.58, "punctuated_word": "imports", "speaker": 0, "speaker_confidence": 0.92578125, "start": 138.26, "word": "imports" }, { "confidence": 0.9941406, "end": 138.875, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.92578125, "start": 138.58, "word": "and" }, { "confidence": 0.9921875, "end": 139.535, "punctuated_word": "CSS.", "speaker": 0, "speaker_confidence": 0.92578125, "start": 139.035, "word": "css" }, { "confidence": 0.9980469, "end": 139.835, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.7919922, "start": 139.675, "word": "this" }, { "confidence": 0.99902344, "end": 139.995, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.7919922, "start": 139.835, "word": "has" }, { "confidence": 1, "end": 140.235, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.7919922, "start": 139.995, "word": "been" }, { "confidence": 0.5395508, "end": 140.555, "punctuated_word": "beat", "speaker": 0, "speaker_confidence": 0.7919922, "start": 140.235, "word": "beat" }, { "confidence": 0.9951172, "end": 140.795, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7919922, "start": 140.555, "word": "in" }, { "confidence": 0.9506836, "end": 141.275, "punctuated_word": "100", "speaker": 0, "speaker_confidence": 0.7919922, "start": 140.795, "word": "100" }, { "confidence": 0.9980469, "end": 141.675, "punctuated_word": "seconds.", "speaker": 0, "speaker_confidence": 0.7919922, "start": 141.275, "word": "seconds" }, { "confidence": 0.99609375, "end": 141.835, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.7919922, "start": 141.675, "word": "if" }, { "confidence": 1, "end": 141.995, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7919922, "start": 141.835, "word": "you" }, { "confidence": 0.70214844, "end": 142.155, "punctuated_word": "wanna", "speaker": 0, "speaker_confidence": 0.7919922, "start": 141.995, "word": "wanna" }, { "confidence": 0.9970703, "end": 142.315, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.7919922, "start": 142.155, "word": "see" }, { "confidence": 1, "end": 142.475, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.7919922, "start": 142.315, "word": "more" }, { "confidence": 1, "end": 142.715, "punctuated_word": "short", "speaker": 0, "speaker_confidence": 0.7919922, "start": 142.475, "word": "short" }, { "confidence": 1, "end": 143.035, "punctuated_word": "videos", "speaker": 0, "speaker_confidence": 0.7919922, "start": 142.715, "word": "videos" }, { "confidence": 1, "end": 143.195, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.7919922, "start": 143.035, "word": "like" }, { "confidence": 0.9890137, "end": 143.515, "punctuated_word": "this,", "speaker": 0, "speaker_confidence": 0.7919922, "start": 143.195, "word": "this" }, { "confidence": 1, "end": 143.675, "punctuated_word": "hit", "speaker": 0, "speaker_confidence": 0.7919922, "start": 143.515, "word": "hit" }, { "confidence": 0.99902344, "end": 143.835, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7919922, "start": 143.675, "word": "the" }, { "confidence": 0.9970703, "end": 143.995, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.7919922, "start": 143.835, "word": "like" }, { "confidence": 1, "end": 144.315, "punctuated_word": "button", "speaker": 0, "speaker_confidence": 0.7919922, "start": 143.995, "word": "button" }, { "confidence": 0.99121094, "end": 144.555, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7919922, "start": 144.315, "word": "and" }, { "confidence": 1, "end": 145.055, "punctuated_word": "subscribe.", "speaker": 0, "speaker_confidence": 0.7919922, "start": 144.555, "word": "subscribe" }, { "confidence": 0.99902344, "end": 145.355, "punctuated_word": "Thanks", "speaker": 0, "speaker_confidence": 0.7919922, "start": 145.115, "word": "thanks" }, { "confidence": 1, "end": 145.595, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.7919922, "start": 145.355, "word": "for" }, { "confidence": 1, "end": 145.995, "punctuated_word": "watching", "speaker": 0, "speaker_confidence": 0.7919922, "start": 145.595, "word": "watching" }, { "confidence": 0.671875, "end": 146.235, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7919922, "start": 145.995, "word": "and" }, { "confidence": 0.99902344, "end": 146.395, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.7919922, "start": 146.235, "word": "i" }, { "confidence": 1, "end": 146.635, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.7919922, "start": 146.395, "word": "will" }, { "confidence": 1, "end": 146.795, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.7919922, "start": 146.635, "word": "see" }, { "confidence": 1, "end": 146.955, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7919922, "start": 146.795, "word": "you" }, { "confidence": 1, "end": 147.115, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7919922, "start": 146.955, "word": "in" }, { "confidence": 1, "end": 147.275, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7919922, "start": 147.115, "word": "the" }, { "confidence": 1, "end": 147.515, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.7919922, "start": 147.275, "word": "next" }, { "confidence": 0.9904785, "end": 148.015, "punctuated_word": "one.", "speaker": 0, "speaker_confidence": 0.7919922, "start": 147.515, "word": "one" } ] } ], "detected_language": "", "language_confidence": 0, "search": null } ], "summary": { "result": "success", "short": "In this video, the speaker explains the benefits of Vite, a JavaScript build tool that simplifies the development process for front end web applications. Vite leverages native ES modules in the browser to load code instantly, supports hot module replacement for quick feedback loop during development, and can be customized with a v tack file. The tool also allows developers to import and export code from multiple files in the browser, and is an opinionated tool that provides conventions that work out of the box for most developers." }, "utterances": null } }
downloads\Vite_in_100_Seconds.wav
https://www.youtube.com/watch?v=KCrXgy8qtjM
Vite in 100 Seconds
711,580
Fireship
153
Visual Studio Code is an open-source lightweight code editor maintained by Microsoft. Get the full VS Code Magic Tricks course to write better code faster https://fireship.io/courses/vscode-tricks 🔥 Black Friday - Upgrade to PRO 🔥 Discount 33.330000000000003% Free Sticker Free T-Shirt (lifetime members) Use code: 1LDSQD4q 👉 https://fireship.io/pro #learntocode #vscode #100SecondsOfCode 🔗 Resources Open VS Code now https://vscode.dev VS Code Docs https://code.visualstudio.com/docs Also checkout VIM https://youtu.be/-txKSRn0qeA 🎨 My Editor Settings - Atom One Dark - vscode-icons - Fira Code Font 🔖 Topics Covered - What is VS Code? - VS Code tour - VS Code as IDE - Best code editor for beginners
{ "metadata": { "channels": 1, "created": "2024-02-04T05:38:52.636Z", "duration": 153.43744, "model_info": { "30089e05-99d1-4376-b32e-c263170674af": { "arch": "nova-2", "name": "2-general-nova", "version": "2024-01-09.29447" } }, "models": [ "30089e05-99d1-4376-b32e-c263170674af" ], "request_id": "a6aa74c3-dddd-42fd-a8e5-7da16ae7bb25", "sha256": "a5ac3af24e5fe7f02b702504c68225201ebaede36b1e123a57455e025e23ed93", "summary_info": { "input_tokens": 641, "model_uuid": "67875a7f-c9c4-48a0-aa55-5bdb8a91c34a", "output_tokens": 76 }, "transaction_key": "deprecated", "warnings": null }, "results": { "channels": [ { "alternatives": [ { "confidence": 0.99902344, "entities": null, "paragraphs": { "paragraphs": [ { "end": 24.29, "num_words": 74, "sentences": [ { "end": 4.56, "start": 0.16, "text": "Visual Studio Code, a free and open source program for editing code." }, { "end": 8.4, "start": 4.56, "text": "Software is just a collection of text files organized in a precise way." }, { "end": 14.415, "start": 8.4, "text": "Versus Code provides an integrated development environment to help you edit, analyze, and manage these files efficiently." }, { "end": 21.95, "start": 14.475, "text": "It's a Microsoft project that first appeared in 2015 as a lightweight cross platform code editor that ships a new update every single month." }, { "end": 24.29, "start": 21.95, "text": "Today, it's the world's most popular code editor." } ], "speaker": 0, "start": 0.16 }, { "end": 47.214996, "num_words": 80, "sentences": [ { "end": 28.484999, "start": 24.35, "text": "Download it, then a new user to open a folder that contains your application files." }, { "end": 35.949997, "start": 28.545, "text": "Before you can write high quality code, you'll need to make the editor look cool by clicking the settings icon to update your syntax and icon themes." }, { "end": 39.629997, "start": 36.01, "text": "Next, you'll notice the file explorer contains all the files in this directory." }, { "end": 42.475, "start": 39.769997, "text": "Open a file end notice how the text inside is colored." }, { "end": 47.214996, "start": 42.475, "text": "That's because Versus code analyzes the symbols inside the file to perform syntax highlighting." } ], "speaker": 0, "start": 24.35 }, { "end": 62.845, "num_words": 58, "sentences": [ { "end": 49.71, "start": 47.274998, "text": "It will automatically detect problems in your code." }, { "end": 52.91, "start": 49.79, "text": "If a variable is not used, it becomes a little more opaque." }, { "end": 55.89, "start": 52.91, "text": "A red squiggly line appears if your code will not compile." }, { "end": 57.57, "start": 55.949997, "text": "Hover over it for more details." }, { "end": 62.845, "start": 57.629997, "text": "It also creates an outline of the code structure to quickly navigate to the line of code that you're looking for." } ], "speaker": 0, "start": 47.274998 }, { "end": 86.548706, "num_words": 92, "sentences": [ { "end": 67.165, "start": 62.845, "text": "Now, as you start writing some code in this file, you'll notice a little box pops up as you type." }, { "end": 69.75, "start": 67.165, "text": "Professional developers rarely type every character." }, { "end": 74.770004, "start": 69.89, "text": "Instead, they leverage Versus Code's IntelliSense to auto complete the code that they were thinking about writing." }, { "end": 77.954994, "start": 74.770004, "text": "When the right suggestion comes up, hit tab or enter to complete an edit." }, { "end": 86.548706, "start": 77.954994, "text": "You might also right click on your code to find a variety of options to analyze and refactor it, but almost anything you can do with the mouse, you can do faster with the keyboard." } ], "speaker": 0, "start": 62.845 }, { "end": 111.875, "num_words": 97, "sentences": [ { "end": 89.14686, "start": 86.548706, "text": "Hit control shift papa to bring up the command palette." }, { "end": 93.105, "start": 89.14686, "text": "From here, you can quickly access any Versus Code command or any file in your project." }, { "end": 97.505005, "start": 93.105, "text": "Let's use it to open up a terminal session which brings up the command line here at the bottom." }, { "end": 106.57, "start": 97.505005, "text": "We can use it to run commands in this project like git init to enable source control, or better yet, we can click on the source control icon to run Git commands with a visual interface." }, { "end": 111.875, "start": 106.63, "text": "Versus Code is minimal by design, but as an open source JavaScript project, it's easily extendable." } ], "speaker": 0, "start": 86.548706 }, { "end": 136.995, "num_words": 93, "sentences": [ { "end": 118.575005, "start": 111.935005, "text": "From the extensions panel, you'll find a huge number of packages that provide specialized tooling for whatever framework or language you're working with." }, { "end": 121.3, "start": 118.575005, "text": "Most software projects work with the cloud in some capacity." }, { "end": 131.655, "start": 121.3, "text": "The remote button can connect your editor to a remote GitHub repository, Docker container, or cloud server, and you can even run Versus Code itself in the cloud to access zip from the browser on any machine." }, { "end": 133.875, "start": 131.715, "text": "This has been Versus Code in 100 seconds." }, { "end": 136.995, "start": 133.875, "text": "Hit the like button and subscribe if you wanna see more short videos like this." } ], "speaker": 0, "start": 111.935005 }, { "end": 153.145, "num_words": 61, "sentences": [ { "end": 140.05, "start": 136.995, "text": "And if you really want to maximize your productivity as a developer." }, { "end": 147.205, "start": 140.05, "text": "I just released a brand new Versus Code magic tricks course that contains a ton of productivity hacks for beginners and advanced developers alike." }, { "end": 150.405, "start": 147.205, "text": "The first 10 videos are free, so check it out on Fireship IO." }, { "end": 153.145, "start": 150.405, "text": "Thanks for watching, and I will see you in the next one." } ], "speaker": 0, "start": 136.995 } ], "transcript": "\nSpeaker 0: Visual Studio Code, a free and open source program for editing code. Software is just a collection of text files organized in a precise way. Versus Code provides an integrated development environment to help you edit, analyze, and manage these files efficiently. It's a Microsoft project that first appeared in 2015 as a lightweight cross platform code editor that ships a new update every single month. Today, it's the world's most popular code editor.\n\nDownload it, then a new user to open a folder that contains your application files. Before you can write high quality code, you'll need to make the editor look cool by clicking the settings icon to update your syntax and icon themes. Next, you'll notice the file explorer contains all the files in this directory. Open a file end notice how the text inside is colored. That's because Versus code analyzes the symbols inside the file to perform syntax highlighting.\n\nIt will automatically detect problems in your code. If a variable is not used, it becomes a little more opaque. A red squiggly line appears if your code will not compile. Hover over it for more details. It also creates an outline of the code structure to quickly navigate to the line of code that you're looking for.\n\nNow, as you start writing some code in this file, you'll notice a little box pops up as you type. Professional developers rarely type every character. Instead, they leverage Versus Code's IntelliSense to auto complete the code that they were thinking about writing. When the right suggestion comes up, hit tab or enter to complete an edit. You might also right click on your code to find a variety of options to analyze and refactor it, but almost anything you can do with the mouse, you can do faster with the keyboard.\n\nHit control shift papa to bring up the command palette. From here, you can quickly access any Versus Code command or any file in your project. Let's use it to open up a terminal session which brings up the command line here at the bottom. We can use it to run commands in this project like git init to enable source control, or better yet, we can click on the source control icon to run Git commands with a visual interface. Versus Code is minimal by design, but as an open source JavaScript project, it's easily extendable.\n\nFrom the extensions panel, you'll find a huge number of packages that provide specialized tooling for whatever framework or language you're working with. Most software projects work with the cloud in some capacity. The remote button can connect your editor to a remote GitHub repository, Docker container, or cloud server, and you can even run Versus Code itself in the cloud to access zip from the browser on any machine. This has been Versus Code in 100 seconds. Hit the like button and subscribe if you wanna see more short videos like this.\n\nAnd if you really want to maximize your productivity as a developer. I just released a brand new Versus Code magic tricks course that contains a ton of productivity hacks for beginners and advanced developers alike. The first 10 videos are free, so check it out on Fireship IO. Thanks for watching, and I will see you in the next one." }, "summaries": null, "topics": [ { "end_word": 116, "start_word": 0, "text": "Visual Studio Code, a free and open source program for editing code. Software is just a collection of text files organized in a precise way. Versus Code provides an integrated development environment to help you edit, analyze, and manage these files efficiently. It's a Microsoft project that first appeared in 2015 as a lightweight cross platform code editor that ships a new update every single month. Today, it's the world's most popular code editor. Download it, then a new user to open a folder that contains your application files. Before you can write high quality code, you'll need to make the editor look cool by clicking the settings icon to update your syntax and icon themes.", "topics": [ { "confidence": 0.9976817, "topic": "software" }, { "confidence": 0.99401563, "topic": "software development" }, { "confidence": 0.6380113, "topic": "programming" }, { "confidence": 0.053864054, "topic": "microsoft" }, { "confidence": 0.04486212, "topic": "computer science" } ] }, { "end_word": 154, "start_word": 116, "text": "Next, you'll notice the file explorer contains all the files in this directory. Open a file end notice how the text inside is colored. That's because Versus code analyzes the symbols inside the file to perform syntax highlighting.", "topics": [] }, { "end_word": 304, "start_word": 154, "text": "It will automatically detect problems in your code. If a variable is not used, it becomes a little more opaque. A red squiggly line appears if your code will not compile. Hover over it for more details. It also creates an outline of the code structure to quickly navigate to the line of code that you're looking for. Now, as you start writing some code in this file, you'll notice a little box pops up as you type. Professional developers rarely type every character. Instead, they leverage Versus Code's IntelliSense to auto complete the code that they were thinking about writing. When the right suggestion comes up, hit tab or enter to complete an edit. You might also right click on your code to find a variety of options to analyze and refactor it, but almost anything you can do with the mouse, you can do faster with the keyboard.", "topics": [ { "confidence": 0.061565496, "topic": "programming" }, { "confidence": 0.0056279097, "topic": "software development" } ] }, { "end_word": 385, "start_word": 304, "text": "Hit control shift papa to bring up the command palette. From here, you can quickly access any Versus Code command or any file in your project. Let's use it to open up a terminal session which brings up the command line here at the bottom. We can use it to run commands in this project like git init to enable source control, or better yet, we can click on the source control icon to run Git commands with a visual interface.", "topics": [] }, { "end_word": 555, "start_word": 385, "text": "Versus Code is minimal by design, but as an open source JavaScript project, it's easily extendable. From the extensions panel, you'll find a huge number of packages that provide specialized tooling for whatever framework or language you're working with. Most software projects work with the cloud in some capacity. The remote button can connect your editor to a remote GitHub repository, Docker container, or cloud server, and you can even run Versus Code itself in the cloud to access zip from the browser on any machine. This has been Versus Code in 100 seconds. Hit the like button and subscribe if you wanna see more short videos like this. And if you really want to maximize your productivity as a developer. I just released a brand new Versus Code magic tricks course that contains a ton of productivity hacks for beginners and advanced developers alike. The first 10 videos are free, so check it out on Fireship IO. Thanks for watching, and I will see you in the next one.", "topics": [ { "confidence": 0.27794313, "topic": "youtube" }, { "confidence": 0.18133618, "topic": "software" }, { "confidence": 0.09358037, "topic": "video gaming" }, { "confidence": 0.036905613, "topic": "software development" }, { "confidence": 0.012721695, "topic": "games" } ] } ], "transcript": "Visual Studio Code, a free and open source program for editing code. Software is just a collection of text files organized in a precise way. Versus Code provides an integrated development environment to help you edit, analyze, and manage these files efficiently. It's a Microsoft project that first appeared in 2015 as a lightweight cross platform code editor that ships a new update every single month. Today, it's the world's most popular code editor. Download it, then a new user to open a folder that contains your application files. Before you can write high quality code, you'll need to make the editor look cool by clicking the settings icon to update your syntax and icon themes. Next, you'll notice the file explorer contains all the files in this directory. Open a file end notice how the text inside is colored. That's because Versus code analyzes the symbols inside the file to perform syntax highlighting. It will automatically detect problems in your code. If a variable is not used, it becomes a little more opaque. A red squiggly line appears if your code will not compile. Hover over it for more details. It also creates an outline of the code structure to quickly navigate to the line of code that you're looking for. Now, as you start writing some code in this file, you'll notice a little box pops up as you type. Professional developers rarely type every character. Instead, they leverage Versus Code's IntelliSense to auto complete the code that they were thinking about writing. When the right suggestion comes up, hit tab or enter to complete an edit. You might also right click on your code to find a variety of options to analyze and refactor it, but almost anything you can do with the mouse, you can do faster with the keyboard. Hit control shift papa to bring up the command palette. From here, you can quickly access any Versus Code command or any file in your project. Let's use it to open up a terminal session which brings up the command line here at the bottom. We can use it to run commands in this project like git init to enable source control, or better yet, we can click on the source control icon to run Git commands with a visual interface. Versus Code is minimal by design, but as an open source JavaScript project, it's easily extendable. From the extensions panel, you'll find a huge number of packages that provide specialized tooling for whatever framework or language you're working with. Most software projects work with the cloud in some capacity. The remote button can connect your editor to a remote GitHub repository, Docker container, or cloud server, and you can even run Versus Code itself in the cloud to access zip from the browser on any machine. This has been Versus Code in 100 seconds. Hit the like button and subscribe if you wanna see more short videos like this. And if you really want to maximize your productivity as a developer. I just released a brand new Versus Code magic tricks course that contains a ton of productivity hacks for beginners and advanced developers alike. The first 10 videos are free, so check it out on Fireship IO. Thanks for watching, and I will see you in the next one.", "translations": null, "words": [ { "confidence": 0.54541016, "end": 0.65999997, "punctuated_word": "Visual", "speaker": 0, "speaker_confidence": 1, "start": 0.16, "word": "visual" }, { "confidence": 0.9667969, "end": 1.1999999, "punctuated_word": "Studio", "speaker": 0, "speaker_confidence": 1, "start": 0.71999997, "word": "studio" }, { "confidence": 0.88500977, "end": 1.68, "punctuated_word": "Code,", "speaker": 0, "speaker_confidence": 1, "start": 1.1999999, "word": "code" }, { "confidence": 0.9741211, "end": 1.92, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 1.68, "word": "a" }, { "confidence": 0.9902344, "end": 2.1599998, "punctuated_word": "free", "speaker": 0, "speaker_confidence": 1, "start": 1.92, "word": "free" }, { "confidence": 0.9863281, "end": 2.32, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 2.1599998, "word": "and" }, { "confidence": 0.9580078, "end": 2.6399999, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 1, "start": 2.32, "word": "open" }, { "confidence": 0.9873047, "end": 2.96, "punctuated_word": "source", "speaker": 0, "speaker_confidence": 1, "start": 2.6399999, "word": "source" }, { "confidence": 1, "end": 3.36, "punctuated_word": "program", "speaker": 0, "speaker_confidence": 1, "start": 2.96, "word": "program" }, { "confidence": 1, "end": 3.6799998, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 3.36, "word": "for" }, { "confidence": 1, "end": 4.16, "punctuated_word": "editing", "speaker": 0, "speaker_confidence": 1, "start": 3.6799998, "word": "editing" }, { "confidence": 0.986084, "end": 4.56, "punctuated_word": "code.", "speaker": 0, "speaker_confidence": 1, "start": 4.16, "word": "code" }, { "confidence": 0.9921875, "end": 5.04, "punctuated_word": "Software", "speaker": 0, "speaker_confidence": 1, "start": 4.56, "word": "software" }, { "confidence": 1, "end": 5.2799997, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 5.04, "word": "is" }, { "confidence": 1, "end": 5.44, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 1, "start": 5.2799997, "word": "just" }, { "confidence": 1, "end": 5.6, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 5.44, "word": "a" }, { "confidence": 1, "end": 6, "punctuated_word": "collection", "speaker": 0, "speaker_confidence": 1, "start": 5.6, "word": "collection" }, { "confidence": 1, "end": 6.16, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 6, "word": "of" }, { "confidence": 0.99902344, "end": 6.48, "punctuated_word": "text", "speaker": 0, "speaker_confidence": 1, "start": 6.16, "word": "text" }, { "confidence": 1, "end": 6.8799996, "punctuated_word": "files", "speaker": 0, "speaker_confidence": 1, "start": 6.48, "word": "files" }, { "confidence": 0.9980469, "end": 7.3599997, "punctuated_word": "organized", "speaker": 0, "speaker_confidence": 1, "start": 6.8799996, "word": "organized" }, { "confidence": 1, "end": 7.52, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 7.3599997, "word": "in" }, { "confidence": 1, "end": 7.6, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 7.52, "word": "a" }, { "confidence": 1, "end": 8, "punctuated_word": "precise", "speaker": 0, "speaker_confidence": 1, "start": 7.6, "word": "precise" }, { "confidence": 0.99658203, "end": 8.4, "punctuated_word": "way.", "speaker": 0, "speaker_confidence": 1, "start": 8, "word": "way" }, { "confidence": 0.69921875, "end": 8.8, "punctuated_word": "Versus", "speaker": 0, "speaker_confidence": 1, "start": 8.4, "word": "versus" }, { "confidence": 0.6953125, "end": 9.12, "punctuated_word": "Code", "speaker": 0, "speaker_confidence": 1, "start": 8.8, "word": "code" }, { "confidence": 0.9980469, "end": 9.36, "punctuated_word": "provides", "speaker": 0, "speaker_confidence": 1, "start": 9.12, "word": "provides" }, { "confidence": 0.99609375, "end": 9.595, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 9.36, "word": "an" }, { "confidence": 0.9921875, "end": 10.075, "punctuated_word": "integrated", "speaker": 0, "speaker_confidence": 1, "start": 9.755, "word": "integrated" }, { "confidence": 0.99609375, "end": 10.575, "punctuated_word": "development", "speaker": 0, "speaker_confidence": 1, "start": 10.075, "word": "development" }, { "confidence": 0.99902344, "end": 11.135, "punctuated_word": "environment", "speaker": 0, "speaker_confidence": 1, "start": 10.635, "word": "environment" }, { "confidence": 0.99121094, "end": 11.435, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 11.3550005, "word": "to" }, { "confidence": 1, "end": 11.595, "punctuated_word": "help", "speaker": 0, "speaker_confidence": 1, "start": 11.435, "word": "help" }, { "confidence": 1, "end": 11.755, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 11.595, "word": "you" }, { "confidence": 0.9951172, "end": 12.255, "punctuated_word": "edit,", "speaker": 0, "speaker_confidence": 1, "start": 11.755, "word": "edit" }, { "confidence": 0.9807129, "end": 12.795, "punctuated_word": "analyze,", "speaker": 0, "speaker_confidence": 1, "start": 12.395, "word": "analyze" }, { "confidence": 1, "end": 13.115, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 12.795, "word": "and" }, { "confidence": 0.9980469, "end": 13.435, "punctuated_word": "manage", "speaker": 0, "speaker_confidence": 1, "start": 13.115, "word": "manage" }, { "confidence": 0.9980469, "end": 13.675, "punctuated_word": "these", "speaker": 0, "speaker_confidence": 1, "start": 13.435, "word": "these" }, { "confidence": 1, "end": 13.915, "punctuated_word": "files", "speaker": 0, "speaker_confidence": 1, "start": 13.675, "word": "files" }, { "confidence": 0.9995117, "end": 14.415, "punctuated_word": "efficiently.", "speaker": 0, "speaker_confidence": 1, "start": 13.915, "word": "efficiently" }, { "confidence": 0.99902344, "end": 14.715, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 1, "start": 14.475, "word": "it's" }, { "confidence": 0.99902344, "end": 14.875, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 14.715, "word": "a" }, { "confidence": 0.99316406, "end": 15.375, "punctuated_word": "Microsoft", "speaker": 0, "speaker_confidence": 1, "start": 14.875, "word": "microsoft" }, { "confidence": 0.9614258, "end": 15.915, "punctuated_word": "project", "speaker": 0, "speaker_confidence": 1, "start": 15.434999, "word": "project" }, { "confidence": 0.99609375, "end": 16.075, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 15.915, "word": "that" }, { "confidence": 0.99121094, "end": 16.395, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 1, "start": 16.075, "word": "first" }, { "confidence": 0.9980469, "end": 16.715, "punctuated_word": "appeared", "speaker": 0, "speaker_confidence": 1, "start": 16.395, "word": "appeared" }, { "confidence": 1, "end": 16.875, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 16.715, "word": "in" }, { "confidence": 0.9394531, "end": 17.375, "punctuated_word": "2015", "speaker": 0, "speaker_confidence": 1, "start": 16.875, "word": "2015" }, { "confidence": 0.8432617, "end": 17.835, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.98095703, "start": 17.755001, "word": "as" }, { "confidence": 0.9951172, "end": 18.11, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.98095703, "start": 17.835, "word": "a" }, { "confidence": 0.9980469, "end": 18.59, "punctuated_word": "lightweight", "speaker": 0, "speaker_confidence": 0.98095703, "start": 18.19, "word": "lightweight" }, { "confidence": 0.8852539, "end": 18.83, "punctuated_word": "cross", "speaker": 0, "speaker_confidence": 0.98095703, "start": 18.59, "word": "cross" }, { "confidence": 0.984375, "end": 19.310001, "punctuated_word": "platform", "speaker": 0, "speaker_confidence": 0.98095703, "start": 18.83, "word": "platform" }, { "confidence": 0.9941406, "end": 19.550001, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.98095703, "start": 19.310001, "word": "code" }, { "confidence": 1, "end": 19.95, "punctuated_word": "editor", "speaker": 0, "speaker_confidence": 0.98095703, "start": 19.550001, "word": "editor" }, { "confidence": 0.9980469, "end": 20.19, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.98095703, "start": 19.95, "word": "that" }, { "confidence": 0.9921875, "end": 20.43, "punctuated_word": "ships", "speaker": 0, "speaker_confidence": 0.98095703, "start": 20.19, "word": "ships" }, { "confidence": 0.99609375, "end": 20.59, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.98095703, "start": 20.43, "word": "a" }, { "confidence": 1, "end": 20.75, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.98095703, "start": 20.59, "word": "new" }, { "confidence": 1, "end": 21.150002, "punctuated_word": "update", "speaker": 0, "speaker_confidence": 0.98095703, "start": 20.75, "word": "update" }, { "confidence": 0.99902344, "end": 21.390001, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 0.98095703, "start": 21.150002, "word": "every" }, { "confidence": 1, "end": 21.630001, "punctuated_word": "single", "speaker": 0, "speaker_confidence": 0.98095703, "start": 21.390001, "word": "single" }, { "confidence": 1, "end": 21.95, "punctuated_word": "month.", "speaker": 0, "speaker_confidence": 0.98095703, "start": 21.630001, "word": "month" }, { "confidence": 0.99609375, "end": 22.35, "punctuated_word": "Today,", "speaker": 0, "speaker_confidence": 0.98095703, "start": 21.95, "word": "today" }, { "confidence": 0.9995117, "end": 22.51, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.98095703, "start": 22.35, "word": "it's" }, { "confidence": 1, "end": 22.59, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.796875, "start": 22.51, "word": "the" }, { "confidence": 1, "end": 22.91, "punctuated_word": "world's", "speaker": 0, "speaker_confidence": 0.796875, "start": 22.59, "word": "world's" }, { "confidence": 1, "end": 23.150002, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 0.796875, "start": 22.91, "word": "most" }, { "confidence": 1, "end": 23.630001, "punctuated_word": "popular", "speaker": 0, "speaker_confidence": 0.796875, "start": 23.150002, "word": "popular" }, { "confidence": 0.9980469, "end": 23.79, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.796875, "start": 23.630001, "word": "code" }, { "confidence": 0.9975586, "end": 24.29, "punctuated_word": "editor.", "speaker": 0, "speaker_confidence": 0.796875, "start": 23.79, "word": "editor" }, { "confidence": 0.9970703, "end": 24.67, "punctuated_word": "Download", "speaker": 0, "speaker_confidence": 0.796875, "start": 24.35, "word": "download" }, { "confidence": 0.9499512, "end": 24.99, "punctuated_word": "it,", "speaker": 0, "speaker_confidence": 0.796875, "start": 24.67, "word": "it" }, { "confidence": 1, "end": 25.185, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.796875, "start": 24.99, "word": "then" }, { "confidence": 0.45458984, "end": 25.265, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.796875, "start": 25.185, "word": "a" }, { "confidence": 0.43359375, "end": 25.425, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.95654297, "start": 25.265, "word": "new" }, { "confidence": 0.35595703, "end": 25.585, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 0.95654297, "start": 25.425, "word": "user" }, { "confidence": 0.9921875, "end": 25.664999, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.95654297, "start": 25.585, "word": "to" }, { "confidence": 0.99902344, "end": 25.984999, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.95654297, "start": 25.664999, "word": "open" }, { "confidence": 0.99902344, "end": 26.144999, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.95654297, "start": 25.984999, "word": "a" }, { "confidence": 1, "end": 26.465, "punctuated_word": "folder", "speaker": 0, "speaker_confidence": 0.95654297, "start": 26.144999, "word": "folder" }, { "confidence": 1, "end": 26.705, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.95654297, "start": 26.465, "word": "that" }, { "confidence": 0.99902344, "end": 27.105, "punctuated_word": "contains", "speaker": 0, "speaker_confidence": 0.95654297, "start": 26.705, "word": "contains" }, { "confidence": 1, "end": 27.425, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.95654297, "start": 27.105, "word": "your" }, { "confidence": 1, "end": 27.925, "punctuated_word": "application", "speaker": 0, "speaker_confidence": 0.95654297, "start": 27.425, "word": "application" }, { "confidence": 0.9995117, "end": 28.484999, "punctuated_word": "files.", "speaker": 0, "speaker_confidence": 0.95654297, "start": 27.984999, "word": "files" }, { "confidence": 1, "end": 28.865, "punctuated_word": "Before", "speaker": 0, "speaker_confidence": 0.95654297, "start": 28.545, "word": "before" }, { "confidence": 1, "end": 28.945, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.95654297, "start": 28.865, "word": "you" }, { "confidence": 1, "end": 29.025, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.70996094, "start": 28.945, "word": "can" }, { "confidence": 1, "end": 29.265, "punctuated_word": "write", "speaker": 0, "speaker_confidence": 0.70996094, "start": 29.025, "word": "write" }, { "confidence": 0.99902344, "end": 29.425, "punctuated_word": "high", "speaker": 0, "speaker_confidence": 0.70996094, "start": 29.265, "word": "high" }, { "confidence": 1, "end": 29.824999, "punctuated_word": "quality", "speaker": 0, "speaker_confidence": 0.70996094, "start": 29.425, "word": "quality" }, { "confidence": 0.9995117, "end": 30.145, "punctuated_word": "code,", "speaker": 0, "speaker_confidence": 0.70996094, "start": 29.824999, "word": "code" }, { "confidence": 0.99902344, "end": 30.384998, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 0.70996094, "start": 30.145, "word": "you'll" }, { "confidence": 1, "end": 30.544998, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.70996094, "start": 30.384998, "word": "need" }, { "confidence": 0.99902344, "end": 30.705, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.70996094, "start": 30.544998, "word": "to" }, { "confidence": 1, "end": 30.865, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.70996094, "start": 30.705, "word": "make" }, { "confidence": 1, "end": 30.945, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 30.865, "word": "the" }, { "confidence": 0.99902344, "end": 31.345, "punctuated_word": "editor", "speaker": 0, "speaker_confidence": 1, "start": 30.945, "word": "editor" }, { "confidence": 1, "end": 31.505, "punctuated_word": "look", "speaker": 0, "speaker_confidence": 1, "start": 31.345, "word": "look" }, { "confidence": 1, "end": 31.824999, "punctuated_word": "cool", "speaker": 0, "speaker_confidence": 1, "start": 31.505, "word": "cool" }, { "confidence": 0.9838867, "end": 31.984999, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 1, "start": 31.824999, "word": "by" }, { "confidence": 1, "end": 32.225, "punctuated_word": "clicking", "speaker": 0, "speaker_confidence": 1, "start": 31.984999, "word": "clicking" }, { "confidence": 1, "end": 32.385, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 32.225, "word": "the" }, { "confidence": 0.99902344, "end": 32.785, "punctuated_word": "settings", "speaker": 0, "speaker_confidence": 1, "start": 32.385, "word": "settings" }, { "confidence": 1, "end": 33.285, "punctuated_word": "icon", "speaker": 0, "speaker_confidence": 1, "start": 32.785, "word": "icon" }, { "confidence": 0.7084961, "end": 33.61, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 33.37, "word": "to" }, { "confidence": 0.9873047, "end": 33.85, "punctuated_word": "update", "speaker": 0, "speaker_confidence": 1, "start": 33.61, "word": "update" }, { "confidence": 0.9941406, "end": 34.329998, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 1, "start": 33.85, "word": "your" }, { "confidence": 0.99902344, "end": 34.73, "punctuated_word": "syntax", "speaker": 0, "speaker_confidence": 1, "start": 34.329998, "word": "syntax" }, { "confidence": 0.9970703, "end": 35.129997, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 34.73, "word": "and" }, { "confidence": 0.9970703, "end": 35.449997, "punctuated_word": "icon", "speaker": 0, "speaker_confidence": 1, "start": 35.129997, "word": "icon" }, { "confidence": 0.99658203, "end": 35.949997, "punctuated_word": "themes.", "speaker": 0, "speaker_confidence": 1, "start": 35.449997, "word": "themes" }, { "confidence": 0.99902344, "end": 36.41, "punctuated_word": "Next,", "speaker": 0, "speaker_confidence": 1, "start": 36.01, "word": "next" }, { "confidence": 1, "end": 36.57, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 1, "start": 36.41, "word": "you'll" }, { "confidence": 1, "end": 36.89, "punctuated_word": "notice", "speaker": 0, "speaker_confidence": 1, "start": 36.57, "word": "notice" }, { "confidence": 0.99609375, "end": 37.05, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 36.89, "word": "the" }, { "confidence": 0.98535156, "end": 37.289997, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 1, "start": 37.05, "word": "file" }, { "confidence": 0.99121094, "end": 37.77, "punctuated_word": "explorer", "speaker": 0, "speaker_confidence": 1, "start": 37.289997, "word": "explorer" }, { "confidence": 0.99902344, "end": 38.17, "punctuated_word": "contains", "speaker": 0, "speaker_confidence": 1, "start": 37.77, "word": "contains" }, { "confidence": 1, "end": 38.41, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 1, "start": 38.17, "word": "all" }, { "confidence": 0.99609375, "end": 38.489998, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 38.41, "word": "the" }, { "confidence": 0.99902344, "end": 38.809998, "punctuated_word": "files", "speaker": 0, "speaker_confidence": 1, "start": 38.489998, "word": "files" }, { "confidence": 0.9980469, "end": 38.969997, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 38.809998, "word": "in" }, { "confidence": 0.9951172, "end": 39.129997, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 1, "start": 38.969997, "word": "this" }, { "confidence": 0.9995117, "end": 39.629997, "punctuated_word": "directory.", "speaker": 0, "speaker_confidence": 1, "start": 39.129997, "word": "directory" }, { "confidence": 1, "end": 40.09, "punctuated_word": "Open", "speaker": 0, "speaker_confidence": 1, "start": 39.769997, "word": "open" }, { "confidence": 0.9667969, "end": 40.17, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 40.09, "word": "a" }, { "confidence": 1, "end": 40.475, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 1, "start": 40.17, "word": "file" }, { "confidence": 0.47070312, "end": 40.635, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 1, "start": 40.475, "word": "end" }, { "confidence": 0.9863281, "end": 40.795, "punctuated_word": "notice", "speaker": 0, "speaker_confidence": 1, "start": 40.635, "word": "notice" }, { "confidence": 0.9863281, "end": 40.954998, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 1, "start": 40.795, "word": "how" }, { "confidence": 0.99902344, "end": 41.195, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 40.954998, "word": "the" }, { "confidence": 1, "end": 41.434998, "punctuated_word": "text", "speaker": 0, "speaker_confidence": 1, "start": 41.195, "word": "text" }, { "confidence": 1, "end": 41.754997, "punctuated_word": "inside", "speaker": 0, "speaker_confidence": 1, "start": 41.434998, "word": "inside" }, { "confidence": 0.9980469, "end": 41.995, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 41.754997, "word": "is" }, { "confidence": 0.9580078, "end": 42.475, "punctuated_word": "colored.", "speaker": 0, "speaker_confidence": 1, "start": 41.995, "word": "colored" }, { "confidence": 1, "end": 42.715, "punctuated_word": "That's", "speaker": 0, "speaker_confidence": 1, "start": 42.475, "word": "that's" }, { "confidence": 1, "end": 43.035, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 1, "start": 42.715, "word": "because" }, { "confidence": 0.9560547, "end": 43.355, "punctuated_word": "Versus", "speaker": 0, "speaker_confidence": 1, "start": 43.035, "word": "versus" }, { "confidence": 0.8769531, "end": 43.675, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 1, "start": 43.355, "word": "code" }, { "confidence": 0.9995117, "end": 44.175, "punctuated_word": "analyzes", "speaker": 0, "speaker_confidence": 1, "start": 43.675, "word": "analyzes" }, { "confidence": 1, "end": 44.315, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 44.234997, "word": "the" }, { "confidence": 0.9970703, "end": 44.815, "punctuated_word": "symbols", "speaker": 0, "speaker_confidence": 1, "start": 44.315, "word": "symbols" }, { "confidence": 1, "end": 45.195, "punctuated_word": "inside", "speaker": 0, "speaker_confidence": 1, "start": 44.875, "word": "inside" }, { "confidence": 0.9980469, "end": 45.355, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 45.195, "word": "the" }, { "confidence": 1, "end": 45.675, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 1, "start": 45.355, "word": "file" }, { "confidence": 1, "end": 45.835, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 45.675, "word": "to" }, { "confidence": 1, "end": 46.315, "punctuated_word": "perform", "speaker": 0, "speaker_confidence": 1, "start": 45.835, "word": "perform" }, { "confidence": 0.99902344, "end": 46.714996, "punctuated_word": "syntax", "speaker": 0, "speaker_confidence": 1, "start": 46.315, "word": "syntax" }, { "confidence": 0.9970703, "end": 47.214996, "punctuated_word": "highlighting.", "speaker": 0, "speaker_confidence": 1, "start": 46.714996, "word": "highlighting" }, { "confidence": 0.99121094, "end": 47.355, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 1, "start": 47.274998, "word": "it" }, { "confidence": 1, "end": 47.594997, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 1, "start": 47.355, "word": "will" }, { "confidence": 0.99902344, "end": 48.094997, "punctuated_word": "automatically", "speaker": 0, "speaker_confidence": 1, "start": 47.594997, "word": "automatically" }, { "confidence": 1, "end": 48.635, "punctuated_word": "detect", "speaker": 0, "speaker_confidence": 1, "start": 48.155, "word": "detect" }, { "confidence": 1, "end": 49.034996, "punctuated_word": "problems", "speaker": 0, "speaker_confidence": 1, "start": 48.635, "word": "problems" }, { "confidence": 1, "end": 49.195, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 49.034996, "word": "in" }, { "confidence": 1, "end": 49.355, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 1, "start": 49.195, "word": "your" }, { "confidence": 0.9970703, "end": 49.71, "punctuated_word": "code.", "speaker": 0, "speaker_confidence": 1, "start": 49.355, "word": "code" }, { "confidence": 0.9770508, "end": 49.95, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 1, "start": 49.79, "word": "if" }, { "confidence": 0.9970703, "end": 50.11, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 49.95, "word": "a" }, { "confidence": 1, "end": 50.51, "punctuated_word": "variable", "speaker": 0, "speaker_confidence": 1, "start": 50.11, "word": "variable" }, { "confidence": 0.9902344, "end": 50.67, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 50.51, "word": "is" }, { "confidence": 1, "end": 50.91, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 1, "start": 50.67, "word": "not" }, { "confidence": 0.98999023, "end": 51.39, "punctuated_word": "used,", "speaker": 0, "speaker_confidence": 1, "start": 50.91, "word": "used" }, { "confidence": 0.99902344, "end": 51.55, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 51.39, "word": "it" }, { "confidence": 1, "end": 51.87, "punctuated_word": "becomes", "speaker": 0, "speaker_confidence": 1, "start": 51.55, "word": "becomes" }, { "confidence": 1, "end": 52.03, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 51.87, "word": "a" }, { "confidence": 1, "end": 52.27, "punctuated_word": "little", "speaker": 0, "speaker_confidence": 1, "start": 52.03, "word": "little" }, { "confidence": 1, "end": 52.43, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 1, "start": 52.27, "word": "more" }, { "confidence": 0.9941406, "end": 52.91, "punctuated_word": "opaque.", "speaker": 0, "speaker_confidence": 1, "start": 52.43, "word": "opaque" }, { "confidence": 1, "end": 52.989998, "punctuated_word": "A", "speaker": 0, "speaker_confidence": 1, "start": 52.91, "word": "a" }, { "confidence": 1, "end": 53.23, "punctuated_word": "red", "speaker": 0, "speaker_confidence": 1, "start": 52.989998, "word": "red" }, { "confidence": 0.99902344, "end": 53.73, "punctuated_word": "squiggly", "speaker": 0, "speaker_confidence": 1, "start": 53.23, "word": "squiggly" }, { "confidence": 0.99902344, "end": 54.03, "punctuated_word": "line", "speaker": 0, "speaker_confidence": 1, "start": 53.79, "word": "line" }, { "confidence": 1, "end": 54.43, "punctuated_word": "appears", "speaker": 0, "speaker_confidence": 1, "start": 54.03, "word": "appears" }, { "confidence": 0.99316406, "end": 54.59, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 1, "start": 54.43, "word": "if" }, { "confidence": 0.99902344, "end": 54.75, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 1, "start": 54.59, "word": "your" }, { "confidence": 1, "end": 55.07, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 1, "start": 54.75, "word": "code" }, { "confidence": 1, "end": 55.149998, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 1, "start": 55.07, "word": "will" }, { "confidence": 1, "end": 55.39, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 1, "start": 55.149998, "word": "not" }, { "confidence": 0.9914551, "end": 55.89, "punctuated_word": "compile.", "speaker": 0, "speaker_confidence": 1, "start": 55.39, "word": "compile" }, { "confidence": 0.9970703, "end": 56.19, "punctuated_word": "Hover", "speaker": 0, "speaker_confidence": 1, "start": 55.949997, "word": "hover" }, { "confidence": 1, "end": 56.43, "punctuated_word": "over", "speaker": 0, "speaker_confidence": 1, "start": 56.19, "word": "over" }, { "confidence": 1, "end": 56.67, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 56.43, "word": "it" }, { "confidence": 0.99902344, "end": 56.829998, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 56.67, "word": "for" }, { "confidence": 1, "end": 57.07, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 1, "start": 56.829998, "word": "more" }, { "confidence": 0.9995117, "end": 57.57, "punctuated_word": "details.", "speaker": 0, "speaker_confidence": 1, "start": 57.07, "word": "details" }, { "confidence": 1, "end": 57.87, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 1, "start": 57.629997, "word": "it" }, { "confidence": 0.9980469, "end": 58.11, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 1, "start": 57.87, "word": "also" }, { "confidence": 0.99902344, "end": 58.35, "punctuated_word": "creates", "speaker": 0, "speaker_confidence": 1, "start": 58.11, "word": "creates" }, { "confidence": 1, "end": 58.51, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 58.35, "word": "an" }, { "confidence": 1, "end": 58.91, "punctuated_word": "outline", "speaker": 0, "speaker_confidence": 1, "start": 58.51, "word": "outline" }, { "confidence": 1, "end": 59.07, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 58.91, "word": "of" }, { "confidence": 0.99902344, "end": 59.23, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 59.07, "word": "the" }, { "confidence": 1, "end": 59.485, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 1, "start": 59.23, "word": "code" }, { "confidence": 0.86279297, "end": 59.965, "punctuated_word": "structure", "speaker": 0, "speaker_confidence": 1, "start": 59.565002, "word": "structure" }, { "confidence": 0.99609375, "end": 60.205, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 59.965, "word": "to" }, { "confidence": 1, "end": 60.605, "punctuated_word": "quickly", "speaker": 0, "speaker_confidence": 1, "start": 60.205, "word": "quickly" }, { "confidence": 0.99902344, "end": 61.005, "punctuated_word": "navigate", "speaker": 0, "speaker_confidence": 1, "start": 60.605, "word": "navigate" }, { "confidence": 0.9970703, "end": 61.245, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 61.005, "word": "to" }, { "confidence": 0.99902344, "end": 61.325, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 61.245, "word": "the" }, { "confidence": 1, "end": 61.485, "punctuated_word": "line", "speaker": 0, "speaker_confidence": 0.95654297, "start": 61.325, "word": "line" }, { "confidence": 0.99902344, "end": 61.565002, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.95654297, "start": 61.485, "word": "of" }, { "confidence": 1, "end": 61.805, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.95654297, "start": 61.565002, "word": "code" }, { "confidence": 0.9980469, "end": 61.965, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.95654297, "start": 61.805, "word": "that" }, { "confidence": 0.99902344, "end": 62.125, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.95654297, "start": 61.965, "word": "you're" }, { "confidence": 1, "end": 62.365, "punctuated_word": "looking", "speaker": 0, "speaker_confidence": 0.95654297, "start": 62.125, "word": "looking" }, { "confidence": 0.9995117, "end": 62.845, "punctuated_word": "for.", "speaker": 0, "speaker_confidence": 0.95654297, "start": 62.365, "word": "for" }, { "confidence": 0.7973633, "end": 63.085, "punctuated_word": "Now,", "speaker": 0, "speaker_confidence": 0.95654297, "start": 62.845, "word": "now" }, { "confidence": 1, "end": 63.245, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.95654297, "start": 63.085, "word": "as" }, { "confidence": 1, "end": 63.325, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.95654297, "start": 63.245, "word": "you" }, { "confidence": 1, "end": 63.645, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 0.95654297, "start": 63.325, "word": "start" }, { "confidence": 1, "end": 63.885002, "punctuated_word": "writing", "speaker": 0, "speaker_confidence": 0.95654297, "start": 63.645, "word": "writing" }, { "confidence": 1, "end": 64.045, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.95654297, "start": 63.885002, "word": "some" }, { "confidence": 1, "end": 64.285, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.95654297, "start": 64.045, "word": "code" }, { "confidence": 1, "end": 64.365, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.95654297, "start": 64.285, "word": "in" }, { "confidence": 0.99902344, "end": 64.525, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 1, "start": 64.365, "word": "this" }, { "confidence": 0.99609375, "end": 64.845, "punctuated_word": "file,", "speaker": 0, "speaker_confidence": 1, "start": 64.525, "word": "file" }, { "confidence": 1, "end": 65.085, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 1, "start": 64.845, "word": "you'll" }, { "confidence": 1, "end": 65.405, "punctuated_word": "notice", "speaker": 0, "speaker_confidence": 1, "start": 65.085, "word": "notice" }, { "confidence": 0.99609375, "end": 65.485, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 65.405, "word": "a" }, { "confidence": 1, "end": 65.805, "punctuated_word": "little", "speaker": 0, "speaker_confidence": 1, "start": 65.485, "word": "little" }, { "confidence": 0.99902344, "end": 66.045, "punctuated_word": "box", "speaker": 0, "speaker_confidence": 1, "start": 65.805, "word": "box" }, { "confidence": 0.99902344, "end": 66.285, "punctuated_word": "pops", "speaker": 0, "speaker_confidence": 1, "start": 66.045, "word": "pops" }, { "confidence": 0.99902344, "end": 66.525, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 1, "start": 66.285, "word": "up" }, { "confidence": 0.99902344, "end": 66.765, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 1, "start": 66.525, "word": "as" }, { "confidence": 1, "end": 66.845, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 66.765, "word": "you" }, { "confidence": 0.99853516, "end": 67.165, "punctuated_word": "type.", "speaker": 0, "speaker_confidence": 1, "start": 66.845, "word": "type" }, { "confidence": 0.99609375, "end": 67.665, "punctuated_word": "Professional", "speaker": 0, "speaker_confidence": 1, "start": 67.165, "word": "professional" }, { "confidence": 0.99316406, "end": 68.29, "punctuated_word": "developers", "speaker": 0, "speaker_confidence": 1, "start": 67.89001, "word": "developers" }, { "confidence": 0.9760742, "end": 68.69, "punctuated_word": "rarely", "speaker": 0, "speaker_confidence": 1, "start": 68.29, "word": "rarely" }, { "confidence": 0.9980469, "end": 69.01, "punctuated_word": "type", "speaker": 0, "speaker_confidence": 1, "start": 68.69, "word": "type" }, { "confidence": 0.99902344, "end": 69.25, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 1, "start": 69.01, "word": "every" }, { "confidence": 0.9309082, "end": 69.75, "punctuated_word": "character.", "speaker": 0, "speaker_confidence": 1, "start": 69.25, "word": "character" }, { "confidence": 0.9880371, "end": 70.39, "punctuated_word": "Instead,", "speaker": 0, "speaker_confidence": 1, "start": 69.89, "word": "instead" }, { "confidence": 0.9980469, "end": 70.61, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 1, "start": 70.450005, "word": "they" }, { "confidence": 0.90771484, "end": 71.01, "punctuated_word": "leverage", "speaker": 0, "speaker_confidence": 1, "start": 70.61, "word": "leverage" }, { "confidence": 0.99121094, "end": 71.25, "punctuated_word": "Versus", "speaker": 0, "speaker_confidence": 1, "start": 71.01, "word": "versus" }, { "confidence": 0.91308594, "end": 71.65, "punctuated_word": "Code's", "speaker": 0, "speaker_confidence": 1, "start": 71.25, "word": "code's" }, { "confidence": 0.9770508, "end": 72.15, "punctuated_word": "IntelliSense", "speaker": 0, "speaker_confidence": 1, "start": 71.65, "word": "intellisense" }, { "confidence": 0.98828125, "end": 72.53001, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 72.29, "word": "to" }, { "confidence": 0.60791016, "end": 72.770004, "punctuated_word": "auto", "speaker": 0, "speaker_confidence": 1, "start": 72.53001, "word": "auto" }, { "confidence": 1, "end": 73.090004, "punctuated_word": "complete", "speaker": 0, "speaker_confidence": 1, "start": 72.770004, "word": "complete" }, { "confidence": 0.99902344, "end": 73.170006, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.97509766, "start": 73.090004, "word": "the" }, { "confidence": 0.99902344, "end": 73.41, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.97509766, "start": 73.170006, "word": "code" }, { "confidence": 0.9951172, "end": 73.490005, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.97509766, "start": 73.41, "word": "that" }, { "confidence": 0.99902344, "end": 73.65, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.97509766, "start": 73.490005, "word": "they" }, { "confidence": 0.99902344, "end": 73.810005, "punctuated_word": "were", "speaker": 0, "speaker_confidence": 0.97509766, "start": 73.65, "word": "were" }, { "confidence": 0.9980469, "end": 74.05, "punctuated_word": "thinking", "speaker": 0, "speaker_confidence": 0.97509766, "start": 73.810005, "word": "thinking" }, { "confidence": 0.9902344, "end": 74.29, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.97509766, "start": 74.05, "word": "about" }, { "confidence": 0.9980469, "end": 74.770004, "punctuated_word": "writing.", "speaker": 0, "speaker_confidence": 0.97509766, "start": 74.29, "word": "writing" }, { "confidence": 0.98291016, "end": 74.93, "punctuated_word": "When", "speaker": 0, "speaker_confidence": 0.97509766, "start": 74.770004, "word": "when" }, { "confidence": 0.9873047, "end": 75.090004, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.97509766, "start": 74.93, "word": "the" }, { "confidence": 0.9873047, "end": 75.25, "punctuated_word": "right", "speaker": 0, "speaker_confidence": 0.97509766, "start": 75.090004, "word": "right" }, { "confidence": 1, "end": 75.73, "punctuated_word": "suggestion", "speaker": 0, "speaker_confidence": 0.97509766, "start": 75.25, "word": "suggestion" }, { "confidence": 0.9980469, "end": 75.97, "punctuated_word": "comes", "speaker": 0, "speaker_confidence": 0.97509766, "start": 75.73, "word": "comes" }, { "confidence": 0.99121094, "end": 76.29, "punctuated_word": "up,", "speaker": 0, "speaker_confidence": 0.97509766, "start": 75.97, "word": "up" }, { "confidence": 0.95166016, "end": 76.53001, "punctuated_word": "hit", "speaker": 0, "speaker_confidence": 0.97509766, "start": 76.29, "word": "hit" }, { "confidence": 0.8964844, "end": 76.69, "punctuated_word": "tab", "speaker": 0, "speaker_confidence": 0.97509766, "start": 76.53001, "word": "tab" }, { "confidence": 0.96875, "end": 76.93, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.97509766, "start": 76.69, "word": "or" }, { "confidence": 0.9863281, "end": 77.170006, "punctuated_word": "enter", "speaker": 0, "speaker_confidence": 0.97509766, "start": 76.93, "word": "enter" }, { "confidence": 0.8852539, "end": 77.33, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.97509766, "start": 77.170006, "word": "to" }, { "confidence": 0.78564453, "end": 77.715, "punctuated_word": "complete", "speaker": 0, "speaker_confidence": 0.97509766, "start": 77.33, "word": "complete" }, { "confidence": 0.38134766, "end": 77.875, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.97509766, "start": 77.715, "word": "an" }, { "confidence": 0.6903076, "end": 77.954994, "punctuated_word": "edit.", "speaker": 0, "speaker_confidence": 0.97509766, "start": 77.875, "word": "edit" }, { "confidence": 0.9980469, "end": 78.195, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.97509766, "start": 77.954994, "word": "you" }, { "confidence": 1, "end": 78.435, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 0.97509766, "start": 78.195, "word": "might" }, { "confidence": 1, "end": 78.674995, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.97509766, "start": 78.435, "word": "also" }, { "confidence": 0.9970703, "end": 78.835, "punctuated_word": "right", "speaker": 0, "speaker_confidence": 0.97509766, "start": 78.674995, "word": "right" }, { "confidence": 1, "end": 79.075, "punctuated_word": "click", "speaker": 0, "speaker_confidence": 0.97509766, "start": 78.835, "word": "click" }, { "confidence": 1, "end": 79.23499, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.97509766, "start": 79.075, "word": "on" }, { "confidence": 1, "end": 79.314995, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.9716797, "start": 79.23499, "word": "your" }, { "confidence": 0.99902344, "end": 79.634995, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.9716797, "start": 79.314995, "word": "code" }, { "confidence": 0.9980469, "end": 79.795, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9716797, "start": 79.634995, "word": "to" }, { "confidence": 1, "end": 80.034996, "punctuated_word": "find", "speaker": 0, "speaker_confidence": 0.9716797, "start": 79.795, "word": "find" }, { "confidence": 0.9970703, "end": 80.195, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9716797, "start": 80.034996, "word": "a" }, { "confidence": 1, "end": 80.515, "punctuated_word": "variety", "speaker": 0, "speaker_confidence": 0.9716797, "start": 80.195, "word": "variety" }, { "confidence": 1, "end": 80.755, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9716797, "start": 80.515, "word": "of" }, { "confidence": 1, "end": 81.23499, "punctuated_word": "options", "speaker": 0, "speaker_confidence": 0.9716797, "start": 80.755, "word": "options" }, { "confidence": 1, "end": 81.475, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9716797, "start": 81.23499, "word": "to" }, { "confidence": 1, "end": 81.954994, "punctuated_word": "analyze", "speaker": 0, "speaker_confidence": 0.9716797, "start": 81.475, "word": "analyze" }, { "confidence": 0.9980469, "end": 82.115, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9716797, "start": 81.954994, "word": "and" }, { "confidence": 0.99609375, "end": 82.59499, "punctuated_word": "refactor", "speaker": 0, "speaker_confidence": 0.9716797, "start": 82.115, "word": "refactor" }, { "confidence": 0.87475586, "end": 82.994995, "punctuated_word": "it,", "speaker": 0, "speaker_confidence": 0.9716797, "start": 82.59499, "word": "it" }, { "confidence": 0.99902344, "end": 83.23499, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.9716797, "start": 82.994995, "word": "but" }, { "confidence": 0.9941406, "end": 83.475, "punctuated_word": "almost", "speaker": 0, "speaker_confidence": 0.9716797, "start": 83.23499, "word": "almost" }, { "confidence": 1, "end": 83.795, "punctuated_word": "anything", "speaker": 0, "speaker_confidence": 0.9716797, "start": 83.475, "word": "anything" }, { "confidence": 0.99902344, "end": 83.875, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 83.795, "word": "you" }, { "confidence": 1, "end": 84.034996, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 83.875, "word": "can" }, { "confidence": 1, "end": 84.195, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 1, "start": 84.034996, "word": "do" }, { "confidence": 1, "end": 84.354996, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 84.195, "word": "with" }, { "confidence": 0.95410156, "end": 84.435, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 84.354996, "word": "the" }, { "confidence": 0.9206543, "end": 84.73, "punctuated_word": "mouse,", "speaker": 0, "speaker_confidence": 1, "start": 84.435, "word": "mouse" }, { "confidence": 0.9375, "end": 84.989815, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 84.73, "word": "you" }, { "confidence": 0.9970703, "end": 85.24963, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 84.989815, "word": "can" }, { "confidence": 0.99902344, "end": 85.509445, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 1, "start": 85.24963, "word": "do" }, { "confidence": 0.99902344, "end": 85.769264, "punctuated_word": "faster", "speaker": 0, "speaker_confidence": 1, "start": 85.509445, "word": "faster" }, { "confidence": 1, "end": 86.029076, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 85.769264, "word": "with" }, { "confidence": 0.9243164, "end": 86.288895, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 86.029076, "word": "the" }, { "confidence": 0.99658203, "end": 86.548706, "punctuated_word": "keyboard.", "speaker": 0, "speaker_confidence": 1, "start": 86.288895, "word": "keyboard" }, { "confidence": 0.9970703, "end": 86.808525, "punctuated_word": "Hit", "speaker": 0, "speaker_confidence": 1, "start": 86.548706, "word": "hit" }, { "confidence": 0.9404297, "end": 87.06834, "punctuated_word": "control", "speaker": 0, "speaker_confidence": 1, "start": 86.808525, "word": "control" }, { "confidence": 0.7783203, "end": 87.32815, "punctuated_word": "shift", "speaker": 0, "speaker_confidence": 1, "start": 87.06834, "word": "shift" }, { "confidence": 0.8515625, "end": 87.58797, "punctuated_word": "papa", "speaker": 0, "speaker_confidence": 1, "start": 87.32815, "word": "papa" }, { "confidence": 0.99316406, "end": 87.84778, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 87.58797, "word": "to" }, { "confidence": 1, "end": 88.1076, "punctuated_word": "bring", "speaker": 0, "speaker_confidence": 1, "start": 87.84778, "word": "bring" }, { "confidence": 1, "end": 88.36741, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 1, "start": 88.1076, "word": "up" }, { "confidence": 0.99609375, "end": 88.62723, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 88.36741, "word": "the" }, { "confidence": 0.9838867, "end": 88.88704, "punctuated_word": "command", "speaker": 0, "speaker_confidence": 1, "start": 88.62723, "word": "command" }, { "confidence": 0.90966797, "end": 89.14686, "punctuated_word": "palette.", "speaker": 0, "speaker_confidence": 1, "start": 88.88704, "word": "palette" }, { "confidence": 1, "end": 89.40667, "punctuated_word": "From", "speaker": 0, "speaker_confidence": 1, "start": 89.14686, "word": "from" }, { "confidence": 0.9794922, "end": 89.66648, "punctuated_word": "here,", "speaker": 0, "speaker_confidence": 1, "start": 89.40667, "word": "here" }, { "confidence": 1, "end": 89.9263, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 89.66648, "word": "you" }, { "confidence": 1, "end": 90.18611, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 89.9263, "word": "can" }, { "confidence": 1, "end": 90.44593, "punctuated_word": "quickly", "speaker": 0, "speaker_confidence": 1, "start": 90.18611, "word": "quickly" }, { "confidence": 1, "end": 90.70574, "punctuated_word": "access", "speaker": 0, "speaker_confidence": 1, "start": 90.44593, "word": "access" }, { "confidence": 0.99609375, "end": 90.96556, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 1, "start": 90.70574, "word": "any" }, { "confidence": 0.9921875, "end": 91.22537, "punctuated_word": "Versus", "speaker": 0, "speaker_confidence": 1, "start": 90.96556, "word": "versus" }, { "confidence": 0.96777344, "end": 91.48519, "punctuated_word": "Code", "speaker": 0, "speaker_confidence": 1, "start": 91.22537, "word": "code" }, { "confidence": 0.97509766, "end": 91.745, "punctuated_word": "command", "speaker": 0, "speaker_confidence": 1, "start": 91.48519, "word": "command" }, { "confidence": 0.7294922, "end": 91.985, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 1, "start": 91.745, "word": "or" }, { "confidence": 0.9980469, "end": 92.145004, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 1, "start": 91.985, "word": "any" }, { "confidence": 1, "end": 92.305, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 1, "start": 92.145004, "word": "file" }, { "confidence": 0.99609375, "end": 92.465004, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 92.305, "word": "in" }, { "confidence": 1, "end": 92.705, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 1, "start": 92.465004, "word": "your" }, { "confidence": 0.9848633, "end": 93.105, "punctuated_word": "project.", "speaker": 0, "speaker_confidence": 1, "start": 92.705, "word": "project" }, { "confidence": 1, "end": 93.425, "punctuated_word": "Let's", "speaker": 0, "speaker_confidence": 1, "start": 93.105, "word": "let's" }, { "confidence": 1, "end": 93.585, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 1, "start": 93.425, "word": "use" }, { "confidence": 1, "end": 93.745, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 93.585, "word": "it" }, { "confidence": 0.9980469, "end": 93.905, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 93.745, "word": "to" }, { "confidence": 1, "end": 94.145004, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 1, "start": 93.905, "word": "open" }, { "confidence": 1, "end": 94.305, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 1, "start": 94.145004, "word": "up" }, { "confidence": 1, "end": 94.385, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 94.305, "word": "a" }, { "confidence": 0.9921875, "end": 94.785, "punctuated_word": "terminal", "speaker": 0, "speaker_confidence": 1, "start": 94.385, "word": "terminal" }, { "confidence": 1, "end": 95.285, "punctuated_word": "session", "speaker": 0, "speaker_confidence": 1, "start": 94.785, "word": "session" }, { "confidence": 0.55078125, "end": 95.585, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 1, "start": 95.345, "word": "which" }, { "confidence": 1, "end": 95.825005, "punctuated_word": "brings", "speaker": 0, "speaker_confidence": 1, "start": 95.585, "word": "brings" }, { "confidence": 1, "end": 95.985, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 1, "start": 95.825005, "word": "up" }, { "confidence": 0.99902344, "end": 96.065, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 95.985, "word": "the" }, { "confidence": 1, "end": 96.385, "punctuated_word": "command", "speaker": 0, "speaker_confidence": 1, "start": 96.065, "word": "command" }, { "confidence": 1, "end": 96.625, "punctuated_word": "line", "speaker": 0, "speaker_confidence": 1, "start": 96.385, "word": "line" }, { "confidence": 0.99902344, "end": 96.785, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 1, "start": 96.625, "word": "here" }, { "confidence": 1, "end": 96.945, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 1, "start": 96.785, "word": "at" }, { "confidence": 0.99902344, "end": 97.025, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 96.945, "word": "the" }, { "confidence": 1, "end": 97.505005, "punctuated_word": "bottom.", "speaker": 0, "speaker_confidence": 1, "start": 97.025, "word": "bottom" }, { "confidence": 1, "end": 97.665, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 1, "start": 97.505005, "word": "we" }, { "confidence": 1, "end": 97.745, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 97.665, "word": "can" }, { "confidence": 1, "end": 97.905, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 1, "start": 97.745, "word": "use" }, { "confidence": 1, "end": 98.065, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 97.905, "word": "it" }, { "confidence": 1, "end": 98.145004, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 98.065, "word": "to" }, { "confidence": 1, "end": 98.385, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 1, "start": 98.145004, "word": "run" }, { "confidence": 1, "end": 98.625, "punctuated_word": "commands", "speaker": 0, "speaker_confidence": 1, "start": 98.385, "word": "commands" }, { "confidence": 0.9536133, "end": 98.785, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 98.625, "word": "in" }, { "confidence": 1, "end": 98.945, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 1, "start": 98.785, "word": "this" }, { "confidence": 1, "end": 99.425, "punctuated_word": "project", "speaker": 0, "speaker_confidence": 1, "start": 98.945, "word": "project" }, { "confidence": 0.7709961, "end": 99.745, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 99.425, "word": "like" }, { "confidence": 0.9838867, "end": 99.985, "punctuated_word": "git", "speaker": 0, "speaker_confidence": 1, "start": 99.745, "word": "git" }, { "confidence": 0.9970703, "end": 100.305, "punctuated_word": "init", "speaker": 0, "speaker_confidence": 1, "start": 99.985, "word": "init" }, { "confidence": 0.9667969, "end": 100.545006, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 100.305, "word": "to" }, { "confidence": 0.9970703, "end": 100.945, "punctuated_word": "enable", "speaker": 0, "speaker_confidence": 1, "start": 100.545006, "word": "enable" }, { "confidence": 0.9980469, "end": 101.185005, "punctuated_word": "source", "speaker": 0, "speaker_confidence": 1, "start": 100.945, "word": "source" }, { "confidence": 0.6732178, "end": 101.67, "punctuated_word": "control,", "speaker": 0, "speaker_confidence": 1, "start": 101.185005, "word": "control" }, { "confidence": 0.99902344, "end": 101.99, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 1, "start": 101.75, "word": "or" }, { "confidence": 0.96435547, "end": 102.15, "punctuated_word": "better", "speaker": 0, "speaker_confidence": 1, "start": 101.99, "word": "better" }, { "confidence": 0.9941406, "end": 102.63, "punctuated_word": "yet,", "speaker": 0, "speaker_confidence": 1, "start": 102.15, "word": "yet" }, { "confidence": 1, "end": 102.71, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 1, "start": 102.63, "word": "we" }, { "confidence": 1, "end": 102.869995, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 102.71, "word": "can" }, { "confidence": 1, "end": 103.03, "punctuated_word": "click", "speaker": 0, "speaker_confidence": 1, "start": 102.869995, "word": "click" }, { "confidence": 1, "end": 103.11, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 1, "start": 103.03, "word": "on" }, { "confidence": 0.99902344, "end": 103.27, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 103.11, "word": "the" }, { "confidence": 0.92822266, "end": 103.509995, "punctuated_word": "source", "speaker": 0, "speaker_confidence": 1, "start": 103.27, "word": "source" }, { "confidence": 0.9970703, "end": 103.909996, "punctuated_word": "control", "speaker": 0, "speaker_confidence": 1, "start": 103.509995, "word": "control" }, { "confidence": 0.9980469, "end": 104.409996, "punctuated_word": "icon", "speaker": 0, "speaker_confidence": 1, "start": 103.909996, "word": "icon" }, { "confidence": 0.99121094, "end": 104.63, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 104.47, "word": "to" }, { "confidence": 0.99902344, "end": 104.79, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 1, "start": 104.63, "word": "run" }, { "confidence": 0.6796875, "end": 105.03, "punctuated_word": "Git", "speaker": 0, "speaker_confidence": 1, "start": 104.79, "word": "git" }, { "confidence": 0.99902344, "end": 105.35, "punctuated_word": "commands", "speaker": 0, "speaker_confidence": 1, "start": 105.03, "word": "commands" }, { "confidence": 1, "end": 105.509995, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 105.35, "word": "with" }, { "confidence": 1, "end": 105.67, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 105.509995, "word": "a" }, { "confidence": 0.9970703, "end": 106.07, "punctuated_word": "visual", "speaker": 0, "speaker_confidence": 1, "start": 105.67, "word": "visual" }, { "confidence": 0.99853516, "end": 106.57, "punctuated_word": "interface.", "speaker": 0, "speaker_confidence": 1, "start": 106.07, "word": "interface" }, { "confidence": 0.9941406, "end": 107.03, "punctuated_word": "Versus", "speaker": 0, "speaker_confidence": 1, "start": 106.63, "word": "versus" }, { "confidence": 0.9375, "end": 107.35, "punctuated_word": "Code", "speaker": 0, "speaker_confidence": 1, "start": 107.03, "word": "code" }, { "confidence": 0.99902344, "end": 107.59, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 107.35, "word": "is" }, { "confidence": 1, "end": 107.99, "punctuated_word": "minimal", "speaker": 0, "speaker_confidence": 1, "start": 107.59, "word": "minimal" }, { "confidence": 0.9980469, "end": 108.15, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 1, "start": 107.99, "word": "by" }, { "confidence": 0.9699707, "end": 108.63, "punctuated_word": "design,", "speaker": 0, "speaker_confidence": 1, "start": 108.15, "word": "design" }, { "confidence": 1, "end": 108.869995, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 1, "start": 108.63, "word": "but" }, { "confidence": 0.9526367, "end": 109.03, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 1, "start": 108.869995, "word": "as" }, { "confidence": 0.99902344, "end": 109.189995, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 109.03, "word": "an" }, { "confidence": 0.9707031, "end": 109.43, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 1, "start": 109.189995, "word": "open" }, { "confidence": 0.984375, "end": 109.75, "punctuated_word": "source", "speaker": 0, "speaker_confidence": 1, "start": 109.43, "word": "source" }, { "confidence": 0.98095703, "end": 110.229996, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 1, "start": 109.75, "word": "javascript" }, { "confidence": 0.9838867, "end": 110.729996, "punctuated_word": "project,", "speaker": 0, "speaker_confidence": 1, "start": 110.229996, "word": "project" }, { "confidence": 0.99658203, "end": 111.055, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 1, "start": 110.815, "word": "it's" }, { "confidence": 0.9980469, "end": 111.375, "punctuated_word": "easily", "speaker": 0, "speaker_confidence": 1, "start": 111.055, "word": "easily" }, { "confidence": 0.991862, "end": 111.875, "punctuated_word": "extendable.", "speaker": 0, "speaker_confidence": 1, "start": 111.375, "word": "extendable" }, { "confidence": 0.99902344, "end": 112.175, "punctuated_word": "From", "speaker": 0, "speaker_confidence": 1, "start": 111.935005, "word": "from" }, { "confidence": 0.9980469, "end": 112.335, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 112.175, "word": "the" }, { "confidence": 0.9370117, "end": 112.735, "punctuated_word": "extensions", "speaker": 0, "speaker_confidence": 1, "start": 112.335, "word": "extensions" }, { "confidence": 0.9970703, "end": 113.215004, "punctuated_word": "panel,", "speaker": 0, "speaker_confidence": 1, "start": 112.735, "word": "panel" }, { "confidence": 1, "end": 113.455, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 1, "start": 113.215004, "word": "you'll" }, { "confidence": 1, "end": 113.615005, "punctuated_word": "find", "speaker": 0, "speaker_confidence": 1, "start": 113.455, "word": "find" }, { "confidence": 0.9970703, "end": 113.775, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 113.615005, "word": "a" }, { "confidence": 1, "end": 114.015, "punctuated_word": "huge", "speaker": 0, "speaker_confidence": 1, "start": 113.775, "word": "huge" }, { "confidence": 0.99902344, "end": 114.255005, "punctuated_word": "number", "speaker": 0, "speaker_confidence": 1, "start": 114.015, "word": "number" }, { "confidence": 0.99902344, "end": 114.335, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 114.255005, "word": "of" }, { "confidence": 0.9980469, "end": 114.835, "punctuated_word": "packages", "speaker": 0, "speaker_confidence": 1, "start": 114.335, "word": "packages" }, { "confidence": 0.9873047, "end": 115.135, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 114.895004, "word": "that" }, { "confidence": 0.7114258, "end": 115.455, "punctuated_word": "provide", "speaker": 0, "speaker_confidence": 1, "start": 115.135, "word": "provide" }, { "confidence": 0.9951172, "end": 115.935005, "punctuated_word": "specialized", "speaker": 0, "speaker_confidence": 1, "start": 115.455, "word": "specialized" }, { "confidence": 0.9970703, "end": 116.255005, "punctuated_word": "tooling", "speaker": 0, "speaker_confidence": 1, "start": 115.935005, "word": "tooling" }, { "confidence": 0.9970703, "end": 116.495, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 116.255005, "word": "for" }, { "confidence": 1, "end": 116.815, "punctuated_word": "whatever", "speaker": 0, "speaker_confidence": 1, "start": 116.495, "word": "whatever" }, { "confidence": 0.9980469, "end": 117.215004, "punctuated_word": "framework", "speaker": 0, "speaker_confidence": 1, "start": 116.815, "word": "framework" }, { "confidence": 0.99316406, "end": 117.455, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 1, "start": 117.215004, "word": "or" }, { "confidence": 0.9941406, "end": 117.855, "punctuated_word": "language", "speaker": 0, "speaker_confidence": 1, "start": 117.455, "word": "language" }, { "confidence": 0.9951172, "end": 118.015, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 1, "start": 117.855, "word": "you're" }, { "confidence": 1, "end": 118.335, "punctuated_word": "working", "speaker": 0, "speaker_confidence": 1, "start": 118.015, "word": "working" }, { "confidence": 0.9995117, "end": 118.575005, "punctuated_word": "with.", "speaker": 0, "speaker_confidence": 1, "start": 118.335, "word": "with" }, { "confidence": 0.99902344, "end": 118.815, "punctuated_word": "Most", "speaker": 0, "speaker_confidence": 1, "start": 118.575005, "word": "most" }, { "confidence": 0.99902344, "end": 119.215004, "punctuated_word": "software", "speaker": 0, "speaker_confidence": 1, "start": 118.815, "word": "software" }, { "confidence": 0.9951172, "end": 119.615005, "punctuated_word": "projects", "speaker": 0, "speaker_confidence": 1, "start": 119.215004, "word": "projects" }, { "confidence": 0.9970703, "end": 119.855, "punctuated_word": "work", "speaker": 0, "speaker_confidence": 1, "start": 119.615005, "word": "work" }, { "confidence": 1, "end": 120.015, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 119.855, "word": "with" }, { "confidence": 0.9902344, "end": 120.095, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 120.015, "word": "the" }, { "confidence": 0.7368164, "end": 120.335, "punctuated_word": "cloud", "speaker": 0, "speaker_confidence": 1, "start": 120.095, "word": "cloud" }, { "confidence": 0.90234375, "end": 120.5, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 120.335, "word": "in" }, { "confidence": 1, "end": 120.82, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 1, "start": 120.58, "word": "some" }, { "confidence": 0.99316406, "end": 121.3, "punctuated_word": "capacity.", "speaker": 0, "speaker_confidence": 1, "start": 120.82, "word": "capacity" }, { "confidence": 1, "end": 121.54, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 1, "start": 121.3, "word": "the" }, { "confidence": 0.99609375, "end": 121.78, "punctuated_word": "remote", "speaker": 0, "speaker_confidence": 1, "start": 121.54, "word": "remote" }, { "confidence": 1, "end": 122.1, "punctuated_word": "button", "speaker": 0, "speaker_confidence": 1, "start": 121.78, "word": "button" }, { "confidence": 1, "end": 122.34, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 122.1, "word": "can" }, { "confidence": 1, "end": 122.58, "punctuated_word": "connect", "speaker": 0, "speaker_confidence": 1, "start": 122.34, "word": "connect" }, { "confidence": 0.8828125, "end": 122.9, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 1, "start": 122.58, "word": "your" }, { "confidence": 0.99902344, "end": 123.3, "punctuated_word": "editor", "speaker": 0, "speaker_confidence": 1, "start": 122.9, "word": "editor" }, { "confidence": 1, "end": 123.46, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 123.3, "word": "to" }, { "confidence": 0.9980469, "end": 123.54, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 123.46, "word": "a" }, { "confidence": 0.99902344, "end": 123.86, "punctuated_word": "remote", "speaker": 0, "speaker_confidence": 1, "start": 123.54, "word": "remote" }, { "confidence": 0.94189453, "end": 124.26, "punctuated_word": "GitHub", "speaker": 0, "speaker_confidence": 1, "start": 123.86, "word": "github" }, { "confidence": 0.93237305, "end": 124.76, "punctuated_word": "repository,", "speaker": 0, "speaker_confidence": 1, "start": 124.26, "word": "repository" }, { "confidence": 0.7524414, "end": 125.46, "punctuated_word": "Docker", "speaker": 0, "speaker_confidence": 1, "start": 125.14, "word": "docker" }, { "confidence": 0.9628906, "end": 125.96, "punctuated_word": "container,", "speaker": 0, "speaker_confidence": 1, "start": 125.46, "word": "container" }, { "confidence": 1, "end": 126.18, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 1, "start": 126.02, "word": "or" }, { "confidence": 0.8720703, "end": 126.5, "punctuated_word": "cloud", "speaker": 0, "speaker_confidence": 1, "start": 126.18, "word": "cloud" }, { "confidence": 0.85961914, "end": 126.9, "punctuated_word": "server,", "speaker": 0, "speaker_confidence": 1, "start": 126.5, "word": "server" }, { "confidence": 0.99902344, "end": 127.06, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 126.9, "word": "and" }, { "confidence": 1, "end": 127.22, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 127.06, "word": "you" }, { "confidence": 0.99902344, "end": 127.38, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 127.22, "word": "can" }, { "confidence": 1, "end": 127.54, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 1, "start": 127.38, "word": "even" }, { "confidence": 0.99902344, "end": 127.78, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 1, "start": 127.54, "word": "run" }, { "confidence": 0.9951172, "end": 128.1, "punctuated_word": "Versus", "speaker": 0, "speaker_confidence": 1, "start": 127.78, "word": "versus" }, { "confidence": 0.93359375, "end": 128.34, "punctuated_word": "Code", "speaker": 0, "speaker_confidence": 1, "start": 128.1, "word": "code" }, { "confidence": 0.99121094, "end": 128.66, "punctuated_word": "itself", "speaker": 0, "speaker_confidence": 1, "start": 128.34, "word": "itself" }, { "confidence": 0.9980469, "end": 128.82, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 128.66, "word": "in" }, { "confidence": 1, "end": 128.9, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 128.82, "word": "the" }, { "confidence": 0.96435547, "end": 129.3, "punctuated_word": "cloud", "speaker": 0, "speaker_confidence": 1, "start": 128.9, "word": "cloud" }, { "confidence": 0.9980469, "end": 129.46, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 129.3, "word": "to" }, { "confidence": 1, "end": 129.795, "punctuated_word": "access", "speaker": 0, "speaker_confidence": 1, "start": 129.46, "word": "access" }, { "confidence": 0.515625, "end": 129.955, "punctuated_word": "zip", "speaker": 0, "speaker_confidence": 1, "start": 129.875, "word": "zip" }, { "confidence": 0.9980469, "end": 130.19499, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 1, "start": 129.955, "word": "from" }, { "confidence": 0.99902344, "end": 130.275, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 130.19499, "word": "the" }, { "confidence": 0.99902344, "end": 130.755, "punctuated_word": "browser", "speaker": 0, "speaker_confidence": 1, "start": 130.275, "word": "browser" }, { "confidence": 0.99902344, "end": 130.995, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 1, "start": 130.755, "word": "on" }, { "confidence": 1, "end": 131.155, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 1, "start": 130.995, "word": "any" }, { "confidence": 0.9995117, "end": 131.655, "punctuated_word": "machine.", "speaker": 0, "speaker_confidence": 1, "start": 131.155, "word": "machine" }, { "confidence": 0.99902344, "end": 131.875, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 1, "start": 131.715, "word": "this" }, { "confidence": 0.9980469, "end": 132.035, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 1, "start": 131.875, "word": "has" }, { "confidence": 1, "end": 132.19499, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 1, "start": 132.035, "word": "been" }, { "confidence": 0.98095703, "end": 132.515, "punctuated_word": "Versus", "speaker": 0, "speaker_confidence": 1, "start": 132.19499, "word": "versus" }, { "confidence": 0.90771484, "end": 132.83499, "punctuated_word": "Code", "speaker": 0, "speaker_confidence": 1, "start": 132.515, "word": "code" }, { "confidence": 0.9550781, "end": 132.995, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 132.83499, "word": "in" }, { "confidence": 0.9580078, "end": 133.395, "punctuated_word": "100", "speaker": 0, "speaker_confidence": 1, "start": 132.995, "word": "100" }, { "confidence": 0.9433594, "end": 133.875, "punctuated_word": "seconds.", "speaker": 0, "speaker_confidence": 1, "start": 133.395, "word": "seconds" }, { "confidence": 1, "end": 134.035, "punctuated_word": "Hit", "speaker": 0, "speaker_confidence": 1, "start": 133.875, "word": "hit" }, { "confidence": 1, "end": 134.19499, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 134.035, "word": "the" }, { "confidence": 0.9863281, "end": 134.435, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 134.19499, "word": "like" }, { "confidence": 1, "end": 134.675, "punctuated_word": "button", "speaker": 0, "speaker_confidence": 1, "start": 134.435, "word": "button" }, { "confidence": 0.96875, "end": 134.83499, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 134.675, "word": "and" }, { "confidence": 1, "end": 135.235, "punctuated_word": "subscribe", "speaker": 0, "speaker_confidence": 1, "start": 134.83499, "word": "subscribe" }, { "confidence": 0.98828125, "end": 135.395, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 1, "start": 135.235, "word": "if" }, { "confidence": 1, "end": 135.47499, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7285156, "start": 135.395, "word": "you" }, { "confidence": 0.921875, "end": 135.795, "punctuated_word": "wanna", "speaker": 0, "speaker_confidence": 0.7285156, "start": 135.47499, "word": "wanna" }, { "confidence": 0.99609375, "end": 135.955, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.7285156, "start": 135.795, "word": "see" }, { "confidence": 1, "end": 136.11499, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.7285156, "start": 135.955, "word": "more" }, { "confidence": 1, "end": 136.355, "punctuated_word": "short", "speaker": 0, "speaker_confidence": 0.7285156, "start": 136.11499, "word": "short" }, { "confidence": 1, "end": 136.675, "punctuated_word": "videos", "speaker": 0, "speaker_confidence": 0.7285156, "start": 136.355, "word": "videos" }, { "confidence": 1, "end": 136.755, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.94677734, "start": 136.675, "word": "like" }, { "confidence": 0.873291, "end": 136.995, "punctuated_word": "this.", "speaker": 0, "speaker_confidence": 0.94677734, "start": 136.755, "word": "this" }, { "confidence": 0.9980469, "end": 137.235, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.94677734, "start": 136.995, "word": "and" }, { "confidence": 0.9863281, "end": 137.315, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.94677734, "start": 137.235, "word": "if" }, { "confidence": 1, "end": 137.47499, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.94677734, "start": 137.315, "word": "you" }, { "confidence": 1, "end": 137.635, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 0.94677734, "start": 137.47499, "word": "really" }, { "confidence": 0.99902344, "end": 137.89, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.94677734, "start": 137.635, "word": "want" }, { "confidence": 0.7944336, "end": 138.13, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.94677734, "start": 137.97, "word": "to" }, { "confidence": 0.9892578, "end": 138.37, "punctuated_word": "maximize", "speaker": 0, "speaker_confidence": 0.94677734, "start": 138.13, "word": "maximize" }, { "confidence": 0.9951172, "end": 138.77, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.94677734, "start": 138.37, "word": "your" }, { "confidence": 1, "end": 139.25, "punctuated_word": "productivity", "speaker": 0, "speaker_confidence": 0.94677734, "start": 138.77, "word": "productivity" }, { "confidence": 0.9941406, "end": 139.41, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.94677734, "start": 139.25, "word": "as" }, { "confidence": 0.99902344, "end": 139.56999, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.94677734, "start": 139.41, "word": "a" }, { "confidence": 0.81884766, "end": 140.05, "punctuated_word": "developer.", "speaker": 0, "speaker_confidence": 0.94677734, "start": 139.56999, "word": "developer" }, { "confidence": 0.99902344, "end": 140.21, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.94677734, "start": 140.05, "word": "i" }, { "confidence": 1, "end": 140.45, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.94677734, "start": 140.21, "word": "just" }, { "confidence": 0.9951172, "end": 140.77, "punctuated_word": "released", "speaker": 0, "speaker_confidence": 0.94677734, "start": 140.45, "word": "released" }, { "confidence": 0.9980469, "end": 140.93, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.94677734, "start": 140.77, "word": "a" }, { "confidence": 0.99902344, "end": 141.17, "punctuated_word": "brand", "speaker": 0, "speaker_confidence": 0.94677734, "start": 140.93, "word": "brand" }, { "confidence": 0.99902344, "end": 141.41, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.94677734, "start": 141.17, "word": "new" }, { "confidence": 0.98828125, "end": 141.73, "punctuated_word": "Versus", "speaker": 0, "speaker_confidence": 0.94677734, "start": 141.41, "word": "versus" }, { "confidence": 0.921875, "end": 141.97, "punctuated_word": "Code", "speaker": 0, "speaker_confidence": 0.94677734, "start": 141.73, "word": "code" }, { "confidence": 0.67822266, "end": 142.29, "punctuated_word": "magic", "speaker": 0, "speaker_confidence": 0.94677734, "start": 141.97, "word": "magic" }, { "confidence": 0.9951172, "end": 142.61, "punctuated_word": "tricks", "speaker": 0, "speaker_confidence": 0.94677734, "start": 142.29, "word": "tricks" }, { "confidence": 0.99902344, "end": 143.01, "punctuated_word": "course", "speaker": 0, "speaker_confidence": 0.94677734, "start": 142.61, "word": "course" }, { "confidence": 0.99316406, "end": 143.25, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.94677734, "start": 143.01, "word": "that" }, { "confidence": 1, "end": 143.65, "punctuated_word": "contains", "speaker": 0, "speaker_confidence": 0.94677734, "start": 143.25, "word": "contains" }, { "confidence": 1, "end": 143.73, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.94677734, "start": 143.65, "word": "a" }, { "confidence": 1, "end": 143.89, "punctuated_word": "ton", "speaker": 0, "speaker_confidence": 1, "start": 143.73, "word": "ton" }, { "confidence": 0.9980469, "end": 144.05, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 143.89, "word": "of" }, { "confidence": 1, "end": 144.55, "punctuated_word": "productivity", "speaker": 0, "speaker_confidence": 1, "start": 144.05, "word": "productivity" }, { "confidence": 0.99902344, "end": 145.01, "punctuated_word": "hacks", "speaker": 0, "speaker_confidence": 1, "start": 144.69, "word": "hacks" }, { "confidence": 1, "end": 145.25, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 145.01, "word": "for" }, { "confidence": 0.9970703, "end": 145.73, "punctuated_word": "beginners", "speaker": 0, "speaker_confidence": 1, "start": 145.25, "word": "beginners" }, { "confidence": 0.9970703, "end": 145.925, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 145.73, "word": "and" }, { "confidence": 0.91748047, "end": 146.405, "punctuated_word": "advanced", "speaker": 0, "speaker_confidence": 1, "start": 146.005, "word": "advanced" }, { "confidence": 0.84277344, "end": 146.88501, "punctuated_word": "developers", "speaker": 0, "speaker_confidence": 1, "start": 146.405, "word": "developers" }, { "confidence": 0.9506836, "end": 147.205, "punctuated_word": "alike.", "speaker": 0, "speaker_confidence": 1, "start": 146.88501, "word": "alike" }, { "confidence": 1, "end": 147.365, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 1, "start": 147.205, "word": "the" }, { "confidence": 0.9770508, "end": 147.52501, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 1, "start": 147.365, "word": "first" }, { "confidence": 0.54589844, "end": 147.765, "punctuated_word": "10", "speaker": 0, "speaker_confidence": 1, "start": 147.52501, "word": "10" }, { "confidence": 0.99902344, "end": 148.005, "punctuated_word": "videos", "speaker": 0, "speaker_confidence": 1, "start": 147.765, "word": "videos" }, { "confidence": 0.99902344, "end": 148.16501, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 1, "start": 148.005, "word": "are" }, { "confidence": 0.87475586, "end": 148.485, "punctuated_word": "free,", "speaker": 0, "speaker_confidence": 1, "start": 148.16501, "word": "free" }, { "confidence": 1, "end": 148.725, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 1, "start": 148.485, "word": "so" }, { "confidence": 1, "end": 148.88501, "punctuated_word": "check", "speaker": 0, "speaker_confidence": 1, "start": 148.725, "word": "check" }, { "confidence": 1, "end": 149.045, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 148.88501, "word": "it" }, { "confidence": 0.99902344, "end": 149.285, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 1, "start": 149.045, "word": "out" }, { "confidence": 1, "end": 149.445, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 1, "start": 149.285, "word": "on" }, { "confidence": 0.74853516, "end": 149.945, "punctuated_word": "Fireship", "speaker": 0, "speaker_confidence": 1, "start": 149.445, "word": "fireship" }, { "confidence": 0.9326172, "end": 150.405, "punctuated_word": "IO.", "speaker": 0, "speaker_confidence": 1, "start": 150.005, "word": "io" }, { "confidence": 1, "end": 150.645, "punctuated_word": "Thanks", "speaker": 0, "speaker_confidence": 1, "start": 150.405, "word": "thanks" }, { "confidence": 0.99902344, "end": 150.80501, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 150.645, "word": "for" }, { "confidence": 0.9160156, "end": 151.205, "punctuated_word": "watching,", "speaker": 0, "speaker_confidence": 1, "start": 150.80501, "word": "watching" }, { "confidence": 1, "end": 151.445, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 151.205, "word": "and" }, { "confidence": 1, "end": 151.605, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 1, "start": 151.445, "word": "i" }, { "confidence": 0.9970703, "end": 151.765, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 1, "start": 151.605, "word": "will" }, { "confidence": 0.99902344, "end": 152.005, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 1, "start": 151.765, "word": "see" }, { "confidence": 0.99902344, "end": 152.085, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 152.005, "word": "you" }, { "confidence": 0.99902344, "end": 152.245, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 152.085, "word": "in" }, { "confidence": 1, "end": 152.405, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 152.245, "word": "the" }, { "confidence": 1, "end": 152.645, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 1, "start": 152.405, "word": "next" }, { "confidence": 0.99316406, "end": 153.145, "punctuated_word": "one.", "speaker": 0, "speaker_confidence": 1, "start": 152.645, "word": "one" } ] } ], "detected_language": "", "language_confidence": 0, "search": null } ], "summary": { "result": "success", "short": "In this video, the speaker explains the benefits of using Versus Code for editing code, including the use of file explorer and the development environment it creates. They also discuss the use of the command line and the ability to run programs in the cloud. The speaker then promotes a new program called magic tricks for beginners and advanced developers, which is available on Fireship IO." }, "utterances": null } }
downloads\VS_Code_in_100_Seconds.wav
https://www.youtube.com/watch?v=KMxo3T_MTvY
VS Code in 100 Seconds
1,034,222
Fireship
576
Get the latest and greatest VS Code pro tips in the 2021 video 👉 https://youtu.be/ifTF3ags0XI Learn how to use Visual Studio Code like a pro with my top-ten strategies for developer productivity and happiness. https://angularfirebase.com/lessons/top-10-vscode-pro-tips/ - Get VS Code https://code.visualstudio.com/
{ "metadata": { "channels": 1, "created": "2024-02-04T07:32:28.970Z", "duration": 576.08704, "model_info": { "30089e05-99d1-4376-b32e-c263170674af": { "arch": "nova-2", "name": "2-general-nova", "version": "2024-01-09.29447" } }, "models": [ "30089e05-99d1-4376-b32e-c263170674af" ], "request_id": "47518834-1234-48a6-97ed-2053d8c4a5c1", "sha256": "62da991c4fc5891bd16388fc2f03040a7dd73faec7ef58aaa216b6d89dd57875", "summary_info": { "input_tokens": 2364, "model_uuid": "67875a7f-c9c4-48a0-aa55-5bdb8a91c34a", "output_tokens": 200 }, "transaction_key": "deprecated", "warnings": null }, "results": { "channels": [ { "alternatives": [ { "confidence": 0.9995117, "entities": null, "paragraphs": { "paragraphs": [ { "end": 34.71, "num_words": 101, "sentences": [ { "end": 16.29, "start": 7.1749997, "text": "In just 3 years, Visual Studio Code has gone from being non existent to the single most popular code editor among all developers, according to the Stack flow 2018 survey." }, { "end": 21.09, "start": 16.51, "text": "I personally like it because it's minimal yet super powerful and free and open source." }, { "end": 26.755, "start": 21.15, "text": "In this episode, I'll show you exactly what I mean by taking you through my top ten pro tips for using Versus Code effectively." }, { "end": 31.27, "start": 26.974998, "text": "If you're new here, hit subscribe and you'll find a full write up on angular fire .com." }, { "end": 34.71, "start": 31.41, "text": "The first thing you should know is how to get around the file system quickly." } ], "speaker": 0, "start": 7.1749997 }, { "end": 64.805, "num_words": 115, "sentences": [ { "end": 39.725, "start": 35.25, "text": "You can open up Versus Code by running code from the command line with the directory that you want to open." }, { "end": 44.125, "start": 40.105, "text": "The quickest way to move around is to memorize a few hot keys or key bindings." }, { "end": 53.66, "start": 44.585, "text": "If you hit control k, It'll bring up a full list of key bindings that you can search through and customize as needed, but the single most important one is control p which brings up the command palette." }, { "end": 57.605, "start": 54.04, "text": "We'll be using the command palette lot in this video, so don't forget this one." }, { "end": 64.805, "start": 57.665, "text": "To navigate between files, you can simply start typing the file name, and it will automatically search through your tree to find the corresponding file." } ], "speaker": 0, "start": 35.25 }, { "end": 99.85, "num_words": 131, "sentences": [ { "end": 71.895, "start": 64.85, "text": "That's way quicker than trying to navigate through a directory tree by clicking, but sometimes you might wanna bookmark specific lines of code and navigate to them later." }, { "end": 82.61, "start": 71.895, "text": "For that, I recommend using a bookmark plugin, which will allow us to highlight a block of code, set a bookmark number for it, and then Easily navigate to it later on using the command palette in Versus Code." }, { "end": 88.895, "start": 82.670006, "text": "As you probably noticed, I'm here in an Angular project, so I'm going to install some snippets to generate a lot of the boilerplate code for me." }, { "end": 95.875, "start": 88.975, "text": "In Angular, we have 2 really good snippet libraries, one from Mike Moreland and one from John Papa, and you can use them both together." }, { "end": 99.85, "start": 96.39, "text": "When you install snippets, they're automatically added to the Versus Code IntelliSense." } ], "speaker": 0, "start": 64.85 }, { "end": 128.495, "num_words": 96, "sentences": [ { "end": 109.855, "start": 100.15, "text": "So say I need to code up something really tedious like an NG switch statement, I can simply start typing the prefix in the snippet library, and it will automatically generate this code for me." }, { "end": 115.1, "start": 110.075005, "text": "There's even snippets available for libraries like Angular Material, NGXS, and many others." }, { "end": 118.619995, "start": 115.56, "text": "Number 8 is Versus Code's integrated command line terminal." }, { "end": 124.335, "start": 118.76, "text": "You can pull it up by simply dragging from the bottom of the screen Or you can use the control back tick key binding." }, { "end": 128.495, "start": 124.715004, "text": "You can also pull up the command palette with control p and open it there." } ], "speaker": 0, "start": 100.15 }, { "end": 152.26999, "num_words": 86, "sentences": [ { "end": 133.77, "start": 128.63501, "text": "What's really cool is that Versus Code will Automatically recognize scripts that you have set up in your project." }, { "end": 138.23001, "start": 133.83, "text": "In JavaScript, you probably have something set up with NPM or maybe with Grunt or Gulp." }, { "end": 145.025, "start": 138.23001, "text": "You can simply type in NPM, And it will show all of your scripts right there automatically so you can run them without ever having to type anything." }, { "end": 148.305, "start": 145.245, "text": "With that, we can segue into the next major feature which is IntelliSense." }, { "end": 152.26999, "start": 148.98999, "text": "IntelliSense is just a fancy word for code auto completion." } ], "speaker": 0, "start": 128.63501 }, { "end": 181.015, "num_words": 111, "sentences": [ { "end": 158.05, "start": 152.26999, "text": "And if you use a language that's strong typed like TypeScript, you'll get incredible developer tooling in Versus Code." }, { "end": 163.265, "start": 158.365, "text": "You'll see this automatically as you're coding, but you can pull it up manually with control space as well." }, { "end": 167.585, "start": 163.485, "text": "Code completion is pretty self explanatory, but there's some pretty cool things you can do with it." }, { "end": 173.99, "start": 168.05, "text": "Let's say we're going into a large TypeScript file for the first time and we wanna see all the methods and classes that are defined in this file." }, { "end": 181.015, "start": 174.05, "text": "We can go into the command palette, type in the at symbol, And that will give us all of the interfaces, methods, and properties defined in this file." } ], "speaker": 0, "start": 152.26999 }, { "end": 217.77501, "num_words": 140, "sentences": [ { "end": 186.13501, "start": 181.07501, "text": "In a strong type language, another thing you might wanna do is peak the type definitions for a given interface." }, { "end": 200.47499, "start": 186.79, "text": "It can be really disruptive to have multiple files open at once looking for different type definitions, but you can simply click on an interface and say peak definition And it will find that in your project even if it's buried in your node modules and show you the properties on that interface." }, { "end": 206.70999, "start": 201.33499, "text": "On the flip side of this, you be looking at an interface and want to know how many references you have to it in a project." }, { "end": 213.63501, "start": 207.25, "text": "If you right click and go to find references, it will show you exactly which files are referencing this interface in your project." }, { "end": 217.77501, "start": 214.015, "text": "But let's say I'm working with an interface and I decide I don't like the name of it." } ], "speaker": 0, "start": 181.07501 }, { "end": 250.905, "num_words": 124, "sentences": [ { "end": 223.26001, "start": 217.77501, "text": "I can highlight it, Then right click and say rename symbol or just hit f 2 and give it a new name." }, { "end": 227.98001, "start": 223.32, "text": "That not only updates the current file but also every other file in the project with that reference." }, { "end": 237.485, "start": 228.185, "text": "And that's a lot safer than using just a regular find and replace because it's looking at the actual code reference and not the text itself, yet another good reason to strong type your code." }, { "end": 242.97, "start": 237.75, "text": "Now while we're on the topic of types, I want to show you this really cool extension called paste JSON as code." }, { "end": 250.905, "start": 243.75, "text": "Almost all apps make calls to APIs that return JSON, But you might not have an easy way to actually strong type this response in your project." } ], "speaker": 0, "start": 217.77501 }, { "end": 281.84, "num_words": 106, "sentences": [ { "end": 257.43997, "start": 251.525, "text": "I'm in the Twitter API right now, and I'm just going to copy and paste this example response in JSON format." }, { "end": 263.59998, "start": 257.97998, "text": "I'll go ahead and paste the JSON into a tweet dot JSON file and then create a new file called tweet dotts." }, { "end": 272.16498, "start": 264.62, "text": "Then I can open up the command palette And just enter that paste as JSON command, and we'll set the top level interface name as tweet." }, { "end": 276.4, "start": 272.16498, "text": "And then magically, we get this whole set of interfaces that model this API response." }, { "end": 281.84, "start": 276.62, "text": "So that means you can get incredible developer tooling for any API that you work with whether it has types or not." } ], "speaker": 0, "start": 251.525 }, { "end": 292.14, "num_words": 38, "sentences": [ { "end": 282.10498, "start": 281.94498, "text": "Okay." }, { "end": 284.025, "start": 282.10498, "text": "I think I've heard just about enough of types." }, { "end": 285.805, "start": 284.025, "text": "Let's just chill out for a second." }, { "end": 288.845, "start": 286.025, "text": "Hit control k z to go into Zen mode." }, { "end": 292.14, "start": 289.08, "text": "This will give us a viewport with all of the distractions removed." } ], "speaker": 0, "start": 281.94498 }, { "end": 318.535, "num_words": 104, "sentences": [ { "end": 298.78, "start": 292.2, "text": "If you don't care what your Docker container is doing or what the Git status is, you can just go into Zen mode and focus on writing code." }, { "end": 305.085, "start": 299.06497, "text": "While we're at it, let's install the Spotify extension for Versus Code and throw on some carbon based life forms and just chill out." }, { "end": 309.22, "start": 305.22498, "text": "But unfortunately, we relaxed a little too hard And now our application is broken." }, { "end": 313.06, "start": 309.36, "text": "Let's go into the debugger panel and see how that might be able to help us out." }, { "end": 318.535, "start": 313.36, "text": "You get to the debugger by clicking on the bug icon, And I have a simple node script set up here." } ], "speaker": 0, "start": 292.2 }, { "end": 347.25998, "num_words": 109, "sentences": [ { "end": 322.95502, "start": 318.535, "text": "Node works out of the box, but you can also install extensions to support different runtimes." }, { "end": 329.66, "start": 323.24, "text": "In the script, I have 2 separate functions that are each updating a global variable and we'll just run these one after the other." }, { "end": 334.525, "start": 329.72, "text": "I can set up break points in my code by simply adding a red dot in between the line numbers." }, { "end": 342.20502, "start": 334.825, "text": "This will stop the execution of the script once it hits this breakpoint, and then you can inspect the local state and the call stack and things like that." }, { "end": 347.25998, "start": 342.52, "text": "All I have to do is click the play button, and it will automatically attach the debugger to this process." } ], "speaker": 0, "start": 318.535 }, { "end": 376.16498, "num_words": 112, "sentences": [ { "end": 352.755, "start": 347.56, "text": "You can see here it shows all of the local variables as well as all of our global variables in node." }, { "end": 360.66, "start": 353.055, "text": "You can also go down to the debugger console and start executing commands within the context of the script, and we'll have access to its current state." }, { "end": 366.59998, "start": 360.66, "text": "So if we want to inspect the name of a variable, we just type it down here in the command line and it will print that out in the console." }, { "end": 371.925, "start": 366.94498, "text": "Debugging Node is great, but generally, my front end apps are a lot more complex than my back end apps." }, { "end": 376.16498, "start": 371.985, "text": "I'd like to debug my Angular applications in the context of the Chrome browser." } ], "speaker": 0, "start": 347.56 }, { "end": 409.465, "num_words": 118, "sentences": [ { "end": 382.31, "start": 376.68997, "text": "After installing the Chrome extension, we can go back to the debugger and click the play button, but this time use Chrome." }, { "end": 389.115, "start": 382.68997, "text": "Then we can set up a launch configuration for this specific app, which in Angular's case, it'll be served on local host 42100." }, { "end": 396.16, "start": 389.975, "text": "Then we can go into one of our component files and set up some break points It's where we want to have the debugger run-in the browser." }, { "end": 402.56, "start": 396.54, "text": "I'll set up one breakpoint before the components actually initialized and then another one that will run on a button click." }, { "end": 409.465, "start": 403.04498, "text": "Then you can see if we click play, it will launch Chrome and have our debugger running here which we can control from Versus Code." } ], "speaker": 0, "start": 376.68997 }, { "end": 434.44, "num_words": 98, "sentences": [ { "end": 416.37, "start": 409.525, "text": "When we click play again, it will define the title And we can actually highlight over properties in the code and it will tell us the state of the data." }, { "end": 422.425, "start": 416.66998, "text": "Managing state in a web application is one of the biggest Challenges, and this debugger can really help you do that more effectively." }, { "end": 427.065, "start": 422.965, "text": "Another huge way that Versus Code helps you out is with your git version control." }, { "end": 430.82, "start": 427.22, "text": "Dealing with git in a large project gets pretty hard to do from the command line." }, { "end": 434.44, "start": 430.82, "text": "You might have already noticed that Versus Code automatically highlights all of your files." } ], "speaker": 0, "start": 409.525 }, { "end": 456.035, "num_words": 80, "sentences": [ { "end": 440.365, "start": 434.585, "text": "Untracked or new files are green, modified files are yellow, and files with wintein errors are red." }, { "end": 445.5, "start": 440.745, "text": "If we want to commit some changes, we can just go into the git add our commit message, and we're done." }, { "end": 449.36, "start": 445.5, "text": "We don't have to do any git add or git flag message from the command line." }, { "end": 452.3, "start": 449.74, "text": "But what if we actually didn't mean to commit that code?" }, { "end": 456.035, "start": 452.3, "text": "Well, we can come here to the options menu and just roll back that commit." } ], "speaker": 0, "start": 434.585 }, { "end": 491.155, "num_words": 130, "sentences": [ { "end": 460.035, "start": 456.655, "text": "And you can run pretty much every other Git command from this menu as well." }, { "end": 468.50998, "start": 460.65, "text": "If we want to revert some changes on a specific file, we can simply do that by clicking this revert button, and that will discard all of the changes that we made." }, { "end": 476.135, "start": 468.675, "text": "Or if we just want to commit a couple files individually, we can click the plus button and that will only stage those files for your next commit." }, { "end": 482.03, "start": 476.57, "text": "So that's super powerful on its own, but I wanna know about the git status pretty much everywhere in my code." }, { "end": 491.155, "start": 482.17, "text": "I wanna know who changed what and when it was changed Because I'm working with a team of junior developers and they keep screwing things up, we can install GitLens from the extensions page." } ], "speaker": 0, "start": 456.655 }, { "end": 517.68, "num_words": 101, "sentences": [ { "end": 496.72998, "start": 491.155, "text": "And then if we go back to the Git tab, you'll see that we have an additional panel Here with all of the GitLens data." }, { "end": 504.49, "start": 496.87, "text": "It makes it a lot easier to traverse the Git tree and also deal with things like stashes and tags and also your remote repositories." }, { "end": 506.765, "start": 505.08502, "text": "But it doesn't just stop at the Git panel." }, { "end": 510.225, "start": 506.765, "text": "It actually annotates all of your code with information about Git." }, { "end": 517.68, "start": 510.52502, "text": "If we go into a file and just hover over a piece of code, it will tell us exactly who wrote that code, when they wrote it, and its commit ID." } ], "speaker": 0, "start": 491.155 }, { "end": 544.565, "num_words": 92, "sentences": [ { "end": 522.355, "start": 518.22003, "text": "This brings us to Versus Code Live Share, which is a brand new feature in the editor." }, { "end": 530.42, "start": 522.83496, "text": "It allows you to connect your GitHub or Azure account to Versus Code and then collaborate with multiple team members on a single document in real time." }, { "end": 533.32, "start": 530.57996, "text": "It's kind of like the Google Docs of writing code." }, { "end": 539.16, "start": 533.45996, "text": "I've been able to use this with some Angular Firebase Pro members to collaborate on issues, and it's been super useful." }, { "end": 544.565, "start": 539.585, "text": "You can install the extension, and you'll need to connect a GitHub account or a Microsoft account." } ], "speaker": 0, "start": 518.22003 }, { "end": 568.72, "num_words": 94, "sentences": [ { "end": 550.82, "start": 544.865, "text": "After that, it's just a matter of clicking share, and Versus Code will return a link that you can pass along to other team members." }, { "end": 555.76, "start": 551.28, "text": "I probably could have covered about 90 other topics in this video, but I'm gonna go ahead and wrap things up there." }, { "end": 557.54004, "start": 555.76, "text": "If it helped you, please like and subscribe." }, { "end": 561.585, "start": 557.805, "text": "And if you're serious about building apps, consider becoming a pro member at angularfirebase.com." }, { "end": 568.72, "start": 562.525, "text": "We can write code together using Versus Code Live Share and work on strategies to get your app built and shipped as soon as possible." } ], "speaker": 0, "start": 544.865 }, { "end": 571.36, "num_words": 9, "sentences": [ { "end": 571.36, "start": 569.02, "text": "Thanks for watching, and I'll talk to you soon." } ], "speaker": 0, "start": 569.02 } ], "transcript": "\nSpeaker 0: In just 3 years, Visual Studio Code has gone from being non existent to the single most popular code editor among all developers, according to the Stack flow 2018 survey. I personally like it because it's minimal yet super powerful and free and open source. In this episode, I'll show you exactly what I mean by taking you through my top ten pro tips for using Versus Code effectively. If you're new here, hit subscribe and you'll find a full write up on angular fire .com. The first thing you should know is how to get around the file system quickly.\n\nYou can open up Versus Code by running code from the command line with the directory that you want to open. The quickest way to move around is to memorize a few hot keys or key bindings. If you hit control k, It'll bring up a full list of key bindings that you can search through and customize as needed, but the single most important one is control p which brings up the command palette. We'll be using the command palette lot in this video, so don't forget this one. To navigate between files, you can simply start typing the file name, and it will automatically search through your tree to find the corresponding file.\n\nThat's way quicker than trying to navigate through a directory tree by clicking, but sometimes you might wanna bookmark specific lines of code and navigate to them later. For that, I recommend using a bookmark plugin, which will allow us to highlight a block of code, set a bookmark number for it, and then Easily navigate to it later on using the command palette in Versus Code. As you probably noticed, I'm here in an Angular project, so I'm going to install some snippets to generate a lot of the boilerplate code for me. In Angular, we have 2 really good snippet libraries, one from Mike Moreland and one from John Papa, and you can use them both together. When you install snippets, they're automatically added to the Versus Code IntelliSense.\n\nSo say I need to code up something really tedious like an NG switch statement, I can simply start typing the prefix in the snippet library, and it will automatically generate this code for me. There's even snippets available for libraries like Angular Material, NGXS, and many others. Number 8 is Versus Code's integrated command line terminal. You can pull it up by simply dragging from the bottom of the screen Or you can use the control back tick key binding. You can also pull up the command palette with control p and open it there.\n\nWhat's really cool is that Versus Code will Automatically recognize scripts that you have set up in your project. In JavaScript, you probably have something set up with NPM or maybe with Grunt or Gulp. You can simply type in NPM, And it will show all of your scripts right there automatically so you can run them without ever having to type anything. With that, we can segue into the next major feature which is IntelliSense. IntelliSense is just a fancy word for code auto completion.\n\nAnd if you use a language that's strong typed like TypeScript, you'll get incredible developer tooling in Versus Code. You'll see this automatically as you're coding, but you can pull it up manually with control space as well. Code completion is pretty self explanatory, but there's some pretty cool things you can do with it. Let's say we're going into a large TypeScript file for the first time and we wanna see all the methods and classes that are defined in this file. We can go into the command palette, type in the at symbol, And that will give us all of the interfaces, methods, and properties defined in this file.\n\nIn a strong type language, another thing you might wanna do is peak the type definitions for a given interface. It can be really disruptive to have multiple files open at once looking for different type definitions, but you can simply click on an interface and say peak definition And it will find that in your project even if it's buried in your node modules and show you the properties on that interface. On the flip side of this, you be looking at an interface and want to know how many references you have to it in a project. If you right click and go to find references, it will show you exactly which files are referencing this interface in your project. But let's say I'm working with an interface and I decide I don't like the name of it.\n\nI can highlight it, Then right click and say rename symbol or just hit f 2 and give it a new name. That not only updates the current file but also every other file in the project with that reference. And that's a lot safer than using just a regular find and replace because it's looking at the actual code reference and not the text itself, yet another good reason to strong type your code. Now while we're on the topic of types, I want to show you this really cool extension called paste JSON as code. Almost all apps make calls to APIs that return JSON, But you might not have an easy way to actually strong type this response in your project.\n\nI'm in the Twitter API right now, and I'm just going to copy and paste this example response in JSON format. I'll go ahead and paste the JSON into a tweet dot JSON file and then create a new file called tweet dotts. Then I can open up the command palette And just enter that paste as JSON command, and we'll set the top level interface name as tweet. And then magically, we get this whole set of interfaces that model this API response. So that means you can get incredible developer tooling for any API that you work with whether it has types or not.\n\nOkay. I think I've heard just about enough of types. Let's just chill out for a second. Hit control k z to go into Zen mode. This will give us a viewport with all of the distractions removed.\n\nIf you don't care what your Docker container is doing or what the Git status is, you can just go into Zen mode and focus on writing code. While we're at it, let's install the Spotify extension for Versus Code and throw on some carbon based life forms and just chill out. But unfortunately, we relaxed a little too hard And now our application is broken. Let's go into the debugger panel and see how that might be able to help us out. You get to the debugger by clicking on the bug icon, And I have a simple node script set up here.\n\nNode works out of the box, but you can also install extensions to support different runtimes. In the script, I have 2 separate functions that are each updating a global variable and we'll just run these one after the other. I can set up break points in my code by simply adding a red dot in between the line numbers. This will stop the execution of the script once it hits this breakpoint, and then you can inspect the local state and the call stack and things like that. All I have to do is click the play button, and it will automatically attach the debugger to this process.\n\nYou can see here it shows all of the local variables as well as all of our global variables in node. You can also go down to the debugger console and start executing commands within the context of the script, and we'll have access to its current state. So if we want to inspect the name of a variable, we just type it down here in the command line and it will print that out in the console. Debugging Node is great, but generally, my front end apps are a lot more complex than my back end apps. I'd like to debug my Angular applications in the context of the Chrome browser.\n\nAfter installing the Chrome extension, we can go back to the debugger and click the play button, but this time use Chrome. Then we can set up a launch configuration for this specific app, which in Angular's case, it'll be served on local host 42100. Then we can go into one of our component files and set up some break points It's where we want to have the debugger run-in the browser. I'll set up one breakpoint before the components actually initialized and then another one that will run on a button click. Then you can see if we click play, it will launch Chrome and have our debugger running here which we can control from Versus Code.\n\nWhen we click play again, it will define the title And we can actually highlight over properties in the code and it will tell us the state of the data. Managing state in a web application is one of the biggest Challenges, and this debugger can really help you do that more effectively. Another huge way that Versus Code helps you out is with your git version control. Dealing with git in a large project gets pretty hard to do from the command line. You might have already noticed that Versus Code automatically highlights all of your files.\n\nUntracked or new files are green, modified files are yellow, and files with wintein errors are red. If we want to commit some changes, we can just go into the git add our commit message, and we're done. We don't have to do any git add or git flag message from the command line. But what if we actually didn't mean to commit that code? Well, we can come here to the options menu and just roll back that commit.\n\nAnd you can run pretty much every other Git command from this menu as well. If we want to revert some changes on a specific file, we can simply do that by clicking this revert button, and that will discard all of the changes that we made. Or if we just want to commit a couple files individually, we can click the plus button and that will only stage those files for your next commit. So that's super powerful on its own, but I wanna know about the git status pretty much everywhere in my code. I wanna know who changed what and when it was changed Because I'm working with a team of junior developers and they keep screwing things up, we can install GitLens from the extensions page.\n\nAnd then if we go back to the Git tab, you'll see that we have an additional panel Here with all of the GitLens data. It makes it a lot easier to traverse the Git tree and also deal with things like stashes and tags and also your remote repositories. But it doesn't just stop at the Git panel. It actually annotates all of your code with information about Git. If we go into a file and just hover over a piece of code, it will tell us exactly who wrote that code, when they wrote it, and its commit ID.\n\nThis brings us to Versus Code Live Share, which is a brand new feature in the editor. It allows you to connect your GitHub or Azure account to Versus Code and then collaborate with multiple team members on a single document in real time. It's kind of like the Google Docs of writing code. I've been able to use this with some Angular Firebase Pro members to collaborate on issues, and it's been super useful. You can install the extension, and you'll need to connect a GitHub account or a Microsoft account.\n\nAfter that, it's just a matter of clicking share, and Versus Code will return a link that you can pass along to other team members. I probably could have covered about 90 other topics in this video, but I'm gonna go ahead and wrap things up there. If it helped you, please like and subscribe. And if you're serious about building apps, consider becoming a pro member at angularfirebase.com. We can write code together using Versus Code Live Share and work on strategies to get your app built and shipped as soon as possible.\n\nThanks for watching, and I'll talk to you soon." }, "summaries": null, "topics": [ { "end_word": 69, "start_word": 0, "text": "In just 3 years, Visual Studio Code has gone from being non existent to the single most popular code editor among all developers, according to the Stack flow 2018 survey. I personally like it because it's minimal yet super powerful and free and open source. In this episode, I'll show you exactly what I mean by taking you through my top ten pro tips for using Versus Code effectively.", "topics": [ { "confidence": 0.89734995, "topic": "software development" }, { "confidence": 0.7140755, "topic": "software" }, { "confidence": 0.051887702, "topic": "programming" } ] }, { "end_word": 310, "start_word": 69, "text": "If you're new here, hit subscribe and you'll find a full write up on angular fire .com. The first thing you should know is how to get around the file system quickly. You can open up Versus Code by running code from the command line with the directory that you want to open. The quickest way to move around is to memorize a few hot keys or key bindings. If you hit control k, It'll bring up a full list of key bindings that you can search through and customize as needed, but the single most important one is control p which brings up the command palette. We'll be using the command palette lot in this video, so don't forget this one. To navigate between files, you can simply start typing the file name, and it will automatically search through your tree to find the corresponding file. That's way quicker than trying to navigate through a directory tree by clicking, but sometimes you might wanna bookmark specific lines of code and navigate to them later. For that, I recommend using a bookmark plugin, which will allow us to highlight a block of code, set a bookmark number for it, and then Easily navigate to it later on using the command palette in Versus Code. As you probably noticed, I'm here in an Angular project, so I'm going to install some snippets to generate a lot of the boilerplate code for me.", "topics": [] }, { "end_word": 395, "start_word": 310, "text": "In Angular, we have 2 really good snippet libraries, one from Mike Moreland and one from John Papa, and you can use them both together. When you install snippets, they're automatically added to the Versus Code IntelliSense. So say I need to code up something really tedious like an NG switch statement, I can simply start typing the prefix in the snippet library, and it will automatically generate this code for me. There's even snippets available for libraries like Angular Material, NGXS, and many others.", "topics": [ { "confidence": 0.17661624, "topic": "programming" }, { "confidence": 0.01838069, "topic": "software" } ] }, { "end_word": 506, "start_word": 395, "text": "Number 8 is Versus Code's integrated command line terminal. You can pull it up by simply dragging from the bottom of the screen Or you can use the control back tick key binding. You can also pull up the command palette with control p and open it there. What's really cool is that Versus Code will Automatically recognize scripts that you have set up in your project. In JavaScript, you probably have something set up with NPM or maybe with Grunt or Gulp. You can simply type in NPM, And it will show all of your scripts right there automatically so you can run them without ever having to type anything.", "topics": [] }, { "end_word": 612, "start_word": 506, "text": "With that, we can segue into the next major feature which is IntelliSense. IntelliSense is just a fancy word for code auto completion. And if you use a language that's strong typed like TypeScript, you'll get incredible developer tooling in Versus Code. You'll see this automatically as you're coding, but you can pull it up manually with control space as well. Code completion is pretty self explanatory, but there's some pretty cool things you can do with it. Let's say we're going into a large TypeScript file for the first time and we wanna see all the methods and classes that are defined in this file.", "topics": [ { "confidence": 0.45773116, "topic": "programming" }, { "confidence": 0.013586021, "topic": "artificial intelligence" }, { "confidence": 0.010299839, "topic": "machine learning" } ] }, { "end_word": 662, "start_word": 612, "text": "We can go into the command palette, type in the at symbol, And that will give us all of the interfaces, methods, and properties defined in this file. In a strong type language, another thing you might wanna do is peak the type definitions for a given interface. It can", "topics": [ { "confidence": 0.010717088, "topic": "languages" } ] }, { "end_word": 904, "start_word": 662, "text": "be really disruptive to have multiple files open at once looking for different type definitions, but you can simply click on an interface and say peak definition And it will find that in your project even if it's buried in your node modules and show you the properties on that interface. On the flip side of this, you be looking at an interface and want to know how many references you have to it in a project. If you right click and go to find references, it will show you exactly which files are referencing this interface in your project. But let's say I'm working with an interface and I decide I don't like the name of it. I can highlight it, Then right click and say rename symbol or just hit f 2 and give it a new name. That not only updates the current file but also every other file in the project with that reference. And that's a lot safer than using just a regular find and replace because it's looking at the actual code reference and not the text itself, yet another good reason to strong type your code. Now while we're on the topic of types, I want to show you this really cool extension called paste JSON as code. Almost all apps make calls to APIs that return JSON, But you might not have an easy way to actually strong type this response in your project.", "topics": [] }, { "end_word": 973, "start_word": 904, "text": "I'm in the Twitter API right now, and I'm just going to copy and paste this example response in JSON format. I'll go ahead and paste the JSON into a tweet dot JSON file and then create a new file called tweet dotts. Then I can open up the command palette And just enter that paste as JSON command, and we'll set the top level interface name as tweet.", "topics": [ { "confidence": 0.84060633, "topic": "twitter" } ] }, { "end_word": 1027, "start_word": 973, "text": "And then magically, we get this whole set of interfaces that model this API response. So that means you can get incredible developer tooling for any API that you work with whether it has types or not. Okay. I think I've heard just about enough of types. Let's just chill out for a second.", "topics": [ { "confidence": 0.03587532, "topic": "software development" }, { "confidence": 0.005680596, "topic": "software" } ] }, { "end_word": 1445, "start_word": 1027, "text": "Hit control k z to go into Zen mode. This will give us a viewport with all of the distractions removed. If you don't care what your Docker container is doing or what the Git status is, you can just go into Zen mode and focus on writing code. While we're at it, let's install the Spotify extension for Versus Code and throw on some carbon based life forms and just chill out. But unfortunately, we relaxed a little too hard And now our application is broken. Let's go into the debugger panel and see how that might be able to help us out. You get to the debugger by clicking on the bug icon, And I have a simple node script set up here. Node works out of the box, but you can also install extensions to support different runtimes. In the script, I have 2 separate functions that are each updating a global variable and we'll just run these one after the other. I can set up break points in my code by simply adding a red dot in between the line numbers. This will stop the execution of the script once it hits this breakpoint, and then you can inspect the local state and the call stack and things like that. All I have to do is click the play button, and it will automatically attach the debugger to this process. You can see here it shows all of the local variables as well as all of our global variables in node. You can also go down to the debugger console and start executing commands within the context of the script, and we'll have access to its current state. So if we want to inspect the name of a variable, we just type it down here in the command line and it will print that out in the console. Debugging Node is great, but generally, my front end apps are a lot more complex than my back end apps. I'd like to debug my Angular applications in the context of the Chrome browser. After installing the Chrome extension, we can go back to the debugger and click the play button, but this time use Chrome. Then we can set up a launch configuration for this specific app, which in Angular's case, it'll be served on local host 42100. Then we can go into one of our component files and set up some break points It's where we want to have the debugger run-in the browser.", "topics": [] }, { "end_word": 1544, "start_word": 1445, "text": "I'll set up one breakpoint before the components actually initialized and then another one that will run on a button click. Then you can see if we click play, it will launch Chrome and have our debugger running here which we can control from Versus Code. When we click play again, it will define the title And we can actually highlight over properties in the code and it will tell us the state of the data. Managing state in a web application is one of the biggest Challenges, and this debugger can really help you do that more effectively.", "topics": [ { "confidence": 0.0492952, "topic": "video gaming" }, { "confidence": 0.0064991396, "topic": "software development" } ] }, { "end_word": 1744, "start_word": 1544, "text": "Another huge way that Versus Code helps you out is with your git version control. Dealing with git in a large project gets pretty hard to do from the command line. You might have already noticed that Versus Code automatically highlights all of your files. Untracked or new files are green, modified files are yellow, and files with wintein errors are red. If we want to commit some changes, we can just go into the git add our commit message, and we're done. We don't have to do any git add or git flag message from the command line. But what if we actually didn't mean to commit that code? Well, we can come here to the options menu and just roll back that commit. And you can run pretty much every other Git command from this menu as well. If we want to revert some changes on a specific file, we can simply do that by clicking this revert button, and that will discard all of the changes that we made. Or if we just want to commit a couple files individually, we can click the plus button and that will only stage those files for your next commit.", "topics": [] }, { "end_word": 1799, "start_word": 1744, "text": "So that's super powerful on its own, but I wanna know about the git status pretty much everywhere in my code. I wanna know who changed what and when it was changed Because I'm working with a team of junior developers and they keep screwing things up, we can install GitLens from the extensions page.", "topics": [ { "confidence": 0.046048637, "topic": "software development" }, { "confidence": 0.0053847097, "topic": "software" } ] }, { "end_word": 1900, "start_word": 1799, "text": "And then if we go back to the Git tab, you'll see that we have an additional panel Here with all of the GitLens data. It makes it a lot easier to traverse the Git tree and also deal with things like stashes and tags and also your remote repositories. But it doesn't just stop at the Git panel. It actually annotates all of your code with information about Git. If we go into a file and just hover over a piece of code, it will tell us exactly who wrote that code, when they wrote it, and its commit ID.", "topics": [] }, { "end_word": 1954, "start_word": 1900, "text": "This brings us to Versus Code Live Share, which is a brand new feature in the editor. It allows you to connect your GitHub or Azure account to Versus Code and then collaborate with multiple team members on a single document in real time. It's kind of like the Google Docs of writing code.", "topics": [ { "confidence": 0.01129677, "topic": "software" }, { "confidence": 0.010901183, "topic": "software development" } ] }, { "end_word": 2017, "start_word": 1954, "text": "I've been able to use this with some Angular Firebase Pro members to collaborate on issues, and it's been super useful. You can install the extension, and you'll need to connect a GitHub account or a Microsoft account. After that, it's just a matter of clicking share, and Versus Code will return a link that you can pass along to other team members.", "topics": [] }, { "end_word": 2095, "start_word": 2017, "text": "I probably could have covered about 90 other topics in this video, but I'm gonna go ahead and wrap things up there. If it helped you, please like and subscribe. And if you're serious about building apps, consider becoming a pro member at angularfirebase.com. We can write code together using Versus Code Live Share and work on strategies to get your app built and shipped as soon as possible. Thanks for watching, and I'll talk to you soon.", "topics": [ { "confidence": 0.4758739, "topic": "software development" }, { "confidence": 0.08915714, "topic": "software" } ] } ], "transcript": "In just 3 years, Visual Studio Code has gone from being non existent to the single most popular code editor among all developers, according to the Stack flow 2018 survey. I personally like it because it's minimal yet super powerful and free and open source. In this episode, I'll show you exactly what I mean by taking you through my top ten pro tips for using Versus Code effectively. If you're new here, hit subscribe and you'll find a full write up on angular fire .com. The first thing you should know is how to get around the file system quickly. You can open up Versus Code by running code from the command line with the directory that you want to open. The quickest way to move around is to memorize a few hot keys or key bindings. If you hit control k, It'll bring up a full list of key bindings that you can search through and customize as needed, but the single most important one is control p which brings up the command palette. We'll be using the command palette lot in this video, so don't forget this one. To navigate between files, you can simply start typing the file name, and it will automatically search through your tree to find the corresponding file. That's way quicker than trying to navigate through a directory tree by clicking, but sometimes you might wanna bookmark specific lines of code and navigate to them later. For that, I recommend using a bookmark plugin, which will allow us to highlight a block of code, set a bookmark number for it, and then Easily navigate to it later on using the command palette in Versus Code. As you probably noticed, I'm here in an Angular project, so I'm going to install some snippets to generate a lot of the boilerplate code for me. In Angular, we have 2 really good snippet libraries, one from Mike Moreland and one from John Papa, and you can use them both together. When you install snippets, they're automatically added to the Versus Code IntelliSense. So say I need to code up something really tedious like an NG switch statement, I can simply start typing the prefix in the snippet library, and it will automatically generate this code for me. There's even snippets available for libraries like Angular Material, NGXS, and many others. Number 8 is Versus Code's integrated command line terminal. You can pull it up by simply dragging from the bottom of the screen Or you can use the control back tick key binding. You can also pull up the command palette with control p and open it there. What's really cool is that Versus Code will Automatically recognize scripts that you have set up in your project. In JavaScript, you probably have something set up with NPM or maybe with Grunt or Gulp. You can simply type in NPM, And it will show all of your scripts right there automatically so you can run them without ever having to type anything. With that, we can segue into the next major feature which is IntelliSense. IntelliSense is just a fancy word for code auto completion. And if you use a language that's strong typed like TypeScript, you'll get incredible developer tooling in Versus Code. You'll see this automatically as you're coding, but you can pull it up manually with control space as well. Code completion is pretty self explanatory, but there's some pretty cool things you can do with it. Let's say we're going into a large TypeScript file for the first time and we wanna see all the methods and classes that are defined in this file. We can go into the command palette, type in the at symbol, And that will give us all of the interfaces, methods, and properties defined in this file. In a strong type language, another thing you might wanna do is peak the type definitions for a given interface. It can be really disruptive to have multiple files open at once looking for different type definitions, but you can simply click on an interface and say peak definition And it will find that in your project even if it's buried in your node modules and show you the properties on that interface. On the flip side of this, you be looking at an interface and want to know how many references you have to it in a project. If you right click and go to find references, it will show you exactly which files are referencing this interface in your project. But let's say I'm working with an interface and I decide I don't like the name of it. I can highlight it, Then right click and say rename symbol or just hit f 2 and give it a new name. That not only updates the current file but also every other file in the project with that reference. And that's a lot safer than using just a regular find and replace because it's looking at the actual code reference and not the text itself, yet another good reason to strong type your code. Now while we're on the topic of types, I want to show you this really cool extension called paste JSON as code. Almost all apps make calls to APIs that return JSON, But you might not have an easy way to actually strong type this response in your project. I'm in the Twitter API right now, and I'm just going to copy and paste this example response in JSON format. I'll go ahead and paste the JSON into a tweet dot JSON file and then create a new file called tweet dotts. Then I can open up the command palette And just enter that paste as JSON command, and we'll set the top level interface name as tweet. And then magically, we get this whole set of interfaces that model this API response. So that means you can get incredible developer tooling for any API that you work with whether it has types or not. Okay. I think I've heard just about enough of types. Let's just chill out for a second. Hit control k z to go into Zen mode. This will give us a viewport with all of the distractions removed. If you don't care what your Docker container is doing or what the Git status is, you can just go into Zen mode and focus on writing code. While we're at it, let's install the Spotify extension for Versus Code and throw on some carbon based life forms and just chill out. But unfortunately, we relaxed a little too hard And now our application is broken. Let's go into the debugger panel and see how that might be able to help us out. You get to the debugger by clicking on the bug icon, And I have a simple node script set up here. Node works out of the box, but you can also install extensions to support different runtimes. In the script, I have 2 separate functions that are each updating a global variable and we'll just run these one after the other. I can set up break points in my code by simply adding a red dot in between the line numbers. This will stop the execution of the script once it hits this breakpoint, and then you can inspect the local state and the call stack and things like that. All I have to do is click the play button, and it will automatically attach the debugger to this process. You can see here it shows all of the local variables as well as all of our global variables in node. You can also go down to the debugger console and start executing commands within the context of the script, and we'll have access to its current state. So if we want to inspect the name of a variable, we just type it down here in the command line and it will print that out in the console. Debugging Node is great, but generally, my front end apps are a lot more complex than my back end apps. I'd like to debug my Angular applications in the context of the Chrome browser. After installing the Chrome extension, we can go back to the debugger and click the play button, but this time use Chrome. Then we can set up a launch configuration for this specific app, which in Angular's case, it'll be served on local host 42100. Then we can go into one of our component files and set up some break points It's where we want to have the debugger run-in the browser. I'll set up one breakpoint before the components actually initialized and then another one that will run on a button click. Then you can see if we click play, it will launch Chrome and have our debugger running here which we can control from Versus Code. When we click play again, it will define the title And we can actually highlight over properties in the code and it will tell us the state of the data. Managing state in a web application is one of the biggest Challenges, and this debugger can really help you do that more effectively. Another huge way that Versus Code helps you out is with your git version control. Dealing with git in a large project gets pretty hard to do from the command line. You might have already noticed that Versus Code automatically highlights all of your files. Untracked or new files are green, modified files are yellow, and files with wintein errors are red. If we want to commit some changes, we can just go into the git add our commit message, and we're done. We don't have to do any git add or git flag message from the command line. But what if we actually didn't mean to commit that code? Well, we can come here to the options menu and just roll back that commit. And you can run pretty much every other Git command from this menu as well. If we want to revert some changes on a specific file, we can simply do that by clicking this revert button, and that will discard all of the changes that we made. Or if we just want to commit a couple files individually, we can click the plus button and that will only stage those files for your next commit. So that's super powerful on its own, but I wanna know about the git status pretty much everywhere in my code. I wanna know who changed what and when it was changed Because I'm working with a team of junior developers and they keep screwing things up, we can install GitLens from the extensions page. And then if we go back to the Git tab, you'll see that we have an additional panel Here with all of the GitLens data. It makes it a lot easier to traverse the Git tree and also deal with things like stashes and tags and also your remote repositories. But it doesn't just stop at the Git panel. It actually annotates all of your code with information about Git. If we go into a file and just hover over a piece of code, it will tell us exactly who wrote that code, when they wrote it, and its commit ID. This brings us to Versus Code Live Share, which is a brand new feature in the editor. It allows you to connect your GitHub or Azure account to Versus Code and then collaborate with multiple team members on a single document in real time. It's kind of like the Google Docs of writing code. I've been able to use this with some Angular Firebase Pro members to collaborate on issues, and it's been super useful. You can install the extension, and you'll need to connect a GitHub account or a Microsoft account. After that, it's just a matter of clicking share, and Versus Code will return a link that you can pass along to other team members. I probably could have covered about 90 other topics in this video, but I'm gonna go ahead and wrap things up there. If it helped you, please like and subscribe. And if you're serious about building apps, consider becoming a pro member at angularfirebase.com. We can write code together using Versus Code Live Share and work on strategies to get your app built and shipped as soon as possible. Thanks for watching, and I'll talk to you soon.", "translations": null, "words": [ { "confidence": 0.8120117, "end": 7.415, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.2626953, "start": 7.1749997, "word": "in" }, { "confidence": 0.99609375, "end": 7.495, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.2626953, "start": 7.415, "word": "just" }, { "confidence": 0.9614258, "end": 7.8149996, "punctuated_word": "3", "speaker": 0, "speaker_confidence": 0.2626953, "start": 7.495, "word": "3" }, { "confidence": 0.9880371, "end": 8.135, "punctuated_word": "years,", "speaker": 0, "speaker_confidence": 0.2626953, "start": 7.8149996, "word": "years" }, { "confidence": 0.9560547, "end": 8.535, "punctuated_word": "Visual", "speaker": 0, "speaker_confidence": 0.2626953, "start": 8.135, "word": "visual" }, { "confidence": 0.99609375, "end": 8.855, "punctuated_word": "Studio", "speaker": 0, "speaker_confidence": 0.2626953, "start": 8.535, "word": "studio" }, { "confidence": 0.8305664, "end": 9.014999, "punctuated_word": "Code", "speaker": 0, "speaker_confidence": 0.2626953, "start": 8.855, "word": "code" }, { "confidence": 0.98095703, "end": 9.255, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.2626953, "start": 9.014999, "word": "has" }, { "confidence": 1, "end": 9.415, "punctuated_word": "gone", "speaker": 0, "speaker_confidence": 0.2626953, "start": 9.255, "word": "gone" }, { "confidence": 1, "end": 9.575, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.2626953, "start": 9.415, "word": "from" }, { "confidence": 0.99316406, "end": 9.815, "punctuated_word": "being", "speaker": 0, "speaker_confidence": 0.2626953, "start": 9.575, "word": "being" }, { "confidence": 0.50683594, "end": 10.055, "punctuated_word": "non", "speaker": 0, "speaker_confidence": 0.2626953, "start": 9.815, "word": "non" }, { "confidence": 0.9970703, "end": 10.535, "punctuated_word": "existent", "speaker": 0, "speaker_confidence": 0.2626953, "start": 10.055, "word": "existent" }, { "confidence": 0.97265625, "end": 10.775, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.2626953, "start": 10.535, "word": "to" }, { "confidence": 0.99609375, "end": 10.855, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.3725586, "start": 10.775, "word": "the" }, { "confidence": 0.99902344, "end": 11.174999, "punctuated_word": "single", "speaker": 0, "speaker_confidence": 0.3725586, "start": 10.855, "word": "single" }, { "confidence": 0.99902344, "end": 11.415, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 0.3725586, "start": 11.174999, "word": "most" }, { "confidence": 1, "end": 11.815, "punctuated_word": "popular", "speaker": 0, "speaker_confidence": 0.3725586, "start": 11.415, "word": "popular" }, { "confidence": 0.98095703, "end": 11.975, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.3725586, "start": 11.815, "word": "code" }, { "confidence": 0.9980469, "end": 12.375, "punctuated_word": "editor", "speaker": 0, "speaker_confidence": 0.3725586, "start": 11.975, "word": "editor" }, { "confidence": 0.9980469, "end": 12.695, "punctuated_word": "among", "speaker": 0, "speaker_confidence": 0.3725586, "start": 12.375, "word": "among" }, { "confidence": 0.9921875, "end": 12.934999, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.3725586, "start": 12.695, "word": "all" }, { "confidence": 0.7595215, "end": 13.434999, "punctuated_word": "developers,", "speaker": 0, "speaker_confidence": 0.3725586, "start": 12.934999, "word": "developers" }, { "confidence": 0.99316406, "end": 13.975, "punctuated_word": "according", "speaker": 0, "speaker_confidence": 0.3725586, "start": 13.575, "word": "according" }, { "confidence": 0.9863281, "end": 14.055, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.3725586, "start": 13.975, "word": "to" }, { "confidence": 0.9301758, "end": 14.295, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.3725586, "start": 14.055, "word": "the" }, { "confidence": 0.8330078, "end": 14.75, "punctuated_word": "Stack", "speaker": 0, "speaker_confidence": 0.3725586, "start": 14.295, "word": "stack" }, { "confidence": 0.3203125, "end": 15.23, "punctuated_word": "flow", "speaker": 0, "speaker_confidence": 0.3725586, "start": 15.07, "word": "flow" }, { "confidence": 0.65625, "end": 15.73, "punctuated_word": "2018", "speaker": 0, "speaker_confidence": 0.3725586, "start": 15.23, "word": "2018" }, { "confidence": 0.99658203, "end": 16.29, "punctuated_word": "survey.", "speaker": 0, "speaker_confidence": 0.3725586, "start": 15.79, "word": "survey" }, { "confidence": 0.99902344, "end": 16.83, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.3725586, "start": 16.51, "word": "i" }, { "confidence": 0.99609375, "end": 17.23, "punctuated_word": "personally", "speaker": 0, "speaker_confidence": 0.3725586, "start": 16.83, "word": "personally" }, { "confidence": 0.99902344, "end": 17.39, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.3725586, "start": 17.23, "word": "like" }, { "confidence": 1, "end": 17.55, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.3725586, "start": 17.39, "word": "it" }, { "confidence": 0.96777344, "end": 17.79, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.3725586, "start": 17.55, "word": "because" }, { "confidence": 0.9980469, "end": 17.95, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.3725586, "start": 17.79, "word": "it's" }, { "confidence": 1, "end": 18.43, "punctuated_word": "minimal", "speaker": 0, "speaker_confidence": 0.3725586, "start": 17.95, "word": "minimal" }, { "confidence": 0.75341797, "end": 18.75, "punctuated_word": "yet", "speaker": 0, "speaker_confidence": 0.3725586, "start": 18.43, "word": "yet" }, { "confidence": 0.9970703, "end": 18.99, "punctuated_word": "super", "speaker": 0, "speaker_confidence": 0.3725586, "start": 18.75, "word": "super" }, { "confidence": 0.9453125, "end": 19.49, "punctuated_word": "powerful", "speaker": 0, "speaker_confidence": 0.3725586, "start": 18.99, "word": "powerful" }, { "confidence": 0.9140625, "end": 19.95, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.3725586, "start": 19.630001, "word": "and" }, { "confidence": 0.99902344, "end": 20.19, "punctuated_word": "free", "speaker": 0, "speaker_confidence": 0.3725586, "start": 19.95, "word": "free" }, { "confidence": 0.72021484, "end": 20.35, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.3725586, "start": 20.19, "word": "and" }, { "confidence": 0.9604492, "end": 20.59, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.3725586, "start": 20.35, "word": "open" }, { "confidence": 0.99658203, "end": 21.09, "punctuated_word": "source.", "speaker": 0, "speaker_confidence": 0.3725586, "start": 20.59, "word": "source" }, { "confidence": 0.9980469, "end": 21.31, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.21240234, "start": 21.15, "word": "in" }, { "confidence": 1, "end": 21.47, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.21240234, "start": 21.31, "word": "this" }, { "confidence": 0.9970703, "end": 21.855, "punctuated_word": "episode,", "speaker": 0, "speaker_confidence": 0.21240234, "start": 21.47, "word": "episode" }, { "confidence": 0.96240234, "end": 22.015, "punctuated_word": "I'll", "speaker": 0, "speaker_confidence": 0.21240234, "start": 21.855, "word": "i'll" }, { "confidence": 1, "end": 22.175, "punctuated_word": "show", "speaker": 0, "speaker_confidence": 0.21240234, "start": 22.015, "word": "show" }, { "confidence": 1, "end": 22.255, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.21240234, "start": 22.175, "word": "you" }, { "confidence": 0.99902344, "end": 22.654999, "punctuated_word": "exactly", "speaker": 0, "speaker_confidence": 0.21240234, "start": 22.255, "word": "exactly" }, { "confidence": 1, "end": 22.814999, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.21240234, "start": 22.654999, "word": "what" }, { "confidence": 0.9941406, "end": 22.895, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.18261719, "start": 22.814999, "word": "i" }, { "confidence": 1, "end": 23.135, "punctuated_word": "mean", "speaker": 0, "speaker_confidence": 0.18261719, "start": 22.895, "word": "mean" }, { "confidence": 1, "end": 23.295, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.18261719, "start": 23.135, "word": "by" }, { "confidence": 1, "end": 23.615, "punctuated_word": "taking", "speaker": 0, "speaker_confidence": 0.18261719, "start": 23.295, "word": "taking" }, { "confidence": 0.9970703, "end": 23.695, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.18261719, "start": 23.615, "word": "you" }, { "confidence": 1, "end": 23.935, "punctuated_word": "through", "speaker": 0, "speaker_confidence": 0.18261719, "start": 23.695, "word": "through" }, { "confidence": 1, "end": 24.095, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.18261719, "start": 23.935, "word": "my" }, { "confidence": 0.9873047, "end": 24.335, "punctuated_word": "top", "speaker": 0, "speaker_confidence": 0.18261719, "start": 24.095, "word": "top" }, { "confidence": 0.5913086, "end": 24.654999, "punctuated_word": "ten", "speaker": 0, "speaker_confidence": 0.18261719, "start": 24.335, "word": "ten" }, { "confidence": 0.97265625, "end": 24.814999, "punctuated_word": "pro", "speaker": 0, "speaker_confidence": 0.20654297, "start": 24.654999, "word": "pro" }, { "confidence": 0.9980469, "end": 25.135, "punctuated_word": "tips", "speaker": 0, "speaker_confidence": 0.20654297, "start": 24.814999, "word": "tips" }, { "confidence": 0.9921875, "end": 25.375, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.20654297, "start": 25.135, "word": "for" }, { "confidence": 0.99902344, "end": 25.695, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.20654297, "start": 25.375, "word": "using" }, { "confidence": 0.9140625, "end": 26.015, "punctuated_word": "Versus", "speaker": 0, "speaker_confidence": 0.20654297, "start": 25.695, "word": "versus" }, { "confidence": 0.8911133, "end": 26.255, "punctuated_word": "Code", "speaker": 0, "speaker_confidence": 0.20654297, "start": 26.015, "word": "code" }, { "confidence": 0.99609375, "end": 26.755, "punctuated_word": "effectively.", "speaker": 0, "speaker_confidence": 0.20654297, "start": 26.255, "word": "effectively" }, { "confidence": 0.9970703, "end": 27.134998, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.34326172, "start": 26.974998, "word": "if" }, { "confidence": 0.99853516, "end": 27.295, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.34326172, "start": 27.134998, "word": "you're" }, { "confidence": 1, "end": 27.455, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.34326172, "start": 27.295, "word": "new" }, { "confidence": 0.9890137, "end": 27.695, "punctuated_word": "here,", "speaker": 0, "speaker_confidence": 0.34326172, "start": 27.455, "word": "here" }, { "confidence": 1, "end": 27.935, "punctuated_word": "hit", "speaker": 0, "speaker_confidence": 0.34326172, "start": 27.695, "word": "hit" }, { "confidence": 0.99902344, "end": 28.335, "punctuated_word": "subscribe", "speaker": 0, "speaker_confidence": 0.34326172, "start": 27.935, "word": "subscribe" }, { "confidence": 0.7026367, "end": 28.574999, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.34326172, "start": 28.335, "word": "and" }, { "confidence": 1, "end": 28.814999, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 0.34326172, "start": 28.574999, "word": "you'll" }, { "confidence": 1, "end": 29.055, "punctuated_word": "find", "speaker": 0, "speaker_confidence": 0.34326172, "start": 28.814999, "word": "find" }, { "confidence": 0.9453125, "end": 29.134998, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.34326172, "start": 29.055, "word": "a" }, { "confidence": 1, "end": 29.295, "punctuated_word": "full", "speaker": 0, "speaker_confidence": 0.34326172, "start": 29.134998, "word": "full" }, { "confidence": 0.9951172, "end": 29.535, "punctuated_word": "write", "speaker": 0, "speaker_confidence": 0.34326172, "start": 29.295, "word": "write" }, { "confidence": 0.8745117, "end": 29.695, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.34326172, "start": 29.535, "word": "up" }, { "confidence": 0.99902344, "end": 29.855, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.32080078, "start": 29.695, "word": "on" }, { "confidence": 0.53125, "end": 30.255, "punctuated_word": "angular", "speaker": 0, "speaker_confidence": 0.32080078, "start": 29.855, "word": "angular" }, { "confidence": 0.5253906, "end": 30.61, "punctuated_word": "fire", "speaker": 0, "speaker_confidence": 0.32080078, "start": 30.255, "word": "fire" }, { "confidence": 0.77473956, "end": 31.27, "punctuated_word": ".com.", "speaker": 0, "speaker_confidence": 0.32080078, "start": 30.77, "word": "com" }, { "confidence": 0.99121094, "end": 31.650002, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.32080078, "start": 31.41, "word": "the" }, { "confidence": 0.9951172, "end": 31.890001, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 0.32080078, "start": 31.650002, "word": "first" }, { "confidence": 1, "end": 32.05, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.32080078, "start": 31.890001, "word": "thing" }, { "confidence": 1, "end": 32.21, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.32080078, "start": 32.05, "word": "you" }, { "confidence": 1, "end": 32.29, "punctuated_word": "should", "speaker": 0, "speaker_confidence": 0.0048828125, "start": 32.21, "word": "should" }, { "confidence": 1, "end": 32.61, "punctuated_word": "know", "speaker": 0, "speaker_confidence": 0.0048828125, "start": 32.29, "word": "know" }, { "confidence": 1, "end": 32.77, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.0048828125, "start": 32.61, "word": "is" }, { "confidence": 1, "end": 32.93, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.0048828125, "start": 32.77, "word": "how" }, { "confidence": 1, "end": 33.010002, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.0048828125, "start": 32.93, "word": "to" }, { "confidence": 1, "end": 33.170002, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.21728516, "start": 33.010002, "word": "get" }, { "confidence": 1, "end": 33.41, "punctuated_word": "around", "speaker": 0, "speaker_confidence": 0.21728516, "start": 33.170002, "word": "around" }, { "confidence": 0.9951172, "end": 33.57, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.21728516, "start": 33.41, "word": "the" }, { "confidence": 0.99316406, "end": 33.81, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.21728516, "start": 33.57, "word": "file" }, { "confidence": 1, "end": 34.21, "punctuated_word": "system", "speaker": 0, "speaker_confidence": 0.21728516, "start": 33.81, "word": "system" }, { "confidence": 0.9995117, "end": 34.71, "punctuated_word": "quickly.", "speaker": 0, "speaker_confidence": 0.21728516, "start": 34.21, "word": "quickly" }, { "confidence": 0.9921875, "end": 35.41, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.40771484, "start": 35.25, "word": "you" }, { "confidence": 1, "end": 35.49, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.40771484, "start": 35.41, "word": "can" }, { "confidence": 1, "end": 35.73, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.40771484, "start": 35.49, "word": "open" }, { "confidence": 1, "end": 35.89, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.40771484, "start": 35.73, "word": "up" }, { "confidence": 0.95166016, "end": 36.13, "punctuated_word": "Versus", "speaker": 0, "speaker_confidence": 0.40771484, "start": 35.89, "word": "versus" }, { "confidence": 0.8642578, "end": 36.37, "punctuated_word": "Code", "speaker": 0, "speaker_confidence": 0.40771484, "start": 36.13, "word": "code" }, { "confidence": 1, "end": 36.53, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.40771484, "start": 36.37, "word": "by" }, { "confidence": 1, "end": 36.85, "punctuated_word": "running", "speaker": 0, "speaker_confidence": 0.40771484, "start": 36.53, "word": "running" }, { "confidence": 0.79003906, "end": 37.010002, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.40771484, "start": 36.85, "word": "code" }, { "confidence": 1, "end": 37.25, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.40771484, "start": 37.010002, "word": "from" }, { "confidence": 0.97998047, "end": 37.41, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.40771484, "start": 37.25, "word": "the" }, { "confidence": 0.99902344, "end": 37.65, "punctuated_word": "command", "speaker": 0, "speaker_confidence": 0.40771484, "start": 37.41, "word": "command" }, { "confidence": 1, "end": 37.81, "punctuated_word": "line", "speaker": 0, "speaker_confidence": 0.40771484, "start": 37.65, "word": "line" }, { "confidence": 0.99902344, "end": 38.105, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.40771484, "start": 37.81, "word": "with" }, { "confidence": 0.7788086, "end": 38.345, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.40771484, "start": 38.185, "word": "the" }, { "confidence": 0.9980469, "end": 38.585, "punctuated_word": "directory", "speaker": 0, "speaker_confidence": 0.40771484, "start": 38.345, "word": "directory" }, { "confidence": 0.99902344, "end": 38.905, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.40771484, "start": 38.585, "word": "that" }, { "confidence": 1, "end": 38.985, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.40771484, "start": 38.905, "word": "you" }, { "confidence": 0.73095703, "end": 39.145, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.40771484, "start": 38.985, "word": "want" }, { "confidence": 0.9760742, "end": 39.225, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.037109375, "start": 39.145, "word": "to" }, { "confidence": 0.99560547, "end": 39.725, "punctuated_word": "open.", "speaker": 0, "speaker_confidence": 0.037109375, "start": 39.225, "word": "open" }, { "confidence": 1, "end": 40.345, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.037109375, "start": 40.105, "word": "the" }, { "confidence": 0.99902344, "end": 40.665, "punctuated_word": "quickest", "speaker": 0, "speaker_confidence": 0.037109375, "start": 40.345, "word": "quickest" }, { "confidence": 1, "end": 40.825, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 0.037109375, "start": 40.665, "word": "way" }, { "confidence": 1, "end": 40.985, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.2446289, "start": 40.825, "word": "to" }, { "confidence": 1, "end": 41.145, "punctuated_word": "move", "speaker": 0, "speaker_confidence": 0.2446289, "start": 40.985, "word": "move" }, { "confidence": 1, "end": 41.465, "punctuated_word": "around", "speaker": 0, "speaker_confidence": 0.2446289, "start": 41.145, "word": "around" }, { "confidence": 1, "end": 41.625, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.2446289, "start": 41.465, "word": "is" }, { "confidence": 1, "end": 41.785, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.2446289, "start": 41.625, "word": "to" }, { "confidence": 1, "end": 42.265, "punctuated_word": "memorize", "speaker": 0, "speaker_confidence": 0.2446289, "start": 41.785, "word": "memorize" }, { "confidence": 1, "end": 42.345, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.2446289, "start": 42.265, "word": "a" }, { "confidence": 1, "end": 42.585, "punctuated_word": "few", "speaker": 0, "speaker_confidence": 0.24121094, "start": 42.345, "word": "few" }, { "confidence": 1, "end": 42.825, "punctuated_word": "hot", "speaker": 0, "speaker_confidence": 0.24121094, "start": 42.585, "word": "hot" }, { "confidence": 0.7475586, "end": 43.145, "punctuated_word": "keys", "speaker": 0, "speaker_confidence": 0.24121094, "start": 42.825, "word": "keys" }, { "confidence": 0.9941406, "end": 43.465, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.24121094, "start": 43.145, "word": "or" }, { "confidence": 1, "end": 43.625, "punctuated_word": "key", "speaker": 0, "speaker_confidence": 0.24121094, "start": 43.465, "word": "key" }, { "confidence": 0.99658203, "end": 44.125, "punctuated_word": "bindings.", "speaker": 0, "speaker_confidence": 0.24121094, "start": 43.625, "word": "bindings" }, { "confidence": 0.9970703, "end": 44.745, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.24121094, "start": 44.585, "word": "if" }, { "confidence": 1, "end": 44.905, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.24121094, "start": 44.745, "word": "you" }, { "confidence": 0.9941406, "end": 45.065, "punctuated_word": "hit", "speaker": 0, "speaker_confidence": 0.0126953125, "start": 44.905, "word": "hit" }, { "confidence": 0.9013672, "end": 45.305, "punctuated_word": "control", "speaker": 0, "speaker_confidence": 0.0126953125, "start": 45.065, "word": "control" }, { "confidence": 0.78125, "end": 45.48, "punctuated_word": "k,", "speaker": 0, "speaker_confidence": 0.0126953125, "start": 45.305, "word": "k" }, { "confidence": 0.9946289, "end": 45.72, "punctuated_word": "It'll", "speaker": 0, "speaker_confidence": 0.0126953125, "start": 45.56, "word": "it'll" }, { "confidence": 1, "end": 45.88, "punctuated_word": "bring", "speaker": 0, "speaker_confidence": 0.0126953125, "start": 45.72, "word": "bring" }, { "confidence": 1, "end": 45.92, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.0126953125, "start": 45.88, "word": "up" }, { "confidence": 1, "end": 45.96, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.33007812, "start": 45.92, "word": "a" }, { "confidence": 0.9951172, "end": 46.28, "punctuated_word": "full", "speaker": 0, "speaker_confidence": 0.33007812, "start": 45.96, "word": "full" }, { "confidence": 1, "end": 46.44, "punctuated_word": "list", "speaker": 0, "speaker_confidence": 0.33007812, "start": 46.28, "word": "list" }, { "confidence": 1, "end": 46.6, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.33007812, "start": 46.44, "word": "of" }, { "confidence": 1, "end": 46.84, "punctuated_word": "key", "speaker": 0, "speaker_confidence": 0.33007812, "start": 46.6, "word": "key" }, { "confidence": 0.99609375, "end": 47.16, "punctuated_word": "bindings", "speaker": 0, "speaker_confidence": 0.33007812, "start": 46.84, "word": "bindings" }, { "confidence": 1, "end": 47.32, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.33007812, "start": 47.16, "word": "that" }, { "confidence": 1, "end": 47.48, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.31152344, "start": 47.32, "word": "you" }, { "confidence": 1, "end": 47.64, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.31152344, "start": 47.48, "word": "can" }, { "confidence": 1, "end": 47.88, "punctuated_word": "search", "speaker": 0, "speaker_confidence": 0.31152344, "start": 47.64, "word": "search" }, { "confidence": 1, "end": 48.2, "punctuated_word": "through", "speaker": 0, "speaker_confidence": 0.31152344, "start": 47.88, "word": "through" }, { "confidence": 1, "end": 48.52, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.31152344, "start": 48.2, "word": "and" }, { "confidence": 0.99902344, "end": 49, "punctuated_word": "customize", "speaker": 0, "speaker_confidence": 0.31152344, "start": 48.52, "word": "customize" }, { "confidence": 1, "end": 49.239998, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.31152344, "start": 49, "word": "as" }, { "confidence": 0.8352051, "end": 49.72, "punctuated_word": "needed,", "speaker": 0, "speaker_confidence": 0.31152344, "start": 49.239998, "word": "needed" }, { "confidence": 1, "end": 49.96, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.1328125, "start": 49.72, "word": "but" }, { "confidence": 1, "end": 50.12, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.1328125, "start": 49.96, "word": "the" }, { "confidence": 1, "end": 50.36, "punctuated_word": "single", "speaker": 0, "speaker_confidence": 0.1328125, "start": 50.12, "word": "single" }, { "confidence": 1, "end": 50.6, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 0.1328125, "start": 50.36, "word": "most" }, { "confidence": 1, "end": 50.92, "punctuated_word": "important", "speaker": 0, "speaker_confidence": 0.1328125, "start": 50.6, "word": "important" }, { "confidence": 0.9941406, "end": 51.079998, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.1328125, "start": 50.92, "word": "one" }, { "confidence": 1, "end": 51.239998, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.3125, "start": 51.079998, "word": "is" }, { "confidence": 0.9404297, "end": 51.64, "punctuated_word": "control", "speaker": 0, "speaker_confidence": 0.3125, "start": 51.239998, "word": "control" }, { "confidence": 0.9267578, "end": 51.879997, "punctuated_word": "p", "speaker": 0, "speaker_confidence": 0.3125, "start": 51.64, "word": "p" }, { "confidence": 0.58496094, "end": 52.12, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.3125, "start": 51.879997, "word": "which" }, { "confidence": 1, "end": 52.36, "punctuated_word": "brings", "speaker": 0, "speaker_confidence": 0.3125, "start": 52.12, "word": "brings" }, { "confidence": 1, "end": 52.6, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.3125, "start": 52.36, "word": "up" }, { "confidence": 0.9892578, "end": 52.84, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.3125, "start": 52.6, "word": "the" }, { "confidence": 0.83935547, "end": 53.16, "punctuated_word": "command", "speaker": 0, "speaker_confidence": 0.3125, "start": 52.84, "word": "command" }, { "confidence": 0.9338379, "end": 53.66, "punctuated_word": "palette.", "speaker": 0, "speaker_confidence": 0.3125, "start": 53.16, "word": "palette" }, { "confidence": 1, "end": 54.28, "punctuated_word": "We'll", "speaker": 0, "speaker_confidence": 0.23730469, "start": 54.04, "word": "we'll" }, { "confidence": 1, "end": 54.44, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.23730469, "start": 54.28, "word": "be" }, { "confidence": 1, "end": 54.68, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.23730469, "start": 54.44, "word": "using" }, { "confidence": 0.99316406, "end": 54.76, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.23730469, "start": 54.68, "word": "the" }, { "confidence": 0.9941406, "end": 55, "punctuated_word": "command", "speaker": 0, "speaker_confidence": 0.23730469, "start": 54.76, "word": "command" }, { "confidence": 0.9770508, "end": 55.345, "punctuated_word": "palette", "speaker": 0, "speaker_confidence": 0.23730469, "start": 55, "word": "palette" }, { "confidence": 1, "end": 55.505, "punctuated_word": "lot", "speaker": 0, "speaker_confidence": 0.23730469, "start": 55.345, "word": "lot" }, { "confidence": 0.9921875, "end": 55.665, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.45214844, "start": 55.505, "word": "in" }, { "confidence": 1, "end": 55.745003, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.45214844, "start": 55.665, "word": "this" }, { "confidence": 0.9753418, "end": 56.065002, "punctuated_word": "video,", "speaker": 0, "speaker_confidence": 0.45214844, "start": 55.745003, "word": "video" }, { "confidence": 1, "end": 56.385002, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.45214844, "start": 56.065002, "word": "so" }, { "confidence": 1, "end": 56.545002, "punctuated_word": "don't", "speaker": 0, "speaker_confidence": 0.45214844, "start": 56.385002, "word": "don't" }, { "confidence": 1, "end": 56.865, "punctuated_word": "forget", "speaker": 0, "speaker_confidence": 0.45214844, "start": 56.545002, "word": "forget" }, { "confidence": 1, "end": 57.105, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.45214844, "start": 56.865, "word": "this" }, { "confidence": 0.9433594, "end": 57.605, "punctuated_word": "one.", "speaker": 0, "speaker_confidence": 0.45214844, "start": 57.105, "word": "one" }, { "confidence": 1, "end": 57.825, "punctuated_word": "To", "speaker": 0, "speaker_confidence": 0.60498047, "start": 57.665, "word": "to" }, { "confidence": 1, "end": 58.305, "punctuated_word": "navigate", "speaker": 0, "speaker_confidence": 0.60498047, "start": 57.825, "word": "navigate" }, { "confidence": 1, "end": 58.545002, "punctuated_word": "between", "speaker": 0, "speaker_confidence": 0.60498047, "start": 58.305, "word": "between" }, { "confidence": 0.99902344, "end": 58.945, "punctuated_word": "files,", "speaker": 0, "speaker_confidence": 0.60498047, "start": 58.545002, "word": "files" }, { "confidence": 1, "end": 59.025, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.60498047, "start": 58.945, "word": "you" }, { "confidence": 1, "end": 59.265, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.60498047, "start": 59.025, "word": "can" }, { "confidence": 1, "end": 59.585, "punctuated_word": "simply", "speaker": 0, "speaker_confidence": 0.60498047, "start": 59.265, "word": "simply" }, { "confidence": 1, "end": 59.905003, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 0.60498047, "start": 59.585, "word": "start" }, { "confidence": 0.9970703, "end": 60.225002, "punctuated_word": "typing", "speaker": 0, "speaker_confidence": 0.60498047, "start": 59.905003, "word": "typing" }, { "confidence": 0.98535156, "end": 60.305, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.60498047, "start": 60.225002, "word": "the" }, { "confidence": 0.89453125, "end": 60.545002, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.60498047, "start": 60.305, "word": "file" }, { "confidence": 0.8054199, "end": 60.785, "punctuated_word": "name,", "speaker": 0, "speaker_confidence": 0.60498047, "start": 60.545002, "word": "name" }, { "confidence": 1, "end": 60.945, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.60498047, "start": 60.785, "word": "and" }, { "confidence": 1, "end": 61.105, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.60498047, "start": 60.945, "word": "it" }, { "confidence": 1, "end": 61.345, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.60498047, "start": 61.105, "word": "will" }, { "confidence": 1, "end": 61.845, "punctuated_word": "automatically", "speaker": 0, "speaker_confidence": 0.60498047, "start": 61.345, "word": "automatically" }, { "confidence": 0.99902344, "end": 62.225002, "punctuated_word": "search", "speaker": 0, "speaker_confidence": 0.60498047, "start": 61.905003, "word": "search" }, { "confidence": 1, "end": 62.465, "punctuated_word": "through", "speaker": 0, "speaker_confidence": 0.60498047, "start": 62.225002, "word": "through" }, { "confidence": 0.99902344, "end": 62.625, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.60498047, "start": 62.465, "word": "your" }, { "confidence": 1, "end": 62.945, "punctuated_word": "tree", "speaker": 0, "speaker_confidence": 0.60498047, "start": 62.625, "word": "tree" }, { "confidence": 0.99902344, "end": 63.185, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.60498047, "start": 62.945, "word": "to" }, { "confidence": 1, "end": 63.345, "punctuated_word": "find", "speaker": 0, "speaker_confidence": 0.60498047, "start": 63.185, "word": "find" }, { "confidence": 0.97509766, "end": 63.585, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.60498047, "start": 63.345, "word": "the" }, { "confidence": 1, "end": 64.085, "punctuated_word": "corresponding", "speaker": 0, "speaker_confidence": 0.60498047, "start": 63.585, "word": "corresponding" }, { "confidence": 0.99902344, "end": 64.805, "punctuated_word": "file.", "speaker": 0, "speaker_confidence": 0.60498047, "start": 64.305, "word": "file" }, { "confidence": 0.9951172, "end": 65.17, "punctuated_word": "That's", "speaker": 0, "speaker_confidence": 0.4345703, "start": 64.85, "word": "that's" }, { "confidence": 1, "end": 65.25, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 0.4345703, "start": 65.17, "word": "way" }, { "confidence": 1, "end": 65.57, "punctuated_word": "quicker", "speaker": 0, "speaker_confidence": 0.4345703, "start": 65.25, "word": "quicker" }, { "confidence": 0.99902344, "end": 65.729996, "punctuated_word": "than", "speaker": 0, "speaker_confidence": 0.4345703, "start": 65.57, "word": "than" }, { "confidence": 0.9951172, "end": 65.89, "punctuated_word": "trying", "speaker": 0, "speaker_confidence": 0.4345703, "start": 65.729996, "word": "trying" }, { "confidence": 0.9951172, "end": 66.049995, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.4345703, "start": 65.89, "word": "to" }, { "confidence": 1, "end": 66.369995, "punctuated_word": "navigate", "speaker": 0, "speaker_confidence": 0.4345703, "start": 66.049995, "word": "navigate" }, { "confidence": 0.99902344, "end": 66.61, "punctuated_word": "through", "speaker": 0, "speaker_confidence": 0.4345703, "start": 66.369995, "word": "through" }, { "confidence": 1, "end": 66.77, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.4345703, "start": 66.61, "word": "a" }, { "confidence": 0.99902344, "end": 67.17, "punctuated_word": "directory", "speaker": 0, "speaker_confidence": 0.4345703, "start": 66.77, "word": "directory" }, { "confidence": 0.9970703, "end": 67.409996, "punctuated_word": "tree", "speaker": 0, "speaker_confidence": 0.4345703, "start": 67.17, "word": "tree" }, { "confidence": 1, "end": 67.65, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.4345703, "start": 67.409996, "word": "by" }, { "confidence": 0.8952637, "end": 68.15, "punctuated_word": "clicking,", "speaker": 0, "speaker_confidence": 0.4345703, "start": 67.65, "word": "clicking" }, { "confidence": 1, "end": 68.45, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.4873047, "start": 68.21, "word": "but" }, { "confidence": 0.99316406, "end": 68.77, "punctuated_word": "sometimes", "speaker": 0, "speaker_confidence": 0.4873047, "start": 68.45, "word": "sometimes" }, { "confidence": 0.88720703, "end": 68.93, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.4873047, "start": 68.77, "word": "you" }, { "confidence": 0.99902344, "end": 69.009995, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 0.4873047, "start": 68.93, "word": "might" }, { "confidence": 0.9863281, "end": 69.33, "punctuated_word": "wanna", "speaker": 0, "speaker_confidence": 0.4873047, "start": 69.009995, "word": "wanna" }, { "confidence": 0.98828125, "end": 69.729996, "punctuated_word": "bookmark", "speaker": 0, "speaker_confidence": 0.4873047, "start": 69.33, "word": "bookmark" }, { "confidence": 0.99902344, "end": 70.13, "punctuated_word": "specific", "speaker": 0, "speaker_confidence": 0.4873047, "start": 69.729996, "word": "specific" }, { "confidence": 0.9980469, "end": 70.369995, "punctuated_word": "lines", "speaker": 0, "speaker_confidence": 0.4873047, "start": 70.13, "word": "lines" }, { "confidence": 0.99902344, "end": 70.45, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.4873047, "start": 70.369995, "word": "of" }, { "confidence": 0.99902344, "end": 70.689995, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.4873047, "start": 70.45, "word": "code" }, { "confidence": 0.9941406, "end": 70.85, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.4873047, "start": 70.689995, "word": "and" }, { "confidence": 1, "end": 71.17, "punctuated_word": "navigate", "speaker": 0, "speaker_confidence": 0.4873047, "start": 70.85, "word": "navigate" }, { "confidence": 0.97509766, "end": 71.33, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.4873047, "start": 71.17, "word": "to" }, { "confidence": 1, "end": 71.49, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.4873047, "start": 71.33, "word": "them" }, { "confidence": 1, "end": 71.895, "punctuated_word": "later.", "speaker": 0, "speaker_confidence": 0.4873047, "start": 71.49, "word": "later" }, { "confidence": 0.99121094, "end": 71.975, "punctuated_word": "For", "speaker": 0, "speaker_confidence": 0.5805664, "start": 71.895, "word": "for" }, { "confidence": 0.98999023, "end": 72.134995, "punctuated_word": "that,", "speaker": 0, "speaker_confidence": 0.5805664, "start": 71.975, "word": "that" }, { "confidence": 1, "end": 72.295, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.5805664, "start": 72.134995, "word": "i" }, { "confidence": 0.9921875, "end": 72.695, "punctuated_word": "recommend", "speaker": 0, "speaker_confidence": 0.5805664, "start": 72.295, "word": "recommend" }, { "confidence": 0.9980469, "end": 73.015, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.5805664, "start": 72.695, "word": "using" }, { "confidence": 0.99902344, "end": 73.255, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.5805664, "start": 73.015, "word": "a" }, { "confidence": 0.99609375, "end": 73.73499, "punctuated_word": "bookmark", "speaker": 0, "speaker_confidence": 0.5805664, "start": 73.255, "word": "bookmark" }, { "confidence": 0.8581543, "end": 74.23499, "punctuated_word": "plugin,", "speaker": 0, "speaker_confidence": 0.5805664, "start": 73.73499, "word": "plugin" }, { "confidence": 1, "end": 74.695, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.5805664, "start": 74.375, "word": "which" }, { "confidence": 0.99609375, "end": 74.854996, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.5805664, "start": 74.695, "word": "will" }, { "confidence": 0.9980469, "end": 75.09499, "punctuated_word": "allow", "speaker": 0, "speaker_confidence": 0.5805664, "start": 74.854996, "word": "allow" }, { "confidence": 0.9980469, "end": 75.255, "punctuated_word": "us", "speaker": 0, "speaker_confidence": 0.5805664, "start": 75.09499, "word": "us" }, { "confidence": 0.99609375, "end": 75.41499, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.5805664, "start": 75.255, "word": "to" }, { "confidence": 0.99902344, "end": 75.895, "punctuated_word": "highlight", "speaker": 0, "speaker_confidence": 0.5805664, "start": 75.41499, "word": "highlight" }, { "confidence": 0.9921875, "end": 75.975, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.5805664, "start": 75.895, "word": "a" }, { "confidence": 1, "end": 76.215, "punctuated_word": "block", "speaker": 0, "speaker_confidence": 0.5805664, "start": 75.975, "word": "block" }, { "confidence": 0.9873047, "end": 76.375, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.5805664, "start": 76.215, "word": "of" }, { "confidence": 0.99609375, "end": 76.774994, "punctuated_word": "code,", "speaker": 0, "speaker_confidence": 0.5805664, "start": 76.375, "word": "code" }, { "confidence": 0.9980469, "end": 77.09499, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.5805664, "start": 76.774994, "word": "set" }, { "confidence": 0.9980469, "end": 77.255, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.5805664, "start": 77.09499, "word": "a" }, { "confidence": 0.99609375, "end": 77.73499, "punctuated_word": "bookmark", "speaker": 0, "speaker_confidence": 0.5805664, "start": 77.255, "word": "bookmark" }, { "confidence": 1, "end": 78.05499, "punctuated_word": "number", "speaker": 0, "speaker_confidence": 0.5805664, "start": 77.73499, "word": "number" }, { "confidence": 0.99902344, "end": 78.215, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.5805664, "start": 78.05499, "word": "for" }, { "confidence": 0.9916992, "end": 78.375, "punctuated_word": "it,", "speaker": 0, "speaker_confidence": 0.5805664, "start": 78.215, "word": "it" }, { "confidence": 0.99609375, "end": 78.534996, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.5805664, "start": 78.375, "word": "and" }, { "confidence": 0.9770508, "end": 78.91, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.5805664, "start": 78.534996, "word": "then" }, { "confidence": 0.7614746, "end": 79.23, "punctuated_word": "Easily", "speaker": 0, "speaker_confidence": 0.5805664, "start": 78.990005, "word": "easily" }, { "confidence": 0.9980469, "end": 79.39001, "punctuated_word": "navigate", "speaker": 0, "speaker_confidence": 0.5805664, "start": 79.23, "word": "navigate" }, { "confidence": 0.9980469, "end": 79.71001, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.5805664, "start": 79.39001, "word": "to" }, { "confidence": 1, "end": 79.87, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.5805664, "start": 79.71001, "word": "it" }, { "confidence": 1, "end": 80.19, "punctuated_word": "later", "speaker": 0, "speaker_confidence": 0.5805664, "start": 79.87, "word": "later" }, { "confidence": 0.99902344, "end": 80.51, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.5805664, "start": 80.19, "word": "on" }, { "confidence": 0.9980469, "end": 80.83, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.5805664, "start": 80.51, "word": "using" }, { "confidence": 0.7841797, "end": 80.990005, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5805664, "start": 80.83, "word": "the" }, { "confidence": 0.9589844, "end": 81.310005, "punctuated_word": "command", "speaker": 0, "speaker_confidence": 0.5805664, "start": 80.990005, "word": "command" }, { "confidence": 0.7714844, "end": 81.630005, "punctuated_word": "palette", "speaker": 0, "speaker_confidence": 0.5805664, "start": 81.310005, "word": "palette" }, { "confidence": 0.5288086, "end": 81.79, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.5805664, "start": 81.630005, "word": "in" }, { "confidence": 0.98828125, "end": 82.11, "punctuated_word": "Versus", "speaker": 0, "speaker_confidence": 0.5805664, "start": 81.79, "word": "versus" }, { "confidence": 0.94433594, "end": 82.61, "punctuated_word": "Code.", "speaker": 0, "speaker_confidence": 0.5805664, "start": 82.11, "word": "code" }, { "confidence": 1, "end": 82.83, "punctuated_word": "As", "speaker": 0, "speaker_confidence": 0.39990234, "start": 82.670006, "word": "as" }, { "confidence": 1, "end": 82.990005, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.39990234, "start": 82.83, "word": "you" }, { "confidence": 0.89990234, "end": 83.23, "punctuated_word": "probably", "speaker": 0, "speaker_confidence": 0.39990234, "start": 82.990005, "word": "probably" }, { "confidence": 0.94750977, "end": 83.55, "punctuated_word": "noticed,", "speaker": 0, "speaker_confidence": 0.39990234, "start": 83.23, "word": "noticed" }, { "confidence": 1, "end": 83.71001, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.39990234, "start": 83.55, "word": "i'm" }, { "confidence": 0.98828125, "end": 83.87, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0.39990234, "start": 83.71001, "word": "here" }, { "confidence": 0.9970703, "end": 84.03001, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.39990234, "start": 83.87, "word": "in" }, { "confidence": 0.99316406, "end": 84.11, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.43066406, "start": 84.03001, "word": "an" }, { "confidence": 0.9716797, "end": 84.51, "punctuated_word": "Angular", "speaker": 0, "speaker_confidence": 0.43066406, "start": 84.11, "word": "angular" }, { "confidence": 0.9458008, "end": 84.990005, "punctuated_word": "project,", "speaker": 0, "speaker_confidence": 0.43066406, "start": 84.51, "word": "project" }, { "confidence": 1, "end": 85.15, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.43066406, "start": 84.990005, "word": "so" }, { "confidence": 1, "end": 85.310005, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.43066406, "start": 85.15, "word": "i'm" }, { "confidence": 1, "end": 85.55, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.43066406, "start": 85.310005, "word": "going" }, { "confidence": 0.99902344, "end": 85.71001, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.43066406, "start": 85.55, "word": "to" }, { "confidence": 1, "end": 86.03001, "punctuated_word": "install", "speaker": 0, "speaker_confidence": 0.43066406, "start": 85.71001, "word": "install" }, { "confidence": 0.99609375, "end": 86.270004, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.43066406, "start": 86.03001, "word": "some" }, { "confidence": 0.9873047, "end": 86.670006, "punctuated_word": "snippets", "speaker": 0, "speaker_confidence": 0.43066406, "start": 86.270004, "word": "snippets" }, { "confidence": 1, "end": 86.83, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.43066406, "start": 86.670006, "word": "to" }, { "confidence": 1, "end": 87.03, "punctuated_word": "generate", "speaker": 0, "speaker_confidence": 0.43066406, "start": 86.83, "word": "generate" }, { "confidence": 1, "end": 87.23, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.43066406, "start": 87.03, "word": "a" }, { "confidence": 1, "end": 87.47, "punctuated_word": "lot", "speaker": 0, "speaker_confidence": 0.43066406, "start": 87.23, "word": "lot" }, { "confidence": 1, "end": 87.55, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.43066406, "start": 87.47, "word": "of" }, { "confidence": 0.99902344, "end": 87.71001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.4975586, "start": 87.55, "word": "the" }, { "confidence": 0.87231445, "end": 88.21001, "punctuated_word": "boilerplate", "speaker": 0, "speaker_confidence": 0.4975586, "start": 87.71001, "word": "boilerplate" }, { "confidence": 1, "end": 88.43, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.4975586, "start": 88.270004, "word": "code" }, { "confidence": 1, "end": 88.590004, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.4975586, "start": 88.43, "word": "for" }, { "confidence": 1, "end": 88.895, "punctuated_word": "me.", "speaker": 0, "speaker_confidence": 0.4975586, "start": 88.590004, "word": "me" }, { "confidence": 0.99121094, "end": 89.215, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.4975586, "start": 88.975, "word": "in" }, { "confidence": 0.99609375, "end": 89.615, "punctuated_word": "Angular,", "speaker": 0, "speaker_confidence": 0.4975586, "start": 89.215, "word": "angular" }, { "confidence": 1, "end": 89.695, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.4975586, "start": 89.615, "word": "we" }, { "confidence": 1, "end": 89.935, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.4975586, "start": 89.695, "word": "have" }, { "confidence": 0.8520508, "end": 90.09499, "punctuated_word": "2", "speaker": 0, "speaker_confidence": 0.4975586, "start": 89.935, "word": "2" }, { "confidence": 1, "end": 90.255, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 0.4975586, "start": 90.09499, "word": "really" }, { "confidence": 1, "end": 90.494995, "punctuated_word": "good", "speaker": 0, "speaker_confidence": 0.4975586, "start": 90.255, "word": "good" }, { "confidence": 0.9819336, "end": 90.895, "punctuated_word": "snippet", "speaker": 0, "speaker_confidence": 0.4975586, "start": 90.494995, "word": "snippet" }, { "confidence": 0.9238281, "end": 91.395, "punctuated_word": "libraries,", "speaker": 0, "speaker_confidence": 0.4975586, "start": 90.895, "word": "libraries" }, { "confidence": 0.6513672, "end": 91.695, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.4975586, "start": 91.454994, "word": "one" }, { "confidence": 1, "end": 92.015, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.4975586, "start": 91.695, "word": "from" }, { "confidence": 1, "end": 92.255, "punctuated_word": "Mike", "speaker": 0, "speaker_confidence": 0.4975586, "start": 92.015, "word": "mike" }, { "confidence": 0.79418945, "end": 92.755, "punctuated_word": "Moreland", "speaker": 0, "speaker_confidence": 0.4975586, "start": 92.255, "word": "moreland" }, { "confidence": 0.9160156, "end": 93.05499, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.4975586, "start": 92.895, "word": "and" }, { "confidence": 0.8964844, "end": 93.215, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.4975586, "start": 93.05499, "word": "one" }, { "confidence": 1, "end": 93.454994, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.4975586, "start": 93.215, "word": "from" }, { "confidence": 0.98535156, "end": 93.774994, "punctuated_word": "John", "speaker": 0, "speaker_confidence": 0.4975586, "start": 93.454994, "word": "john" }, { "confidence": 0.9411621, "end": 94.274994, "punctuated_word": "Papa,", "speaker": 0, "speaker_confidence": 0.4975586, "start": 93.774994, "word": "papa" }, { "confidence": 0.99902344, "end": 94.494995, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.28857422, "start": 94.335, "word": "and" }, { "confidence": 1, "end": 94.655, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.28857422, "start": 94.494995, "word": "you" }, { "confidence": 1, "end": 94.73499, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.28857422, "start": 94.655, "word": "can" }, { "confidence": 1, "end": 94.975, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.28857422, "start": 94.73499, "word": "use" }, { "confidence": 1, "end": 95.134995, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.28857422, "start": 94.975, "word": "them" }, { "confidence": 1, "end": 95.375, "punctuated_word": "both", "speaker": 0, "speaker_confidence": 0.28857422, "start": 95.134995, "word": "both" }, { "confidence": 1, "end": 95.875, "punctuated_word": "together.", "speaker": 0, "speaker_confidence": 0.28857422, "start": 95.375, "word": "together" }, { "confidence": 0.98535156, "end": 96.55, "punctuated_word": "When", "speaker": 0, "speaker_confidence": 0.5161133, "start": 96.39, "word": "when" }, { "confidence": 1, "end": 96.71, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.5161133, "start": 96.55, "word": "you" }, { "confidence": 1, "end": 97.03, "punctuated_word": "install", "speaker": 0, "speaker_confidence": 0.5161133, "start": 96.71, "word": "install" }, { "confidence": 0.90649414, "end": 97.43, "punctuated_word": "snippets,", "speaker": 0, "speaker_confidence": 0.5161133, "start": 97.03, "word": "snippets" }, { "confidence": 0.9765625, "end": 97.75, "punctuated_word": "they're", "speaker": 0, "speaker_confidence": 0.5161133, "start": 97.43, "word": "they're" }, { "confidence": 1, "end": 98.229996, "punctuated_word": "automatically", "speaker": 0, "speaker_confidence": 0.5161133, "start": 97.75, "word": "automatically" }, { "confidence": 1, "end": 98.47, "punctuated_word": "added", "speaker": 0, "speaker_confidence": 0.5161133, "start": 98.229996, "word": "added" }, { "confidence": 1, "end": 98.63, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.5161133, "start": 98.47, "word": "to" }, { "confidence": 0.99902344, "end": 98.79, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5161133, "start": 98.63, "word": "the" }, { "confidence": 0.97314453, "end": 99.03, "punctuated_word": "Versus", "speaker": 0, "speaker_confidence": 0.5161133, "start": 98.79, "word": "versus" }, { "confidence": 0.93603516, "end": 99.35, "punctuated_word": "Code", "speaker": 0, "speaker_confidence": 0.5161133, "start": 99.03, "word": "code" }, { "confidence": 0.96569824, "end": 99.85, "punctuated_word": "IntelliSense.", "speaker": 0, "speaker_confidence": 0.5161133, "start": 99.35, "word": "intellisense" }, { "confidence": 1, "end": 100.39, "punctuated_word": "So", "speaker": 0, "speaker_confidence": 0.5161133, "start": 100.15, "word": "so" }, { "confidence": 0.50683594, "end": 100.55, "punctuated_word": "say", "speaker": 0, "speaker_confidence": 0.5161133, "start": 100.39, "word": "say" }, { "confidence": 0.9111328, "end": 100.63, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.5161133, "start": 100.55, "word": "i" }, { "confidence": 1, "end": 100.79, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.6933594, "start": 100.63, "word": "need" }, { "confidence": 1, "end": 100.87, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6933594, "start": 100.79, "word": "to" }, { "confidence": 0.99316406, "end": 101.11, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.6933594, "start": 100.87, "word": "code" }, { "confidence": 0.9921875, "end": 101.27, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.6933594, "start": 101.11, "word": "up" }, { "confidence": 1, "end": 101.51, "punctuated_word": "something", "speaker": 0, "speaker_confidence": 0.6933594, "start": 101.27, "word": "something" }, { "confidence": 1, "end": 101.83, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 0.6933594, "start": 101.51, "word": "really" }, { "confidence": 1, "end": 102.229996, "punctuated_word": "tedious", "speaker": 0, "speaker_confidence": 0.6933594, "start": 101.83, "word": "tedious" }, { "confidence": 0.7519531, "end": 102.39, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.6933594, "start": 102.229996, "word": "like" }, { "confidence": 0.9921875, "end": 102.63, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.6933594, "start": 102.39, "word": "an" }, { "confidence": 0.76171875, "end": 102.87, "punctuated_word": "NG", "speaker": 0, "speaker_confidence": 0.6933594, "start": 102.63, "word": "ng" }, { "confidence": 0.9243164, "end": 103.19, "punctuated_word": "switch", "speaker": 0, "speaker_confidence": 0.6933594, "start": 102.87, "word": "switch" }, { "confidence": 0.9333496, "end": 103.675, "punctuated_word": "statement,", "speaker": 0, "speaker_confidence": 0.6933594, "start": 103.19, "word": "statement" }, { "confidence": 0.99121094, "end": 103.915, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.6933594, "start": 103.755005, "word": "i" }, { "confidence": 1, "end": 104.075005, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.6933594, "start": 103.915, "word": "can" }, { "confidence": 1, "end": 104.555, "punctuated_word": "simply", "speaker": 0, "speaker_confidence": 0.6933594, "start": 104.075005, "word": "simply" }, { "confidence": 1, "end": 104.795006, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 0.6933594, "start": 104.555, "word": "start" }, { "confidence": 1, "end": 105.115005, "punctuated_word": "typing", "speaker": 0, "speaker_confidence": 0.6933594, "start": 104.795006, "word": "typing" }, { "confidence": 0.9921875, "end": 105.355, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6933594, "start": 105.115005, "word": "the" }, { "confidence": 1, "end": 105.755005, "punctuated_word": "prefix", "speaker": 0, "speaker_confidence": 0.6933594, "start": 105.355, "word": "prefix" }, { "confidence": 1, "end": 105.995, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.6933594, "start": 105.755005, "word": "in" }, { "confidence": 0.99902344, "end": 106.15501, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6933594, "start": 105.995, "word": "the" }, { "confidence": 0.9873047, "end": 106.555, "punctuated_word": "snippet", "speaker": 0, "speaker_confidence": 0.6933594, "start": 106.15501, "word": "snippet" }, { "confidence": 0.76123047, "end": 107.055, "punctuated_word": "library,", "speaker": 0, "speaker_confidence": 0.6933594, "start": 106.555, "word": "library" }, { "confidence": 1, "end": 107.275, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6933594, "start": 107.115005, "word": "and" }, { "confidence": 1, "end": 107.435005, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.6933594, "start": 107.275, "word": "it" }, { "confidence": 1, "end": 107.755005, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.6933594, "start": 107.435005, "word": "will" }, { "confidence": 1, "end": 108.255005, "punctuated_word": "automatically", "speaker": 0, "speaker_confidence": 0.6933594, "start": 107.755005, "word": "automatically" }, { "confidence": 1, "end": 108.715004, "punctuated_word": "generate", "speaker": 0, "speaker_confidence": 0.6933594, "start": 108.315, "word": "generate" }, { "confidence": 1, "end": 108.875, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.6933594, "start": 108.715004, "word": "this" }, { "confidence": 1, "end": 109.195, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.6933594, "start": 108.875, "word": "code" }, { "confidence": 1, "end": 109.355, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.6933594, "start": 109.195, "word": "for" }, { "confidence": 1, "end": 109.855, "punctuated_word": "me.", "speaker": 0, "speaker_confidence": 0.6933594, "start": 109.355, "word": "me" }, { "confidence": 0.9980469, "end": 110.315, "punctuated_word": "There's", "speaker": 0, "speaker_confidence": 0.6933594, "start": 110.075005, "word": "there's" }, { "confidence": 1, "end": 110.555, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 0.6933594, "start": 110.315, "word": "even" }, { "confidence": 0.9980469, "end": 110.875, "punctuated_word": "snippets", "speaker": 0, "speaker_confidence": 0.6933594, "start": 110.555, "word": "snippets" }, { "confidence": 1, "end": 111.355, "punctuated_word": "available", "speaker": 0, "speaker_confidence": 0.6933594, "start": 110.875, "word": "available" }, { "confidence": 1, "end": 111.595, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.6933594, "start": 111.355, "word": "for" }, { "confidence": 0.9980469, "end": 111.995, "punctuated_word": "libraries", "speaker": 0, "speaker_confidence": 0.6933594, "start": 111.595, "word": "libraries" }, { "confidence": 0.92089844, "end": 112.28, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.6933594, "start": 111.995, "word": "like" }, { "confidence": 0.79248047, "end": 112.76, "punctuated_word": "Angular", "speaker": 0, "speaker_confidence": 0.6933594, "start": 112.44, "word": "angular" }, { "confidence": 0.85717773, "end": 113.24, "punctuated_word": "Material,", "speaker": 0, "speaker_confidence": 0.6933594, "start": 112.76, "word": "material" }, { "confidence": 0.9197998, "end": 113.74, "punctuated_word": "NGXS,", "speaker": 0, "speaker_confidence": 0.6933594, "start": 113.24, "word": "ngxs" }, { "confidence": 1, "end": 114.36, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6933594, "start": 114.119995, "word": "and" }, { "confidence": 0.99609375, "end": 114.6, "punctuated_word": "many", "speaker": 0, "speaker_confidence": 0.6933594, "start": 114.36, "word": "many" }, { "confidence": 1, "end": 115.1, "punctuated_word": "others.", "speaker": 0, "speaker_confidence": 0.6933594, "start": 114.6, "word": "others" }, { "confidence": 0.99902344, "end": 115.88, "punctuated_word": "Number", "speaker": 0, "speaker_confidence": 0.6933594, "start": 115.56, "word": "number" }, { "confidence": 0.9819336, "end": 116.2, "punctuated_word": "8", "speaker": 0, "speaker_confidence": 0.6933594, "start": 115.88, "word": "8" }, { "confidence": 1, "end": 116.36, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.6933594, "start": 116.2, "word": "is" }, { "confidence": 0.71435547, "end": 116.68, "punctuated_word": "Versus", "speaker": 0, "speaker_confidence": 0.6933594, "start": 116.36, "word": "versus" }, { "confidence": 0.9506836, "end": 117.08, "punctuated_word": "Code's", "speaker": 0, "speaker_confidence": 0.6933594, "start": 116.68, "word": "code's" }, { "confidence": 0.94921875, "end": 117.56, "punctuated_word": "integrated", "speaker": 0, "speaker_confidence": 0.6933594, "start": 117.08, "word": "integrated" }, { "confidence": 0.9951172, "end": 117.88, "punctuated_word": "command", "speaker": 0, "speaker_confidence": 0.6933594, "start": 117.56, "word": "command" }, { "confidence": 0.99902344, "end": 118.119995, "punctuated_word": "line", "speaker": 0, "speaker_confidence": 0.6933594, "start": 117.88, "word": "line" }, { "confidence": 0.9995117, "end": 118.619995, "punctuated_word": "terminal.", "speaker": 0, "speaker_confidence": 0.6933594, "start": 118.119995, "word": "terminal" }, { "confidence": 1, "end": 118.92, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.6933594, "start": 118.76, "word": "you" }, { "confidence": 1, "end": 119.08, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.6933594, "start": 118.92, "word": "can" }, { "confidence": 1, "end": 119.24, "punctuated_word": "pull", "speaker": 0, "speaker_confidence": 0.6933594, "start": 119.08, "word": "pull" }, { "confidence": 1, "end": 119.4, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.6933594, "start": 119.24, "word": "it" }, { "confidence": 1, "end": 119.56, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.6933594, "start": 119.4, "word": "up" }, { "confidence": 1, "end": 119.799995, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.6933594, "start": 119.56, "word": "by" }, { "confidence": 1, "end": 120.2, "punctuated_word": "simply", "speaker": 0, "speaker_confidence": 0.6933594, "start": 119.799995, "word": "simply" }, { "confidence": 1, "end": 120.52, "punctuated_word": "dragging", "speaker": 0, "speaker_confidence": 0.6933594, "start": 120.2, "word": "dragging" }, { "confidence": 0.99902344, "end": 120.759995, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.6933594, "start": 120.52, "word": "from" }, { "confidence": 1, "end": 120.84, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6933594, "start": 120.759995, "word": "the" }, { "confidence": 1, "end": 121.159996, "punctuated_word": "bottom", "speaker": 0, "speaker_confidence": 0.6933594, "start": 120.84, "word": "bottom" }, { "confidence": 1, "end": 121.24, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.6933594, "start": 121.159996, "word": "of" }, { "confidence": 0.99902344, "end": 121.4, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6933594, "start": 121.24, "word": "the" }, { "confidence": 1, "end": 121.9, "punctuated_word": "screen", "speaker": 0, "speaker_confidence": 0.6933594, "start": 121.4, "word": "screen" }, { "confidence": 0.6748047, "end": 122.15501, "punctuated_word": "Or", "speaker": 0, "speaker_confidence": 0.5541992, "start": 122.075005, "word": "or" }, { "confidence": 0.99902344, "end": 122.315, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.5541992, "start": 122.15501, "word": "you" }, { "confidence": 1, "end": 122.395004, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.5541992, "start": 122.315, "word": "can" }, { "confidence": 1, "end": 122.475006, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.5541992, "start": 122.395004, "word": "use" }, { "confidence": 0.9980469, "end": 122.715004, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5541992, "start": 122.475006, "word": "the" }, { "confidence": 0.9863281, "end": 123.195, "punctuated_word": "control", "speaker": 0, "speaker_confidence": 0.5541992, "start": 122.715004, "word": "control" }, { "confidence": 0.9902344, "end": 123.355, "punctuated_word": "back", "speaker": 0, "speaker_confidence": 0.5541992, "start": 123.195, "word": "back" }, { "confidence": 0.6176758, "end": 123.675, "punctuated_word": "tick", "speaker": 0, "speaker_confidence": 0.5541992, "start": 123.355, "word": "tick" }, { "confidence": 0.99609375, "end": 123.835, "punctuated_word": "key", "speaker": 0, "speaker_confidence": 0.5541992, "start": 123.675, "word": "key" }, { "confidence": 0.8432617, "end": 124.335, "punctuated_word": "binding.", "speaker": 0, "speaker_confidence": 0.5541992, "start": 123.835, "word": "binding" }, { "confidence": 1, "end": 124.875, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.5541992, "start": 124.715004, "word": "you" }, { "confidence": 1, "end": 125.035, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.5541992, "start": 124.875, "word": "can" }, { "confidence": 1, "end": 125.275, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.5541992, "start": 125.035, "word": "also" }, { "confidence": 1, "end": 125.435005, "punctuated_word": "pull", "speaker": 0, "speaker_confidence": 0.5541992, "start": 125.275, "word": "pull" }, { "confidence": 0.984375, "end": 125.515, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.5083008, "start": 125.435005, "word": "up" }, { "confidence": 0.99902344, "end": 125.675, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5083008, "start": 125.515, "word": "the" }, { "confidence": 0.9902344, "end": 125.995, "punctuated_word": "command", "speaker": 0, "speaker_confidence": 0.5083008, "start": 125.675, "word": "command" }, { "confidence": 0.7416992, "end": 126.235, "punctuated_word": "palette", "speaker": 0, "speaker_confidence": 0.5083008, "start": 125.995, "word": "palette" }, { "confidence": 1, "end": 126.475006, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.5083008, "start": 126.235, "word": "with" }, { "confidence": 0.9970703, "end": 126.955, "punctuated_word": "control", "speaker": 0, "speaker_confidence": 0.5083008, "start": 126.475006, "word": "control" }, { "confidence": 0.8125, "end": 127.355, "punctuated_word": "p", "speaker": 0, "speaker_confidence": 0.5083008, "start": 126.955, "word": "p" }, { "confidence": 0.9951172, "end": 127.595, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.5083008, "start": 127.355, "word": "and" }, { "confidence": 1, "end": 127.835, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.5083008, "start": 127.595, "word": "open" }, { "confidence": 1, "end": 127.995, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.5083008, "start": 127.835, "word": "it" }, { "confidence": 1, "end": 128.495, "punctuated_word": "there.", "speaker": 0, "speaker_confidence": 0.5083008, "start": 127.995, "word": "there" }, { "confidence": 1, "end": 128.955, "punctuated_word": "What's", "speaker": 0, "speaker_confidence": 0.5083008, "start": 128.63501, "word": "what's" }, { "confidence": 0.99902344, "end": 129.195, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 0.5083008, "start": 128.955, "word": "really" }, { "confidence": 0.99902344, "end": 129.435, "punctuated_word": "cool", "speaker": 0, "speaker_confidence": 0.5083008, "start": 129.195, "word": "cool" }, { "confidence": 0.99902344, "end": 129.515, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.51904297, "start": 129.435, "word": "is" }, { "confidence": 0.99902344, "end": 129.835, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.51904297, "start": 129.515, "word": "that" }, { "confidence": 0.88427734, "end": 130.155, "punctuated_word": "Versus", "speaker": 0, "speaker_confidence": 0.51904297, "start": 129.835, "word": "versus" }, { "confidence": 0.75634766, "end": 130.395, "punctuated_word": "Code", "speaker": 0, "speaker_confidence": 0.51904297, "start": 130.155, "word": "code" }, { "confidence": 0.9970703, "end": 130.63, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.51904297, "start": 130.395, "word": "will" }, { "confidence": 0.80126953, "end": 131.19, "punctuated_word": "Automatically", "speaker": 0, "speaker_confidence": 0.51904297, "start": 130.71, "word": "automatically" }, { "confidence": 0.93115234, "end": 131.69, "punctuated_word": "recognize", "speaker": 0, "speaker_confidence": 0.51904297, "start": 131.19, "word": "recognize" }, { "confidence": 1, "end": 132.15001, "punctuated_word": "scripts", "speaker": 0, "speaker_confidence": 0.51904297, "start": 131.75, "word": "scripts" }, { "confidence": 1, "end": 132.31, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.51904297, "start": 132.15001, "word": "that" }, { "confidence": 1, "end": 132.39, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.51904297, "start": 132.31, "word": "you" }, { "confidence": 1, "end": 132.63, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.51904297, "start": 132.39, "word": "have" }, { "confidence": 0.9892578, "end": 132.79001, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.51904297, "start": 132.63, "word": "set" }, { "confidence": 1, "end": 132.87001, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.62158203, "start": 132.79001, "word": "up" }, { "confidence": 1, "end": 133.03, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.62158203, "start": 132.87001, "word": "in" }, { "confidence": 1, "end": 133.27, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.62158203, "start": 133.03, "word": "your" }, { "confidence": 1, "end": 133.77, "punctuated_word": "project.", "speaker": 0, "speaker_confidence": 0.62158203, "start": 133.27, "word": "project" }, { "confidence": 1, "end": 134.07, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.62158203, "start": 133.83, "word": "in" }, { "confidence": 0.98950195, "end": 134.55, "punctuated_word": "JavaScript,", "speaker": 0, "speaker_confidence": 0.62158203, "start": 134.07, "word": "javascript" }, { "confidence": 1, "end": 134.71, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.62158203, "start": 134.55, "word": "you" }, { "confidence": 0.9980469, "end": 134.95001, "punctuated_word": "probably", "speaker": 0, "speaker_confidence": 0.62158203, "start": 134.71, "word": "probably" }, { "confidence": 1, "end": 135.11, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.62158203, "start": 134.95001, "word": "have" }, { "confidence": 0.99902344, "end": 135.43001, "punctuated_word": "something", "speaker": 0, "speaker_confidence": 0.62158203, "start": 135.11, "word": "something" }, { "confidence": 0.99609375, "end": 135.59001, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.62158203, "start": 135.43001, "word": "set" }, { "confidence": 1, "end": 135.75, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.62158203, "start": 135.59001, "word": "up" }, { "confidence": 1, "end": 135.99, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.62158203, "start": 135.75, "word": "with" }, { "confidence": 0.76953125, "end": 136.49, "punctuated_word": "NPM", "speaker": 0, "speaker_confidence": 0.62158203, "start": 135.99, "word": "npm" }, { "confidence": 0.95166016, "end": 136.79001, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.62158203, "start": 136.63, "word": "or" }, { "confidence": 1, "end": 137.03, "punctuated_word": "maybe", "speaker": 0, "speaker_confidence": 0.62158203, "start": 136.79001, "word": "maybe" }, { "confidence": 0.9980469, "end": 137.27, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.62158203, "start": 137.03, "word": "with" }, { "confidence": 0.98168945, "end": 137.59001, "punctuated_word": "Grunt", "speaker": 0, "speaker_confidence": 0.62158203, "start": 137.27, "word": "grunt" }, { "confidence": 0.97998047, "end": 137.75, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.62158203, "start": 137.59001, "word": "or" }, { "confidence": 0.98795575, "end": 138.23001, "punctuated_word": "Gulp.", "speaker": 0, "speaker_confidence": 0.62158203, "start": 137.75, "word": "gulp" }, { "confidence": 1, "end": 138.39, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.62158203, "start": 138.23001, "word": "you" }, { "confidence": 1, "end": 138.55, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.62158203, "start": 138.39, "word": "can" }, { "confidence": 1, "end": 138.87001, "punctuated_word": "simply", "speaker": 0, "speaker_confidence": 0.62158203, "start": 138.55, "word": "simply" }, { "confidence": 1, "end": 139.11, "punctuated_word": "type", "speaker": 0, "speaker_confidence": 0.62158203, "start": 138.87001, "word": "type" }, { "confidence": 0.9951172, "end": 139.35, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.62158203, "start": 139.11, "word": "in" }, { "confidence": 0.80891925, "end": 139.85, "punctuated_word": "NPM,", "speaker": 0, "speaker_confidence": 0.62158203, "start": 139.35, "word": "npm" }, { "confidence": 0.83447266, "end": 140.125, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.46777344, "start": 140.045, "word": "and" }, { "confidence": 1, "end": 140.365, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.46777344, "start": 140.125, "word": "it" }, { "confidence": 1, "end": 140.525, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.46777344, "start": 140.365, "word": "will" }, { "confidence": 1, "end": 140.765, "punctuated_word": "show", "speaker": 0, "speaker_confidence": 0.46777344, "start": 140.525, "word": "show" }, { "confidence": 1, "end": 140.925, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.46777344, "start": 140.765, "word": "all" }, { "confidence": 1, "end": 141.08499, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.46777344, "start": 140.925, "word": "of" }, { "confidence": 1, "end": 141.245, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.46777344, "start": 141.08499, "word": "your" }, { "confidence": 1, "end": 141.565, "punctuated_word": "scripts", "speaker": 0, "speaker_confidence": 0.46777344, "start": 141.245, "word": "scripts" }, { "confidence": 1, "end": 141.805, "punctuated_word": "right", "speaker": 0, "speaker_confidence": 0.46777344, "start": 141.565, "word": "right" }, { "confidence": 1, "end": 142.125, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.46777344, "start": 141.805, "word": "there" }, { "confidence": 1, "end": 142.625, "punctuated_word": "automatically", "speaker": 0, "speaker_confidence": 0.46777344, "start": 142.125, "word": "automatically" }, { "confidence": 0.7128906, "end": 142.925, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.46777344, "start": 142.765, "word": "so" }, { "confidence": 1, "end": 143.005, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.70458984, "start": 142.925, "word": "you" }, { "confidence": 1, "end": 143.165, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.70458984, "start": 143.005, "word": "can" }, { "confidence": 1, "end": 143.325, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.70458984, "start": 143.165, "word": "run" }, { "confidence": 1, "end": 143.485, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.70458984, "start": 143.325, "word": "them" }, { "confidence": 1, "end": 143.72499, "punctuated_word": "without", "speaker": 0, "speaker_confidence": 0.70458984, "start": 143.485, "word": "without" }, { "confidence": 0.99902344, "end": 143.965, "punctuated_word": "ever", "speaker": 0, "speaker_confidence": 0.70458984, "start": 143.72499, "word": "ever" }, { "confidence": 1, "end": 144.205, "punctuated_word": "having", "speaker": 0, "speaker_confidence": 0.70458984, "start": 143.965, "word": "having" }, { "confidence": 0.99902344, "end": 144.285, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.70458984, "start": 144.205, "word": "to" }, { "confidence": 1, "end": 144.525, "punctuated_word": "type", "speaker": 0, "speaker_confidence": 0.70458984, "start": 144.285, "word": "type" }, { "confidence": 1, "end": 145.025, "punctuated_word": "anything.", "speaker": 0, "speaker_confidence": 0.70458984, "start": 144.525, "word": "anything" }, { "confidence": 1, "end": 145.405, "punctuated_word": "With", "speaker": 0, "speaker_confidence": 0.70458984, "start": 145.245, "word": "with" }, { "confidence": 0.9970703, "end": 145.565, "punctuated_word": "that,", "speaker": 0, "speaker_confidence": 0.70458984, "start": 145.405, "word": "that" }, { "confidence": 1, "end": 145.645, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.70458984, "start": 145.565, "word": "we" }, { "confidence": 1, "end": 145.885, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.70458984, "start": 145.645, "word": "can" }, { "confidence": 0.99121094, "end": 146.125, "punctuated_word": "segue", "speaker": 0, "speaker_confidence": 0.70458984, "start": 145.885, "word": "segue" }, { "confidence": 0.9790039, "end": 146.36499, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.70458984, "start": 146.125, "word": "into" }, { "confidence": 0.99902344, "end": 146.525, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.70458984, "start": 146.36499, "word": "the" }, { "confidence": 1, "end": 146.765, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.70458984, "start": 146.525, "word": "next" }, { "confidence": 1, "end": 147.005, "punctuated_word": "major", "speaker": 0, "speaker_confidence": 0.70458984, "start": 146.765, "word": "major" }, { "confidence": 1, "end": 147.325, "punctuated_word": "feature", "speaker": 0, "speaker_confidence": 0.70458984, "start": 147.005, "word": "feature" }, { "confidence": 0.51171875, "end": 147.565, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.70458984, "start": 147.325, "word": "which" }, { "confidence": 0.99902344, "end": 147.805, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.70458984, "start": 147.565, "word": "is" }, { "confidence": 0.9881592, "end": 148.305, "punctuated_word": "IntelliSense.", "speaker": 0, "speaker_confidence": 0.70458984, "start": 147.805, "word": "intellisense" }, { "confidence": 0.8986003, "end": 149.48999, "punctuated_word": "IntelliSense", "speaker": 0, "speaker_confidence": 0.70458984, "start": 148.98999, "word": "intellisense" }, { "confidence": 0.9980469, "end": 149.79, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.70458984, "start": 149.62999, "word": "is" }, { "confidence": 0.99902344, "end": 150.03, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.70458984, "start": 149.79, "word": "just" }, { "confidence": 1, "end": 150.19, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.70458984, "start": 150.03, "word": "a" }, { "confidence": 1, "end": 150.51, "punctuated_word": "fancy", "speaker": 0, "speaker_confidence": 0.70458984, "start": 150.19, "word": "fancy" }, { "confidence": 0.99902344, "end": 150.91, "punctuated_word": "word", "speaker": 0, "speaker_confidence": 0.70458984, "start": 150.51, "word": "word" }, { "confidence": 0.9980469, "end": 151.15, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.70458984, "start": 150.91, "word": "for" }, { "confidence": 0.9970703, "end": 151.47, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.70458984, "start": 151.15, "word": "code" }, { "confidence": 0.7680664, "end": 151.79, "punctuated_word": "auto", "speaker": 0, "speaker_confidence": 0.70458984, "start": 151.47, "word": "auto" }, { "confidence": 0.82788086, "end": 152.26999, "punctuated_word": "completion.", "speaker": 0, "speaker_confidence": 0.70458984, "start": 151.79, "word": "completion" }, { "confidence": 1, "end": 152.51, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.70458984, "start": 152.26999, "word": "and" }, { "confidence": 0.99902344, "end": 152.67, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.70458984, "start": 152.51, "word": "if" }, { "confidence": 1, "end": 152.75, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.66064453, "start": 152.67, "word": "you" }, { "confidence": 0.99902344, "end": 152.98999, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.66064453, "start": 152.75, "word": "use" }, { "confidence": 0.9633789, "end": 153.06999, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.66064453, "start": 152.98999, "word": "a" }, { "confidence": 1, "end": 153.47, "punctuated_word": "language", "speaker": 0, "speaker_confidence": 0.66064453, "start": 153.06999, "word": "language" }, { "confidence": 0.77246094, "end": 153.70999, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.66064453, "start": 153.47, "word": "that's" }, { "confidence": 0.99609375, "end": 154.03, "punctuated_word": "strong", "speaker": 0, "speaker_confidence": 0.66064453, "start": 153.70999, "word": "strong" }, { "confidence": 0.9838867, "end": 154.43, "punctuated_word": "typed", "speaker": 0, "speaker_confidence": 0.66064453, "start": 154.03, "word": "typed" }, { "confidence": 0.7050781, "end": 154.67, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.66064453, "start": 154.43, "word": "like" }, { "confidence": 0.9822591, "end": 155.15, "punctuated_word": "TypeScript,", "speaker": 0, "speaker_confidence": 0.66064453, "start": 154.67, "word": "typescript" }, { "confidence": 1, "end": 155.39, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 0.66064453, "start": 155.15, "word": "you'll" }, { "confidence": 1, "end": 155.62999, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.66064453, "start": 155.39, "word": "get" }, { "confidence": 0.9970703, "end": 156.12999, "punctuated_word": "incredible", "speaker": 0, "speaker_confidence": 0.66064453, "start": 155.62999, "word": "incredible" }, { "confidence": 0.9970703, "end": 156.67, "punctuated_word": "developer", "speaker": 0, "speaker_confidence": 0.66064453, "start": 156.19, "word": "developer" }, { "confidence": 0.99902344, "end": 157.06999, "punctuated_word": "tooling", "speaker": 0, "speaker_confidence": 0.66064453, "start": 156.67, "word": "tooling" }, { "confidence": 0.82714844, "end": 157.23, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.66064453, "start": 157.06999, "word": "in" }, { "confidence": 0.97265625, "end": 157.55, "punctuated_word": "Versus", "speaker": 0, "speaker_confidence": 0.66064453, "start": 157.23, "word": "versus" }, { "confidence": 0.8869629, "end": 158.05, "punctuated_word": "Code.", "speaker": 0, "speaker_confidence": 0.66064453, "start": 157.55, "word": "code" }, { "confidence": 0.98706055, "end": 158.60501, "punctuated_word": "You'll", "speaker": 0, "speaker_confidence": 0.66064453, "start": 158.365, "word": "you'll" }, { "confidence": 1, "end": 158.765, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.66064453, "start": 158.60501, "word": "see" }, { "confidence": 1, "end": 158.925, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.66064453, "start": 158.765, "word": "this" }, { "confidence": 1, "end": 159.425, "punctuated_word": "automatically", "speaker": 0, "speaker_confidence": 0.66064453, "start": 158.925, "word": "automatically" }, { "confidence": 1, "end": 159.645, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.66064453, "start": 159.485, "word": "as" }, { "confidence": 0.9794922, "end": 159.88501, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.66064453, "start": 159.645, "word": "you're" }, { "confidence": 0.99658203, "end": 160.285, "punctuated_word": "coding,", "speaker": 0, "speaker_confidence": 0.66064453, "start": 159.88501, "word": "coding" }, { "confidence": 1, "end": 160.445, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.66064453, "start": 160.285, "word": "but" }, { "confidence": 1, "end": 160.52501, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.66064453, "start": 160.445, "word": "you" }, { "confidence": 1, "end": 160.68501, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.6933594, "start": 160.52501, "word": "can" }, { "confidence": 1, "end": 160.845, "punctuated_word": "pull", "speaker": 0, "speaker_confidence": 0.6933594, "start": 160.68501, "word": "pull" }, { "confidence": 1, "end": 161.005, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.6933594, "start": 160.845, "word": "it" }, { "confidence": 1, "end": 161.085, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.6933594, "start": 161.005, "word": "up" }, { "confidence": 1, "end": 161.585, "punctuated_word": "manually", "speaker": 0, "speaker_confidence": 0.6933594, "start": 161.085, "word": "manually" }, { "confidence": 1, "end": 161.88501, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.6933594, "start": 161.645, "word": "with" }, { "confidence": 0.96777344, "end": 162.285, "punctuated_word": "control", "speaker": 0, "speaker_confidence": 0.6933594, "start": 161.88501, "word": "control" }, { "confidence": 0.95703125, "end": 162.60501, "punctuated_word": "space", "speaker": 0, "speaker_confidence": 0.6933594, "start": 162.285, "word": "space" }, { "confidence": 1, "end": 162.765, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.6933594, "start": 162.60501, "word": "as" }, { "confidence": 1, "end": 163.265, "punctuated_word": "well.", "speaker": 0, "speaker_confidence": 0.6933594, "start": 162.765, "word": "well" }, { "confidence": 0.99902344, "end": 163.80501, "punctuated_word": "Code", "speaker": 0, "speaker_confidence": 0.6933594, "start": 163.485, "word": "code" }, { "confidence": 0.98535156, "end": 164.205, "punctuated_word": "completion", "speaker": 0, "speaker_confidence": 0.6933594, "start": 163.80501, "word": "completion" }, { "confidence": 0.66796875, "end": 164.285, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.6933594, "start": 164.205, "word": "is" }, { "confidence": 1, "end": 164.52501, "punctuated_word": "pretty", "speaker": 0, "speaker_confidence": 0.6933594, "start": 164.285, "word": "pretty" }, { "confidence": 1, "end": 164.765, "punctuated_word": "self", "speaker": 0, "speaker_confidence": 0.6933594, "start": 164.52501, "word": "self" }, { "confidence": 0.9970703, "end": 165.265, "punctuated_word": "explanatory,", "speaker": 0, "speaker_confidence": 0.6933594, "start": 164.765, "word": "explanatory" }, { "confidence": 1, "end": 165.565, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.6933594, "start": 165.405, "word": "but" }, { "confidence": 0.9223633, "end": 165.88501, "punctuated_word": "there's", "speaker": 0, "speaker_confidence": 0.6933594, "start": 165.565, "word": "there's" }, { "confidence": 1, "end": 165.96501, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.6933594, "start": 165.88501, "word": "some" }, { "confidence": 1, "end": 166.125, "punctuated_word": "pretty", "speaker": 0, "speaker_confidence": 0.6933594, "start": 165.96501, "word": "pretty" }, { "confidence": 0.99902344, "end": 166.365, "punctuated_word": "cool", "speaker": 0, "speaker_confidence": 0.6933594, "start": 166.125, "word": "cool" }, { "confidence": 0.99902344, "end": 166.60501, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 0.6933594, "start": 166.365, "word": "things" }, { "confidence": 0.9921875, "end": 166.685, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.6933594, "start": 166.60501, "word": "you" }, { "confidence": 0.9970703, "end": 166.845, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.6933594, "start": 166.685, "word": "can" }, { "confidence": 0.9951172, "end": 167.005, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.6933594, "start": 166.845, "word": "do" }, { "confidence": 0.97314453, "end": 167.085, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.6933594, "start": 167.005, "word": "with" }, { "confidence": 0.98291016, "end": 167.585, "punctuated_word": "it.", "speaker": 0, "speaker_confidence": 0.6933594, "start": 167.085, "word": "it" }, { "confidence": 0.982666, "end": 168.21, "punctuated_word": "Let's", "speaker": 0, "speaker_confidence": 0.6933594, "start": 168.05, "word": "let's" }, { "confidence": 0.9921875, "end": 168.37001, "punctuated_word": "say", "speaker": 0, "speaker_confidence": 0.6933594, "start": 168.21, "word": "say" }, { "confidence": 0.96850586, "end": 168.45, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.6933594, "start": 168.37001, "word": "we're" }, { "confidence": 1, "end": 168.69, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.7006836, "start": 168.45, "word": "going" }, { "confidence": 0.99902344, "end": 168.93001, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.7006836, "start": 168.69, "word": "into" }, { "confidence": 1, "end": 169.09, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7006836, "start": 168.93001, "word": "a" }, { "confidence": 1, "end": 169.33, "punctuated_word": "large", "speaker": 0, "speaker_confidence": 0.7006836, "start": 169.09, "word": "large" }, { "confidence": 0.9680176, "end": 169.81, "punctuated_word": "TypeScript", "speaker": 0, "speaker_confidence": 0.7006836, "start": 169.33, "word": "typescript" }, { "confidence": 0.99902344, "end": 170.05, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.7006836, "start": 169.81, "word": "file" }, { "confidence": 1, "end": 170.13, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.7006836, "start": 170.05, "word": "for" }, { "confidence": 0.99902344, "end": 170.29001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7006836, "start": 170.13, "word": "the" }, { "confidence": 0.65771484, "end": 170.53, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 0.7006836, "start": 170.29001, "word": "first" }, { "confidence": 1, "end": 170.77, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.7006836, "start": 170.53, "word": "time" }, { "confidence": 0.82177734, "end": 170.85, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7006836, "start": 170.77, "word": "and" }, { "confidence": 1, "end": 171.01001, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.7006836, "start": 170.85, "word": "we" }, { "confidence": 0.9248047, "end": 171.25, "punctuated_word": "wanna", "speaker": 0, "speaker_confidence": 0.7006836, "start": 171.01001, "word": "wanna" }, { "confidence": 0.9980469, "end": 171.33, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.7006836, "start": 171.25, "word": "see" }, { "confidence": 1, "end": 171.49, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.7006836, "start": 171.33, "word": "all" }, { "confidence": 1, "end": 171.65001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7006836, "start": 171.49, "word": "the" }, { "confidence": 1, "end": 171.97, "punctuated_word": "methods", "speaker": 0, "speaker_confidence": 0.7006836, "start": 171.65001, "word": "methods" }, { "confidence": 1, "end": 172.13, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7006836, "start": 171.97, "word": "and" }, { "confidence": 1, "end": 172.53, "punctuated_word": "classes", "speaker": 0, "speaker_confidence": 0.7006836, "start": 172.13, "word": "classes" }, { "confidence": 1, "end": 172.69, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7006836, "start": 172.53, "word": "that" }, { "confidence": 1, "end": 172.85, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.7006836, "start": 172.69, "word": "are" }, { "confidence": 0.9980469, "end": 173.17, "punctuated_word": "defined", "speaker": 0, "speaker_confidence": 0.7006836, "start": 172.85, "word": "defined" }, { "confidence": 1, "end": 173.33, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7006836, "start": 173.17, "word": "in" }, { "confidence": 1, "end": 173.49, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.7006836, "start": 173.33, "word": "this" }, { "confidence": 0.9592285, "end": 173.99, "punctuated_word": "file.", "speaker": 0, "speaker_confidence": 0.7006836, "start": 173.49, "word": "file" }, { "confidence": 1, "end": 174.13, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.7006836, "start": 174.05, "word": "we" }, { "confidence": 1, "end": 174.29001, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7006836, "start": 174.13, "word": "can" }, { "confidence": 1, "end": 174.37, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.7006836, "start": 174.29001, "word": "go" }, { "confidence": 0.9951172, "end": 174.61, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.7006836, "start": 174.37, "word": "into" }, { "confidence": 1, "end": 174.77, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7006836, "start": 174.61, "word": "the" }, { "confidence": 0.9658203, "end": 175.09, "punctuated_word": "command", "speaker": 0, "speaker_confidence": 0.7006836, "start": 174.77, "word": "command" }, { "confidence": 0.91552734, "end": 175.49, "punctuated_word": "palette,", "speaker": 0, "speaker_confidence": 0.7006836, "start": 175.09, "word": "palette" }, { "confidence": 1, "end": 175.65001, "punctuated_word": "type", "speaker": 0, "speaker_confidence": 0.7006836, "start": 175.49, "word": "type" }, { "confidence": 0.9941406, "end": 175.81, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7006836, "start": 175.65001, "word": "in" }, { "confidence": 0.9941406, "end": 175.97, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7006836, "start": 175.81, "word": "the" }, { "confidence": 0.984375, "end": 176.21, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.7006836, "start": 175.97, "word": "at" }, { "confidence": 0.93188477, "end": 176.71, "punctuated_word": "symbol,", "speaker": 0, "speaker_confidence": 0.7006836, "start": 176.21, "word": "symbol" }, { "confidence": 0.6845703, "end": 176.99501, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.7006836, "start": 176.835, "word": "and" }, { "confidence": 0.9921875, "end": 177.15501, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7006836, "start": 176.99501, "word": "that" }, { "confidence": 0.99902344, "end": 177.235, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.7006836, "start": 177.15501, "word": "will" }, { "confidence": 0.9980469, "end": 177.315, "punctuated_word": "give", "speaker": 0, "speaker_confidence": 0.72314453, "start": 177.235, "word": "give" }, { "confidence": 1, "end": 177.55501, "punctuated_word": "us", "speaker": 0, "speaker_confidence": 0.72314453, "start": 177.315, "word": "us" }, { "confidence": 0.9970703, "end": 177.71501, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.72314453, "start": 177.55501, "word": "all" }, { "confidence": 0.62597656, "end": 177.79501, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.72314453, "start": 177.71501, "word": "of" }, { "confidence": 1, "end": 178.035, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.72314453, "start": 177.79501, "word": "the" }, { "confidence": 0.98535156, "end": 178.535, "punctuated_word": "interfaces,", "speaker": 0, "speaker_confidence": 0.72314453, "start": 178.035, "word": "interfaces" }, { "confidence": 0.9165039, "end": 178.99501, "punctuated_word": "methods,", "speaker": 0, "speaker_confidence": 0.72314453, "start": 178.595, "word": "methods" }, { "confidence": 1, "end": 179.235, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.72314453, "start": 178.99501, "word": "and" }, { "confidence": 0.99902344, "end": 179.71501, "punctuated_word": "properties", "speaker": 0, "speaker_confidence": 0.72314453, "start": 179.235, "word": "properties" }, { "confidence": 0.95703125, "end": 180.115, "punctuated_word": "defined", "speaker": 0, "speaker_confidence": 0.72314453, "start": 179.71501, "word": "defined" }, { "confidence": 1, "end": 180.27501, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.72314453, "start": 180.115, "word": "in" }, { "confidence": 1, "end": 180.515, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.72314453, "start": 180.27501, "word": "this" }, { "confidence": 1, "end": 181.015, "punctuated_word": "file.", "speaker": 0, "speaker_confidence": 0.72314453, "start": 180.515, "word": "file" }, { "confidence": 0.99902344, "end": 181.315, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.72314453, "start": 181.07501, "word": "in" }, { "confidence": 0.99902344, "end": 181.395, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.72314453, "start": 181.315, "word": "a" }, { "confidence": 0.99902344, "end": 181.63501, "punctuated_word": "strong", "speaker": 0, "speaker_confidence": 0.72314453, "start": 181.395, "word": "strong" }, { "confidence": 0.9970703, "end": 181.875, "punctuated_word": "type", "speaker": 0, "speaker_confidence": 0.72314453, "start": 181.63501, "word": "type" }, { "confidence": 0.99902344, "end": 182.27501, "punctuated_word": "language,", "speaker": 0, "speaker_confidence": 0.72314453, "start": 181.875, "word": "language" }, { "confidence": 0.99902344, "end": 182.515, "punctuated_word": "another", "speaker": 0, "speaker_confidence": 0.72314453, "start": 182.27501, "word": "another" }, { "confidence": 1, "end": 182.675, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.72314453, "start": 182.515, "word": "thing" }, { "confidence": 0.99902344, "end": 182.755, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.72314453, "start": 182.675, "word": "you" }, { "confidence": 1, "end": 182.91501, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 0.72314453, "start": 182.755, "word": "might" }, { "confidence": 0.78271484, "end": 183.155, "punctuated_word": "wanna", "speaker": 0, "speaker_confidence": 0.72314453, "start": 182.91501, "word": "wanna" }, { "confidence": 0.9873047, "end": 183.395, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.72314453, "start": 183.155, "word": "do" }, { "confidence": 1, "end": 183.71501, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.72314453, "start": 183.395, "word": "is" }, { "confidence": 0.7895508, "end": 183.955, "punctuated_word": "peak", "speaker": 0, "speaker_confidence": 0.72314453, "start": 183.71501, "word": "peak" }, { "confidence": 1, "end": 184.035, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.72314453, "start": 183.955, "word": "the" }, { "confidence": 1, "end": 184.35501, "punctuated_word": "type", "speaker": 0, "speaker_confidence": 0.72314453, "start": 184.035, "word": "type" }, { "confidence": 1, "end": 184.85501, "punctuated_word": "definitions", "speaker": 0, "speaker_confidence": 0.72314453, "start": 184.35501, "word": "definitions" }, { "confidence": 1, "end": 185.155, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.72314453, "start": 184.99501, "word": "for" }, { "confidence": 0.97509766, "end": 185.235, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.41992188, "start": 185.155, "word": "a" }, { "confidence": 1, "end": 185.63501, "punctuated_word": "given", "speaker": 0, "speaker_confidence": 0.41992188, "start": 185.235, "word": "given" }, { "confidence": 1, "end": 186.13501, "punctuated_word": "interface.", "speaker": 0, "speaker_confidence": 0.41992188, "start": 185.63501, "word": "interface" }, { "confidence": 0.9301758, "end": 186.95, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.41992188, "start": 186.79, "word": "it" }, { "confidence": 1, "end": 187.11, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.41992188, "start": 186.95, "word": "can" }, { "confidence": 1, "end": 187.18999, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.67626953, "start": 187.11, "word": "be" }, { "confidence": 1, "end": 187.43, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 0.67626953, "start": 187.18999, "word": "really" }, { "confidence": 0.9482422, "end": 187.90999, "punctuated_word": "disruptive", "speaker": 0, "speaker_confidence": 0.67626953, "start": 187.43, "word": "disruptive" }, { "confidence": 0.9863281, "end": 187.98999, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.67626953, "start": 187.90999, "word": "to" }, { "confidence": 1, "end": 188.23, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.67626953, "start": 187.98999, "word": "have" }, { "confidence": 1, "end": 188.62999, "punctuated_word": "multiple", "speaker": 0, "speaker_confidence": 0.67626953, "start": 188.23, "word": "multiple" }, { "confidence": 1, "end": 188.95, "punctuated_word": "files", "speaker": 0, "speaker_confidence": 0.67626953, "start": 188.62999, "word": "files" }, { "confidence": 0.9980469, "end": 189.18999, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.67626953, "start": 188.95, "word": "open" }, { "confidence": 0.9980469, "end": 189.34999, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.67626953, "start": 189.18999, "word": "at" }, { "confidence": 1, "end": 189.67, "punctuated_word": "once", "speaker": 0, "speaker_confidence": 0.67626953, "start": 189.34999, "word": "once" }, { "confidence": 0.9741211, "end": 189.98999, "punctuated_word": "looking", "speaker": 0, "speaker_confidence": 0.67626953, "start": 189.67, "word": "looking" }, { "confidence": 1, "end": 190.23, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.67626953, "start": 189.98999, "word": "for" }, { "confidence": 0.97998047, "end": 190.54999, "punctuated_word": "different", "speaker": 0, "speaker_confidence": 0.67626953, "start": 190.23, "word": "different" }, { "confidence": 0.99902344, "end": 190.79, "punctuated_word": "type", "speaker": 0, "speaker_confidence": 0.67626953, "start": 190.54999, "word": "type" }, { "confidence": 0.88916016, "end": 191.29, "punctuated_word": "definitions,", "speaker": 0, "speaker_confidence": 0.67626953, "start": 190.79, "word": "definitions" }, { "confidence": 1, "end": 191.75, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.67626953, "start": 191.59, "word": "but" }, { "confidence": 1, "end": 191.90999, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.67626953, "start": 191.75, "word": "you" }, { "confidence": 1, "end": 192.15, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.67626953, "start": 191.90999, "word": "can" }, { "confidence": 1, "end": 192.46999, "punctuated_word": "simply", "speaker": 0, "speaker_confidence": 0.67626953, "start": 192.15, "word": "simply" }, { "confidence": 1, "end": 192.62999, "punctuated_word": "click", "speaker": 0, "speaker_confidence": 0.67626953, "start": 192.46999, "word": "click" }, { "confidence": 1, "end": 192.79, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.67626953, "start": 192.62999, "word": "on" }, { "confidence": 0.99902344, "end": 192.95, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.67626953, "start": 192.79, "word": "an" }, { "confidence": 1, "end": 193.34999, "punctuated_word": "interface", "speaker": 0, "speaker_confidence": 0.67626953, "start": 192.95, "word": "interface" }, { "confidence": 0.9970703, "end": 193.51, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.67626953, "start": 193.34999, "word": "and" }, { "confidence": 0.89453125, "end": 193.82999, "punctuated_word": "say", "speaker": 0, "speaker_confidence": 0.67626953, "start": 193.51, "word": "say" }, { "confidence": 0.86621094, "end": 194.06999, "punctuated_word": "peak", "speaker": 0, "speaker_confidence": 0.67626953, "start": 193.82999, "word": "peak" }, { "confidence": 0.9941406, "end": 194.56999, "punctuated_word": "definition", "speaker": 0, "speaker_confidence": 0.67626953, "start": 194.06999, "word": "definition" }, { "confidence": 0.73095703, "end": 195.095, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.67626953, "start": 194.935, "word": "and" }, { "confidence": 0.90625, "end": 195.25499, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.67626953, "start": 195.095, "word": "it" }, { "confidence": 0.9980469, "end": 195.33499, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.67626953, "start": 195.25499, "word": "will" }, { "confidence": 1, "end": 195.575, "punctuated_word": "find", "speaker": 0, "speaker_confidence": 0.67626953, "start": 195.33499, "word": "find" }, { "confidence": 1, "end": 195.815, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.67626953, "start": 195.575, "word": "that" }, { "confidence": 1, "end": 195.89499, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.24169922, "start": 195.815, "word": "in" }, { "confidence": 1, "end": 196.055, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.24169922, "start": 195.89499, "word": "your" }, { "confidence": 1, "end": 196.53499, "punctuated_word": "project", "speaker": 0, "speaker_confidence": 0.24169922, "start": 196.055, "word": "project" }, { "confidence": 0.9243164, "end": 196.775, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 0.24169922, "start": 196.53499, "word": "even" }, { "confidence": 0.99902344, "end": 196.855, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.24169922, "start": 196.775, "word": "if" }, { "confidence": 0.9995117, "end": 197.015, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.5673828, "start": 196.855, "word": "it's" }, { "confidence": 1, "end": 197.33499, "punctuated_word": "buried", "speaker": 0, "speaker_confidence": 0.5673828, "start": 197.015, "word": "buried" }, { "confidence": 1, "end": 197.415, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.5673828, "start": 197.33499, "word": "in" }, { "confidence": 1, "end": 197.575, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.5673828, "start": 197.415, "word": "your" }, { "confidence": 0.93408203, "end": 197.815, "punctuated_word": "node", "speaker": 0, "speaker_confidence": 0.5673828, "start": 197.575, "word": "node" }, { "confidence": 0.99902344, "end": 198.315, "punctuated_word": "modules", "speaker": 0, "speaker_confidence": 0.5673828, "start": 197.815, "word": "modules" }, { "confidence": 0.9892578, "end": 198.69499, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.5673828, "start": 198.455, "word": "and" }, { "confidence": 1, "end": 198.935, "punctuated_word": "show", "speaker": 0, "speaker_confidence": 0.5673828, "start": 198.69499, "word": "show" }, { "confidence": 1, "end": 199.015, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.5673828, "start": 198.935, "word": "you" }, { "confidence": 1, "end": 199.17499, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5673828, "start": 199.015, "word": "the" }, { "confidence": 1, "end": 199.655, "punctuated_word": "properties", "speaker": 0, "speaker_confidence": 0.5673828, "start": 199.17499, "word": "properties" }, { "confidence": 0.9970703, "end": 199.815, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.5673828, "start": 199.655, "word": "on" }, { "confidence": 0.9980469, "end": 199.97499, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.5673828, "start": 199.815, "word": "that" }, { "confidence": 1, "end": 200.47499, "punctuated_word": "interface.", "speaker": 0, "speaker_confidence": 0.40966797, "start": 199.97499, "word": "interface" }, { "confidence": 0.9980469, "end": 201.575, "punctuated_word": "On", "speaker": 0, "speaker_confidence": 0.40966797, "start": 201.33499, "word": "on" }, { "confidence": 1, "end": 201.735, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.40966797, "start": 201.575, "word": "the" }, { "confidence": 1, "end": 201.89499, "punctuated_word": "flip", "speaker": 0, "speaker_confidence": 0.40966797, "start": 201.735, "word": "flip" }, { "confidence": 0.94921875, "end": 202.055, "punctuated_word": "side", "speaker": 0, "speaker_confidence": 0.40966797, "start": 201.89499, "word": "side" }, { "confidence": 0.99902344, "end": 202.215, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.40966797, "start": 202.055, "word": "of" }, { "confidence": 0.9970703, "end": 202.375, "punctuated_word": "this,", "speaker": 0, "speaker_confidence": 0.40966797, "start": 202.215, "word": "this" }, { "confidence": 0.9770508, "end": 202.53, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.40966797, "start": 202.375, "word": "you" }, { "confidence": 0.61816406, "end": 202.77, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.40966797, "start": 202.61, "word": "be" }, { "confidence": 1, "end": 202.93, "punctuated_word": "looking", "speaker": 0, "speaker_confidence": 0.40966797, "start": 202.77, "word": "looking" }, { "confidence": 1, "end": 203.01, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.67333984, "start": 202.93, "word": "at" }, { "confidence": 0.9873047, "end": 203.33, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.67333984, "start": 203.01, "word": "an" }, { "confidence": 1, "end": 203.81, "punctuated_word": "interface", "speaker": 0, "speaker_confidence": 0.67333984, "start": 203.33, "word": "interface" }, { "confidence": 0.99902344, "end": 204.05, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.67333984, "start": 203.81, "word": "and" }, { "confidence": 0.99902344, "end": 204.17, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.67333984, "start": 204.05, "word": "want" }, { "confidence": 1, "end": 204.29, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.67333984, "start": 204.17, "word": "to" }, { "confidence": 1, "end": 204.53, "punctuated_word": "know", "speaker": 0, "speaker_confidence": 0.67333984, "start": 204.29, "word": "know" }, { "confidence": 1, "end": 204.61, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.67333984, "start": 204.53, "word": "how" }, { "confidence": 1, "end": 204.85, "punctuated_word": "many", "speaker": 0, "speaker_confidence": 0.67333984, "start": 204.61, "word": "many" }, { "confidence": 1, "end": 205.33, "punctuated_word": "references", "speaker": 0, "speaker_confidence": 0.67333984, "start": 204.85, "word": "references" }, { "confidence": 0.9980469, "end": 205.49, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.67333984, "start": 205.33, "word": "you" }, { "confidence": 1, "end": 205.65, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.67333984, "start": 205.49, "word": "have" }, { "confidence": 1, "end": 205.73, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.67333984, "start": 205.65, "word": "to" }, { "confidence": 1, "end": 205.97, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.67333984, "start": 205.73, "word": "it" }, { "confidence": 1, "end": 206.13, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.67333984, "start": 205.97, "word": "in" }, { "confidence": 1, "end": 206.20999, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.67333984, "start": 206.13, "word": "a" }, { "confidence": 0.99609375, "end": 206.70999, "punctuated_word": "project.", "speaker": 0, "speaker_confidence": 0.67333984, "start": 206.20999, "word": "project" }, { "confidence": 0.9980469, "end": 207.41, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.67333984, "start": 207.25, "word": "if" }, { "confidence": 1, "end": 207.65, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.67333984, "start": 207.41, "word": "you" }, { "confidence": 1, "end": 207.81, "punctuated_word": "right", "speaker": 0, "speaker_confidence": 0.67333984, "start": 207.65, "word": "right" }, { "confidence": 1, "end": 208.05, "punctuated_word": "click", "speaker": 0, "speaker_confidence": 0.67333984, "start": 207.81, "word": "click" }, { "confidence": 1, "end": 208.29, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.67333984, "start": 208.05, "word": "and" }, { "confidence": 1, "end": 208.45, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.67333984, "start": 208.29, "word": "go" }, { "confidence": 0.99902344, "end": 208.69, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.67333984, "start": 208.45, "word": "to" }, { "confidence": 0.9980469, "end": 208.93, "punctuated_word": "find", "speaker": 0, "speaker_confidence": 0.67333984, "start": 208.69, "word": "find" }, { "confidence": 0.99902344, "end": 209.43, "punctuated_word": "references,", "speaker": 0, "speaker_confidence": 0.67333984, "start": 208.93, "word": "references" }, { "confidence": 0.9980469, "end": 209.81, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.67333984, "start": 209.65, "word": "it" }, { "confidence": 0.99902344, "end": 209.97, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.67333984, "start": 209.81, "word": "will" }, { "confidence": 1, "end": 210.05, "punctuated_word": "show", "speaker": 0, "speaker_confidence": 0.80908203, "start": 209.97, "word": "show" }, { "confidence": 0.99902344, "end": 210.29, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.80908203, "start": 210.05, "word": "you" }, { "confidence": 0.9980469, "end": 210.77, "punctuated_word": "exactly", "speaker": 0, "speaker_confidence": 0.80908203, "start": 210.29, "word": "exactly" }, { "confidence": 0.5151367, "end": 210.895, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.80908203, "start": 210.77, "word": "which" }, { "confidence": 0.99902344, "end": 211.375, "punctuated_word": "files", "speaker": 0, "speaker_confidence": 0.80908203, "start": 211.13501, "word": "files" }, { "confidence": 1, "end": 211.695, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.80908203, "start": 211.375, "word": "are" }, { "confidence": 0.99609375, "end": 212.175, "punctuated_word": "referencing", "speaker": 0, "speaker_confidence": 0.80908203, "start": 211.695, "word": "referencing" }, { "confidence": 0.99902344, "end": 212.335, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.80908203, "start": 212.175, "word": "this" }, { "confidence": 1, "end": 212.735, "punctuated_word": "interface", "speaker": 0, "speaker_confidence": 0.80908203, "start": 212.335, "word": "interface" }, { "confidence": 0.99902344, "end": 212.895, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.80908203, "start": 212.735, "word": "in" }, { "confidence": 1, "end": 213.13501, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.80908203, "start": 212.895, "word": "your" }, { "confidence": 0.99365234, "end": 213.63501, "punctuated_word": "project.", "speaker": 0, "speaker_confidence": 0.80908203, "start": 213.13501, "word": "project" }, { "confidence": 1, "end": 214.255, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.80908203, "start": 214.015, "word": "but" }, { "confidence": 0.9914551, "end": 214.41501, "punctuated_word": "let's", "speaker": 0, "speaker_confidence": 0.80908203, "start": 214.255, "word": "let's" }, { "confidence": 0.99902344, "end": 214.575, "punctuated_word": "say", "speaker": 0, "speaker_confidence": 0.80908203, "start": 214.41501, "word": "say" }, { "confidence": 0.9758301, "end": 214.735, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.80908203, "start": 214.575, "word": "i'm" }, { "confidence": 1, "end": 214.975, "punctuated_word": "working", "speaker": 0, "speaker_confidence": 0.80908203, "start": 214.735, "word": "working" }, { "confidence": 0.99902344, "end": 215.13501, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.80908203, "start": 214.975, "word": "with" }, { "confidence": 0.9980469, "end": 215.295, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.80908203, "start": 215.13501, "word": "an" }, { "confidence": 1, "end": 215.695, "punctuated_word": "interface", "speaker": 0, "speaker_confidence": 0.80908203, "start": 215.295, "word": "interface" }, { "confidence": 0.9428711, "end": 216.015, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.80908203, "start": 215.695, "word": "and" }, { "confidence": 0.9921875, "end": 216.095, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.80908203, "start": 216.015, "word": "i" }, { "confidence": 0.5336914, "end": 216.41501, "punctuated_word": "decide", "speaker": 0, "speaker_confidence": 0.80908203, "start": 216.095, "word": "decide" }, { "confidence": 0.9892578, "end": 216.575, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.80908203, "start": 216.41501, "word": "i" }, { "confidence": 1, "end": 216.735, "punctuated_word": "don't", "speaker": 0, "speaker_confidence": 0.80908203, "start": 216.575, "word": "don't" }, { "confidence": 0.9980469, "end": 216.975, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.80908203, "start": 216.735, "word": "like" }, { "confidence": 0.9980469, "end": 217.05501, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.80908203, "start": 216.975, "word": "the" }, { "confidence": 0.99902344, "end": 217.295, "punctuated_word": "name", "speaker": 0, "speaker_confidence": 0.80908203, "start": 217.05501, "word": "name" }, { "confidence": 0.9980469, "end": 217.375, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.80908203, "start": 217.295, "word": "of" }, { "confidence": 0.9255371, "end": 217.77501, "punctuated_word": "it.", "speaker": 0, "speaker_confidence": 0.80908203, "start": 217.375, "word": "it" }, { "confidence": 0.9980469, "end": 217.935, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.80908203, "start": 217.77501, "word": "i" }, { "confidence": 0.99902344, "end": 218.095, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.80908203, "start": 217.935, "word": "can" }, { "confidence": 0.99902344, "end": 218.41501, "punctuated_word": "highlight", "speaker": 0, "speaker_confidence": 0.80908203, "start": 218.095, "word": "highlight" }, { "confidence": 0.75683594, "end": 218.6, "punctuated_word": "it,", "speaker": 0, "speaker_confidence": 0.80908203, "start": 218.41501, "word": "it" }, { "confidence": 0.640625, "end": 218.84001, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.80908203, "start": 218.68001, "word": "then" }, { "confidence": 0.99316406, "end": 219, "punctuated_word": "right", "speaker": 0, "speaker_confidence": 0.80908203, "start": 218.84001, "word": "right" }, { "confidence": 1, "end": 219.48001, "punctuated_word": "click", "speaker": 0, "speaker_confidence": 0.80908203, "start": 219, "word": "click" }, { "confidence": 0.9873047, "end": 219.64, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.80908203, "start": 219.48001, "word": "and" }, { "confidence": 0.7817383, "end": 219.96, "punctuated_word": "say", "speaker": 0, "speaker_confidence": 0.80908203, "start": 219.64, "word": "say" }, { "confidence": 0.9506836, "end": 220.28, "punctuated_word": "rename", "speaker": 0, "speaker_confidence": 0.80908203, "start": 219.96, "word": "rename" }, { "confidence": 0.99902344, "end": 220.68001, "punctuated_word": "symbol", "speaker": 0, "speaker_confidence": 0.80908203, "start": 220.28, "word": "symbol" }, { "confidence": 0.9760742, "end": 220.92001, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.80908203, "start": 220.68001, "word": "or" }, { "confidence": 1, "end": 221.08, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.80908203, "start": 220.92001, "word": "just" }, { "confidence": 0.9970703, "end": 221.32, "punctuated_word": "hit", "speaker": 0, "speaker_confidence": 0.80908203, "start": 221.08, "word": "hit" }, { "confidence": 0.7192383, "end": 221.56001, "punctuated_word": "f", "speaker": 0, "speaker_confidence": 0.80908203, "start": 221.32, "word": "f" }, { "confidence": 0.51708984, "end": 221.88, "punctuated_word": "2", "speaker": 0, "speaker_confidence": 0.80908203, "start": 221.56001, "word": "2" }, { "confidence": 0.97802734, "end": 222.12001, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.80908203, "start": 221.88, "word": "and" }, { "confidence": 1, "end": 222.28, "punctuated_word": "give", "speaker": 0, "speaker_confidence": 0.80908203, "start": 222.12001, "word": "give" }, { "confidence": 1, "end": 222.44, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.80908203, "start": 222.28, "word": "it" }, { "confidence": 1, "end": 222.52, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.80908203, "start": 222.44, "word": "a" }, { "confidence": 1, "end": 222.76001, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.80908203, "start": 222.52, "word": "new" }, { "confidence": 0.98999023, "end": 223.26001, "punctuated_word": "name.", "speaker": 0, "speaker_confidence": 0.80908203, "start": 222.76001, "word": "name" }, { "confidence": 1, "end": 223.64, "punctuated_word": "That", "speaker": 0, "speaker_confidence": 0.80908203, "start": 223.32, "word": "that" }, { "confidence": 0.97314453, "end": 223.8, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.80908203, "start": 223.64, "word": "not" }, { "confidence": 1, "end": 224.12001, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.80908203, "start": 223.8, "word": "only" }, { "confidence": 1, "end": 224.44, "punctuated_word": "updates", "speaker": 0, "speaker_confidence": 0.80908203, "start": 224.12001, "word": "updates" }, { "confidence": 1, "end": 224.52, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.80908203, "start": 224.44, "word": "the" }, { "confidence": 1, "end": 224.76001, "punctuated_word": "current", "speaker": 0, "speaker_confidence": 0.80908203, "start": 224.52, "word": "current" }, { "confidence": 1, "end": 225.08, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.80908203, "start": 224.76001, "word": "file" }, { "confidence": 0.5961914, "end": 225.32, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.80908203, "start": 225.08, "word": "but" }, { "confidence": 0.9892578, "end": 225.72, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.80908203, "start": 225.32, "word": "also" }, { "confidence": 0.9980469, "end": 225.96, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 0.80908203, "start": 225.72, "word": "every" }, { "confidence": 1, "end": 226.20001, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.80908203, "start": 225.96, "word": "other" }, { "confidence": 1, "end": 226.36, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.80908203, "start": 226.20001, "word": "file" }, { "confidence": 0.99609375, "end": 226.52, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.80908203, "start": 226.36, "word": "in" }, { "confidence": 0.9980469, "end": 226.6, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.80908203, "start": 226.52, "word": "the" }, { "confidence": 1, "end": 227.08, "punctuated_word": "project", "speaker": 0, "speaker_confidence": 0.80908203, "start": 226.6, "word": "project" }, { "confidence": 0.99902344, "end": 227.24, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.80908203, "start": 227.08, "word": "with" }, { "confidence": 0.9951172, "end": 227.48001, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.80908203, "start": 227.24, "word": "that" }, { "confidence": 0.8977051, "end": 227.98001, "punctuated_word": "reference.", "speaker": 0, "speaker_confidence": 0.80908203, "start": 227.48001, "word": "reference" }, { "confidence": 0.90527344, "end": 228.265, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.80908203, "start": 228.185, "word": "and" }, { "confidence": 0.99902344, "end": 228.425, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.80908203, "start": 228.265, "word": "that's" }, { "confidence": 1, "end": 228.50499, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.80908203, "start": 228.425, "word": "a" }, { "confidence": 1, "end": 228.58499, "punctuated_word": "lot", "speaker": 0, "speaker_confidence": 0.80908203, "start": 228.50499, "word": "lot" }, { "confidence": 1, "end": 228.985, "punctuated_word": "safer", "speaker": 0, "speaker_confidence": 0.71240234, "start": 228.58499, "word": "safer" }, { "confidence": 1, "end": 229.22499, "punctuated_word": "than", "speaker": 0, "speaker_confidence": 0.71240234, "start": 228.985, "word": "than" }, { "confidence": 0.99902344, "end": 229.545, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.71240234, "start": 229.22499, "word": "using" }, { "confidence": 1, "end": 229.705, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.71240234, "start": 229.545, "word": "just" }, { "confidence": 1, "end": 229.94499, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.71240234, "start": 229.705, "word": "a" }, { "confidence": 1, "end": 230.425, "punctuated_word": "regular", "speaker": 0, "speaker_confidence": 0.71240234, "start": 229.94499, "word": "regular" }, { "confidence": 0.9970703, "end": 230.665, "punctuated_word": "find", "speaker": 0, "speaker_confidence": 0.71240234, "start": 230.425, "word": "find" }, { "confidence": 1, "end": 230.825, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.71240234, "start": 230.665, "word": "and" }, { "confidence": 1, "end": 231.325, "punctuated_word": "replace", "speaker": 0, "speaker_confidence": 0.71240234, "start": 230.825, "word": "replace" }, { "confidence": 0.97802734, "end": 231.705, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.71240234, "start": 231.385, "word": "because" }, { "confidence": 1, "end": 231.86499, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.71240234, "start": 231.705, "word": "it's" }, { "confidence": 1, "end": 232.105, "punctuated_word": "looking", "speaker": 0, "speaker_confidence": 0.71240234, "start": 231.86499, "word": "looking" }, { "confidence": 1, "end": 232.265, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.71240234, "start": 232.105, "word": "at" }, { "confidence": 0.99902344, "end": 232.345, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.71240234, "start": 232.265, "word": "the" }, { "confidence": 1, "end": 232.745, "punctuated_word": "actual", "speaker": 0, "speaker_confidence": 0.71240234, "start": 232.345, "word": "actual" }, { "confidence": 1, "end": 232.985, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.71240234, "start": 232.745, "word": "code" }, { "confidence": 1, "end": 233.485, "punctuated_word": "reference", "speaker": 0, "speaker_confidence": 0.71240234, "start": 232.985, "word": "reference" }, { "confidence": 0.9980469, "end": 233.705, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.71240234, "start": 233.545, "word": "and" }, { "confidence": 1, "end": 233.94499, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.71240234, "start": 233.705, "word": "not" }, { "confidence": 1, "end": 234.105, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.71240234, "start": 233.94499, "word": "the" }, { "confidence": 1, "end": 234.50499, "punctuated_word": "text", "speaker": 0, "speaker_confidence": 0.71240234, "start": 234.105, "word": "text" }, { "confidence": 0.83862305, "end": 234.985, "punctuated_word": "itself,", "speaker": 0, "speaker_confidence": 0.71240234, "start": 234.50499, "word": "itself" }, { "confidence": 0.99902344, "end": 235.22499, "punctuated_word": "yet", "speaker": 0, "speaker_confidence": 0.71240234, "start": 234.985, "word": "yet" }, { "confidence": 0.9941406, "end": 235.545, "punctuated_word": "another", "speaker": 0, "speaker_confidence": 0.71240234, "start": 235.22499, "word": "another" }, { "confidence": 1, "end": 235.625, "punctuated_word": "good", "speaker": 0, "speaker_confidence": 0.71240234, "start": 235.545, "word": "good" }, { "confidence": 1, "end": 236.025, "punctuated_word": "reason", "speaker": 0, "speaker_confidence": 0.71240234, "start": 235.625, "word": "reason" }, { "confidence": 1, "end": 236.265, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.71240234, "start": 236.025, "word": "to" }, { "confidence": 1, "end": 236.58499, "punctuated_word": "strong", "speaker": 0, "speaker_confidence": 0.71240234, "start": 236.265, "word": "strong" }, { "confidence": 0.99902344, "end": 236.825, "punctuated_word": "type", "speaker": 0, "speaker_confidence": 0.71240234, "start": 236.58499, "word": "type" }, { "confidence": 1, "end": 236.985, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.71240234, "start": 236.825, "word": "your" }, { "confidence": 1, "end": 237.485, "punctuated_word": "code.", "speaker": 0, "speaker_confidence": 0.71240234, "start": 236.985, "word": "code" }, { "confidence": 0.9560547, "end": 237.91, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.7104492, "start": 237.75, "word": "now" }, { "confidence": 0.93847656, "end": 238.06999, "punctuated_word": "while", "speaker": 0, "speaker_confidence": 0.7104492, "start": 237.91, "word": "while" }, { "confidence": 0.99902344, "end": 238.15, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.7104492, "start": 238.06999, "word": "we're" }, { "confidence": 1, "end": 238.31, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.7104492, "start": 238.15, "word": "on" }, { "confidence": 1, "end": 238.39, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7104492, "start": 238.31, "word": "the" }, { "confidence": 1, "end": 238.70999, "punctuated_word": "topic", "speaker": 0, "speaker_confidence": 0.7104492, "start": 238.39, "word": "topic" }, { "confidence": 1, "end": 238.95, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7104492, "start": 238.70999, "word": "of" }, { "confidence": 0.9995117, "end": 239.34999, "punctuated_word": "types,", "speaker": 0, "speaker_confidence": 0.7104492, "start": 238.95, "word": "types" }, { "confidence": 1, "end": 239.51, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.7104492, "start": 239.34999, "word": "i" }, { "confidence": 1, "end": 239.75, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.7104492, "start": 239.51, "word": "want" }, { "confidence": 1, "end": 239.91, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7104492, "start": 239.75, "word": "to" }, { "confidence": 1, "end": 240.06999, "punctuated_word": "show", "speaker": 0, "speaker_confidence": 0.7104492, "start": 239.91, "word": "show" }, { "confidence": 1, "end": 240.23, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7104492, "start": 240.06999, "word": "you" }, { "confidence": 1, "end": 240.31, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.7104492, "start": 240.23, "word": "this" }, { "confidence": 1, "end": 240.55, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 0.7104492, "start": 240.31, "word": "really" }, { "confidence": 1, "end": 240.79, "punctuated_word": "cool", "speaker": 0, "speaker_confidence": 0.7104492, "start": 240.55, "word": "cool" }, { "confidence": 0.9970703, "end": 241.19, "punctuated_word": "extension", "speaker": 0, "speaker_confidence": 0.7104492, "start": 240.79, "word": "extension" }, { "confidence": 1, "end": 241.51, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 0.7104492, "start": 241.19, "word": "called" }, { "confidence": 0.64160156, "end": 241.91, "punctuated_word": "paste", "speaker": 0, "speaker_confidence": 0.7104492, "start": 241.51, "word": "paste" }, { "confidence": 0.7475586, "end": 242.31, "punctuated_word": "JSON", "speaker": 0, "speaker_confidence": 0.7104492, "start": 241.91, "word": "json" }, { "confidence": 0.89501953, "end": 242.47, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.7104492, "start": 242.31, "word": "as" }, { "confidence": 0.94628906, "end": 242.97, "punctuated_word": "code.", "speaker": 0, "speaker_confidence": 0.7104492, "start": 242.47, "word": "code" }, { "confidence": 0.9873047, "end": 244.06999, "punctuated_word": "Almost", "speaker": 0, "speaker_confidence": 0.7104492, "start": 243.75, "word": "almost" }, { "confidence": 0.99902344, "end": 244.31, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.7104492, "start": 244.06999, "word": "all" }, { "confidence": 0.99902344, "end": 244.55, "punctuated_word": "apps", "speaker": 0, "speaker_confidence": 0.7104492, "start": 244.31, "word": "apps" }, { "confidence": 0.9980469, "end": 244.79, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.7104492, "start": 244.55, "word": "make" }, { "confidence": 1, "end": 245.11, "punctuated_word": "calls", "speaker": 0, "speaker_confidence": 0.7104492, "start": 244.79, "word": "calls" }, { "confidence": 1, "end": 245.34999, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7104492, "start": 245.11, "word": "to" }, { "confidence": 0.97509766, "end": 245.75, "punctuated_word": "APIs", "speaker": 0, "speaker_confidence": 0.7104492, "start": 245.34999, "word": "apis" }, { "confidence": 1, "end": 245.91, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7104492, "start": 245.75, "word": "that" }, { "confidence": 0.9941406, "end": 246.31, "punctuated_word": "return", "speaker": 0, "speaker_confidence": 0.7104492, "start": 245.91, "word": "return" }, { "confidence": 0.9741211, "end": 246.81, "punctuated_word": "JSON,", "speaker": 0, "speaker_confidence": 0.7104492, "start": 246.31, "word": "json" }, { "confidence": 0.90283203, "end": 247.125, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.7104492, "start": 246.965, "word": "but" }, { "confidence": 0.99902344, "end": 247.36499, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7104492, "start": 247.125, "word": "you" }, { "confidence": 1, "end": 247.44499, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 0.7104492, "start": 247.36499, "word": "might" }, { "confidence": 1, "end": 247.525, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.80371094, "start": 247.44499, "word": "not" }, { "confidence": 1, "end": 247.685, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.80371094, "start": 247.525, "word": "have" }, { "confidence": 0.9980469, "end": 247.845, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.80371094, "start": 247.685, "word": "an" }, { "confidence": 1, "end": 248.08499, "punctuated_word": "easy", "speaker": 0, "speaker_confidence": 0.80371094, "start": 247.845, "word": "easy" }, { "confidence": 1, "end": 248.245, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 0.80371094, "start": 248.08499, "word": "way" }, { "confidence": 1, "end": 248.405, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.80371094, "start": 248.245, "word": "to" }, { "confidence": 1, "end": 248.805, "punctuated_word": "actually", "speaker": 0, "speaker_confidence": 0.80371094, "start": 248.405, "word": "actually" }, { "confidence": 0.9482422, "end": 249.125, "punctuated_word": "strong", "speaker": 0, "speaker_confidence": 0.80371094, "start": 248.805, "word": "strong" }, { "confidence": 0.9970703, "end": 249.44499, "punctuated_word": "type", "speaker": 0, "speaker_confidence": 0.80371094, "start": 249.125, "word": "type" }, { "confidence": 1, "end": 249.605, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.80371094, "start": 249.44499, "word": "this" }, { "confidence": 1, "end": 250.08499, "punctuated_word": "response", "speaker": 0, "speaker_confidence": 0.80371094, "start": 249.605, "word": "response" }, { "confidence": 1, "end": 250.165, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.80371094, "start": 250.08499, "word": "in" }, { "confidence": 1, "end": 250.405, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.80371094, "start": 250.165, "word": "your" }, { "confidence": 1, "end": 250.905, "punctuated_word": "project.", "speaker": 0, "speaker_confidence": 0.80371094, "start": 250.405, "word": "project" }, { "confidence": 1, "end": 251.685, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.80371094, "start": 251.525, "word": "i'm" }, { "confidence": 1, "end": 251.845, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.80371094, "start": 251.685, "word": "in" }, { "confidence": 0.9902344, "end": 252.00499, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.80371094, "start": 251.845, "word": "the" }, { "confidence": 0.9980469, "end": 252.405, "punctuated_word": "Twitter", "speaker": 0, "speaker_confidence": 0.80371094, "start": 252.00499, "word": "twitter" }, { "confidence": 0.99902344, "end": 252.805, "punctuated_word": "API", "speaker": 0, "speaker_confidence": 0.80371094, "start": 252.405, "word": "api" }, { "confidence": 0.99902344, "end": 252.965, "punctuated_word": "right", "speaker": 0, "speaker_confidence": 0.80371094, "start": 252.805, "word": "right" }, { "confidence": 0.8696289, "end": 253.125, "punctuated_word": "now,", "speaker": 0, "speaker_confidence": 0.80371094, "start": 252.965, "word": "now" }, { "confidence": 1, "end": 253.285, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.80371094, "start": 253.125, "word": "and" }, { "confidence": 1, "end": 253.44499, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.80371094, "start": 253.285, "word": "i'm" }, { "confidence": 1, "end": 253.605, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.80371094, "start": 253.44499, "word": "just" }, { "confidence": 1, "end": 253.845, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.80371094, "start": 253.605, "word": "going" }, { "confidence": 0.99902344, "end": 254.08499, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.80371094, "start": 253.845, "word": "to" }, { "confidence": 1, "end": 254.325, "punctuated_word": "copy", "speaker": 0, "speaker_confidence": 0.80371094, "start": 254.08499, "word": "copy" }, { "confidence": 0.99902344, "end": 254.485, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.80371094, "start": 254.325, "word": "and" }, { "confidence": 1, "end": 254.805, "punctuated_word": "paste", "speaker": 0, "speaker_confidence": 0.80371094, "start": 254.485, "word": "paste" }, { "confidence": 1, "end": 254.965, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.80371094, "start": 254.805, "word": "this" }, { "confidence": 1, "end": 255.465, "punctuated_word": "example", "speaker": 0, "speaker_confidence": 0.80371094, "start": 254.965, "word": "example" }, { "confidence": 0.99902344, "end": 256.025, "punctuated_word": "response", "speaker": 0, "speaker_confidence": 0.80371094, "start": 255.525, "word": "response" }, { "confidence": 1, "end": 256.32498, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.80371094, "start": 256.085, "word": "in" }, { "confidence": 0.95947266, "end": 256.82498, "punctuated_word": "JSON", "speaker": 0, "speaker_confidence": 0.80371094, "start": 256.32498, "word": "json" }, { "confidence": 0.9758301, "end": 257.43997, "punctuated_word": "format.", "speaker": 0, "speaker_confidence": 0.80371094, "start": 256.93997, "word": "format" }, { "confidence": 0.99902344, "end": 258.13998, "punctuated_word": "I'll", "speaker": 0, "speaker_confidence": 0.80371094, "start": 257.97998, "word": "i'll" }, { "confidence": 1, "end": 258.21997, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.80371094, "start": 258.13998, "word": "go" }, { "confidence": 1, "end": 258.46, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 0.80371094, "start": 258.21997, "word": "ahead" }, { "confidence": 0.99902344, "end": 258.53998, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.80371094, "start": 258.46, "word": "and" }, { "confidence": 0.99902344, "end": 258.86, "punctuated_word": "paste", "speaker": 0, "speaker_confidence": 0.80371094, "start": 258.53998, "word": "paste" }, { "confidence": 0.99902344, "end": 259.09998, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.80371094, "start": 258.86, "word": "the" }, { "confidence": 0.9589844, "end": 259.5, "punctuated_word": "JSON", "speaker": 0, "speaker_confidence": 0.80371094, "start": 259.09998, "word": "json" }, { "confidence": 0.99316406, "end": 259.81998, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.80371094, "start": 259.5, "word": "into" }, { "confidence": 0.9970703, "end": 259.97998, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.80371094, "start": 259.81998, "word": "a" }, { "confidence": 0.97998047, "end": 260.21997, "punctuated_word": "tweet", "speaker": 0, "speaker_confidence": 0.80371094, "start": 259.97998, "word": "tweet" }, { "confidence": 0.82470703, "end": 260.46, "punctuated_word": "dot", "speaker": 0, "speaker_confidence": 0.80371094, "start": 260.21997, "word": "dot" }, { "confidence": 0.8408203, "end": 260.93997, "punctuated_word": "JSON", "speaker": 0, "speaker_confidence": 0.80371094, "start": 260.46, "word": "json" }, { "confidence": 0.9941406, "end": 261.34, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.80371094, "start": 260.93997, "word": "file" }, { "confidence": 0.96240234, "end": 261.5, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.80371094, "start": 261.34, "word": "and" }, { "confidence": 0.9980469, "end": 261.65997, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.80371094, "start": 261.5, "word": "then" }, { "confidence": 1, "end": 261.9, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.80371094, "start": 261.65997, "word": "create" }, { "confidence": 0.99902344, "end": 261.97998, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.80371094, "start": 261.9, "word": "a" }, { "confidence": 0.99902344, "end": 262.21997, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.80371094, "start": 261.97998, "word": "new" }, { "confidence": 0.99902344, "end": 262.46, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.80371094, "start": 262.21997, "word": "file" }, { "confidence": 1, "end": 262.69998, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 0.80371094, "start": 262.46, "word": "called" }, { "confidence": 0.97509766, "end": 263.09998, "punctuated_word": "tweet", "speaker": 0, "speaker_confidence": 0.80371094, "start": 262.69998, "word": "tweet" }, { "confidence": 0.77107745, "end": 263.59998, "punctuated_word": "dotts.", "speaker": 0, "speaker_confidence": 0.80371094, "start": 263.09998, "word": "dotts" }, { "confidence": 0.9921875, "end": 264.86, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.80371094, "start": 264.62, "word": "then" }, { "confidence": 0.9980469, "end": 265.02, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.80371094, "start": 264.86, "word": "i" }, { "confidence": 1, "end": 265.18, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.74365234, "start": 265.02, "word": "can" }, { "confidence": 1, "end": 265.41998, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.74365234, "start": 265.18, "word": "open" }, { "confidence": 1, "end": 265.58, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.74365234, "start": 265.41998, "word": "up" }, { "confidence": 1, "end": 265.74, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.74365234, "start": 265.58, "word": "the" }, { "confidence": 0.9951172, "end": 266.06, "punctuated_word": "command", "speaker": 0, "speaker_confidence": 0.74365234, "start": 265.74, "word": "command" }, { "confidence": 0.7294922, "end": 266.485, "punctuated_word": "palette", "speaker": 0, "speaker_confidence": 0.74365234, "start": 266.06, "word": "palette" }, { "confidence": 0.6166992, "end": 266.72498, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.74365234, "start": 266.56497, "word": "and" }, { "confidence": 1, "end": 266.88498, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.74365234, "start": 266.72498, "word": "just" }, { "confidence": 1, "end": 267.365, "punctuated_word": "enter", "speaker": 0, "speaker_confidence": 0.74365234, "start": 266.88498, "word": "enter" }, { "confidence": 0.57470703, "end": 267.525, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.74365234, "start": 267.365, "word": "that" }, { "confidence": 0.99316406, "end": 267.84497, "punctuated_word": "paste", "speaker": 0, "speaker_confidence": 0.74365234, "start": 267.525, "word": "paste" }, { "confidence": 0.57714844, "end": 268.00497, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.74365234, "start": 267.84497, "word": "as" }, { "confidence": 0.9394531, "end": 268.405, "punctuated_word": "JSON", "speaker": 0, "speaker_confidence": 0.74365234, "start": 268.00497, "word": "json" }, { "confidence": 0.86450195, "end": 268.905, "punctuated_word": "command,", "speaker": 0, "speaker_confidence": 0.74365234, "start": 268.405, "word": "command" }, { "confidence": 1, "end": 269.365, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.74365234, "start": 269.205, "word": "and" }, { "confidence": 1, "end": 269.525, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.74365234, "start": 269.365, "word": "we'll" }, { "confidence": 1, "end": 269.76498, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.74365234, "start": 269.525, "word": "set" }, { "confidence": 0.9741211, "end": 270.00497, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.74365234, "start": 269.76498, "word": "the" }, { "confidence": 0.99902344, "end": 270.245, "punctuated_word": "top", "speaker": 0, "speaker_confidence": 0.74365234, "start": 270.00497, "word": "top" }, { "confidence": 0.9980469, "end": 270.745, "punctuated_word": "level", "speaker": 0, "speaker_confidence": 0.74365234, "start": 270.245, "word": "level" }, { "confidence": 0.99902344, "end": 271.28497, "punctuated_word": "interface", "speaker": 0, "speaker_confidence": 0.74365234, "start": 270.805, "word": "interface" }, { "confidence": 1, "end": 271.44498, "punctuated_word": "name", "speaker": 0, "speaker_confidence": 0.74365234, "start": 271.28497, "word": "name" }, { "confidence": 1, "end": 271.685, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.74365234, "start": 271.44498, "word": "as" }, { "confidence": 0.9794922, "end": 272.16498, "punctuated_word": "tweet.", "speaker": 0, "speaker_confidence": 0.74365234, "start": 271.685, "word": "tweet" }, { "confidence": 1, "end": 272.405, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.74365234, "start": 272.16498, "word": "and" }, { "confidence": 1, "end": 272.56497, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.74365234, "start": 272.405, "word": "then" }, { "confidence": 0.92944336, "end": 273.04498, "punctuated_word": "magically,", "speaker": 0, "speaker_confidence": 0.74365234, "start": 272.56497, "word": "magically" }, { "confidence": 1, "end": 273.125, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.74365234, "start": 273.04498, "word": "we" }, { "confidence": 0.9951172, "end": 273.28497, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.74365234, "start": 273.125, "word": "get" }, { "confidence": 0.9892578, "end": 273.5, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.74365234, "start": 273.28497, "word": "this" }, { "confidence": 0.83935547, "end": 273.74, "punctuated_word": "whole", "speaker": 0, "speaker_confidence": 0.74365234, "start": 273.5, "word": "whole" }, { "confidence": 1, "end": 273.9, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.74365234, "start": 273.74, "word": "set" }, { "confidence": 1, "end": 273.98, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.74365234, "start": 273.9, "word": "of" }, { "confidence": 1, "end": 274.48, "punctuated_word": "interfaces", "speaker": 0, "speaker_confidence": 0.74365234, "start": 273.98, "word": "interfaces" }, { "confidence": 1, "end": 274.86, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.74365234, "start": 274.54, "word": "that" }, { "confidence": 1, "end": 275.18, "punctuated_word": "model", "speaker": 0, "speaker_confidence": 0.74365234, "start": 274.86, "word": "model" }, { "confidence": 0.99609375, "end": 275.5, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.74365234, "start": 275.18, "word": "this" }, { "confidence": 1, "end": 275.9, "punctuated_word": "API", "speaker": 0, "speaker_confidence": 0.74365234, "start": 275.5, "word": "api" }, { "confidence": 0.99658203, "end": 276.4, "punctuated_word": "response.", "speaker": 0, "speaker_confidence": 0.74365234, "start": 275.9, "word": "response" }, { "confidence": 0.99902344, "end": 276.78, "punctuated_word": "So", "speaker": 0, "speaker_confidence": 0.74365234, "start": 276.62, "word": "so" }, { "confidence": 1, "end": 276.86, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.74365234, "start": 276.78, "word": "that" }, { "confidence": 1, "end": 277.1, "punctuated_word": "means", "speaker": 0, "speaker_confidence": 0.63916016, "start": 276.86, "word": "means" }, { "confidence": 0.9863281, "end": 277.18, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.63916016, "start": 277.1, "word": "you" }, { "confidence": 1, "end": 277.34, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.63916016, "start": 277.18, "word": "can" }, { "confidence": 0.99902344, "end": 277.5, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.63916016, "start": 277.34, "word": "get" }, { "confidence": 0.9970703, "end": 277.98, "punctuated_word": "incredible", "speaker": 0, "speaker_confidence": 0.63916016, "start": 277.5, "word": "incredible" }, { "confidence": 0.99902344, "end": 278.38, "punctuated_word": "developer", "speaker": 0, "speaker_confidence": 0.63916016, "start": 277.98, "word": "developer" }, { "confidence": 0.99902344, "end": 278.7, "punctuated_word": "tooling", "speaker": 0, "speaker_confidence": 0.63916016, "start": 278.38, "word": "tooling" }, { "confidence": 1, "end": 278.94, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.63916016, "start": 278.7, "word": "for" }, { "confidence": 1, "end": 279.18, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 0.63916016, "start": 278.94, "word": "any" }, { "confidence": 1, "end": 279.58, "punctuated_word": "API", "speaker": 0, "speaker_confidence": 0.63916016, "start": 279.18, "word": "api" }, { "confidence": 0.99902344, "end": 279.66, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.63916016, "start": 279.58, "word": "that" }, { "confidence": 1, "end": 279.82, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.63916016, "start": 279.66, "word": "you" }, { "confidence": 0.99902344, "end": 279.98, "punctuated_word": "work", "speaker": 0, "speaker_confidence": 0.63916016, "start": 279.82, "word": "work" }, { "confidence": 0.9980469, "end": 280.22, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.63916016, "start": 279.98, "word": "with" }, { "confidence": 0.6152344, "end": 280.46, "punctuated_word": "whether", "speaker": 0, "speaker_confidence": 0.63916016, "start": 280.22, "word": "whether" }, { "confidence": 1, "end": 280.62, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.63916016, "start": 280.46, "word": "it" }, { "confidence": 1, "end": 280.78, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.63916016, "start": 280.62, "word": "has" }, { "confidence": 1, "end": 281.1, "punctuated_word": "types", "speaker": 0, "speaker_confidence": 0.63916016, "start": 280.78, "word": "types" }, { "confidence": 0.99902344, "end": 281.34, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.63916016, "start": 281.1, "word": "or" }, { "confidence": 1, "end": 281.84, "punctuated_word": "not.", "speaker": 0, "speaker_confidence": 0.63916016, "start": 281.34, "word": "not" }, { "confidence": 0.99560547, "end": 282.10498, "punctuated_word": "Okay.", "speaker": 0, "speaker_confidence": 0.63916016, "start": 281.94498, "word": "okay" }, { "confidence": 1, "end": 282.26498, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.6791992, "start": 282.10498, "word": "i" }, { "confidence": 1, "end": 282.345, "punctuated_word": "think", "speaker": 0, "speaker_confidence": 0.6791992, "start": 282.26498, "word": "think" }, { "confidence": 0.99853516, "end": 282.585, "punctuated_word": "I've", "speaker": 0, "speaker_confidence": 0.6791992, "start": 282.345, "word": "i've" }, { "confidence": 1, "end": 282.82498, "punctuated_word": "heard", "speaker": 0, "speaker_confidence": 0.6791992, "start": 282.585, "word": "heard" }, { "confidence": 0.99902344, "end": 283.065, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.6791992, "start": 282.82498, "word": "just" }, { "confidence": 0.99609375, "end": 283.22498, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.6791992, "start": 283.065, "word": "about" }, { "confidence": 1, "end": 283.54498, "punctuated_word": "enough", "speaker": 0, "speaker_confidence": 0.6791992, "start": 283.22498, "word": "enough" }, { "confidence": 0.99902344, "end": 283.705, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.6791992, "start": 283.54498, "word": "of" }, { "confidence": 0.9941406, "end": 284.025, "punctuated_word": "types.", "speaker": 0, "speaker_confidence": 0.6791992, "start": 283.705, "word": "types" }, { "confidence": 1, "end": 284.345, "punctuated_word": "Let's", "speaker": 0, "speaker_confidence": 0.6791992, "start": 284.025, "word": "let's" }, { "confidence": 1, "end": 284.585, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.6791992, "start": 284.345, "word": "just" }, { "confidence": 1, "end": 284.82498, "punctuated_word": "chill", "speaker": 0, "speaker_confidence": 0.6791992, "start": 284.585, "word": "chill" }, { "confidence": 1, "end": 284.985, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.6791992, "start": 284.82498, "word": "out" }, { "confidence": 1, "end": 285.145, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.6791992, "start": 284.985, "word": "for" }, { "confidence": 1, "end": 285.305, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6791992, "start": 285.145, "word": "a" }, { "confidence": 0.99853516, "end": 285.805, "punctuated_word": "second.", "speaker": 0, "speaker_confidence": 0.6791992, "start": 285.305, "word": "second" }, { "confidence": 1, "end": 286.345, "punctuated_word": "Hit", "speaker": 0, "speaker_confidence": 0.6791992, "start": 286.025, "word": "hit" }, { "confidence": 0.9790039, "end": 286.745, "punctuated_word": "control", "speaker": 0, "speaker_confidence": 0.6791992, "start": 286.345, "word": "control" }, { "confidence": 0.890625, "end": 287.065, "punctuated_word": "k", "speaker": 0, "speaker_confidence": 0.6791992, "start": 286.745, "word": "k" }, { "confidence": 0.7734375, "end": 287.38498, "punctuated_word": "z", "speaker": 0, "speaker_confidence": 0.6791992, "start": 287.065, "word": "z" }, { "confidence": 0.9970703, "end": 287.54498, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6791992, "start": 287.38498, "word": "to" }, { "confidence": 1, "end": 287.785, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.6791992, "start": 287.54498, "word": "go" }, { "confidence": 0.9902344, "end": 288.10498, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.6791992, "start": 287.785, "word": "into" }, { "confidence": 0.50097656, "end": 288.345, "punctuated_word": "Zen", "speaker": 0, "speaker_confidence": 0.6791992, "start": 288.10498, "word": "zen" }, { "confidence": 0.9609375, "end": 288.845, "punctuated_word": "mode.", "speaker": 0, "speaker_confidence": 0.6791992, "start": 288.345, "word": "mode" }, { "confidence": 0.9892578, "end": 289.24, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.6791992, "start": 289.08, "word": "this" }, { "confidence": 1, "end": 289.4, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.6791992, "start": 289.24, "word": "will" }, { "confidence": 1, "end": 289.48, "punctuated_word": "give", "speaker": 0, "speaker_confidence": 0.6791992, "start": 289.4, "word": "give" }, { "confidence": 1, "end": 289.72, "punctuated_word": "us", "speaker": 0, "speaker_confidence": 0.6791992, "start": 289.48, "word": "us" }, { "confidence": 1, "end": 289.88, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6791992, "start": 289.72, "word": "a" }, { "confidence": 0.96435547, "end": 290.36, "punctuated_word": "viewport", "speaker": 0, "speaker_confidence": 0.6791992, "start": 289.88, "word": "viewport" }, { "confidence": 1, "end": 290.6, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.6791992, "start": 290.36, "word": "with" }, { "confidence": 1, "end": 290.76, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.6791992, "start": 290.6, "word": "all" }, { "confidence": 0.9980469, "end": 290.84, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.82910156, "start": 290.76, "word": "of" }, { "confidence": 1, "end": 291, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.82910156, "start": 290.84, "word": "the" }, { "confidence": 1, "end": 291.5, "punctuated_word": "distractions", "speaker": 0, "speaker_confidence": 0.82910156, "start": 291, "word": "distractions" }, { "confidence": 1, "end": 292.14, "punctuated_word": "removed.", "speaker": 0, "speaker_confidence": 0.82910156, "start": 291.64, "word": "removed" }, { "confidence": 1, "end": 292.36, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.82910156, "start": 292.2, "word": "if" }, { "confidence": 1, "end": 292.44, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.82910156, "start": 292.36, "word": "you" }, { "confidence": 1, "end": 292.6, "punctuated_word": "don't", "speaker": 0, "speaker_confidence": 0.82910156, "start": 292.44, "word": "don't" }, { "confidence": 1, "end": 292.84, "punctuated_word": "care", "speaker": 0, "speaker_confidence": 0.82910156, "start": 292.6, "word": "care" }, { "confidence": 1, "end": 293, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.82910156, "start": 292.84, "word": "what" }, { "confidence": 0.9970703, "end": 293.16, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.82910156, "start": 293, "word": "your" }, { "confidence": 0.8886719, "end": 293.48, "punctuated_word": "Docker", "speaker": 0, "speaker_confidence": 0.82910156, "start": 293.16, "word": "docker" }, { "confidence": 0.93115234, "end": 293.88, "punctuated_word": "container", "speaker": 0, "speaker_confidence": 0.82910156, "start": 293.48, "word": "container" }, { "confidence": 0.79541016, "end": 294.04, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.82910156, "start": 293.88, "word": "is" }, { "confidence": 1, "end": 294.36, "punctuated_word": "doing", "speaker": 0, "speaker_confidence": 0.82910156, "start": 294.04, "word": "doing" }, { "confidence": 0.99902344, "end": 294.6, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.82910156, "start": 294.36, "word": "or" }, { "confidence": 1, "end": 294.84, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.82910156, "start": 294.6, "word": "what" }, { "confidence": 0.9267578, "end": 295, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.82910156, "start": 294.84, "word": "the" }, { "confidence": 0.5107422, "end": 295.16, "punctuated_word": "Git", "speaker": 0, "speaker_confidence": 0.82910156, "start": 295, "word": "git" }, { "confidence": 0.99121094, "end": 295.48, "punctuated_word": "status", "speaker": 0, "speaker_confidence": 0.82910156, "start": 295.16, "word": "status" }, { "confidence": 1, "end": 295.72, "punctuated_word": "is,", "speaker": 0, "speaker_confidence": 0.82910156, "start": 295.48, "word": "is" }, { "confidence": 1, "end": 295.88, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.82910156, "start": 295.72, "word": "you" }, { "confidence": 1, "end": 296.04, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.82910156, "start": 295.88, "word": "can" }, { "confidence": 0.99902344, "end": 296.28, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.82910156, "start": 296.04, "word": "just" }, { "confidence": 1, "end": 296.44, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.82910156, "start": 296.28, "word": "go" }, { "confidence": 0.97802734, "end": 296.68, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.82910156, "start": 296.44, "word": "into" }, { "confidence": 0.8076172, "end": 296.92, "punctuated_word": "Zen", "speaker": 0, "speaker_confidence": 0.82910156, "start": 296.68, "word": "zen" }, { "confidence": 0.94140625, "end": 297.24, "punctuated_word": "mode", "speaker": 0, "speaker_confidence": 0.82910156, "start": 296.92, "word": "mode" }, { "confidence": 0.99902344, "end": 297.4, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.82910156, "start": 297.24, "word": "and" }, { "confidence": 1, "end": 297.72, "punctuated_word": "focus", "speaker": 0, "speaker_confidence": 0.82910156, "start": 297.4, "word": "focus" }, { "confidence": 1, "end": 297.88, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.82910156, "start": 297.72, "word": "on" }, { "confidence": 0.9980469, "end": 298.28, "punctuated_word": "writing", "speaker": 0, "speaker_confidence": 0.82910156, "start": 297.88, "word": "writing" }, { "confidence": 1, "end": 298.78, "punctuated_word": "code.", "speaker": 0, "speaker_confidence": 0.82910156, "start": 298.28, "word": "code" }, { "confidence": 0.96777344, "end": 299.22498, "punctuated_word": "While", "speaker": 0, "speaker_confidence": 0.82910156, "start": 299.06497, "word": "while" }, { "confidence": 0.9995117, "end": 299.38498, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.82910156, "start": 299.22498, "word": "we're" }, { "confidence": 1, "end": 299.465, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.82910156, "start": 299.38498, "word": "at" }, { "confidence": 1, "end": 299.625, "punctuated_word": "it,", "speaker": 0, "speaker_confidence": 0.82910156, "start": 299.465, "word": "it" }, { "confidence": 1, "end": 299.865, "punctuated_word": "let's", "speaker": 0, "speaker_confidence": 0.82910156, "start": 299.625, "word": "let's" }, { "confidence": 1, "end": 300.185, "punctuated_word": "install", "speaker": 0, "speaker_confidence": 0.82910156, "start": 299.865, "word": "install" }, { "confidence": 1, "end": 300.34497, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.82910156, "start": 300.185, "word": "the" }, { "confidence": 0.9980469, "end": 300.82498, "punctuated_word": "Spotify", "speaker": 0, "speaker_confidence": 0.82910156, "start": 300.34497, "word": "spotify" }, { "confidence": 0.84765625, "end": 301.145, "punctuated_word": "extension", "speaker": 0, "speaker_confidence": 0.82910156, "start": 300.82498, "word": "extension" }, { "confidence": 1, "end": 301.38498, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.82910156, "start": 301.145, "word": "for" }, { "confidence": 0.9316406, "end": 301.625, "punctuated_word": "Versus", "speaker": 0, "speaker_confidence": 0.82910156, "start": 301.38498, "word": "versus" }, { "confidence": 0.82128906, "end": 302.025, "punctuated_word": "Code", "speaker": 0, "speaker_confidence": 0.82910156, "start": 301.625, "word": "code" }, { "confidence": 0.9863281, "end": 302.185, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.82910156, "start": 302.025, "word": "and" }, { "confidence": 1, "end": 302.425, "punctuated_word": "throw", "speaker": 0, "speaker_confidence": 0.82910156, "start": 302.185, "word": "throw" }, { "confidence": 0.9921875, "end": 302.50497, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.82910156, "start": 302.425, "word": "on" }, { "confidence": 1, "end": 302.745, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.82910156, "start": 302.50497, "word": "some" }, { "confidence": 0.9394531, "end": 302.985, "punctuated_word": "carbon", "speaker": 0, "speaker_confidence": 0.82910156, "start": 302.745, "word": "carbon" }, { "confidence": 0.9970703, "end": 303.22498, "punctuated_word": "based", "speaker": 0, "speaker_confidence": 0.82910156, "start": 302.985, "word": "based" }, { "confidence": 0.95947266, "end": 303.465, "punctuated_word": "life", "speaker": 0, "speaker_confidence": 0.82910156, "start": 303.22498, "word": "life" }, { "confidence": 0.71777344, "end": 303.865, "punctuated_word": "forms", "speaker": 0, "speaker_confidence": 0.82910156, "start": 303.465, "word": "forms" }, { "confidence": 0.9863281, "end": 304.10498, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.82910156, "start": 303.865, "word": "and" }, { "confidence": 1, "end": 304.34497, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.82910156, "start": 304.10498, "word": "just" }, { "confidence": 1, "end": 304.585, "punctuated_word": "chill", "speaker": 0, "speaker_confidence": 0.82910156, "start": 304.34497, "word": "chill" }, { "confidence": 0.9995117, "end": 305.085, "punctuated_word": "out.", "speaker": 0, "speaker_confidence": 0.82910156, "start": 304.585, "word": "out" }, { "confidence": 1, "end": 305.465, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.82910156, "start": 305.22498, "word": "but" }, { "confidence": 0.8015137, "end": 305.965, "punctuated_word": "unfortunately,", "speaker": 0, "speaker_confidence": 0.82910156, "start": 305.465, "word": "unfortunately" }, { "confidence": 1, "end": 306.34497, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.82910156, "start": 306.10498, "word": "we" }, { "confidence": 0.93359375, "end": 306.745, "punctuated_word": "relaxed", "speaker": 0, "speaker_confidence": 0.82910156, "start": 306.34497, "word": "relaxed" }, { "confidence": 0.99902344, "end": 306.905, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.82910156, "start": 306.745, "word": "a" }, { "confidence": 1, "end": 307.22498, "punctuated_word": "little", "speaker": 0, "speaker_confidence": 0.82910156, "start": 306.905, "word": "little" }, { "confidence": 1, "end": 307.305, "punctuated_word": "too", "speaker": 0, "speaker_confidence": 0.82910156, "start": 307.22498, "word": "too" }, { "confidence": 1, "end": 307.68, "punctuated_word": "hard", "speaker": 0, "speaker_confidence": 0.82910156, "start": 307.305, "word": "hard" }, { "confidence": 0.97998047, "end": 307.75998, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.82910156, "start": 307.68, "word": "and" }, { "confidence": 0.9980469, "end": 307.91998, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 0.82910156, "start": 307.75998, "word": "now" }, { "confidence": 0.99316406, "end": 308.08, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.82910156, "start": 307.91998, "word": "our" }, { "confidence": 1, "end": 308.56, "punctuated_word": "application", "speaker": 0, "speaker_confidence": 0.82910156, "start": 308.08, "word": "application" }, { "confidence": 0.97802734, "end": 308.72, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.82910156, "start": 308.56, "word": "is" }, { "confidence": 1, "end": 309.22, "punctuated_word": "broken.", "speaker": 0, "speaker_confidence": 0.82910156, "start": 308.72, "word": "broken" }, { "confidence": 1, "end": 309.6, "punctuated_word": "Let's", "speaker": 0, "speaker_confidence": 0.82910156, "start": 309.36, "word": "let's" }, { "confidence": 1, "end": 309.75998, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.82910156, "start": 309.6, "word": "go" }, { "confidence": 0.99902344, "end": 310, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.82910156, "start": 309.75998, "word": "into" }, { "confidence": 1, "end": 310.24, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.82910156, "start": 310, "word": "the" }, { "confidence": 0.9951172, "end": 310.63998, "punctuated_word": "debugger", "speaker": 0, "speaker_confidence": 0.82910156, "start": 310.24, "word": "debugger" }, { "confidence": 1, "end": 310.96, "punctuated_word": "panel", "speaker": 0, "speaker_confidence": 0.82910156, "start": 310.63998, "word": "panel" }, { "confidence": 0.99902344, "end": 311.12, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.82910156, "start": 310.96, "word": "and" }, { "confidence": 1, "end": 311.36, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.82910156, "start": 311.12, "word": "see" }, { "confidence": 1, "end": 311.52, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.82910156, "start": 311.36, "word": "how" }, { "confidence": 1, "end": 311.68, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.82910156, "start": 311.52, "word": "that" }, { "confidence": 1, "end": 311.84, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 0.82910156, "start": 311.68, "word": "might" }, { "confidence": 1, "end": 312, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.82910156, "start": 311.84, "word": "be" }, { "confidence": 1, "end": 312.16, "punctuated_word": "able", "speaker": 0, "speaker_confidence": 0.82910156, "start": 312, "word": "able" }, { "confidence": 0.9980469, "end": 312.24, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.82910156, "start": 312.16, "word": "to" }, { "confidence": 1, "end": 312.4, "punctuated_word": "help", "speaker": 0, "speaker_confidence": 0.5336914, "start": 312.24, "word": "help" }, { "confidence": 1, "end": 312.56, "punctuated_word": "us", "speaker": 0, "speaker_confidence": 0.5336914, "start": 312.4, "word": "us" }, { "confidence": 1, "end": 313.06, "punctuated_word": "out.", "speaker": 0, "speaker_confidence": 0.5336914, "start": 312.56, "word": "out" }, { "confidence": 1, "end": 313.52, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.5336914, "start": 313.36, "word": "you" }, { "confidence": 0.99902344, "end": 313.68, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.5336914, "start": 313.52, "word": "get" }, { "confidence": 1, "end": 313.75998, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.5336914, "start": 313.68, "word": "to" }, { "confidence": 1, "end": 313.91998, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5336914, "start": 313.75998, "word": "the" }, { "confidence": 0.99902344, "end": 314.4, "punctuated_word": "debugger", "speaker": 0, "speaker_confidence": 0.5336914, "start": 313.91998, "word": "debugger" }, { "confidence": 1, "end": 314.56, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.5336914, "start": 314.4, "word": "by" }, { "confidence": 1, "end": 314.88, "punctuated_word": "clicking", "speaker": 0, "speaker_confidence": 0.5336914, "start": 314.56, "word": "clicking" }, { "confidence": 1, "end": 315.03998, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.5336914, "start": 314.88, "word": "on" }, { "confidence": 1, "end": 315.19998, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5336914, "start": 315.03998, "word": "the" }, { "confidence": 1, "end": 315.44, "punctuated_word": "bug", "speaker": 0, "speaker_confidence": 0.5336914, "start": 315.19998, "word": "bug" }, { "confidence": 0.79345703, "end": 315.94, "punctuated_word": "icon,", "speaker": 0, "speaker_confidence": 0.5336914, "start": 315.44, "word": "icon" }, { "confidence": 0.9003906, "end": 316.295, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.5336914, "start": 316.215, "word": "and" }, { "confidence": 1, "end": 316.535, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.5336914, "start": 316.295, "word": "i" }, { "confidence": 1, "end": 316.61502, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.5336914, "start": 316.535, "word": "have" }, { "confidence": 1, "end": 316.855, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.50634766, "start": 316.61502, "word": "a" }, { "confidence": 1, "end": 317.17502, "punctuated_word": "simple", "speaker": 0, "speaker_confidence": 0.50634766, "start": 316.855, "word": "simple" }, { "confidence": 0.7036133, "end": 317.415, "punctuated_word": "node", "speaker": 0, "speaker_confidence": 0.50634766, "start": 317.17502, "word": "node" }, { "confidence": 0.9951172, "end": 317.73502, "punctuated_word": "script", "speaker": 0, "speaker_confidence": 0.50634766, "start": 317.415, "word": "script" }, { "confidence": 0.86865234, "end": 317.89502, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.50634766, "start": 317.73502, "word": "set" }, { "confidence": 1, "end": 318.05502, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.50634766, "start": 317.89502, "word": "up" }, { "confidence": 0.99902344, "end": 318.535, "punctuated_word": "here.", "speaker": 0, "speaker_confidence": 0.50634766, "start": 318.05502, "word": "here" }, { "confidence": 0.9277344, "end": 318.77502, "punctuated_word": "Node", "speaker": 0, "speaker_confidence": 0.50634766, "start": 318.535, "word": "node" }, { "confidence": 0.96240234, "end": 319.015, "punctuated_word": "works", "speaker": 0, "speaker_confidence": 0.50634766, "start": 318.77502, "word": "works" }, { "confidence": 1, "end": 319.17502, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.50634766, "start": 319.015, "word": "out" }, { "confidence": 0.9980469, "end": 319.255, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.82373047, "start": 319.17502, "word": "of" }, { "confidence": 0.99902344, "end": 319.33502, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.82373047, "start": 319.255, "word": "the" }, { "confidence": 0.984375, "end": 319.73502, "punctuated_word": "box,", "speaker": 0, "speaker_confidence": 0.82373047, "start": 319.33502, "word": "box" }, { "confidence": 1, "end": 319.89502, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.82373047, "start": 319.73502, "word": "but" }, { "confidence": 1, "end": 319.975, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.82373047, "start": 319.89502, "word": "you" }, { "confidence": 1, "end": 320.215, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.82373047, "start": 319.975, "word": "can" }, { "confidence": 1, "end": 320.695, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.82373047, "start": 320.215, "word": "also" }, { "confidence": 1, "end": 321.015, "punctuated_word": "install", "speaker": 0, "speaker_confidence": 0.82373047, "start": 320.695, "word": "install" }, { "confidence": 1, "end": 321.515, "punctuated_word": "extensions", "speaker": 0, "speaker_confidence": 0.82373047, "start": 321.015, "word": "extensions" }, { "confidence": 1, "end": 321.815, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.82373047, "start": 321.575, "word": "to" }, { "confidence": 1, "end": 322.135, "punctuated_word": "support", "speaker": 0, "speaker_confidence": 0.82373047, "start": 321.815, "word": "support" }, { "confidence": 1, "end": 322.45502, "punctuated_word": "different", "speaker": 0, "speaker_confidence": 0.82373047, "start": 322.135, "word": "different" }, { "confidence": 0.8572591, "end": 322.95502, "punctuated_word": "runtimes.", "speaker": 0, "speaker_confidence": 0.82373047, "start": 322.45502, "word": "runtimes" }, { "confidence": 0.97802734, "end": 323.4, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.82373047, "start": 323.24, "word": "in" }, { "confidence": 0.9770508, "end": 323.56, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.82373047, "start": 323.4, "word": "the" }, { "confidence": 0.9975586, "end": 323.72, "punctuated_word": "script,", "speaker": 0, "speaker_confidence": 0.82373047, "start": 323.56, "word": "script" }, { "confidence": 1, "end": 323.96, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.82373047, "start": 323.72, "word": "i" }, { "confidence": 1, "end": 324.12, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.82373047, "start": 323.96, "word": "have" }, { "confidence": 0.9086914, "end": 324.36, "punctuated_word": "2", "speaker": 0, "speaker_confidence": 0.82373047, "start": 324.12, "word": "2" }, { "confidence": 1, "end": 324.75998, "punctuated_word": "separate", "speaker": 0, "speaker_confidence": 0.82373047, "start": 324.36, "word": "separate" }, { "confidence": 1, "end": 325.24, "punctuated_word": "functions", "speaker": 0, "speaker_confidence": 0.82373047, "start": 324.75998, "word": "functions" }, { "confidence": 1, "end": 325.47998, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.82373047, "start": 325.24, "word": "that" }, { "confidence": 1, "end": 325.8, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.82373047, "start": 325.47998, "word": "are" }, { "confidence": 1, "end": 325.96, "punctuated_word": "each", "speaker": 0, "speaker_confidence": 0.82373047, "start": 325.8, "word": "each" }, { "confidence": 0.99609375, "end": 326.44, "punctuated_word": "updating", "speaker": 0, "speaker_confidence": 0.82373047, "start": 325.96, "word": "updating" }, { "confidence": 0.99902344, "end": 326.59998, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.82373047, "start": 326.44, "word": "a" }, { "confidence": 1, "end": 326.91998, "punctuated_word": "global", "speaker": 0, "speaker_confidence": 0.82373047, "start": 326.59998, "word": "global" }, { "confidence": 1, "end": 327.41998, "punctuated_word": "variable", "speaker": 0, "speaker_confidence": 0.82373047, "start": 326.91998, "word": "variable" }, { "confidence": 0.671875, "end": 327.72, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.82373047, "start": 327.56, "word": "and" }, { "confidence": 0.9621582, "end": 327.88, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.82373047, "start": 327.72, "word": "we'll" }, { "confidence": 1, "end": 328.12, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.82373047, "start": 327.88, "word": "just" }, { "confidence": 1, "end": 328.36, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.82373047, "start": 328.12, "word": "run" }, { "confidence": 0.9135742, "end": 328.59998, "punctuated_word": "these", "speaker": 0, "speaker_confidence": 0.82373047, "start": 328.36, "word": "these" }, { "confidence": 0.74072266, "end": 328.75998, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.82373047, "start": 328.59998, "word": "one" }, { "confidence": 1, "end": 329, "punctuated_word": "after", "speaker": 0, "speaker_confidence": 0.82373047, "start": 328.75998, "word": "after" }, { "confidence": 0.99902344, "end": 329.16, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.82373047, "start": 329, "word": "the" }, { "confidence": 1, "end": 329.66, "punctuated_word": "other.", "speaker": 0, "speaker_confidence": 0.82373047, "start": 329.16, "word": "other" }, { "confidence": 1, "end": 329.88, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.82373047, "start": 329.72, "word": "i" }, { "confidence": 1, "end": 330.03998, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.82373047, "start": 329.88, "word": "can" }, { "confidence": 0.98291016, "end": 330.28, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.82373047, "start": 330.03998, "word": "set" }, { "confidence": 0.9135742, "end": 330.44, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.82373047, "start": 330.28, "word": "up" }, { "confidence": 0.9980469, "end": 330.68, "punctuated_word": "break", "speaker": 0, "speaker_confidence": 0.82373047, "start": 330.44, "word": "break" }, { "confidence": 0.53222656, "end": 330.91998, "punctuated_word": "points", "speaker": 0, "speaker_confidence": 0.82373047, "start": 330.68, "word": "points" }, { "confidence": 0.9550781, "end": 331.08, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.82373047, "start": 330.91998, "word": "in" }, { "confidence": 1, "end": 331.16, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.82373047, "start": 331.08, "word": "my" }, { "confidence": 1, "end": 331.47998, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.82373047, "start": 331.16, "word": "code" }, { "confidence": 1, "end": 331.63998, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.82373047, "start": 331.47998, "word": "by" }, { "confidence": 1, "end": 332.12, "punctuated_word": "simply", "speaker": 0, "speaker_confidence": 0.82373047, "start": 331.63998, "word": "simply" }, { "confidence": 1, "end": 332.44, "punctuated_word": "adding", "speaker": 0, "speaker_confidence": 0.82373047, "start": 332.12, "word": "adding" }, { "confidence": 0.9970703, "end": 332.59998, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.82373047, "start": 332.44, "word": "a" }, { "confidence": 0.9980469, "end": 332.84, "punctuated_word": "red", "speaker": 0, "speaker_confidence": 0.82373047, "start": 332.59998, "word": "red" }, { "confidence": 0.93115234, "end": 333.225, "punctuated_word": "dot", "speaker": 0, "speaker_confidence": 0.82373047, "start": 332.84, "word": "dot" }, { "confidence": 0.9604492, "end": 333.385, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.82373047, "start": 333.225, "word": "in" }, { "confidence": 1, "end": 333.625, "punctuated_word": "between", "speaker": 0, "speaker_confidence": 0.82373047, "start": 333.385, "word": "between" }, { "confidence": 0.99902344, "end": 333.70502, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.82373047, "start": 333.625, "word": "the" }, { "confidence": 1, "end": 334.025, "punctuated_word": "line", "speaker": 0, "speaker_confidence": 0.82373047, "start": 333.70502, "word": "line" }, { "confidence": 0.9995117, "end": 334.525, "punctuated_word": "numbers.", "speaker": 0, "speaker_confidence": 0.82373047, "start": 334.025, "word": "numbers" }, { "confidence": 1, "end": 335.065, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.82373047, "start": 334.825, "word": "this" }, { "confidence": 1, "end": 335.305, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.82373047, "start": 335.065, "word": "will" }, { "confidence": 1, "end": 335.545, "punctuated_word": "stop", "speaker": 0, "speaker_confidence": 0.82373047, "start": 335.305, "word": "stop" }, { "confidence": 1, "end": 335.785, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.82373047, "start": 335.545, "word": "the" }, { "confidence": 1, "end": 336.265, "punctuated_word": "execution", "speaker": 0, "speaker_confidence": 0.82373047, "start": 335.785, "word": "execution" }, { "confidence": 1, "end": 336.345, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.6801758, "start": 336.265, "word": "of" }, { "confidence": 1, "end": 336.505, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6801758, "start": 336.345, "word": "the" }, { "confidence": 1, "end": 336.825, "punctuated_word": "script", "speaker": 0, "speaker_confidence": 0.6801758, "start": 336.505, "word": "script" }, { "confidence": 0.9980469, "end": 337.065, "punctuated_word": "once", "speaker": 0, "speaker_confidence": 0.6801758, "start": 336.825, "word": "once" }, { "confidence": 1, "end": 337.225, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.6801758, "start": 337.065, "word": "it" }, { "confidence": 1, "end": 337.465, "punctuated_word": "hits", "speaker": 0, "speaker_confidence": 0.6801758, "start": 337.225, "word": "hits" }, { "confidence": 0.99902344, "end": 337.625, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.6801758, "start": 337.465, "word": "this" }, { "confidence": 0.77766925, "end": 338.125, "punctuated_word": "breakpoint,", "speaker": 0, "speaker_confidence": 0.6801758, "start": 337.625, "word": "breakpoint" }, { "confidence": 1, "end": 338.345, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6801758, "start": 338.185, "word": "and" }, { "confidence": 1, "end": 338.585, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.6801758, "start": 338.345, "word": "then" }, { "confidence": 0.99902344, "end": 338.665, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.6801758, "start": 338.585, "word": "you" }, { "confidence": 1, "end": 338.905, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.6801758, "start": 338.665, "word": "can" }, { "confidence": 0.99902344, "end": 339.305, "punctuated_word": "inspect", "speaker": 0, "speaker_confidence": 0.6801758, "start": 338.905, "word": "inspect" }, { "confidence": 1, "end": 339.465, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6801758, "start": 339.305, "word": "the" }, { "confidence": 1, "end": 339.86502, "punctuated_word": "local", "speaker": 0, "speaker_confidence": 0.6801758, "start": 339.465, "word": "local" }, { "confidence": 1, "end": 340.185, "punctuated_word": "state", "speaker": 0, "speaker_confidence": 0.6801758, "start": 339.86502, "word": "state" }, { "confidence": 0.9921875, "end": 340.42502, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6801758, "start": 340.185, "word": "and" }, { "confidence": 0.99609375, "end": 340.585, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6801758, "start": 340.42502, "word": "the" }, { "confidence": 0.99609375, "end": 340.825, "punctuated_word": "call", "speaker": 0, "speaker_confidence": 0.6801758, "start": 340.585, "word": "call" }, { "confidence": 0.99902344, "end": 341.065, "punctuated_word": "stack", "speaker": 0, "speaker_confidence": 0.6801758, "start": 340.825, "word": "stack" }, { "confidence": 0.99609375, "end": 341.225, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6801758, "start": 341.065, "word": "and" }, { "confidence": 1, "end": 341.545, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 0.6801758, "start": 341.225, "word": "things" }, { "confidence": 1, "end": 341.70502, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.6801758, "start": 341.545, "word": "like" }, { "confidence": 1, "end": 342.20502, "punctuated_word": "that.", "speaker": 0, "speaker_confidence": 0.6801758, "start": 341.70502, "word": "that" }, { "confidence": 0.984375, "end": 342.68, "punctuated_word": "All", "speaker": 0, "speaker_confidence": 0.6801758, "start": 342.52, "word": "all" }, { "confidence": 0.9980469, "end": 342.84, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.6801758, "start": 342.68, "word": "i" }, { "confidence": 1, "end": 342.88, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.6801758, "start": 342.84, "word": "have" }, { "confidence": 1, "end": 342.91998, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6411133, "start": 342.88, "word": "to" }, { "confidence": 1, "end": 343, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.6411133, "start": 342.91998, "word": "do" }, { "confidence": 1, "end": 343.24, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.6411133, "start": 343, "word": "is" }, { "confidence": 1, "end": 343.47998, "punctuated_word": "click", "speaker": 0, "speaker_confidence": 0.6411133, "start": 343.24, "word": "click" }, { "confidence": 1, "end": 343.56, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6411133, "start": 343.47998, "word": "the" }, { "confidence": 1, "end": 343.8, "punctuated_word": "play", "speaker": 0, "speaker_confidence": 0.6411133, "start": 343.56, "word": "play" }, { "confidence": 0.8220215, "end": 344.19998, "punctuated_word": "button,", "speaker": 0, "speaker_confidence": 0.6411133, "start": 343.8, "word": "button" }, { "confidence": 1, "end": 344.36, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6411133, "start": 344.19998, "word": "and" }, { "confidence": 1, "end": 344.52, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.6411133, "start": 344.36, "word": "it" }, { "confidence": 1, "end": 344.75998, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.6411133, "start": 344.52, "word": "will" }, { "confidence": 1, "end": 345.25998, "punctuated_word": "automatically", "speaker": 0, "speaker_confidence": 0.6411133, "start": 344.75998, "word": "automatically" }, { "confidence": 1, "end": 345.63998, "punctuated_word": "attach", "speaker": 0, "speaker_confidence": 0.6411133, "start": 345.4, "word": "attach" }, { "confidence": 1, "end": 345.87997, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6411133, "start": 345.63998, "word": "the" }, { "confidence": 0.9980469, "end": 346.37997, "punctuated_word": "debugger", "speaker": 0, "speaker_confidence": 0.6411133, "start": 345.87997, "word": "debugger" }, { "confidence": 1, "end": 346.59998, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6411133, "start": 346.44, "word": "to" }, { "confidence": 1, "end": 346.75998, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.6411133, "start": 346.59998, "word": "this" }, { "confidence": 1, "end": 347.25998, "punctuated_word": "process.", "speaker": 0, "speaker_confidence": 0.6411133, "start": 346.75998, "word": "process" }, { "confidence": 1, "end": 347.72, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.6411133, "start": 347.56, "word": "you" }, { "confidence": 1, "end": 347.96, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.6411133, "start": 347.72, "word": "can" }, { "confidence": 1, "end": 348.12, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.6411133, "start": 347.96, "word": "see" }, { "confidence": 1, "end": 348.28, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0.6411133, "start": 348.12, "word": "here" }, { "confidence": 0.80810547, "end": 348.44, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.6411133, "start": 348.28, "word": "it" }, { "confidence": 1, "end": 348.68, "punctuated_word": "shows", "speaker": 0, "speaker_confidence": 0.6411133, "start": 348.44, "word": "shows" }, { "confidence": 1, "end": 348.84, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.6411133, "start": 348.68, "word": "all" }, { "confidence": 0.9819336, "end": 349, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.6411133, "start": 348.84, "word": "of" }, { "confidence": 0.99902344, "end": 349.16, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6411133, "start": 349, "word": "the" }, { "confidence": 1, "end": 349.56, "punctuated_word": "local", "speaker": 0, "speaker_confidence": 0.6411133, "start": 349.16, "word": "local" }, { "confidence": 1, "end": 350.06, "punctuated_word": "variables", "speaker": 0, "speaker_confidence": 0.6411133, "start": 349.56, "word": "variables" }, { "confidence": 0.91748047, "end": 350.415, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.6411133, "start": 350.255, "word": "as" }, { "confidence": 1, "end": 350.575, "punctuated_word": "well", "speaker": 0, "speaker_confidence": 0.6411133, "start": 350.415, "word": "well" }, { "confidence": 1, "end": 350.65503, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.6411133, "start": 350.575, "word": "as" }, { "confidence": 1, "end": 350.73502, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.32421875, "start": 350.65503, "word": "all" }, { "confidence": 0.99902344, "end": 350.975, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.32421875, "start": 350.73502, "word": "of" }, { "confidence": 1, "end": 351.215, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.32421875, "start": 350.975, "word": "our" }, { "confidence": 0.99902344, "end": 351.535, "punctuated_word": "global", "speaker": 0, "speaker_confidence": 0.32421875, "start": 351.215, "word": "global" }, { "confidence": 1, "end": 352.035, "punctuated_word": "variables", "speaker": 0, "speaker_confidence": 0.32421875, "start": 351.535, "word": "variables" }, { "confidence": 0.64404297, "end": 352.255, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.32421875, "start": 352.095, "word": "in" }, { "confidence": 0.83447266, "end": 352.755, "punctuated_word": "node.", "speaker": 0, "speaker_confidence": 0.32421875, "start": 352.255, "word": "node" }, { "confidence": 1, "end": 353.215, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.7998047, "start": 353.055, "word": "you" }, { "confidence": 1, "end": 353.45502, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7998047, "start": 353.215, "word": "can" }, { "confidence": 1, "end": 353.695, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.7998047, "start": 353.45502, "word": "also" }, { "confidence": 1, "end": 353.855, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.7998047, "start": 353.695, "word": "go" }, { "confidence": 1, "end": 354.015, "punctuated_word": "down", "speaker": 0, "speaker_confidence": 0.7998047, "start": 353.855, "word": "down" }, { "confidence": 1, "end": 354.17502, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7998047, "start": 354.015, "word": "to" }, { "confidence": 1, "end": 354.415, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7998047, "start": 354.17502, "word": "the" }, { "confidence": 0.98828125, "end": 354.89502, "punctuated_word": "debugger", "speaker": 0, "speaker_confidence": 0.7998047, "start": 354.415, "word": "debugger" }, { "confidence": 0.98828125, "end": 355.39502, "punctuated_word": "console", "speaker": 0, "speaker_confidence": 0.7998047, "start": 354.89502, "word": "console" }, { "confidence": 0.99902344, "end": 355.695, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7998047, "start": 355.45502, "word": "and" }, { "confidence": 1, "end": 356.015, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 0.7998047, "start": 355.695, "word": "start" }, { "confidence": 1, "end": 356.495, "punctuated_word": "executing", "speaker": 0, "speaker_confidence": 0.7998047, "start": 356.015, "word": "executing" }, { "confidence": 1, "end": 356.89502, "punctuated_word": "commands", "speaker": 0, "speaker_confidence": 0.7998047, "start": 356.495, "word": "commands" }, { "confidence": 1, "end": 357.215, "punctuated_word": "within", "speaker": 0, "speaker_confidence": 0.7998047, "start": 356.89502, "word": "within" }, { "confidence": 1, "end": 357.375, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7998047, "start": 357.215, "word": "the" }, { "confidence": 1, "end": 357.775, "punctuated_word": "context", "speaker": 0, "speaker_confidence": 0.7998047, "start": 357.375, "word": "context" }, { "confidence": 0.99902344, "end": 357.935, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7998047, "start": 357.775, "word": "of" }, { "confidence": 0.96533203, "end": 358.095, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7998047, "start": 357.935, "word": "the" }, { "confidence": 0.8786621, "end": 358.595, "punctuated_word": "script,", "speaker": 0, "speaker_confidence": 0.7998047, "start": 358.095, "word": "script" }, { "confidence": 0.5019531, "end": 358.9, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7998047, "start": 358.74, "word": "and" }, { "confidence": 0.98999023, "end": 359.13998, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.7998047, "start": 358.9, "word": "we'll" }, { "confidence": 1, "end": 359.22, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.7998047, "start": 359.13998, "word": "have" }, { "confidence": 1, "end": 359.62, "punctuated_word": "access", "speaker": 0, "speaker_confidence": 0.7998047, "start": 359.22, "word": "access" }, { "confidence": 1, "end": 359.78, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7998047, "start": 359.62, "word": "to" }, { "confidence": 0.9970703, "end": 360.02, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.7998047, "start": 359.78, "word": "its" }, { "confidence": 1, "end": 360.34, "punctuated_word": "current", "speaker": 0, "speaker_confidence": 0.7998047, "start": 360.02, "word": "current" }, { "confidence": 0.9995117, "end": 360.66, "punctuated_word": "state.", "speaker": 0, "speaker_confidence": 0.7998047, "start": 360.34, "word": "state" }, { "confidence": 1, "end": 360.81998, "punctuated_word": "So", "speaker": 0, "speaker_confidence": 0.7998047, "start": 360.66, "word": "so" }, { "confidence": 1, "end": 360.97998, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.7998047, "start": 360.81998, "word": "if" }, { "confidence": 1, "end": 361.06, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.7998047, "start": 360.97998, "word": "we" }, { "confidence": 0.99902344, "end": 361.3, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.7998047, "start": 361.06, "word": "want" }, { "confidence": 1, "end": 361.46, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7998047, "start": 361.3, "word": "to" }, { "confidence": 1, "end": 361.86, "punctuated_word": "inspect", "speaker": 0, "speaker_confidence": 0.7998047, "start": 361.46, "word": "inspect" }, { "confidence": 0.9970703, "end": 362.02, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7998047, "start": 361.86, "word": "the" }, { "confidence": 1, "end": 362.25998, "punctuated_word": "name", "speaker": 0, "speaker_confidence": 0.7998047, "start": 362.02, "word": "name" }, { "confidence": 1, "end": 362.34, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7998047, "start": 362.25998, "word": "of" }, { "confidence": 0.9770508, "end": 362.5, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7998047, "start": 362.34, "word": "a" }, { "confidence": 0.9995117, "end": 362.97998, "punctuated_word": "variable,", "speaker": 0, "speaker_confidence": 0.7998047, "start": 362.5, "word": "variable" }, { "confidence": 1, "end": 363.13998, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.7998047, "start": 362.97998, "word": "we" }, { "confidence": 1, "end": 363.3, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.7998047, "start": 363.13998, "word": "just" }, { "confidence": 1, "end": 363.41998, "punctuated_word": "type", "speaker": 0, "speaker_confidence": 0.7998047, "start": 363.3, "word": "type" }, { "confidence": 1, "end": 363.53998, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.7998047, "start": 363.41998, "word": "it" }, { "confidence": 1, "end": 363.78, "punctuated_word": "down", "speaker": 0, "speaker_confidence": 0.7998047, "start": 363.53998, "word": "down" }, { "confidence": 1, "end": 363.94, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0.7998047, "start": 363.78, "word": "here" }, { "confidence": 0.90722656, "end": 364.09998, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7998047, "start": 363.94, "word": "in" }, { "confidence": 0.99902344, "end": 364.18, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7998047, "start": 364.09998, "word": "the" }, { "confidence": 0.99902344, "end": 364.5, "punctuated_word": "command", "speaker": 0, "speaker_confidence": 0.7998047, "start": 364.18, "word": "command" }, { "confidence": 1, "end": 364.74, "punctuated_word": "line", "speaker": 0, "speaker_confidence": 0.7998047, "start": 364.5, "word": "line" }, { "confidence": 0.98291016, "end": 364.9, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7998047, "start": 364.74, "word": "and" }, { "confidence": 1, "end": 365.06, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.7998047, "start": 364.9, "word": "it" }, { "confidence": 1, "end": 365.3, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.7998047, "start": 365.06, "word": "will" }, { "confidence": 1, "end": 365.46, "punctuated_word": "print", "speaker": 0, "speaker_confidence": 0.7998047, "start": 365.3, "word": "print" }, { "confidence": 1, "end": 365.62, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7998047, "start": 365.46, "word": "that" }, { "confidence": 1, "end": 365.78, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.7998047, "start": 365.62, "word": "out" }, { "confidence": 0.9970703, "end": 365.94, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7998047, "start": 365.78, "word": "in" }, { "confidence": 0.99902344, "end": 366.09998, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7998047, "start": 365.94, "word": "the" }, { "confidence": 0.97021484, "end": 366.59998, "punctuated_word": "console.", "speaker": 0, "speaker_confidence": 0.7998047, "start": 366.09998, "word": "console" }, { "confidence": 0.84594727, "end": 367.345, "punctuated_word": "Debugging", "speaker": 0, "speaker_confidence": 0.7998047, "start": 366.94498, "word": "debugging" }, { "confidence": 0.80371094, "end": 367.505, "punctuated_word": "Node", "speaker": 0, "speaker_confidence": 0.7998047, "start": 367.345, "word": "node" }, { "confidence": 1, "end": 367.66498, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7998047, "start": 367.505, "word": "is" }, { "confidence": 0.9562988, "end": 368.065, "punctuated_word": "great,", "speaker": 0, "speaker_confidence": 0.7998047, "start": 367.66498, "word": "great" }, { "confidence": 1, "end": 368.305, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.7998047, "start": 368.065, "word": "but" }, { "confidence": 0.5905762, "end": 368.785, "punctuated_word": "generally,", "speaker": 0, "speaker_confidence": 0.7998047, "start": 368.305, "word": "generally" }, { "confidence": 1, "end": 368.94498, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.7998047, "start": 368.785, "word": "my" }, { "confidence": 0.9980469, "end": 369.185, "punctuated_word": "front", "speaker": 0, "speaker_confidence": 0.7998047, "start": 368.94498, "word": "front" }, { "confidence": 0.8364258, "end": 369.345, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.7998047, "start": 369.185, "word": "end" }, { "confidence": 0.99902344, "end": 369.66498, "punctuated_word": "apps", "speaker": 0, "speaker_confidence": 0.7998047, "start": 369.345, "word": "apps" }, { "confidence": 1, "end": 369.82498, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.7998047, "start": 369.66498, "word": "are" }, { "confidence": 1, "end": 369.905, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7998047, "start": 369.82498, "word": "a" }, { "confidence": 1, "end": 370.065, "punctuated_word": "lot", "speaker": 0, "speaker_confidence": 0.7998047, "start": 369.905, "word": "lot" }, { "confidence": 1, "end": 370.305, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.7998047, "start": 370.065, "word": "more" }, { "confidence": 1, "end": 370.785, "punctuated_word": "complex", "speaker": 0, "speaker_confidence": 0.7998047, "start": 370.305, "word": "complex" }, { "confidence": 0.99902344, "end": 370.94498, "punctuated_word": "than", "speaker": 0, "speaker_confidence": 0.7998047, "start": 370.785, "word": "than" }, { "confidence": 1, "end": 371.10498, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.7998047, "start": 370.94498, "word": "my" }, { "confidence": 0.94921875, "end": 371.26498, "punctuated_word": "back", "speaker": 0, "speaker_confidence": 0.7998047, "start": 371.10498, "word": "back" }, { "confidence": 0.99902344, "end": 371.425, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.7998047, "start": 371.26498, "word": "end" }, { "confidence": 0.9995117, "end": 371.925, "punctuated_word": "apps.", "speaker": 0, "speaker_confidence": 0.7998047, "start": 371.425, "word": "apps" }, { "confidence": 0.9995117, "end": 372.22498, "punctuated_word": "I'd", "speaker": 0, "speaker_confidence": 0.7998047, "start": 371.985, "word": "i'd" }, { "confidence": 1, "end": 372.465, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.7998047, "start": 372.22498, "word": "like" }, { "confidence": 0.99902344, "end": 372.625, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7998047, "start": 372.465, "word": "to" }, { "confidence": 1, "end": 372.94498, "punctuated_word": "debug", "speaker": 0, "speaker_confidence": 0.7998047, "start": 372.625, "word": "debug" }, { "confidence": 0.99902344, "end": 373.10498, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.7998047, "start": 372.94498, "word": "my" }, { "confidence": 0.9013672, "end": 373.505, "punctuated_word": "Angular", "speaker": 0, "speaker_confidence": 0.7998047, "start": 373.10498, "word": "angular" }, { "confidence": 0.9604492, "end": 374.005, "punctuated_word": "applications", "speaker": 0, "speaker_confidence": 0.7998047, "start": 373.505, "word": "applications" }, { "confidence": 0.99121094, "end": 374.38498, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7998047, "start": 374.22498, "word": "in" }, { "confidence": 0.9980469, "end": 374.465, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7998047, "start": 374.38498, "word": "the" }, { "confidence": 1, "end": 374.94498, "punctuated_word": "context", "speaker": 0, "speaker_confidence": 0.7998047, "start": 374.465, "word": "context" }, { "confidence": 0.9980469, "end": 375.185, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7998047, "start": 374.94498, "word": "of" }, { "confidence": 0.9873047, "end": 375.345, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7998047, "start": 375.185, "word": "the" }, { "confidence": 0.9716797, "end": 375.66498, "punctuated_word": "Chrome", "speaker": 0, "speaker_confidence": 0.7998047, "start": 375.345, "word": "chrome" }, { "confidence": 0.9399414, "end": 376.16498, "punctuated_word": "browser.", "speaker": 0, "speaker_confidence": 0.7998047, "start": 375.66498, "word": "browser" }, { "confidence": 0.9819336, "end": 376.93, "punctuated_word": "After", "speaker": 0, "speaker_confidence": 0.7998047, "start": 376.68997, "word": "after" }, { "confidence": 0.99902344, "end": 377.16998, "punctuated_word": "installing", "speaker": 0, "speaker_confidence": 0.7998047, "start": 376.93, "word": "installing" }, { "confidence": 1, "end": 377.33, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7998047, "start": 377.16998, "word": "the" }, { "confidence": 0.98095703, "end": 377.65, "punctuated_word": "Chrome", "speaker": 0, "speaker_confidence": 0.7998047, "start": 377.33, "word": "chrome" }, { "confidence": 0.90283203, "end": 378.05, "punctuated_word": "extension,", "speaker": 0, "speaker_confidence": 0.7998047, "start": 377.65, "word": "extension" }, { "confidence": 1, "end": 378.21, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.7998047, "start": 378.05, "word": "we" }, { "confidence": 1, "end": 378.37, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7998047, "start": 378.21, "word": "can" }, { "confidence": 1, "end": 378.53, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.7998047, "start": 378.37, "word": "go" }, { "confidence": 1, "end": 378.68997, "punctuated_word": "back", "speaker": 0, "speaker_confidence": 0.7998047, "start": 378.53, "word": "back" }, { "confidence": 1, "end": 378.84998, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7998047, "start": 378.68997, "word": "to" }, { "confidence": 1, "end": 379.00998, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7998047, "start": 378.84998, "word": "the" }, { "confidence": 0.9980469, "end": 379.50998, "punctuated_word": "debugger", "speaker": 0, "speaker_confidence": 0.7998047, "start": 379.00998, "word": "debugger" }, { "confidence": 1, "end": 379.81, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7998047, "start": 379.65, "word": "and" }, { "confidence": 1, "end": 380.05, "punctuated_word": "click", "speaker": 0, "speaker_confidence": 0.7998047, "start": 379.81, "word": "click" }, { "confidence": 1, "end": 380.12997, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7998047, "start": 380.05, "word": "the" }, { "confidence": 0.99902344, "end": 380.44998, "punctuated_word": "play", "speaker": 0, "speaker_confidence": 0.7998047, "start": 380.12997, "word": "play" }, { "confidence": 0.8925781, "end": 380.77, "punctuated_word": "button,", "speaker": 0, "speaker_confidence": 0.7998047, "start": 380.44998, "word": "button" }, { "confidence": 1, "end": 381.00998, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.7998047, "start": 380.77, "word": "but" }, { "confidence": 0.9921875, "end": 381.16998, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.7998047, "start": 381.00998, "word": "this" }, { "confidence": 1, "end": 381.49, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.7998047, "start": 381.16998, "word": "time" }, { "confidence": 0.7050781, "end": 381.81, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.7998047, "start": 381.49, "word": "use" }, { "confidence": 0.98950195, "end": 382.31, "punctuated_word": "Chrome.", "speaker": 0, "speaker_confidence": 0.7998047, "start": 381.81, "word": "chrome" }, { "confidence": 1, "end": 382.84998, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.6948242, "start": 382.68997, "word": "then" }, { "confidence": 0.99902344, "end": 383.00998, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.6948242, "start": 382.84998, "word": "we" }, { "confidence": 1, "end": 383.09, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.6948242, "start": 383.00998, "word": "can" }, { "confidence": 0.9921875, "end": 383.25, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.6948242, "start": 383.09, "word": "set" }, { "confidence": 1, "end": 383.49, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.6948242, "start": 383.25, "word": "up" }, { "confidence": 1, "end": 383.56998, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6948242, "start": 383.49, "word": "a" }, { "confidence": 1, "end": 383.88998, "punctuated_word": "launch", "speaker": 0, "speaker_confidence": 0.6948242, "start": 383.56998, "word": "launch" }, { "confidence": 1, "end": 384.38998, "punctuated_word": "configuration", "speaker": 0, "speaker_confidence": 0.6948242, "start": 383.88998, "word": "configuration" }, { "confidence": 1, "end": 384.84998, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.6948242, "start": 384.61, "word": "for" }, { "confidence": 0.99902344, "end": 385.00998, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.6948242, "start": 384.84998, "word": "this" }, { "confidence": 1, "end": 385.40997, "punctuated_word": "specific", "speaker": 0, "speaker_confidence": 0.6948242, "start": 385.00998, "word": "specific" }, { "confidence": 0.8203125, "end": 385.815, "punctuated_word": "app,", "speaker": 0, "speaker_confidence": 0.6948242, "start": 385.40997, "word": "app" }, { "confidence": 0.7597656, "end": 386.055, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.6948242, "start": 385.895, "word": "which" }, { "confidence": 0.8701172, "end": 386.215, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.6948242, "start": 386.055, "word": "in" }, { "confidence": 0.9301758, "end": 386.695, "punctuated_word": "Angular's", "speaker": 0, "speaker_confidence": 0.6948242, "start": 386.215, "word": "angular's" }, { "confidence": 0.9604492, "end": 386.855, "punctuated_word": "case,", "speaker": 0, "speaker_confidence": 0.6948242, "start": 386.695, "word": "case" }, { "confidence": 0.98999023, "end": 387.095, "punctuated_word": "it'll", "speaker": 0, "speaker_confidence": 0.6948242, "start": 386.855, "word": "it'll" }, { "confidence": 1, "end": 387.335, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.6948242, "start": 387.095, "word": "be" }, { "confidence": 1, "end": 387.73502, "punctuated_word": "served", "speaker": 0, "speaker_confidence": 0.6948242, "start": 387.335, "word": "served" }, { "confidence": 1, "end": 387.975, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.6948242, "start": 387.73502, "word": "on" }, { "confidence": 0.9941406, "end": 388.295, "punctuated_word": "local", "speaker": 0, "speaker_confidence": 0.6948242, "start": 387.975, "word": "local" }, { "confidence": 0.90478516, "end": 388.615, "punctuated_word": "host", "speaker": 0, "speaker_confidence": 0.6948242, "start": 388.295, "word": "host" }, { "confidence": 0.626709, "end": 389.115, "punctuated_word": "42100.", "speaker": 0, "speaker_confidence": 0.6948242, "start": 388.615, "word": "42100" }, { "confidence": 0.9970703, "end": 390.135, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.6953125, "start": 389.975, "word": "then" }, { "confidence": 0.9970703, "end": 390.295, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.6953125, "start": 390.135, "word": "we" }, { "confidence": 1, "end": 390.45502, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.6953125, "start": 390.295, "word": "can" }, { "confidence": 0.99902344, "end": 390.615, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.6953125, "start": 390.45502, "word": "go" }, { "confidence": 0.9980469, "end": 390.775, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.6953125, "start": 390.615, "word": "into" }, { "confidence": 0.89453125, "end": 390.935, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.6953125, "start": 390.775, "word": "one" }, { "confidence": 0.99902344, "end": 391.015, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.6953125, "start": 390.935, "word": "of" }, { "confidence": 0.99902344, "end": 391.175, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.6953125, "start": 391.015, "word": "our" }, { "confidence": 0.99902344, "end": 391.575, "punctuated_word": "component", "speaker": 0, "speaker_confidence": 0.6953125, "start": 391.175, "word": "component" }, { "confidence": 0.99902344, "end": 392.055, "punctuated_word": "files", "speaker": 0, "speaker_confidence": 0.6953125, "start": 391.575, "word": "files" }, { "confidence": 0.9941406, "end": 392.295, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6953125, "start": 392.055, "word": "and" }, { "confidence": 0.9951172, "end": 392.45502, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.6953125, "start": 392.295, "word": "set" }, { "confidence": 0.99902344, "end": 392.615, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.6953125, "start": 392.45502, "word": "up" }, { "confidence": 0.9980469, "end": 392.855, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.6953125, "start": 392.615, "word": "some" }, { "confidence": 0.9980469, "end": 393.095, "punctuated_word": "break", "speaker": 0, "speaker_confidence": 0.6953125, "start": 392.855, "word": "break" }, { "confidence": 0.6435547, "end": 393.34, "punctuated_word": "points", "speaker": 0, "speaker_confidence": 0.6953125, "start": 393.095, "word": "points" }, { "confidence": 0.8227539, "end": 393.58, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.6953125, "start": 393.41998, "word": "it's" }, { "confidence": 1, "end": 393.74, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.6953125, "start": 393.58, "word": "where" }, { "confidence": 1, "end": 393.82, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.6953125, "start": 393.74, "word": "we" }, { "confidence": 1, "end": 394.3, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.6953125, "start": 393.82, "word": "want" }, { "confidence": 1, "end": 394.38, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6953125, "start": 394.3, "word": "to" }, { "confidence": 1, "end": 394.54, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.6953125, "start": 394.38, "word": "have" }, { "confidence": 1, "end": 394.78, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6953125, "start": 394.54, "word": "the" }, { "confidence": 0.9980469, "end": 395.18, "punctuated_word": "debugger", "speaker": 0, "speaker_confidence": 0.6953125, "start": 394.78, "word": "debugger" }, { "confidence": 1, "end": 395.5, "punctuated_word": "run-in", "speaker": 0, "speaker_confidence": 0.6953125, "start": 395.18, "word": "run-in" }, { "confidence": 0.99121094, "end": 395.66, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6953125, "start": 395.5, "word": "the" }, { "confidence": 0.9995117, "end": 396.16, "punctuated_word": "browser.", "speaker": 0, "speaker_confidence": 0.6953125, "start": 395.66, "word": "browser" }, { "confidence": 0.9995117, "end": 396.78, "punctuated_word": "I'll", "speaker": 0, "speaker_confidence": 0.65478516, "start": 396.54, "word": "i'll" }, { "confidence": 0.9902344, "end": 397.02, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.65478516, "start": 396.78, "word": "set" }, { "confidence": 1, "end": 397.18, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.65478516, "start": 397.02, "word": "up" }, { "confidence": 0.83935547, "end": 397.41998, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.65478516, "start": 397.18, "word": "one" }, { "confidence": 0.8215332, "end": 397.82, "punctuated_word": "breakpoint", "speaker": 0, "speaker_confidence": 0.65478516, "start": 397.41998, "word": "breakpoint" }, { "confidence": 0.99316406, "end": 398.13998, "punctuated_word": "before", "speaker": 0, "speaker_confidence": 0.65478516, "start": 397.82, "word": "before" }, { "confidence": 1, "end": 398.3, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.65478516, "start": 398.13998, "word": "the" }, { "confidence": 0.51953125, "end": 398.8, "punctuated_word": "components", "speaker": 0, "speaker_confidence": 0.65478516, "start": 398.3, "word": "components" }, { "confidence": 0.98095703, "end": 399.18, "punctuated_word": "actually", "speaker": 0, "speaker_confidence": 0.65478516, "start": 398.86, "word": "actually" }, { "confidence": 0.9707031, "end": 399.68, "punctuated_word": "initialized", "speaker": 0, "speaker_confidence": 0.65478516, "start": 399.18, "word": "initialized" }, { "confidence": 0.85595703, "end": 399.98, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.65478516, "start": 399.82, "word": "and" }, { "confidence": 1, "end": 400.22, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.65478516, "start": 399.98, "word": "then" }, { "confidence": 1, "end": 400.46, "punctuated_word": "another", "speaker": 0, "speaker_confidence": 0.65478516, "start": 400.22, "word": "another" }, { "confidence": 0.99121094, "end": 400.78, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.65478516, "start": 400.46, "word": "one" }, { "confidence": 1, "end": 400.94, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.65478516, "start": 400.78, "word": "that" }, { "confidence": 0.99902344, "end": 401.26, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.65478516, "start": 400.94, "word": "will" }, { "confidence": 1, "end": 401.41998, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.65478516, "start": 401.26, "word": "run" }, { "confidence": 1, "end": 401.58, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.65478516, "start": 401.41998, "word": "on" }, { "confidence": 1, "end": 401.74, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.65478516, "start": 401.58, "word": "a" }, { "confidence": 1, "end": 402.06, "punctuated_word": "button", "speaker": 0, "speaker_confidence": 0.65478516, "start": 401.74, "word": "button" }, { "confidence": 0.99902344, "end": 402.56, "punctuated_word": "click.", "speaker": 0, "speaker_confidence": 0.65478516, "start": 402.06, "word": "click" }, { "confidence": 0.96533203, "end": 403.205, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.65478516, "start": 403.04498, "word": "then" }, { "confidence": 0.98535156, "end": 403.365, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.65478516, "start": 403.205, "word": "you" }, { "confidence": 1, "end": 403.445, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.65478516, "start": 403.365, "word": "can" }, { "confidence": 1, "end": 403.685, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.65478516, "start": 403.445, "word": "see" }, { "confidence": 0.96435547, "end": 403.76498, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.57958984, "start": 403.685, "word": "if" }, { "confidence": 1, "end": 403.925, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.57958984, "start": 403.76498, "word": "we" }, { "confidence": 1, "end": 404.165, "punctuated_word": "click", "speaker": 0, "speaker_confidence": 0.57958984, "start": 403.925, "word": "click" }, { "confidence": 0.99365234, "end": 404.565, "punctuated_word": "play,", "speaker": 0, "speaker_confidence": 0.57958984, "start": 404.165, "word": "play" }, { "confidence": 1, "end": 404.805, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.57958984, "start": 404.565, "word": "it" }, { "confidence": 1, "end": 405.04498, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.57958984, "start": 404.805, "word": "will" }, { "confidence": 1, "end": 405.445, "punctuated_word": "launch", "speaker": 0, "speaker_confidence": 0.57958984, "start": 405.04498, "word": "launch" }, { "confidence": 0.9536133, "end": 405.845, "punctuated_word": "Chrome", "speaker": 0, "speaker_confidence": 0.57958984, "start": 405.445, "word": "chrome" }, { "confidence": 0.99902344, "end": 406.085, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.57958984, "start": 405.845, "word": "and" }, { "confidence": 1, "end": 406.245, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.57958984, "start": 406.085, "word": "have" }, { "confidence": 1, "end": 406.485, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.57958984, "start": 406.245, "word": "our" }, { "confidence": 1, "end": 406.965, "punctuated_word": "debugger", "speaker": 0, "speaker_confidence": 0.57958984, "start": 406.485, "word": "debugger" }, { "confidence": 0.99902344, "end": 407.285, "punctuated_word": "running", "speaker": 0, "speaker_confidence": 0.57958984, "start": 406.965, "word": "running" }, { "confidence": 0.99902344, "end": 407.445, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0.57958984, "start": 407.285, "word": "here" }, { "confidence": 0.515625, "end": 407.76498, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.57958984, "start": 407.445, "word": "which" }, { "confidence": 1, "end": 407.845, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.57958984, "start": 407.76498, "word": "we" }, { "confidence": 0.9135742, "end": 408.085, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.57958984, "start": 407.845, "word": "can" }, { "confidence": 1, "end": 408.405, "punctuated_word": "control", "speaker": 0, "speaker_confidence": 0.57958984, "start": 408.085, "word": "control" }, { "confidence": 1, "end": 408.645, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.57958984, "start": 408.405, "word": "from" }, { "confidence": 0.9482422, "end": 408.965, "punctuated_word": "Versus", "speaker": 0, "speaker_confidence": 0.57958984, "start": 408.645, "word": "versus" }, { "confidence": 0.9580078, "end": 409.465, "punctuated_word": "Code.", "speaker": 0, "speaker_confidence": 0.57958984, "start": 408.965, "word": "code" }, { "confidence": 1, "end": 409.76498, "punctuated_word": "When", "speaker": 0, "speaker_confidence": 0.57958984, "start": 409.525, "word": "when" }, { "confidence": 1, "end": 409.925, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.57958984, "start": 409.76498, "word": "we" }, { "confidence": 1, "end": 410.165, "punctuated_word": "click", "speaker": 0, "speaker_confidence": 0.57958984, "start": 409.925, "word": "click" }, { "confidence": 0.99902344, "end": 410.32498, "punctuated_word": "play", "speaker": 0, "speaker_confidence": 0.57958984, "start": 410.165, "word": "play" }, { "confidence": 0.9980469, "end": 410.645, "punctuated_word": "again,", "speaker": 0, "speaker_confidence": 0.57958984, "start": 410.32498, "word": "again" }, { "confidence": 1, "end": 410.725, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.56933594, "start": 410.645, "word": "it" }, { "confidence": 1, "end": 410.965, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.56933594, "start": 410.725, "word": "will" }, { "confidence": 1, "end": 411.285, "punctuated_word": "define", "speaker": 0, "speaker_confidence": 0.56933594, "start": 410.965, "word": "define" }, { "confidence": 0.9941406, "end": 411.365, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.56933594, "start": 411.285, "word": "the" }, { "confidence": 1, "end": 411.865, "punctuated_word": "title", "speaker": 0, "speaker_confidence": 0.56933594, "start": 411.365, "word": "title" }, { "confidence": 0.9375, "end": 412.03, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.56933594, "start": 411.87, "word": "and" }, { "confidence": 1, "end": 412.19, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.56933594, "start": 412.03, "word": "we" }, { "confidence": 1, "end": 412.35, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.56933594, "start": 412.19, "word": "can" }, { "confidence": 0.9980469, "end": 412.83, "punctuated_word": "actually", "speaker": 0, "speaker_confidence": 0.56933594, "start": 412.35, "word": "actually" }, { "confidence": 1, "end": 413.15, "punctuated_word": "highlight", "speaker": 0, "speaker_confidence": 0.56933594, "start": 412.83, "word": "highlight" }, { "confidence": 0.99902344, "end": 413.47, "punctuated_word": "over", "speaker": 0, "speaker_confidence": 0.56933594, "start": 413.15, "word": "over" }, { "confidence": 0.99902344, "end": 413.94998, "punctuated_word": "properties", "speaker": 0, "speaker_confidence": 0.56933594, "start": 413.47, "word": "properties" }, { "confidence": 1, "end": 414.11, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.56933594, "start": 413.94998, "word": "in" }, { "confidence": 1, "end": 414.19, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.56933594, "start": 414.11, "word": "the" }, { "confidence": 1, "end": 414.51, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.56933594, "start": 414.19, "word": "code" }, { "confidence": 0.83251953, "end": 414.75, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.56933594, "start": 414.51, "word": "and" }, { "confidence": 1, "end": 414.83, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.56933594, "start": 414.75, "word": "it" }, { "confidence": 0.99902344, "end": 414.99, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.56933594, "start": 414.83, "word": "will" }, { "confidence": 0.99902344, "end": 415.15, "punctuated_word": "tell", "speaker": 0, "speaker_confidence": 0.56933594, "start": 414.99, "word": "tell" }, { "confidence": 0.99902344, "end": 415.31, "punctuated_word": "us", "speaker": 0, "speaker_confidence": 0.56933594, "start": 415.15, "word": "us" }, { "confidence": 0.9970703, "end": 415.47, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.56933594, "start": 415.31, "word": "the" }, { "confidence": 0.9980469, "end": 415.71, "punctuated_word": "state", "speaker": 0, "speaker_confidence": 0.56933594, "start": 415.47, "word": "state" }, { "confidence": 1, "end": 415.79, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.56933594, "start": 415.71, "word": "of" }, { "confidence": 0.9980469, "end": 415.87, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7807617, "start": 415.79, "word": "the" }, { "confidence": 0.9995117, "end": 416.37, "punctuated_word": "data.", "speaker": 0, "speaker_confidence": 0.7807617, "start": 415.87, "word": "data" }, { "confidence": 0.9970703, "end": 417.07, "punctuated_word": "Managing", "speaker": 0, "speaker_confidence": 0.7807617, "start": 416.66998, "word": "managing" }, { "confidence": 0.9941406, "end": 417.31, "punctuated_word": "state", "speaker": 0, "speaker_confidence": 0.7807617, "start": 417.07, "word": "state" }, { "confidence": 0.9970703, "end": 417.47, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7807617, "start": 417.31, "word": "in" }, { "confidence": 0.9863281, "end": 417.63, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7807617, "start": 417.47, "word": "a" }, { "confidence": 0.99609375, "end": 417.87, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.7807617, "start": 417.63, "word": "web" }, { "confidence": 0.99902344, "end": 418.27, "punctuated_word": "application", "speaker": 0, "speaker_confidence": 0.7807617, "start": 417.87, "word": "application" }, { "confidence": 0.9838867, "end": 418.43, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7807617, "start": 418.27, "word": "is" }, { "confidence": 0.94970703, "end": 418.59, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.7807617, "start": 418.43, "word": "one" }, { "confidence": 0.98828125, "end": 418.75, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7807617, "start": 418.59, "word": "of" }, { "confidence": 0.9716797, "end": 418.83, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7807617, "start": 418.75, "word": "the" }, { "confidence": 0.88134766, "end": 419.125, "punctuated_word": "biggest", "speaker": 0, "speaker_confidence": 0.7807617, "start": 418.83, "word": "biggest" }, { "confidence": 0.62158203, "end": 419.685, "punctuated_word": "Challenges,", "speaker": 0, "speaker_confidence": 0.7807617, "start": 419.285, "word": "challenges" }, { "confidence": 1, "end": 419.925, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7807617, "start": 419.685, "word": "and" }, { "confidence": 1, "end": 420.165, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.7807617, "start": 419.925, "word": "this" }, { "confidence": 0.99609375, "end": 420.645, "punctuated_word": "debugger", "speaker": 0, "speaker_confidence": 0.7807617, "start": 420.165, "word": "debugger" }, { "confidence": 1, "end": 420.805, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7807617, "start": 420.645, "word": "can" }, { "confidence": 1, "end": 421.045, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 0.7807617, "start": 420.805, "word": "really" }, { "confidence": 1, "end": 421.205, "punctuated_word": "help", "speaker": 0, "speaker_confidence": 0.7807617, "start": 421.045, "word": "help" }, { "confidence": 1, "end": 421.365, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7807617, "start": 421.205, "word": "you" }, { "confidence": 1, "end": 421.525, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.7807617, "start": 421.365, "word": "do" }, { "confidence": 1, "end": 421.685, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7807617, "start": 421.525, "word": "that" }, { "confidence": 1, "end": 421.925, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.7807617, "start": 421.685, "word": "more" }, { "confidence": 1, "end": 422.425, "punctuated_word": "effectively.", "speaker": 0, "speaker_confidence": 0.7807617, "start": 421.925, "word": "effectively" }, { "confidence": 0.97998047, "end": 423.365, "punctuated_word": "Another", "speaker": 0, "speaker_confidence": 0.7807617, "start": 422.965, "word": "another" }, { "confidence": 1, "end": 423.685, "punctuated_word": "huge", "speaker": 0, "speaker_confidence": 0.7807617, "start": 423.365, "word": "huge" }, { "confidence": 1, "end": 423.925, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 0.7807617, "start": 423.685, "word": "way" }, { "confidence": 1, "end": 424.085, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7807617, "start": 423.925, "word": "that" }, { "confidence": 0.9633789, "end": 424.405, "punctuated_word": "Versus", "speaker": 0, "speaker_confidence": 0.7807617, "start": 424.085, "word": "versus" }, { "confidence": 0.8457031, "end": 424.645, "punctuated_word": "Code", "speaker": 0, "speaker_confidence": 0.7807617, "start": 424.405, "word": "code" }, { "confidence": 0.9980469, "end": 424.805, "punctuated_word": "helps", "speaker": 0, "speaker_confidence": 0.7807617, "start": 424.645, "word": "helps" }, { "confidence": 1, "end": 424.965, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7807617, "start": 424.805, "word": "you" }, { "confidence": 1, "end": 425.205, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.7807617, "start": 424.965, "word": "out" }, { "confidence": 1, "end": 425.365, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7807617, "start": 425.205, "word": "is" }, { "confidence": 1, "end": 425.525, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.7807617, "start": 425.365, "word": "with" }, { "confidence": 1, "end": 425.845, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.7807617, "start": 425.525, "word": "your" }, { "confidence": 0.6645508, "end": 426.165, "punctuated_word": "git", "speaker": 0, "speaker_confidence": 0.7807617, "start": 425.845, "word": "git" }, { "confidence": 0.9980469, "end": 426.565, "punctuated_word": "version", "speaker": 0, "speaker_confidence": 0.7807617, "start": 426.165, "word": "version" }, { "confidence": 1, "end": 427.065, "punctuated_word": "control.", "speaker": 0, "speaker_confidence": 0.7807617, "start": 426.565, "word": "control" }, { "confidence": 0.9753418, "end": 427.54, "punctuated_word": "Dealing", "speaker": 0, "speaker_confidence": 0.7807617, "start": 427.22, "word": "dealing" }, { "confidence": 0.99902344, "end": 427.7, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.7807617, "start": 427.54, "word": "with" }, { "confidence": 0.5107422, "end": 427.86002, "punctuated_word": "git", "speaker": 0, "speaker_confidence": 0.7807617, "start": 427.7, "word": "git" }, { "confidence": 0.9951172, "end": 428.1, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7807617, "start": 427.86002, "word": "in" }, { "confidence": 1, "end": 428.26, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7807617, "start": 428.1, "word": "a" }, { "confidence": 1, "end": 428.58, "punctuated_word": "large", "speaker": 0, "speaker_confidence": 0.7807617, "start": 428.26, "word": "large" }, { "confidence": 1, "end": 428.9, "punctuated_word": "project", "speaker": 0, "speaker_confidence": 0.7807617, "start": 428.58, "word": "project" }, { "confidence": 0.62841797, "end": 429.22, "punctuated_word": "gets", "speaker": 0, "speaker_confidence": 0.7807617, "start": 428.9, "word": "gets" }, { "confidence": 1, "end": 429.46, "punctuated_word": "pretty", "speaker": 0, "speaker_confidence": 0.7807617, "start": 429.22, "word": "pretty" }, { "confidence": 1, "end": 429.62, "punctuated_word": "hard", "speaker": 0, "speaker_confidence": 0.7807617, "start": 429.46, "word": "hard" }, { "confidence": 1, "end": 429.78, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7807617, "start": 429.62, "word": "to" }, { "confidence": 1, "end": 429.86002, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.6274414, "start": 429.78, "word": "do" }, { "confidence": 1, "end": 430.02, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.6274414, "start": 429.86002, "word": "from" }, { "confidence": 1, "end": 430.18, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6274414, "start": 430.02, "word": "the" }, { "confidence": 1, "end": 430.42, "punctuated_word": "command", "speaker": 0, "speaker_confidence": 0.6274414, "start": 430.18, "word": "command" }, { "confidence": 1, "end": 430.82, "punctuated_word": "line.", "speaker": 0, "speaker_confidence": 0.6274414, "start": 430.42, "word": "line" }, { "confidence": 1, "end": 431.06, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.6274414, "start": 430.82, "word": "you" }, { "confidence": 1, "end": 431.22, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 0.6274414, "start": 431.06, "word": "might" }, { "confidence": 0.8520508, "end": 431.3, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.6274414, "start": 431.22, "word": "have" }, { "confidence": 0.99902344, "end": 431.62, "punctuated_word": "already", "speaker": 0, "speaker_confidence": 0.6274414, "start": 431.3, "word": "already" }, { "confidence": 0.99902344, "end": 431.86002, "punctuated_word": "noticed", "speaker": 0, "speaker_confidence": 0.6274414, "start": 431.62, "word": "noticed" }, { "confidence": 1, "end": 432.02, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.6274414, "start": 431.86002, "word": "that" }, { "confidence": 0.94140625, "end": 432.34, "punctuated_word": "Versus", "speaker": 0, "speaker_confidence": 0.6274414, "start": 432.02, "word": "versus" }, { "confidence": 0.81640625, "end": 432.58, "punctuated_word": "Code", "speaker": 0, "speaker_confidence": 0.6274414, "start": 432.34, "word": "code" }, { "confidence": 0.99902344, "end": 433.08, "punctuated_word": "automatically", "speaker": 0, "speaker_confidence": 0.6274414, "start": 432.58, "word": "automatically" }, { "confidence": 1, "end": 433.54, "punctuated_word": "highlights", "speaker": 0, "speaker_confidence": 0.6274414, "start": 433.14, "word": "highlights" }, { "confidence": 1, "end": 433.7, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.6274414, "start": 433.54, "word": "all" }, { "confidence": 1, "end": 433.78, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7026367, "start": 433.7, "word": "of" }, { "confidence": 1, "end": 433.94, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.7026367, "start": 433.78, "word": "your" }, { "confidence": 0.75341797, "end": 434.44, "punctuated_word": "files.", "speaker": 0, "speaker_confidence": 0.7026367, "start": 433.94, "word": "files" }, { "confidence": 0.97526044, "end": 434.98502, "punctuated_word": "Untracked", "speaker": 0, "speaker_confidence": 0.7026367, "start": 434.585, "word": "untracked" }, { "confidence": 0.99609375, "end": 435.305, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.7026367, "start": 434.98502, "word": "or" }, { "confidence": 0.99902344, "end": 435.545, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.7026367, "start": 435.305, "word": "new" }, { "confidence": 1, "end": 435.865, "punctuated_word": "files", "speaker": 0, "speaker_confidence": 0.7026367, "start": 435.545, "word": "files" }, { "confidence": 0.9921875, "end": 436.105, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.7026367, "start": 435.865, "word": "are" }, { "confidence": 0.90405273, "end": 436.605, "punctuated_word": "green,", "speaker": 0, "speaker_confidence": 0.7026367, "start": 436.105, "word": "green" }, { "confidence": 1, "end": 437.065, "punctuated_word": "modified", "speaker": 0, "speaker_confidence": 0.7026367, "start": 436.665, "word": "modified" }, { "confidence": 0.99902344, "end": 437.385, "punctuated_word": "files", "speaker": 0, "speaker_confidence": 0.7026367, "start": 437.065, "word": "files" }, { "confidence": 0.9941406, "end": 437.545, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.7026367, "start": 437.385, "word": "are" }, { "confidence": 0.9980469, "end": 438.045, "punctuated_word": "yellow,", "speaker": 0, "speaker_confidence": 0.7026367, "start": 437.545, "word": "yellow" }, { "confidence": 1, "end": 438.345, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7026367, "start": 438.105, "word": "and" }, { "confidence": 1, "end": 438.665, "punctuated_word": "files", "speaker": 0, "speaker_confidence": 0.7026367, "start": 438.345, "word": "files" }, { "confidence": 0.99902344, "end": 438.905, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.7026367, "start": 438.665, "word": "with" }, { "confidence": 0.5440674, "end": 439.305, "punctuated_word": "wintein", "speaker": 0, "speaker_confidence": 0.7026367, "start": 438.905, "word": "wintein" }, { "confidence": 0.9951172, "end": 439.625, "punctuated_word": "errors", "speaker": 0, "speaker_confidence": 0.7026367, "start": 439.305, "word": "errors" }, { "confidence": 1, "end": 439.865, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.7026367, "start": 439.625, "word": "are" }, { "confidence": 1, "end": 440.365, "punctuated_word": "red.", "speaker": 0, "speaker_confidence": 0.7026367, "start": 439.865, "word": "red" }, { "confidence": 1, "end": 440.905, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.7026367, "start": 440.745, "word": "if" }, { "confidence": 1, "end": 441.065, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.7026367, "start": 440.905, "word": "we" }, { "confidence": 1, "end": 441.305, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.7026367, "start": 441.065, "word": "want" }, { "confidence": 1, "end": 441.465, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7026367, "start": 441.305, "word": "to" }, { "confidence": 1, "end": 441.785, "punctuated_word": "commit", "speaker": 0, "speaker_confidence": 0.7026367, "start": 441.465, "word": "commit" }, { "confidence": 1, "end": 441.945, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.7026367, "start": 441.785, "word": "some" }, { "confidence": 0.9995117, "end": 442.265, "punctuated_word": "changes,", "speaker": 0, "speaker_confidence": 0.7026367, "start": 441.945, "word": "changes" }, { "confidence": 1, "end": 442.345, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.7026367, "start": 442.265, "word": "we" }, { "confidence": 1, "end": 442.505, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7026367, "start": 442.345, "word": "can" }, { "confidence": 1, "end": 442.745, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.7026367, "start": 442.505, "word": "just" }, { "confidence": 1, "end": 442.825, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.7026367, "start": 442.745, "word": "go" }, { "confidence": 0.9980469, "end": 443.065, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.7026367, "start": 442.825, "word": "into" }, { "confidence": 0.9980469, "end": 443.225, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7026367, "start": 443.065, "word": "the" }, { "confidence": 0.72558594, "end": 443.5, "punctuated_word": "git", "speaker": 0, "speaker_confidence": 0.7026367, "start": 443.225, "word": "git" }, { "confidence": 0.5410156, "end": 443.98, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.7026367, "start": 443.66, "word": "add" }, { "confidence": 0.9482422, "end": 444.14, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.7026367, "start": 443.98, "word": "our" }, { "confidence": 0.9951172, "end": 444.46, "punctuated_word": "commit", "speaker": 0, "speaker_confidence": 0.7026367, "start": 444.14, "word": "commit" }, { "confidence": 0.95751953, "end": 444.86, "punctuated_word": "message,", "speaker": 0, "speaker_confidence": 0.7026367, "start": 444.46, "word": "message" }, { "confidence": 1, "end": 445.1, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7026367, "start": 444.86, "word": "and" }, { "confidence": 1, "end": 445.26, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.7026367, "start": 445.1, "word": "we're" }, { "confidence": 1, "end": 445.5, "punctuated_word": "done.", "speaker": 0, "speaker_confidence": 0.7026367, "start": 445.26, "word": "done" }, { "confidence": 1, "end": 445.66, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.7026367, "start": 445.5, "word": "we" }, { "confidence": 1, "end": 445.9, "punctuated_word": "don't", "speaker": 0, "speaker_confidence": 0.7026367, "start": 445.66, "word": "don't" }, { "confidence": 1, "end": 445.97998, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.7026367, "start": 445.9, "word": "have" }, { "confidence": 1, "end": 446.06, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.61083984, "start": 445.97998, "word": "to" }, { "confidence": 0.99902344, "end": 446.22, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.61083984, "start": 446.06, "word": "do" }, { "confidence": 0.9980469, "end": 446.54, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 0.61083984, "start": 446.22, "word": "any" }, { "confidence": 0.8574219, "end": 446.7, "punctuated_word": "git", "speaker": 0, "speaker_confidence": 0.61083984, "start": 446.54, "word": "git" }, { "confidence": 0.97998047, "end": 446.94, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.61083984, "start": 446.7, "word": "add" }, { "confidence": 0.9970703, "end": 447.18, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.61083984, "start": 446.94, "word": "or" }, { "confidence": 0.95166016, "end": 447.5, "punctuated_word": "git", "speaker": 0, "speaker_confidence": 0.61083984, "start": 447.18, "word": "git" }, { "confidence": 0.98291016, "end": 447.82, "punctuated_word": "flag", "speaker": 0, "speaker_confidence": 0.61083984, "start": 447.5, "word": "flag" }, { "confidence": 0.99902344, "end": 448.22, "punctuated_word": "message", "speaker": 0, "speaker_confidence": 0.61083984, "start": 447.82, "word": "message" }, { "confidence": 1, "end": 448.38, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.61083984, "start": 448.22, "word": "from" }, { "confidence": 1, "end": 448.54, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.61083984, "start": 448.38, "word": "the" }, { "confidence": 1, "end": 448.86, "punctuated_word": "command", "speaker": 0, "speaker_confidence": 0.61083984, "start": 448.54, "word": "command" }, { "confidence": 0.9941406, "end": 449.36, "punctuated_word": "line.", "speaker": 0, "speaker_confidence": 0.61083984, "start": 448.86, "word": "line" }, { "confidence": 1, "end": 449.98, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.61083984, "start": 449.74, "word": "but" }, { "confidence": 1, "end": 450.06, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.61083984, "start": 449.98, "word": "what" }, { "confidence": 1, "end": 450.22, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.61083984, "start": 450.06, "word": "if" }, { "confidence": 1, "end": 450.46, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.61083984, "start": 450.22, "word": "we" }, { "confidence": 1, "end": 450.78, "punctuated_word": "actually", "speaker": 0, "speaker_confidence": 0.61083984, "start": 450.46, "word": "actually" }, { "confidence": 1, "end": 451.1, "punctuated_word": "didn't", "speaker": 0, "speaker_confidence": 0.61083984, "start": 450.78, "word": "didn't" }, { "confidence": 0.99902344, "end": 451.26, "punctuated_word": "mean", "speaker": 0, "speaker_confidence": 0.61083984, "start": 451.1, "word": "mean" }, { "confidence": 0.99902344, "end": 451.42, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.61083984, "start": 451.26, "word": "to" }, { "confidence": 1, "end": 451.74, "punctuated_word": "commit", "speaker": 0, "speaker_confidence": 0.61083984, "start": 451.42, "word": "commit" }, { "confidence": 0.99902344, "end": 451.9, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.61083984, "start": 451.74, "word": "that" }, { "confidence": 0.9970703, "end": 452.3, "punctuated_word": "code?", "speaker": 0, "speaker_confidence": 0.61083984, "start": 451.9, "word": "code" }, { "confidence": 0.99902344, "end": 452.46, "punctuated_word": "Well,", "speaker": 0, "speaker_confidence": 0.61083984, "start": 452.3, "word": "well" }, { "confidence": 0.99902344, "end": 452.62, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.61083984, "start": 452.46, "word": "we" }, { "confidence": 0.99902344, "end": 452.7, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.5629883, "start": 452.62, "word": "can" }, { "confidence": 0.9902344, "end": 452.975, "punctuated_word": "come", "speaker": 0, "speaker_confidence": 0.5629883, "start": 452.7, "word": "come" }, { "confidence": 0.39819336, "end": 453.215, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0.5629883, "start": 453.055, "word": "here" }, { "confidence": 0.99902344, "end": 453.375, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.5629883, "start": 453.215, "word": "to" }, { "confidence": 1, "end": 453.45502, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5629883, "start": 453.375, "word": "the" }, { "confidence": 0.99902344, "end": 453.855, "punctuated_word": "options", "speaker": 0, "speaker_confidence": 0.5629883, "start": 453.45502, "word": "options" }, { "confidence": 1, "end": 454.255, "punctuated_word": "menu", "speaker": 0, "speaker_confidence": 0.5629883, "start": 453.855, "word": "menu" }, { "confidence": 0.96777344, "end": 454.575, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.5629883, "start": 454.255, "word": "and" }, { "confidence": 1, "end": 454.815, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.5629883, "start": 454.575, "word": "just" }, { "confidence": 0.99902344, "end": 455.055, "punctuated_word": "roll", "speaker": 0, "speaker_confidence": 0.5629883, "start": 454.815, "word": "roll" }, { "confidence": 0.9248047, "end": 455.295, "punctuated_word": "back", "speaker": 0, "speaker_confidence": 0.5629883, "start": 455.055, "word": "back" }, { "confidence": 0.99902344, "end": 455.535, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.5629883, "start": 455.295, "word": "that" }, { "confidence": 0.9675293, "end": 456.035, "punctuated_word": "commit.", "speaker": 0, "speaker_confidence": 0.5629883, "start": 455.535, "word": "commit" }, { "confidence": 1, "end": 456.815, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.64208984, "start": 456.655, "word": "and" }, { "confidence": 1, "end": 456.975, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.64208984, "start": 456.815, "word": "you" }, { "confidence": 1, "end": 457.135, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.64208984, "start": 456.975, "word": "can" }, { "confidence": 1, "end": 457.375, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.64208984, "start": 457.135, "word": "run" }, { "confidence": 0.99902344, "end": 457.535, "punctuated_word": "pretty", "speaker": 0, "speaker_confidence": 0.64208984, "start": 457.375, "word": "pretty" }, { "confidence": 1, "end": 457.775, "punctuated_word": "much", "speaker": 0, "speaker_confidence": 0.64208984, "start": 457.535, "word": "much" }, { "confidence": 1, "end": 458.015, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 0.64208984, "start": 457.775, "word": "every" }, { "confidence": 1, "end": 458.255, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.64208984, "start": 458.015, "word": "other" }, { "confidence": 0.84716797, "end": 458.415, "punctuated_word": "Git", "speaker": 0, "speaker_confidence": 0.64208984, "start": 458.255, "word": "git" }, { "confidence": 0.97314453, "end": 458.73502, "punctuated_word": "command", "speaker": 0, "speaker_confidence": 0.64208984, "start": 458.415, "word": "command" }, { "confidence": 1, "end": 458.89502, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.64208984, "start": 458.73502, "word": "from" }, { "confidence": 1, "end": 459.055, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.64208984, "start": 458.89502, "word": "this" }, { "confidence": 1, "end": 459.375, "punctuated_word": "menu", "speaker": 0, "speaker_confidence": 0.64208984, "start": 459.055, "word": "menu" }, { "confidence": 1, "end": 459.535, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.64208984, "start": 459.375, "word": "as" }, { "confidence": 1, "end": 460.035, "punctuated_word": "well.", "speaker": 0, "speaker_confidence": 0.64208984, "start": 459.535, "word": "well" }, { "confidence": 0.9790039, "end": 460.81, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.64208984, "start": 460.65, "word": "if" }, { "confidence": 1, "end": 460.97, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.64208984, "start": 460.81, "word": "we" }, { "confidence": 1, "end": 461.13, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.32666016, "start": 460.97, "word": "want" }, { "confidence": 1, "end": 461.37, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.32666016, "start": 461.13, "word": "to" }, { "confidence": 1, "end": 461.69, "punctuated_word": "revert", "speaker": 0, "speaker_confidence": 0.32666016, "start": 461.37, "word": "revert" }, { "confidence": 1, "end": 461.93, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.32666016, "start": 461.69, "word": "some" }, { "confidence": 1, "end": 462.25, "punctuated_word": "changes", "speaker": 0, "speaker_confidence": 0.32666016, "start": 461.93, "word": "changes" }, { "confidence": 1, "end": 462.33, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.5908203, "start": 462.25, "word": "on" }, { "confidence": 0.9790039, "end": 462.49, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.5908203, "start": 462.33, "word": "a" }, { "confidence": 1, "end": 462.97, "punctuated_word": "specific", "speaker": 0, "speaker_confidence": 0.5908203, "start": 462.49, "word": "specific" }, { "confidence": 1, "end": 463.29, "punctuated_word": "file,", "speaker": 0, "speaker_confidence": 0.5908203, "start": 462.97, "word": "file" }, { "confidence": 1, "end": 463.44998, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.5908203, "start": 463.29, "word": "we" }, { "confidence": 1, "end": 463.61, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.5908203, "start": 463.44998, "word": "can" }, { "confidence": 1, "end": 463.93, "punctuated_word": "simply", "speaker": 0, "speaker_confidence": 0.5908203, "start": 463.61, "word": "simply" }, { "confidence": 1, "end": 464.09, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.5908203, "start": 463.93, "word": "do" }, { "confidence": 1, "end": 464.33, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.5908203, "start": 464.09, "word": "that" }, { "confidence": 1, "end": 464.49, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.5908203, "start": 464.33, "word": "by" }, { "confidence": 1, "end": 464.88998, "punctuated_word": "clicking", "speaker": 0, "speaker_confidence": 0.5908203, "start": 464.49, "word": "clicking" }, { "confidence": 1, "end": 465.13, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.5908203, "start": 464.88998, "word": "this" }, { "confidence": 1, "end": 465.44998, "punctuated_word": "revert", "speaker": 0, "speaker_confidence": 0.5908203, "start": 465.13, "word": "revert" }, { "confidence": 0.8652344, "end": 465.85, "punctuated_word": "button,", "speaker": 0, "speaker_confidence": 0.5908203, "start": 465.44998, "word": "button" }, { "confidence": 1, "end": 466.00998, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.5908203, "start": 465.85, "word": "and" }, { "confidence": 1, "end": 466.25, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.5908203, "start": 466.00998, "word": "that" }, { "confidence": 1, "end": 466.57, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.5908203, "start": 466.25, "word": "will" }, { "confidence": 0.9980469, "end": 466.97, "punctuated_word": "discard", "speaker": 0, "speaker_confidence": 0.5908203, "start": 466.57, "word": "discard" }, { "confidence": 1, "end": 467.13, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.5908203, "start": 466.97, "word": "all" }, { "confidence": 1, "end": 467.21, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.26708984, "start": 467.13, "word": "of" }, { "confidence": 1, "end": 467.37, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.26708984, "start": 467.21, "word": "the" }, { "confidence": 1, "end": 467.69, "punctuated_word": "changes", "speaker": 0, "speaker_confidence": 0.26708984, "start": 467.37, "word": "changes" }, { "confidence": 1, "end": 467.85, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.26708984, "start": 467.69, "word": "that" }, { "confidence": 1, "end": 468.00998, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.26708984, "start": 467.85, "word": "we" }, { "confidence": 0.99853516, "end": 468.50998, "punctuated_word": "made.", "speaker": 0, "speaker_confidence": 0.26708984, "start": 468.00998, "word": "made" }, { "confidence": 0.9614258, "end": 468.835, "punctuated_word": "Or", "speaker": 0, "speaker_confidence": 0.8364258, "start": 468.675, "word": "or" }, { "confidence": 1, "end": 468.995, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.8364258, "start": 468.835, "word": "if" }, { "confidence": 1, "end": 469.075, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.8364258, "start": 468.995, "word": "we" }, { "confidence": 1, "end": 469.23502, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.8364258, "start": 469.075, "word": "just" }, { "confidence": 1, "end": 469.475, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.8364258, "start": 469.23502, "word": "want" }, { "confidence": 1, "end": 469.635, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8364258, "start": 469.475, "word": "to" }, { "confidence": 1, "end": 469.955, "punctuated_word": "commit", "speaker": 0, "speaker_confidence": 0.8364258, "start": 469.635, "word": "commit" }, { "confidence": 1, "end": 470.035, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8364258, "start": 469.955, "word": "a" }, { "confidence": 1, "end": 470.355, "punctuated_word": "couple", "speaker": 0, "speaker_confidence": 0.8364258, "start": 470.035, "word": "couple" }, { "confidence": 0.7675781, "end": 470.675, "punctuated_word": "files", "speaker": 0, "speaker_confidence": 0.8364258, "start": 470.355, "word": "files" }, { "confidence": 0.9975586, "end": 471.175, "punctuated_word": "individually,", "speaker": 0, "speaker_confidence": 0.8364258, "start": 470.675, "word": "individually" }, { "confidence": 1, "end": 471.555, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.8364258, "start": 471.395, "word": "we" }, { "confidence": 1, "end": 471.715, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.8364258, "start": 471.555, "word": "can" }, { "confidence": 1, "end": 471.955, "punctuated_word": "click", "speaker": 0, "speaker_confidence": 0.8364258, "start": 471.715, "word": "click" }, { "confidence": 1, "end": 472.115, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8364258, "start": 471.955, "word": "the" }, { "confidence": 0.9951172, "end": 472.355, "punctuated_word": "plus", "speaker": 0, "speaker_confidence": 0.8364258, "start": 472.115, "word": "plus" }, { "confidence": 1, "end": 472.855, "punctuated_word": "button", "speaker": 0, "speaker_confidence": 0.8364258, "start": 472.355, "word": "button" }, { "confidence": 0.5566406, "end": 473.23502, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8364258, "start": 472.995, "word": "and" }, { "confidence": 1, "end": 473.395, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8364258, "start": 473.23502, "word": "that" }, { "confidence": 1, "end": 473.715, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.8364258, "start": 473.395, "word": "will" }, { "confidence": 1, "end": 473.955, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.8364258, "start": 473.715, "word": "only" }, { "confidence": 1, "end": 474.275, "punctuated_word": "stage", "speaker": 0, "speaker_confidence": 0.8364258, "start": 473.955, "word": "stage" }, { "confidence": 0.99902344, "end": 474.595, "punctuated_word": "those", "speaker": 0, "speaker_confidence": 0.8364258, "start": 474.275, "word": "those" }, { "confidence": 1, "end": 474.915, "punctuated_word": "files", "speaker": 0, "speaker_confidence": 0.8364258, "start": 474.595, "word": "files" }, { "confidence": 1, "end": 475.155, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.8364258, "start": 474.915, "word": "for" }, { "confidence": 1, "end": 475.315, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.8364258, "start": 475.155, "word": "your" }, { "confidence": 1, "end": 475.635, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.8364258, "start": 475.315, "word": "next" }, { "confidence": 0.9995117, "end": 476.135, "punctuated_word": "commit.", "speaker": 0, "speaker_confidence": 0.8364258, "start": 475.635, "word": "commit" }, { "confidence": 0.98095703, "end": 476.81, "punctuated_word": "So", "speaker": 0, "speaker_confidence": 0.8364258, "start": 476.57, "word": "so" }, { "confidence": 0.9995117, "end": 476.97, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.8364258, "start": 476.81, "word": "that's" }, { "confidence": 1, "end": 477.29, "punctuated_word": "super", "speaker": 0, "speaker_confidence": 0.8364258, "start": 476.97, "word": "super" }, { "confidence": 0.99902344, "end": 477.77002, "punctuated_word": "powerful", "speaker": 0, "speaker_confidence": 0.8364258, "start": 477.29, "word": "powerful" }, { "confidence": 1, "end": 477.93, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8364258, "start": 477.77002, "word": "on" }, { "confidence": 0.9941406, "end": 478.17, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.8364258, "start": 477.93, "word": "its" }, { "confidence": 0.9580078, "end": 478.67, "punctuated_word": "own,", "speaker": 0, "speaker_confidence": 0.8364258, "start": 478.17, "word": "own" }, { "confidence": 1, "end": 478.97, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.8364258, "start": 478.73, "word": "but" }, { "confidence": 1, "end": 479.13, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.8364258, "start": 478.97, "word": "i" }, { "confidence": 0.98291016, "end": 479.37, "punctuated_word": "wanna", "speaker": 0, "speaker_confidence": 0.8364258, "start": 479.13, "word": "wanna" }, { "confidence": 0.9980469, "end": 479.45, "punctuated_word": "know", "speaker": 0, "speaker_confidence": 0.8364258, "start": 479.37, "word": "know" }, { "confidence": 0.99902344, "end": 479.61002, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.8364258, "start": 479.45, "word": "about" }, { "confidence": 0.99609375, "end": 479.77002, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8364258, "start": 479.61002, "word": "the" }, { "confidence": 0.77685547, "end": 480.01, "punctuated_word": "git", "speaker": 0, "speaker_confidence": 0.8364258, "start": 479.77002, "word": "git" }, { "confidence": 1, "end": 480.41, "punctuated_word": "status", "speaker": 0, "speaker_confidence": 0.8364258, "start": 480.01, "word": "status" }, { "confidence": 0.99902344, "end": 480.57, "punctuated_word": "pretty", "speaker": 0, "speaker_confidence": 0.8364258, "start": 480.41, "word": "pretty" }, { "confidence": 1, "end": 480.89, "punctuated_word": "much", "speaker": 0, "speaker_confidence": 0.8364258, "start": 480.57, "word": "much" }, { "confidence": 1, "end": 481.29, "punctuated_word": "everywhere", "speaker": 0, "speaker_confidence": 0.8364258, "start": 480.89, "word": "everywhere" }, { "confidence": 0.98828125, "end": 481.37, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8364258, "start": 481.29, "word": "in" }, { "confidence": 0.99902344, "end": 481.53, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.8364258, "start": 481.37, "word": "my" }, { "confidence": 0.9970703, "end": 482.03, "punctuated_word": "code.", "speaker": 0, "speaker_confidence": 0.8364258, "start": 481.53, "word": "code" }, { "confidence": 0.99902344, "end": 482.33002, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.8364258, "start": 482.17, "word": "i" }, { "confidence": 0.99316406, "end": 482.57, "punctuated_word": "wanna", "speaker": 0, "speaker_confidence": 0.8364258, "start": 482.33002, "word": "wanna" }, { "confidence": 0.99609375, "end": 482.81, "punctuated_word": "know", "speaker": 0, "speaker_confidence": 0.8364258, "start": 482.57, "word": "know" }, { "confidence": 1, "end": 482.97, "punctuated_word": "who", "speaker": 0, "speaker_confidence": 0.8364258, "start": 482.81, "word": "who" }, { "confidence": 0.9980469, "end": 483.29, "punctuated_word": "changed", "speaker": 0, "speaker_confidence": 0.8364258, "start": 482.97, "word": "changed" }, { "confidence": 0.9980469, "end": 483.61002, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.8364258, "start": 483.29, "word": "what" }, { "confidence": 0.9951172, "end": 483.85, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8364258, "start": 483.61002, "word": "and" }, { "confidence": 0.99902344, "end": 484.01, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.8364258, "start": 483.85, "word": "when" }, { "confidence": 0.99902344, "end": 484.17, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8364258, "start": 484.01, "word": "it" }, { "confidence": 0.99902344, "end": 484.33002, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.8364258, "start": 484.17, "word": "was" }, { "confidence": 0.6669922, "end": 484.755, "punctuated_word": "changed", "speaker": 0, "speaker_confidence": 0.8364258, "start": 484.33002, "word": "changed" }, { "confidence": 0.7109375, "end": 484.995, "punctuated_word": "Because", "speaker": 0, "speaker_confidence": 0.8364258, "start": 484.835, "word": "because" }, { "confidence": 1, "end": 485.155, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.8364258, "start": 484.995, "word": "i'm" }, { "confidence": 1, "end": 485.23502, "punctuated_word": "working", "speaker": 0, "speaker_confidence": 0.8364258, "start": 485.155, "word": "working" }, { "confidence": 1, "end": 485.475, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.8364258, "start": 485.23502, "word": "with" }, { "confidence": 0.9160156, "end": 485.555, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8364258, "start": 485.475, "word": "a" }, { "confidence": 1, "end": 485.715, "punctuated_word": "team", "speaker": 0, "speaker_confidence": 0.8364258, "start": 485.555, "word": "team" }, { "confidence": 1, "end": 485.875, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8364258, "start": 485.715, "word": "of" }, { "confidence": 0.9892578, "end": 486.275, "punctuated_word": "junior", "speaker": 0, "speaker_confidence": 0.8364258, "start": 485.875, "word": "junior" }, { "confidence": 1, "end": 486.775, "punctuated_word": "developers", "speaker": 0, "speaker_confidence": 0.8364258, "start": 486.275, "word": "developers" }, { "confidence": 0.60009766, "end": 487.075, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8364258, "start": 486.835, "word": "and" }, { "confidence": 1, "end": 487.23502, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.8364258, "start": 487.075, "word": "they" }, { "confidence": 0.99902344, "end": 487.475, "punctuated_word": "keep", "speaker": 0, "speaker_confidence": 0.8364258, "start": 487.23502, "word": "keep" }, { "confidence": 1, "end": 487.795, "punctuated_word": "screwing", "speaker": 0, "speaker_confidence": 0.8364258, "start": 487.475, "word": "screwing" }, { "confidence": 1, "end": 487.95502, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 0.8364258, "start": 487.795, "word": "things" }, { "confidence": 0.79052734, "end": 488.45502, "punctuated_word": "up,", "speaker": 0, "speaker_confidence": 0.8364258, "start": 487.95502, "word": "up" }, { "confidence": 0.9980469, "end": 488.915, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.8364258, "start": 488.755, "word": "we" }, { "confidence": 1, "end": 489.075, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.8364258, "start": 488.915, "word": "can" }, { "confidence": 1, "end": 489.39502, "punctuated_word": "install", "speaker": 0, "speaker_confidence": 0.8364258, "start": 489.075, "word": "install" }, { "confidence": 0.9616699, "end": 489.795, "punctuated_word": "GitLens", "speaker": 0, "speaker_confidence": 0.8364258, "start": 489.39502, "word": "gitlens" }, { "confidence": 0.99902344, "end": 490.035, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.8364258, "start": 489.795, "word": "from" }, { "confidence": 0.99902344, "end": 490.275, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8364258, "start": 490.035, "word": "the" }, { "confidence": 0.98828125, "end": 490.755, "punctuated_word": "extensions", "speaker": 0, "speaker_confidence": 0.8364258, "start": 490.275, "word": "extensions" }, { "confidence": 0.9621582, "end": 491.155, "punctuated_word": "page.", "speaker": 0, "speaker_confidence": 0.8364258, "start": 490.755, "word": "page" }, { "confidence": 1, "end": 491.39502, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.8364258, "start": 491.155, "word": "and" }, { "confidence": 0.88964844, "end": 491.555, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.8364258, "start": 491.39502, "word": "then" }, { "confidence": 0.9980469, "end": 491.635, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.8364258, "start": 491.555, "word": "if" }, { "confidence": 1, "end": 491.795, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.8364258, "start": 491.635, "word": "we" }, { "confidence": 1, "end": 492.035, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.8364258, "start": 491.795, "word": "go" }, { "confidence": 1, "end": 492.195, "punctuated_word": "back", "speaker": 0, "speaker_confidence": 0.8364258, "start": 492.035, "word": "back" }, { "confidence": 1, "end": 492.275, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.65771484, "start": 492.195, "word": "to" }, { "confidence": 0.99902344, "end": 492.435, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.65771484, "start": 492.275, "word": "the" }, { "confidence": 0.86328125, "end": 492.515, "punctuated_word": "Git", "speaker": 0, "speaker_confidence": 0.65771484, "start": 492.435, "word": "git" }, { "confidence": 0.99658203, "end": 492.835, "punctuated_word": "tab,", "speaker": 0, "speaker_confidence": 0.65771484, "start": 492.515, "word": "tab" }, { "confidence": 1, "end": 492.995, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 0.65771484, "start": 492.835, "word": "you'll" }, { "confidence": 1, "end": 493.155, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.65771484, "start": 492.995, "word": "see" }, { "confidence": 1, "end": 493.315, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.65771484, "start": 493.155, "word": "that" }, { "confidence": 1, "end": 493.475, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.65771484, "start": 493.315, "word": "we" }, { "confidence": 1, "end": 493.635, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.65771484, "start": 493.475, "word": "have" }, { "confidence": 1, "end": 493.875, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.65771484, "start": 493.635, "word": "an" }, { "confidence": 1, "end": 494.275, "punctuated_word": "additional", "speaker": 0, "speaker_confidence": 0.65771484, "start": 493.875, "word": "additional" }, { "confidence": 1, "end": 494.71, "punctuated_word": "panel", "speaker": 0, "speaker_confidence": 0.65771484, "start": 494.275, "word": "panel" }, { "confidence": 0.3803711, "end": 494.94998, "punctuated_word": "Here", "speaker": 0, "speaker_confidence": 0.65771484, "start": 494.78998, "word": "here" }, { "confidence": 0.6982422, "end": 495.11, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.65771484, "start": 494.94998, "word": "with" }, { "confidence": 1, "end": 495.19, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.65771484, "start": 495.11, "word": "all" }, { "confidence": 1, "end": 495.43, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.65771484, "start": 495.19, "word": "of" }, { "confidence": 0.9536133, "end": 495.66998, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.65771484, "start": 495.43, "word": "the" }, { "confidence": 0.7832031, "end": 496.16998, "punctuated_word": "GitLens", "speaker": 0, "speaker_confidence": 0.65771484, "start": 495.66998, "word": "gitlens" }, { "confidence": 0.79663086, "end": 496.72998, "punctuated_word": "data.", "speaker": 0, "speaker_confidence": 0.65771484, "start": 496.22998, "word": "data" }, { "confidence": 0.9980469, "end": 497.11, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.65771484, "start": 496.87, "word": "it" }, { "confidence": 1, "end": 497.35, "punctuated_word": "makes", "speaker": 0, "speaker_confidence": 0.65771484, "start": 497.11, "word": "makes" }, { "confidence": 0.9506836, "end": 497.43, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.65771484, "start": 497.35, "word": "it" }, { "confidence": 1, "end": 497.50998, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6845703, "start": 497.43, "word": "a" }, { "confidence": 1, "end": 497.75, "punctuated_word": "lot", "speaker": 0, "speaker_confidence": 0.6845703, "start": 497.50998, "word": "lot" }, { "confidence": 1, "end": 498.06998, "punctuated_word": "easier", "speaker": 0, "speaker_confidence": 0.6845703, "start": 497.75, "word": "easier" }, { "confidence": 1, "end": 498.22998, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6845703, "start": 498.06998, "word": "to" }, { "confidence": 0.99609375, "end": 498.71, "punctuated_word": "traverse", "speaker": 0, "speaker_confidence": 0.6845703, "start": 498.22998, "word": "traverse" }, { "confidence": 0.9970703, "end": 498.87, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6845703, "start": 498.71, "word": "the" }, { "confidence": 0.54345703, "end": 499.11, "punctuated_word": "Git", "speaker": 0, "speaker_confidence": 0.6845703, "start": 498.87, "word": "git" }, { "confidence": 0.97802734, "end": 499.59, "punctuated_word": "tree", "speaker": 0, "speaker_confidence": 0.6845703, "start": 499.11, "word": "tree" }, { "confidence": 0.9902344, "end": 499.91, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6845703, "start": 499.59, "word": "and" }, { "confidence": 0.99121094, "end": 500.31, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.6845703, "start": 499.91, "word": "also" }, { "confidence": 1, "end": 500.55, "punctuated_word": "deal", "speaker": 0, "speaker_confidence": 0.6845703, "start": 500.31, "word": "deal" }, { "confidence": 0.99902344, "end": 500.71, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.6845703, "start": 500.55, "word": "with" }, { "confidence": 0.99902344, "end": 501.03, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 0.6845703, "start": 500.71, "word": "things" }, { "confidence": 0.9658203, "end": 501.35, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.6845703, "start": 501.03, "word": "like" }, { "confidence": 0.9951172, "end": 501.85, "punctuated_word": "stashes", "speaker": 0, "speaker_confidence": 0.6845703, "start": 501.35, "word": "stashes" }, { "confidence": 0.9863281, "end": 502.15, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6845703, "start": 501.91, "word": "and" }, { "confidence": 0.9980469, "end": 502.65, "punctuated_word": "tags", "speaker": 0, "speaker_confidence": 0.6845703, "start": 502.15, "word": "tags" }, { "confidence": 0.97802734, "end": 503.03, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6845703, "start": 502.71, "word": "and" }, { "confidence": 0.9863281, "end": 503.34998, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.6845703, "start": 503.03, "word": "also" }, { "confidence": 0.99609375, "end": 503.59, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.6845703, "start": 503.34998, "word": "your" }, { "confidence": 0.99902344, "end": 503.99, "punctuated_word": "remote", "speaker": 0, "speaker_confidence": 0.6845703, "start": 503.59, "word": "remote" }, { "confidence": 0.9055176, "end": 504.49, "punctuated_word": "repositories.", "speaker": 0, "speaker_confidence": 0.6845703, "start": 503.99, "word": "repositories" }, { "confidence": 0.8256836, "end": 505.24503, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.20703125, "start": 505.08502, "word": "but" }, { "confidence": 1, "end": 505.325, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.20703125, "start": 505.24503, "word": "it" }, { "confidence": 1, "end": 505.64502, "punctuated_word": "doesn't", "speaker": 0, "speaker_confidence": 0.20703125, "start": 505.325, "word": "doesn't" }, { "confidence": 0.9980469, "end": 505.80502, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.20703125, "start": 505.64502, "word": "just" }, { "confidence": 1, "end": 505.965, "punctuated_word": "stop", "speaker": 0, "speaker_confidence": 0.20703125, "start": 505.80502, "word": "stop" }, { "confidence": 0.9838867, "end": 506.125, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.20703125, "start": 505.965, "word": "at" }, { "confidence": 0.99609375, "end": 506.20502, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.73291016, "start": 506.125, "word": "the" }, { "confidence": 0.6074219, "end": 506.36502, "punctuated_word": "Git", "speaker": 0, "speaker_confidence": 0.73291016, "start": 506.20502, "word": "git" }, { "confidence": 0.85668945, "end": 506.765, "punctuated_word": "panel.", "speaker": 0, "speaker_confidence": 0.73291016, "start": 506.36502, "word": "panel" }, { "confidence": 0.99902344, "end": 506.92502, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.73291016, "start": 506.765, "word": "it" }, { "confidence": 0.9980469, "end": 507.405, "punctuated_word": "actually", "speaker": 0, "speaker_confidence": 0.73291016, "start": 506.92502, "word": "actually" }, { "confidence": 1, "end": 507.885, "punctuated_word": "annotates", "speaker": 0, "speaker_confidence": 0.73291016, "start": 507.405, "word": "annotates" }, { "confidence": 1, "end": 508.045, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.73291016, "start": 507.885, "word": "all" }, { "confidence": 1, "end": 508.125, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.73291016, "start": 508.045, "word": "of" }, { "confidence": 1, "end": 508.285, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.73291016, "start": 508.125, "word": "your" }, { "confidence": 0.9970703, "end": 508.605, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.73291016, "start": 508.285, "word": "code" }, { "confidence": 0.99902344, "end": 508.92502, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.73291016, "start": 508.605, "word": "with" }, { "confidence": 0.9980469, "end": 509.405, "punctuated_word": "information", "speaker": 0, "speaker_confidence": 0.73291016, "start": 508.92502, "word": "information" }, { "confidence": 0.9951172, "end": 509.725, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.73291016, "start": 509.405, "word": "about" }, { "confidence": 0.9748535, "end": 510.225, "punctuated_word": "Git.", "speaker": 0, "speaker_confidence": 0.73291016, "start": 509.725, "word": "git" }, { "confidence": 0.99609375, "end": 510.685, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.73291016, "start": 510.52502, "word": "if" }, { "confidence": 0.99902344, "end": 510.765, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.73291016, "start": 510.685, "word": "we" }, { "confidence": 0.99902344, "end": 510.92502, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.73291016, "start": 510.765, "word": "go" }, { "confidence": 0.99121094, "end": 511.165, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.73291016, "start": 510.92502, "word": "into" }, { "confidence": 0.9770508, "end": 511.24503, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.73291016, "start": 511.165, "word": "a" }, { "confidence": 0.99902344, "end": 511.48502, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.73291016, "start": 511.24503, "word": "file" }, { "confidence": 0.99316406, "end": 511.725, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.73291016, "start": 511.48502, "word": "and" }, { "confidence": 0.9941406, "end": 511.965, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.73291016, "start": 511.725, "word": "just" }, { "confidence": 0.99902344, "end": 512.205, "punctuated_word": "hover", "speaker": 0, "speaker_confidence": 0.73291016, "start": 511.965, "word": "hover" }, { "confidence": 0.88427734, "end": 512.46, "punctuated_word": "over", "speaker": 0, "speaker_confidence": 0.73291016, "start": 512.205, "word": "over" }, { "confidence": 0.99902344, "end": 512.62, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.73291016, "start": 512.46, "word": "a" }, { "confidence": 1, "end": 512.78, "punctuated_word": "piece", "speaker": 0, "speaker_confidence": 0.73291016, "start": 512.62, "word": "piece" }, { "confidence": 1, "end": 512.94, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.73291016, "start": 512.78, "word": "of" }, { "confidence": 0.9995117, "end": 513.26, "punctuated_word": "code,", "speaker": 0, "speaker_confidence": 0.73291016, "start": 512.94, "word": "code" }, { "confidence": 1, "end": 513.42004, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.73291016, "start": 513.26, "word": "it" }, { "confidence": 1, "end": 513.58, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.73291016, "start": 513.42004, "word": "will" }, { "confidence": 1, "end": 513.74005, "punctuated_word": "tell", "speaker": 0, "speaker_confidence": 0.73291016, "start": 513.58, "word": "tell" }, { "confidence": 1, "end": 513.9, "punctuated_word": "us", "speaker": 0, "speaker_confidence": 0.73291016, "start": 513.74005, "word": "us" }, { "confidence": 1, "end": 514.30005, "punctuated_word": "exactly", "speaker": 0, "speaker_confidence": 0.73291016, "start": 513.9, "word": "exactly" }, { "confidence": 1, "end": 514.54004, "punctuated_word": "who", "speaker": 0, "speaker_confidence": 0.73291016, "start": 514.30005, "word": "who" }, { "confidence": 1, "end": 514.78, "punctuated_word": "wrote", "speaker": 0, "speaker_confidence": 0.73291016, "start": 514.54004, "word": "wrote" }, { "confidence": 1, "end": 514.94, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.73291016, "start": 514.78, "word": "that" }, { "confidence": 0.99365234, "end": 515.34, "punctuated_word": "code,", "speaker": 0, "speaker_confidence": 0.73291016, "start": 514.94, "word": "code" }, { "confidence": 1, "end": 515.5, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.73291016, "start": 515.34, "word": "when" }, { "confidence": 1, "end": 515.66003, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.73291016, "start": 515.5, "word": "they" }, { "confidence": 1, "end": 515.98004, "punctuated_word": "wrote", "speaker": 0, "speaker_confidence": 0.73291016, "start": 515.66003, "word": "wrote" }, { "confidence": 0.98339844, "end": 516.38, "punctuated_word": "it,", "speaker": 0, "speaker_confidence": 0.73291016, "start": 515.98004, "word": "it" }, { "confidence": 1, "end": 516.54004, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.73291016, "start": 516.38, "word": "and" }, { "confidence": 0.90234375, "end": 516.78, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.73291016, "start": 516.54004, "word": "its" }, { "confidence": 0.9902344, "end": 517.18, "punctuated_word": "commit", "speaker": 0, "speaker_confidence": 0.73291016, "start": 516.78, "word": "commit" }, { "confidence": 0.99853516, "end": 517.68, "punctuated_word": "ID.", "speaker": 0, "speaker_confidence": 0.73291016, "start": 517.18, "word": "id" }, { "confidence": 1, "end": 518.38, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.6948242, "start": 518.22003, "word": "this" }, { "confidence": 1, "end": 518.7, "punctuated_word": "brings", "speaker": 0, "speaker_confidence": 0.6948242, "start": 518.38, "word": "brings" }, { "confidence": 1, "end": 518.94, "punctuated_word": "us", "speaker": 0, "speaker_confidence": 0.6948242, "start": 518.7, "word": "us" }, { "confidence": 1, "end": 519.10004, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6948242, "start": 518.94, "word": "to" }, { "confidence": 0.97509766, "end": 519.42004, "punctuated_word": "Versus", "speaker": 0, "speaker_confidence": 0.6948242, "start": 519.10004, "word": "versus" }, { "confidence": 0.93603516, "end": 519.74005, "punctuated_word": "Code", "speaker": 0, "speaker_confidence": 0.6948242, "start": 519.42004, "word": "code" }, { "confidence": 0.63964844, "end": 519.98004, "punctuated_word": "Live", "speaker": 0, "speaker_confidence": 0.6948242, "start": 519.74005, "word": "live" }, { "confidence": 0.8762207, "end": 520.30005, "punctuated_word": "Share,", "speaker": 0, "speaker_confidence": 0.6948242, "start": 519.98004, "word": "share" }, { "confidence": 1, "end": 520.46, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.6948242, "start": 520.30005, "word": "which" }, { "confidence": 1, "end": 520.7, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.6948242, "start": 520.46, "word": "is" }, { "confidence": 0.99902344, "end": 520.86005, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6948242, "start": 520.7, "word": "a" }, { "confidence": 1, "end": 521.10004, "punctuated_word": "brand", "speaker": 0, "speaker_confidence": 0.6948242, "start": 520.86005, "word": "brand" }, { "confidence": 1, "end": 521.34, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.6948242, "start": 521.10004, "word": "new" }, { "confidence": 1, "end": 521.66003, "punctuated_word": "feature", "speaker": 0, "speaker_confidence": 0.6948242, "start": 521.34, "word": "feature" }, { "confidence": 1, "end": 521.82, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.6948242, "start": 521.66003, "word": "in" }, { "confidence": 1, "end": 521.98004, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6948242, "start": 521.82, "word": "the" }, { "confidence": 0.9946289, "end": 522.355, "punctuated_word": "editor.", "speaker": 0, "speaker_confidence": 0.6948242, "start": 521.98004, "word": "editor" }, { "confidence": 0.97265625, "end": 523.07495, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.6948242, "start": 522.83496, "word": "it" }, { "confidence": 1, "end": 523.315, "punctuated_word": "allows", "speaker": 0, "speaker_confidence": 0.6948242, "start": 523.07495, "word": "allows" }, { "confidence": 1, "end": 523.475, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.6948242, "start": 523.315, "word": "you" }, { "confidence": 1, "end": 523.635, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6948242, "start": 523.475, "word": "to" }, { "confidence": 1, "end": 523.95496, "punctuated_word": "connect", "speaker": 0, "speaker_confidence": 0.6948242, "start": 523.635, "word": "connect" }, { "confidence": 0.8676758, "end": 524.27496, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.6948242, "start": 523.95496, "word": "your" }, { "confidence": 0.9741211, "end": 524.755, "punctuated_word": "GitHub", "speaker": 0, "speaker_confidence": 0.6948242, "start": 524.27496, "word": "github" }, { "confidence": 0.98535156, "end": 524.995, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.6948242, "start": 524.755, "word": "or" }, { "confidence": 0.9970703, "end": 525.315, "punctuated_word": "Azure", "speaker": 0, "speaker_confidence": 0.6948242, "start": 524.995, "word": "azure" }, { "confidence": 0.99609375, "end": 525.555, "punctuated_word": "account", "speaker": 0, "speaker_confidence": 0.6948242, "start": 525.315, "word": "account" }, { "confidence": 1, "end": 525.71497, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6948242, "start": 525.555, "word": "to" }, { "confidence": 0.9902344, "end": 526.035, "punctuated_word": "Versus", "speaker": 0, "speaker_confidence": 0.6948242, "start": 525.71497, "word": "versus" }, { "confidence": 0.9506836, "end": 526.355, "punctuated_word": "Code", "speaker": 0, "speaker_confidence": 0.6948242, "start": 526.035, "word": "code" }, { "confidence": 0.9550781, "end": 526.51495, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6948242, "start": 526.355, "word": "and" }, { "confidence": 1, "end": 526.755, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.6948242, "start": 526.51495, "word": "then" }, { "confidence": 1, "end": 527.235, "punctuated_word": "collaborate", "speaker": 0, "speaker_confidence": 0.6948242, "start": 526.755, "word": "collaborate" }, { "confidence": 1, "end": 527.475, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.6948242, "start": 527.235, "word": "with" }, { "confidence": 1, "end": 527.95496, "punctuated_word": "multiple", "speaker": 0, "speaker_confidence": 0.6948242, "start": 527.475, "word": "multiple" }, { "confidence": 1, "end": 528.195, "punctuated_word": "team", "speaker": 0, "speaker_confidence": 0.6948242, "start": 527.95496, "word": "team" }, { "confidence": 0.99902344, "end": 528.595, "punctuated_word": "members", "speaker": 0, "speaker_confidence": 0.6948242, "start": 528.195, "word": "members" }, { "confidence": 1, "end": 528.83496, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.6948242, "start": 528.595, "word": "on" }, { "confidence": 1, "end": 528.995, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6948242, "start": 528.83496, "word": "a" }, { "confidence": 1, "end": 529.315, "punctuated_word": "single", "speaker": 0, "speaker_confidence": 0.6948242, "start": 528.995, "word": "single" }, { "confidence": 1, "end": 529.71497, "punctuated_word": "document", "speaker": 0, "speaker_confidence": 0.6948242, "start": 529.315, "word": "document" }, { "confidence": 0.984375, "end": 529.875, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.6948242, "start": 529.71497, "word": "in" }, { "confidence": 0.99902344, "end": 530.035, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 0.6948242, "start": 529.875, "word": "real" }, { "confidence": 0.9995117, "end": 530.42, "punctuated_word": "time.", "speaker": 0, "speaker_confidence": 0.6948242, "start": 530.035, "word": "time" }, { "confidence": 0.9741211, "end": 530.82, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.6948242, "start": 530.57996, "word": "it's" }, { "confidence": 0.99316406, "end": 530.89996, "punctuated_word": "kind", "speaker": 0, "speaker_confidence": 0.6948242, "start": 530.82, "word": "kind" }, { "confidence": 1, "end": 531.13995, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.6323242, "start": 530.89996, "word": "of" }, { "confidence": 0.98095703, "end": 531.38, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.6323242, "start": 531.13995, "word": "like" }, { "confidence": 0.9980469, "end": 531.62, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6323242, "start": 531.38, "word": "the" }, { "confidence": 1, "end": 531.94, "punctuated_word": "Google", "speaker": 0, "speaker_confidence": 0.6323242, "start": 531.62, "word": "google" }, { "confidence": 0.9807129, "end": 532.26, "punctuated_word": "Docs", "speaker": 0, "speaker_confidence": 0.6323242, "start": 531.94, "word": "docs" }, { "confidence": 0.99902344, "end": 532.5, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.6323242, "start": 532.26, "word": "of" }, { "confidence": 0.9970703, "end": 532.82, "punctuated_word": "writing", "speaker": 0, "speaker_confidence": 0.6323242, "start": 532.5, "word": "writing" }, { "confidence": 0.99902344, "end": 533.32, "punctuated_word": "code.", "speaker": 0, "speaker_confidence": 0.6323242, "start": 532.82, "word": "code" }, { "confidence": 1, "end": 533.7, "punctuated_word": "I've", "speaker": 0, "speaker_confidence": 0.6323242, "start": 533.45996, "word": "i've" }, { "confidence": 1, "end": 533.86, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.6323242, "start": 533.7, "word": "been" }, { "confidence": 1, "end": 534.01996, "punctuated_word": "able", "speaker": 0, "speaker_confidence": 0.6323242, "start": 533.86, "word": "able" }, { "confidence": 1, "end": 534.1, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6323242, "start": 534.01996, "word": "to" }, { "confidence": 1, "end": 534.26, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.6323242, "start": 534.1, "word": "use" }, { "confidence": 1, "end": 534.5, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.6323242, "start": 534.26, "word": "this" }, { "confidence": 1, "end": 534.66, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.6323242, "start": 534.5, "word": "with" }, { "confidence": 1, "end": 534.89996, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.6323242, "start": 534.66, "word": "some" }, { "confidence": 0.9980469, "end": 535.3, "punctuated_word": "Angular", "speaker": 0, "speaker_confidence": 0.6323242, "start": 534.89996, "word": "angular" }, { "confidence": 0.98339844, "end": 535.7, "punctuated_word": "Firebase", "speaker": 0, "speaker_confidence": 0.6323242, "start": 535.3, "word": "firebase" }, { "confidence": 0.8408203, "end": 535.86, "punctuated_word": "Pro", "speaker": 0, "speaker_confidence": 0.6323242, "start": 535.7, "word": "pro" }, { "confidence": 0.94189453, "end": 536.26, "punctuated_word": "members", "speaker": 0, "speaker_confidence": 0.6323242, "start": 535.86, "word": "members" }, { "confidence": 1, "end": 536.42, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6323242, "start": 536.26, "word": "to" }, { "confidence": 1, "end": 536.92, "punctuated_word": "collaborate", "speaker": 0, "speaker_confidence": 0.6323242, "start": 536.42, "word": "collaborate" }, { "confidence": 1, "end": 537.22, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.6323242, "start": 536.98, "word": "on" }, { "confidence": 0.9250488, "end": 537.62, "punctuated_word": "issues,", "speaker": 0, "speaker_confidence": 0.6323242, "start": 537.22, "word": "issues" }, { "confidence": 1, "end": 537.86, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6323242, "start": 537.62, "word": "and" }, { "confidence": 1, "end": 538.01996, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.6323242, "start": 537.86, "word": "it's" }, { "confidence": 1, "end": 538.33997, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.6323242, "start": 538.01996, "word": "been" }, { "confidence": 1, "end": 538.66, "punctuated_word": "super", "speaker": 0, "speaker_confidence": 0.6323242, "start": 538.33997, "word": "super" }, { "confidence": 1, "end": 539.16, "punctuated_word": "useful.", "speaker": 0, "speaker_confidence": 0.6323242, "start": 538.66, "word": "useful" }, { "confidence": 0.9482422, "end": 539.745, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.6323242, "start": 539.585, "word": "you" }, { "confidence": 1, "end": 539.905, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.6323242, "start": 539.745, "word": "can" }, { "confidence": 1, "end": 540.305, "punctuated_word": "install", "speaker": 0, "speaker_confidence": 0.6323242, "start": 539.905, "word": "install" }, { "confidence": 1, "end": 540.545, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6323242, "start": 540.305, "word": "the" }, { "confidence": 0.8647461, "end": 541.025, "punctuated_word": "extension,", "speaker": 0, "speaker_confidence": 0.6323242, "start": 540.545, "word": "extension" }, { "confidence": 1, "end": 541.34503, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6323242, "start": 541.025, "word": "and" }, { "confidence": 0.9379883, "end": 541.585, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 0.6323242, "start": 541.34503, "word": "you'll" }, { "confidence": 1, "end": 541.745, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.6323242, "start": 541.585, "word": "need" }, { "confidence": 0.99902344, "end": 541.905, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6323242, "start": 541.745, "word": "to" }, { "confidence": 1, "end": 542.305, "punctuated_word": "connect", "speaker": 0, "speaker_confidence": 0.6323242, "start": 541.905, "word": "connect" }, { "confidence": 0.875, "end": 542.465, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6323242, "start": 542.305, "word": "a" }, { "confidence": 0.9741211, "end": 542.865, "punctuated_word": "GitHub", "speaker": 0, "speaker_confidence": 0.6323242, "start": 542.465, "word": "github" }, { "confidence": 0.9941406, "end": 543.185, "punctuated_word": "account", "speaker": 0, "speaker_confidence": 0.6323242, "start": 542.865, "word": "account" }, { "confidence": 0.9980469, "end": 543.505, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.6323242, "start": 543.185, "word": "or" }, { "confidence": 0.95703125, "end": 543.585, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6323242, "start": 543.505, "word": "a" }, { "confidence": 1, "end": 544.065, "punctuated_word": "Microsoft", "speaker": 0, "speaker_confidence": 0.20800781, "start": 543.585, "word": "microsoft" }, { "confidence": 0.9995117, "end": 544.565, "punctuated_word": "account.", "speaker": 0, "speaker_confidence": 0.20800781, "start": 544.065, "word": "account" }, { "confidence": 1, "end": 545.105, "punctuated_word": "After", "speaker": 0, "speaker_confidence": 0.18261719, "start": 544.865, "word": "after" }, { "confidence": 0.9980469, "end": 545.265, "punctuated_word": "that,", "speaker": 0, "speaker_confidence": 0.18261719, "start": 545.105, "word": "that" }, { "confidence": 1, "end": 545.425, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.18261719, "start": 545.265, "word": "it's" }, { "confidence": 1, "end": 545.665, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.18261719, "start": 545.425, "word": "just" }, { "confidence": 1, "end": 545.745, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.32958984, "start": 545.665, "word": "a" }, { "confidence": 1, "end": 545.985, "punctuated_word": "matter", "speaker": 0, "speaker_confidence": 0.32958984, "start": 545.745, "word": "matter" }, { "confidence": 1, "end": 546.145, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.32958984, "start": 545.985, "word": "of" }, { "confidence": 1, "end": 546.545, "punctuated_word": "clicking", "speaker": 0, "speaker_confidence": 0.32958984, "start": 546.145, "word": "clicking" }, { "confidence": 0.7722168, "end": 546.865, "punctuated_word": "share,", "speaker": 0, "speaker_confidence": 0.32958984, "start": 546.545, "word": "share" }, { "confidence": 1, "end": 547.105, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.32958984, "start": 546.865, "word": "and" }, { "confidence": 0.9941406, "end": 547.34503, "punctuated_word": "Versus", "speaker": 0, "speaker_confidence": 0.32958984, "start": 547.105, "word": "versus" }, { "confidence": 0.91845703, "end": 547.665, "punctuated_word": "Code", "speaker": 0, "speaker_confidence": 0.32958984, "start": 547.34503, "word": "code" }, { "confidence": 1, "end": 547.745, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.32958984, "start": 547.665, "word": "will" }, { "confidence": 1, "end": 548.065, "punctuated_word": "return", "speaker": 0, "speaker_confidence": 0.5698242, "start": 547.745, "word": "return" }, { "confidence": 1, "end": 548.225, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.5698242, "start": 548.065, "word": "a" }, { "confidence": 1, "end": 548.465, "punctuated_word": "link", "speaker": 0, "speaker_confidence": 0.5698242, "start": 548.225, "word": "link" }, { "confidence": 1, "end": 548.625, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.5698242, "start": 548.465, "word": "that" }, { "confidence": 1, "end": 548.78503, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.5698242, "start": 548.625, "word": "you" }, { "confidence": 1, "end": 549.025, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.5698242, "start": 548.78503, "word": "can" }, { "confidence": 1, "end": 549.28, "punctuated_word": "pass", "speaker": 0, "speaker_confidence": 0.5698242, "start": 549.025, "word": "pass" }, { "confidence": 0.3046875, "end": 549.60004, "punctuated_word": "along", "speaker": 0, "speaker_confidence": 0.5698242, "start": 549.36005, "word": "along" }, { "confidence": 0.99902344, "end": 549.76, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.5698242, "start": 549.60004, "word": "to" }, { "confidence": 1, "end": 550.08, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.5698242, "start": 549.76, "word": "other" }, { "confidence": 1, "end": 550.32, "punctuated_word": "team", "speaker": 0, "speaker_confidence": 0.5698242, "start": 550.08, "word": "team" }, { "confidence": 1, "end": 550.82, "punctuated_word": "members.", "speaker": 0, "speaker_confidence": 0.5698242, "start": 550.32, "word": "members" }, { "confidence": 0.9970703, "end": 551.44, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.5698242, "start": 551.28, "word": "i" }, { "confidence": 0.9980469, "end": 551.76, "punctuated_word": "probably", "speaker": 0, "speaker_confidence": 0.5698242, "start": 551.44, "word": "probably" }, { "confidence": 1, "end": 551.84, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.5698242, "start": 551.76, "word": "could" }, { "confidence": 0.8095703, "end": 552, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.5698242, "start": 551.84, "word": "have" }, { "confidence": 1, "end": 552.24005, "punctuated_word": "covered", "speaker": 0, "speaker_confidence": 0.5698242, "start": 552, "word": "covered" }, { "confidence": 1, "end": 552.48004, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.5698242, "start": 552.24005, "word": "about" }, { "confidence": 0.97265625, "end": 552.80005, "punctuated_word": "90", "speaker": 0, "speaker_confidence": 0.5698242, "start": 552.48004, "word": "90" }, { "confidence": 0.99902344, "end": 553.04004, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.5698242, "start": 552.80005, "word": "other" }, { "confidence": 1, "end": 553.36005, "punctuated_word": "topics", "speaker": 0, "speaker_confidence": 0.5698242, "start": 553.04004, "word": "topics" }, { "confidence": 1, "end": 553.52, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.5698242, "start": 553.36005, "word": "in" }, { "confidence": 1, "end": 553.60004, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.24951172, "start": 553.52, "word": "this" }, { "confidence": 0.9316406, "end": 553.92004, "punctuated_word": "video,", "speaker": 0, "speaker_confidence": 0.24951172, "start": 553.60004, "word": "video" }, { "confidence": 1, "end": 554.16003, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.24951172, "start": 553.92004, "word": "but" }, { "confidence": 0.9995117, "end": 554.32, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.24951172, "start": 554.16003, "word": "i'm" }, { "confidence": 0.92822266, "end": 554.48004, "punctuated_word": "gonna", "speaker": 0, "speaker_confidence": 0.24951172, "start": 554.32, "word": "gonna" }, { "confidence": 0.9951172, "end": 554.56006, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.24951172, "start": 554.48004, "word": "go" }, { "confidence": 1, "end": 554.72003, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 0.24951172, "start": 554.56006, "word": "ahead" }, { "confidence": 0.99902344, "end": 554.80005, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.24951172, "start": 554.72003, "word": "and" }, { "confidence": 1, "end": 555.04004, "punctuated_word": "wrap", "speaker": 0, "speaker_confidence": 0.6176758, "start": 554.80005, "word": "wrap" }, { "confidence": 1, "end": 555.28, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 0.6176758, "start": 555.04004, "word": "things" }, { "confidence": 1, "end": 555.44, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.6176758, "start": 555.28, "word": "up" }, { "confidence": 0.9995117, "end": 555.76, "punctuated_word": "there.", "speaker": 0, "speaker_confidence": 0.6176758, "start": 555.44, "word": "there" }, { "confidence": 0.9980469, "end": 555.92004, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.6176758, "start": 555.76, "word": "if" }, { "confidence": 1, "end": 556, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.6176758, "start": 555.92004, "word": "it" }, { "confidence": 0.9838867, "end": 556.24005, "punctuated_word": "helped", "speaker": 0, "speaker_confidence": 0.6176758, "start": 556, "word": "helped" }, { "confidence": 0.9472656, "end": 556.48004, "punctuated_word": "you,", "speaker": 0, "speaker_confidence": 0.6176758, "start": 556.24005, "word": "you" }, { "confidence": 1, "end": 556.72003, "punctuated_word": "please", "speaker": 0, "speaker_confidence": 0.6176758, "start": 556.48004, "word": "please" }, { "confidence": 0.89208984, "end": 556.88, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.6176758, "start": 556.72003, "word": "like" }, { "confidence": 0.9980469, "end": 557.04004, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6176758, "start": 556.88, "word": "and" }, { "confidence": 0.99560547, "end": 557.54004, "punctuated_word": "subscribe.", "speaker": 0, "speaker_confidence": 0.6176758, "start": 557.04004, "word": "subscribe" }, { "confidence": 0.8833008, "end": 558.04504, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.6176758, "start": 557.805, "word": "and" }, { "confidence": 0.9980469, "end": 558.205, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.6176758, "start": 558.04504, "word": "if" }, { "confidence": 1, "end": 558.365, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.6176758, "start": 558.205, "word": "you're" }, { "confidence": 1, "end": 558.685, "punctuated_word": "serious", "speaker": 0, "speaker_confidence": 0.6176758, "start": 558.365, "word": "serious" }, { "confidence": 1, "end": 558.92505, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.6176758, "start": 558.685, "word": "about" }, { "confidence": 1, "end": 559.245, "punctuated_word": "building", "speaker": 0, "speaker_confidence": 0.6176758, "start": 558.92505, "word": "building" }, { "confidence": 0.9995117, "end": 559.565, "punctuated_word": "apps,", "speaker": 0, "speaker_confidence": 0.6176758, "start": 559.245, "word": "apps" }, { "confidence": 1, "end": 559.965, "punctuated_word": "consider", "speaker": 0, "speaker_confidence": 0.6176758, "start": 559.565, "word": "consider" }, { "confidence": 0.99902344, "end": 560.28503, "punctuated_word": "becoming", "speaker": 0, "speaker_confidence": 0.6176758, "start": 559.965, "word": "becoming" }, { "confidence": 0.99902344, "end": 560.445, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6176758, "start": 560.28503, "word": "a" }, { "confidence": 0.7392578, "end": 560.60504, "punctuated_word": "pro", "speaker": 0, "speaker_confidence": 0.6176758, "start": 560.445, "word": "pro" }, { "confidence": 0.95703125, "end": 560.92505, "punctuated_word": "member", "speaker": 0, "speaker_confidence": 0.6176758, "start": 560.60504, "word": "member" }, { "confidence": 0.9404297, "end": 561.085, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.6176758, "start": 560.92505, "word": "at" }, { "confidence": 0.8873698, "end": 561.585, "punctuated_word": "angularfirebase.com.", "speaker": 0, "speaker_confidence": 0.6176758, "start": 561.085, "word": "angularfirebase.com" }, { "confidence": 0.9921875, "end": 562.685, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.6176758, "start": 562.525, "word": "we" }, { "confidence": 1, "end": 562.84503, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.6176758, "start": 562.685, "word": "can" }, { "confidence": 0.9482422, "end": 563.005, "punctuated_word": "write", "speaker": 0, "speaker_confidence": 0.6176758, "start": 562.84503, "word": "write" }, { "confidence": 0.99902344, "end": 563.245, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.6176758, "start": 563.005, "word": "code" }, { "confidence": 1, "end": 563.565, "punctuated_word": "together", "speaker": 0, "speaker_confidence": 0.6176758, "start": 563.245, "word": "together" }, { "confidence": 1, "end": 563.805, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.6176758, "start": 563.565, "word": "using" }, { "confidence": 0.9316406, "end": 564.125, "punctuated_word": "Versus", "speaker": 0, "speaker_confidence": 0.6176758, "start": 563.805, "word": "versus" }, { "confidence": 0.93847656, "end": 564.365, "punctuated_word": "Code", "speaker": 0, "speaker_confidence": 0.6176758, "start": 564.125, "word": "code" }, { "confidence": 0.5888672, "end": 564.60504, "punctuated_word": "Live", "speaker": 0, "speaker_confidence": 0.6176758, "start": 564.365, "word": "live" }, { "confidence": 0.96972656, "end": 565.005, "punctuated_word": "Share", "speaker": 0, "speaker_confidence": 0.6176758, "start": 564.60504, "word": "share" }, { "confidence": 0.98535156, "end": 565.16504, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6176758, "start": 565.005, "word": "and" }, { "confidence": 1, "end": 565.405, "punctuated_word": "work", "speaker": 0, "speaker_confidence": 0.6176758, "start": 565.16504, "word": "work" }, { "confidence": 1, "end": 565.645, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.6176758, "start": 565.405, "word": "on" }, { "confidence": 1, "end": 566.145, "punctuated_word": "strategies", "speaker": 0, "speaker_confidence": 0.6176758, "start": 565.645, "word": "strategies" }, { "confidence": 1, "end": 566.365, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6176758, "start": 566.205, "word": "to" }, { "confidence": 1, "end": 566.445, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.5185547, "start": 566.365, "word": "get" }, { "confidence": 1, "end": 566.685, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.5185547, "start": 566.445, "word": "your" }, { "confidence": 0.99902344, "end": 566.92505, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.5185547, "start": 566.685, "word": "app" }, { "confidence": 0.99902344, "end": 567.18, "punctuated_word": "built", "speaker": 0, "speaker_confidence": 0.5185547, "start": 566.92505, "word": "built" }, { "confidence": 0.5571289, "end": 567.42, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.5185547, "start": 567.26, "word": "and" }, { "confidence": 0.9248047, "end": 567.66, "punctuated_word": "shipped", "speaker": 0, "speaker_confidence": 0.5185547, "start": 567.42, "word": "shipped" }, { "confidence": 1, "end": 567.82, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.5185547, "start": 567.66, "word": "as" }, { "confidence": 1, "end": 568.14, "punctuated_word": "soon", "speaker": 0, "speaker_confidence": 0.5185547, "start": 567.82, "word": "soon" }, { "confidence": 1, "end": 568.22, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.5185547, "start": 568.14, "word": "as" }, { "confidence": 0.9995117, "end": 568.72, "punctuated_word": "possible.", "speaker": 0, "speaker_confidence": 0.5185547, "start": 568.22, "word": "possible" }, { "confidence": 0.9970703, "end": 569.26, "punctuated_word": "Thanks", "speaker": 0, "speaker_confidence": 0.5185547, "start": 569.02, "word": "thanks" }, { "confidence": 1, "end": 569.42, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.5185547, "start": 569.26, "word": "for" }, { "confidence": 0.98168945, "end": 569.89996, "punctuated_word": "watching,", "speaker": 0, "speaker_confidence": 0.5185547, "start": 569.42, "word": "watching" }, { "confidence": 1, "end": 570.14, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.5185547, "start": 569.89996, "word": "and" }, { "confidence": 0.9975586, "end": 570.38, "punctuated_word": "I'll", "speaker": 0, "speaker_confidence": 0.5185547, "start": 570.14, "word": "i'll" }, { "confidence": 1, "end": 570.54, "punctuated_word": "talk", "speaker": 0, "speaker_confidence": 0.5185547, "start": 570.38, "word": "talk" }, { "confidence": 0.9980469, "end": 570.7, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.5185547, "start": 570.54, "word": "to" }, { "confidence": 1, "end": 570.86, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.5185547, "start": 570.7, "word": "you" }, { "confidence": 0.99902344, "end": 571.36, "punctuated_word": "soon.", "speaker": 0, "speaker_confidence": 0.5185547, "start": 570.86, "word": "soon" } ] } ], "detected_language": "", "language_confidence": 0, "search": null } ], "summary": { "result": "success", "short": "In this video, the speakers discuss the benefits of Versus Code for coding, including its minimal and powerful code, speedy file navigation, and integrated command line terminal. They also show a demonstration of how to use the command line terminal and paste a JSON file to access a tweet file. The IntelliSense feature allows for code auto completion and peak definition of types in a file, and the speaker emphasizes the importance of strong typing in coding. The speakers also discuss installing the Spotify extension and running code, managing state in a web app, and using the app in version control and editing code. They end with a recommendation for becoming a pro member at angular pat... pat... pat... pat... pat... pat... pat... pat... pat... pat... pat... pat... pat... pat... pat... pat... pat... pat... pat... pat... pat... pat... pat... pat... pat... pat... pat... pat... pat... pat... pat... pat... pat... pat..." }, "utterances": null } }
downloads\VS_Code_Top-Ten_Pro_Tips.wav
https://www.youtube.com/watch?v=u21W_tfPVrY
VS Code Top-Ten Pro Tips
1,918,171
Fireship
123
What is Vue.js? Learn the basics of Vue and build your first reactive UI component in just 100 seconds ⚡👀 https://fireship.io/courses/vue/ Vue Docs https://vuejs.org/ Build a full-stack app with Vue & Firebase 🔥👀 https://fireship.io/courses/vue/ Install the quiz app 🤓 iOS https://itunes.apple.com/us/app/fireship/id1462592372?mt=8 Android https://play.google.com/store/apps/details?id=io.fireship.quizapp Upgrade to Fireship PRO at https://fireship.io/pro Use code lORhwXd2 for 25% off your first payment. My VS Code Theme - Atom One Dark - vscode-icons - Fira Code Font
{ "metadata": { "channels": 1, "created": "2024-02-04T06:17:14.441Z", "duration": 123.43725, "model_info": { "30089e05-99d1-4376-b32e-c263170674af": { "arch": "nova-2", "name": "2-general-nova", "version": "2024-01-09.29447" } }, "models": [ "30089e05-99d1-4376-b32e-c263170674af" ], "request_id": "8fb4ab2f-d3a8-4688-9730-fc4b0c9e39f7", "sha256": "90e3022c814da2a69162f0c4230289e92c87886f2cb23bd1e77bfae6abcead62", "summary_info": { "input_tokens": 524, "model_uuid": "67875a7f-c9c4-48a0-aa55-5bdb8a91c34a", "output_tokens": 83 }, "transaction_key": "deprecated", "warnings": null }, "results": { "channels": [ { "alternatives": [ { "confidence": 0.99902344, "entities": null, "paragraphs": { "paragraphs": [ { "end": 18.86, "num_words": 64, "sentences": [ { "end": 0.79999995, "start": 0.39999998, "text": "Vue." }, { "end": 1.12, "start": 0.79999995, "text": "Js." }, { "end": 3.9399998, "start": 1.12, "text": "It's a JavaScript framework for building front end UIs." }, { "end": 9.86, "start": 4, "text": "In Vue, you can start simple and then progressively add in the tools and features that you need to build a complex web application." }, { "end": 18.86, "start": 9.985, "text": "At its core, it provides a way to build components that encapsulate data or state in your JavaScript, and then connect that state reactively to a template in HTML." } ], "speaker": 0, "start": 0.39999998 }, { "end": 45.399998, "num_words": 99, "sentences": [ { "end": 25.08, "start": 19.08, "text": "We call these components declarative views because the same data inputs will always produce the same output in the visual UI." }, { "end": 30.345001, "start": 25.08, "text": "When we declared data on this data object, It links or binds it to the HTML on the template above." }, { "end": 35.405, "start": 30.345001, "text": "When the value of the data changes, the component will automatically rerender or in other words, it's reactive." }, { "end": 41.059998, "start": 35.7, "text": "And the framework does a ton of work under the hood to make sure that this process is performant across a huge component tree." }, { "end": 45.399998, "start": 41.059998, "text": "We can work with this data in the template thanks to Vue's HTML based template syntax." } ], "speaker": 0, "start": 19.08 }, { "end": 77.38, "num_words": 124, "sentences": [ { "end": 53.91, "start": 45.655003, "text": "We can interpolate a value or expression using double braces, and we also have a variety of directives to control the behavior of the HTML based on the Yeah." }, { "end": 63.449997, "start": 53.91, "text": "We can use 'v if' to only render an element when the value on the right side is truthy and then we might have a fallback element after that that's only rendered when the value is falsy with 'v else'." }, { "end": 66.045, "start": 63.51, "text": "We We can make the app interactive by listening to events." }, { "end": 72.32, "start": 66.265, "text": "Using the v on directive, we can listen to an event on an element, then run some code to handle that event on the right side." }, { "end": 77.38, "start": 72.4, "text": "We can do that directly in the template or define a custom method in the component's methods object." } ], "speaker": 0, "start": 45.655003 }, { "end": 103.505, "num_words": 94, "sentences": [ { "end": 84.645, "start": 77.52, "text": "The method has access to our reactive data and that means all we have to do is change the value of the data and the component will automatically rerender." }, { "end": 88.785, "start": 84.865, "text": "And that's all it takes to build an interactive reactive declarative UI component with Vue." }, { "end": 94, "start": 88.785, "text": "The framework is loved by developers for this but also its ability to scale up in complexity incrementally." }, { "end": 100.445, "start": 94.62, "text": "Its plug in system allows you to easily drop in things like a router, state management, Firebase support, and more." }, { "end": 103.505, "start": 100.605, "text": "And perhaps best of all, it's not sponsored by some mega corporation." } ], "speaker": 0, "start": 77.52 }, { "end": 120.41225, "num_words": 73, "sentences": [ { "end": 108.045, "start": 103.805, "text": "It's not pressured to push out new releases all the time and does a great job listening to its community." }, { "end": 108.925, "start": 108.045, "text": "This has been Vue." }, { "end": 110.305, "start": 108.925, "text": "Js in 100 seconds." }, { "end": 117.95, "start": 110.43, "text": "Stay tuned for a full length tutorial here on YouTube in the near future, and check out my View Firebase course on Fireship if you're ready to start building a full stack app." }, { "end": 120.41225, "start": 117.95, "text": "Thanks for watching, and I will see you in the next one." } ], "speaker": 0, "start": 103.805 } ], "transcript": "\nSpeaker 0: Vue. Js. It's a JavaScript framework for building front end UIs. In Vue, you can start simple and then progressively add in the tools and features that you need to build a complex web application. At its core, it provides a way to build components that encapsulate data or state in your JavaScript, and then connect that state reactively to a template in HTML.\n\nWe call these components declarative views because the same data inputs will always produce the same output in the visual UI. When we declared data on this data object, It links or binds it to the HTML on the template above. When the value of the data changes, the component will automatically rerender or in other words, it's reactive. And the framework does a ton of work under the hood to make sure that this process is performant across a huge component tree. We can work with this data in the template thanks to Vue's HTML based template syntax.\n\nWe can interpolate a value or expression using double braces, and we also have a variety of directives to control the behavior of the HTML based on the Yeah. We can use 'v if' to only render an element when the value on the right side is truthy and then we might have a fallback element after that that's only rendered when the value is falsy with 'v else'. We We can make the app interactive by listening to events. Using the v on directive, we can listen to an event on an element, then run some code to handle that event on the right side. We can do that directly in the template or define a custom method in the component's methods object.\n\nThe method has access to our reactive data and that means all we have to do is change the value of the data and the component will automatically rerender. And that's all it takes to build an interactive reactive declarative UI component with Vue. The framework is loved by developers for this but also its ability to scale up in complexity incrementally. Its plug in system allows you to easily drop in things like a router, state management, Firebase support, and more. And perhaps best of all, it's not sponsored by some mega corporation.\n\nIt's not pressured to push out new releases all the time and does a great job listening to its community. This has been Vue. Js in 100 seconds. Stay tuned for a full length tutorial here on YouTube in the near future, and check out my View Firebase course on Fireship if you're ready to start building a full stack app. Thanks for watching, and I will see you in the next one." }, "summaries": null, "topics": [ { "end_word": 35, "start_word": 0, "text": "Vue. Js. It's a JavaScript framework for building front end UIs. In Vue, you can start simple and then progressively add in the tools and features that you need to build a complex web application.", "topics": [] }, { "end_word": 163, "start_word": 35, "text": "At its core, it provides a way to build components that encapsulate data or state in your JavaScript, and then connect that state reactively to a template in HTML. We call these components declarative views because the same data inputs will always produce the same output in the visual UI. When we declared data on this data object, It links or binds it to the HTML on the template above. When the value of the data changes, the component will automatically rerender or in other words, it's reactive. And the framework does a ton of work under the hood to make sure that this process is performant across a huge component tree. We can work with this data in the template thanks to Vue's HTML based template syntax.", "topics": [ { "confidence": 0.22765087, "topic": "visualization" }, { "confidence": 0.057321656, "topic": "data" }, { "confidence": 0.013804467, "topic": "systems" }, { "confidence": 0.006240626, "topic": "programming" } ] }, { "end_word": 316, "start_word": 163, "text": "We can interpolate a value or expression using double braces, and we also have a variety of directives to control the behavior of the HTML based on the Yeah. We can use 'v if' to only render an element when the value on the right side is truthy and then we might have a fallback element after that that's only rendered when the value is falsy with 'v else'. We We can make the app interactive by listening to events. Using the v on directive, we can listen to an event on an element, then run some code to handle that event on the right side. We can do that directly in the template or define a custom method in the component's methods object. The method has access to our reactive data and that means all we have to do is change the value of the data and the component will automatically rerender.", "topics": [] }, { "end_word": 369, "start_word": 316, "text": "And that's all it takes to build an interactive reactive declarative UI component with Vue. The framework is loved by developers for this but also its ability to scale up in complexity incrementally. Its plug in system allows you to easily drop in things like a router, state management, Firebase support, and more.", "topics": [ { "confidence": 0.31777614, "topic": "software" }, { "confidence": 0.22132567, "topic": "software development" } ] }, { "end_word": 409, "start_word": 369, "text": "And perhaps best of all, it's not sponsored by some mega corporation. It's not pressured to push out new releases all the time and does a great job listening to its community. This has been Vue. Js in 100 seconds.", "topics": [] }, { "end_word": 454, "start_word": 409, "text": "Stay tuned for a full length tutorial here on YouTube in the near future, and check out my View Firebase course on Fireship if you're ready to start building a full stack app. Thanks for watching, and I will see you in the next one.", "topics": [ { "confidence": 0.25631595, "topic": "youtube" } ] } ], "transcript": "Vue. Js. It's a JavaScript framework for building front end UIs. In Vue, you can start simple and then progressively add in the tools and features that you need to build a complex web application. At its core, it provides a way to build components that encapsulate data or state in your JavaScript, and then connect that state reactively to a template in HTML. We call these components declarative views because the same data inputs will always produce the same output in the visual UI. When we declared data on this data object, It links or binds it to the HTML on the template above. When the value of the data changes, the component will automatically rerender or in other words, it's reactive. And the framework does a ton of work under the hood to make sure that this process is performant across a huge component tree. We can work with this data in the template thanks to Vue's HTML based template syntax. We can interpolate a value or expression using double braces, and we also have a variety of directives to control the behavior of the HTML based on the Yeah. We can use 'v if' to only render an element when the value on the right side is truthy and then we might have a fallback element after that that's only rendered when the value is falsy with 'v else'. We We can make the app interactive by listening to events. Using the v on directive, we can listen to an event on an element, then run some code to handle that event on the right side. We can do that directly in the template or define a custom method in the component's methods object. The method has access to our reactive data and that means all we have to do is change the value of the data and the component will automatically rerender. And that's all it takes to build an interactive reactive declarative UI component with Vue. The framework is loved by developers for this but also its ability to scale up in complexity incrementally. Its plug in system allows you to easily drop in things like a router, state management, Firebase support, and more. And perhaps best of all, it's not sponsored by some mega corporation. It's not pressured to push out new releases all the time and does a great job listening to its community. This has been Vue. Js in 100 seconds. Stay tuned for a full length tutorial here on YouTube in the near future, and check out my View Firebase course on Fireship if you're ready to start building a full stack app. Thanks for watching, and I will see you in the next one.", "translations": null, "words": [ { "confidence": 0.742513, "end": 0.79999995, "punctuated_word": "Vue.", "speaker": 0, "speaker_confidence": 0.79052734, "start": 0.39999998, "word": "vue" }, { "confidence": 0.72998047, "end": 1.12, "punctuated_word": "Js.", "speaker": 0, "speaker_confidence": 0.79052734, "start": 0.79999995, "word": "js" }, { "confidence": 0.9951172, "end": 1.36, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.79052734, "start": 1.12, "word": "it's" }, { "confidence": 0.99902344, "end": 1.5999999, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.79052734, "start": 1.36, "word": "a" }, { "confidence": 0.9838867, "end": 2.08, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.79052734, "start": 1.5999999, "word": "javascript" }, { "confidence": 0.98535156, "end": 2.56, "punctuated_word": "framework", "speaker": 0, "speaker_confidence": 0.79052734, "start": 2.08, "word": "framework" }, { "confidence": 1, "end": 2.72, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.79052734, "start": 2.56, "word": "for" }, { "confidence": 0.9980469, "end": 3.04, "punctuated_word": "building", "speaker": 0, "speaker_confidence": 0.79052734, "start": 2.72, "word": "building" }, { "confidence": 0.9921875, "end": 3.28, "punctuated_word": "front", "speaker": 0, "speaker_confidence": 0.79052734, "start": 3.04, "word": "front" }, { "confidence": 0.8520508, "end": 3.4399998, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.79052734, "start": 3.28, "word": "end" }, { "confidence": 0.92903644, "end": 3.9399998, "punctuated_word": "UIs.", "speaker": 0, "speaker_confidence": 0.79052734, "start": 3.4399998, "word": "uis" }, { "confidence": 0.9970703, "end": 4.16, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.79052734, "start": 4, "word": "in" }, { "confidence": 0.9427083, "end": 4.48, "punctuated_word": "Vue,", "speaker": 0, "speaker_confidence": 0.79052734, "start": 4.16, "word": "vue" }, { "confidence": 0.99902344, "end": 4.56, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.79248047, "start": 4.48, "word": "you" }, { "confidence": 1, "end": 4.72, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.79248047, "start": 4.56, "word": "can" }, { "confidence": 1, "end": 5.04, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 0.79248047, "start": 4.72, "word": "start" }, { "confidence": 1, "end": 5.44, "punctuated_word": "simple", "speaker": 0, "speaker_confidence": 0.79248047, "start": 5.04, "word": "simple" }, { "confidence": 0.8286133, "end": 5.6, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.79248047, "start": 5.44, "word": "and" }, { "confidence": 0.99902344, "end": 5.8399997, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.79248047, "start": 5.6, "word": "then" }, { "confidence": 0.99902344, "end": 6.3199997, "punctuated_word": "progressively", "speaker": 0, "speaker_confidence": 0.79248047, "start": 5.8399997, "word": "progressively" }, { "confidence": 0.9970703, "end": 6.48, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.79248047, "start": 6.3199997, "word": "add" }, { "confidence": 1, "end": 6.64, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.79248047, "start": 6.48, "word": "in" }, { "confidence": 1, "end": 6.7999997, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.79248047, "start": 6.64, "word": "the" }, { "confidence": 1, "end": 7.04, "punctuated_word": "tools", "speaker": 0, "speaker_confidence": 0.79248047, "start": 6.7999997, "word": "tools" }, { "confidence": 0.9980469, "end": 7.2, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.79248047, "start": 7.04, "word": "and" }, { "confidence": 1, "end": 7.52, "punctuated_word": "features", "speaker": 0, "speaker_confidence": 0.79248047, "start": 7.2, "word": "features" }, { "confidence": 1, "end": 7.6, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.6694336, "start": 7.52, "word": "that" }, { "confidence": 1, "end": 7.7599998, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.6694336, "start": 7.6, "word": "you" }, { "confidence": 1, "end": 8, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.6694336, "start": 7.7599998, "word": "need" }, { "confidence": 0.9970703, "end": 8.24, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6694336, "start": 8, "word": "to" }, { "confidence": 1, "end": 8.48, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.6694336, "start": 8.24, "word": "build" }, { "confidence": 1, "end": 8.639999, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6694336, "start": 8.48, "word": "a" }, { "confidence": 1, "end": 9.12, "punctuated_word": "complex", "speaker": 0, "speaker_confidence": 0.6694336, "start": 8.639999, "word": "complex" }, { "confidence": 0.99316406, "end": 9.36, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.6694336, "start": 9.12, "word": "web" }, { "confidence": 0.9970703, "end": 9.86, "punctuated_word": "application.", "speaker": 0, "speaker_confidence": 0.6694336, "start": 9.36, "word": "application" }, { "confidence": 1, "end": 10.1449995, "punctuated_word": "At", "speaker": 0, "speaker_confidence": 0.47753906, "start": 9.985, "word": "at" }, { "confidence": 0.98291016, "end": 10.384999, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.47753906, "start": 10.1449995, "word": "its" }, { "confidence": 0.9667969, "end": 10.705, "punctuated_word": "core,", "speaker": 0, "speaker_confidence": 0.47753906, "start": 10.384999, "word": "core" }, { "confidence": 0.9980469, "end": 10.945, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.47753906, "start": 10.705, "word": "it" }, { "confidence": 1, "end": 11.264999, "punctuated_word": "provides", "speaker": 0, "speaker_confidence": 0.47753906, "start": 10.945, "word": "provides" }, { "confidence": 1, "end": 11.344999, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.47753906, "start": 11.264999, "word": "a" }, { "confidence": 1, "end": 11.504999, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 0.7866211, "start": 11.344999, "word": "way" }, { "confidence": 1, "end": 11.665, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7866211, "start": 11.504999, "word": "to" }, { "confidence": 1, "end": 11.985, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.7866211, "start": 11.665, "word": "build" }, { "confidence": 0.96777344, "end": 12.485, "punctuated_word": "components", "speaker": 0, "speaker_confidence": 0.7866211, "start": 11.985, "word": "components" }, { "confidence": 0.9951172, "end": 12.785, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7866211, "start": 12.625, "word": "that" }, { "confidence": 0.99853516, "end": 13.285, "punctuated_word": "encapsulate", "speaker": 0, "speaker_confidence": 0.7866211, "start": 12.785, "word": "encapsulate" }, { "confidence": 0.9980469, "end": 13.825, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.7866211, "start": 13.424999, "word": "data" }, { "confidence": 0.92333984, "end": 14.065, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.7866211, "start": 13.825, "word": "or" }, { "confidence": 0.9863281, "end": 14.385, "punctuated_word": "state", "speaker": 0, "speaker_confidence": 0.7866211, "start": 14.065, "word": "state" }, { "confidence": 0.99902344, "end": 14.545, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7866211, "start": 14.385, "word": "in" }, { "confidence": 1, "end": 14.785, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.7866211, "start": 14.545, "word": "your" }, { "confidence": 0.7770996, "end": 15.285, "punctuated_word": "JavaScript,", "speaker": 0, "speaker_confidence": 0.7866211, "start": 14.785, "word": "javascript" }, { "confidence": 0.99902344, "end": 15.584999, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7426758, "start": 15.424999, "word": "and" }, { "confidence": 0.99902344, "end": 15.744999, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.7426758, "start": 15.584999, "word": "then" }, { "confidence": 0.99316406, "end": 16.064999, "punctuated_word": "connect", "speaker": 0, "speaker_confidence": 0.7426758, "start": 15.744999, "word": "connect" }, { "confidence": 1, "end": 16.224998, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7426758, "start": 16.064999, "word": "that" }, { "confidence": 0.9980469, "end": 16.545, "punctuated_word": "state", "speaker": 0, "speaker_confidence": 0.7426758, "start": 16.224998, "word": "state" }, { "confidence": 0.9980469, "end": 17.045, "punctuated_word": "reactively", "speaker": 0, "speaker_confidence": 0.7426758, "start": 16.545, "word": "reactively" }, { "confidence": 0.99121094, "end": 17.48, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7426758, "start": 17.32, "word": "to" }, { "confidence": 1, "end": 17.64, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7426758, "start": 17.48, "word": "a" }, { "confidence": 1, "end": 18.119999, "punctuated_word": "template", "speaker": 0, "speaker_confidence": 0.7426758, "start": 17.64, "word": "template" }, { "confidence": 0.9873047, "end": 18.36, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7426758, "start": 18.119999, "word": "in" }, { "confidence": 0.95703125, "end": 18.86, "punctuated_word": "HTML.", "speaker": 0, "speaker_confidence": 0.7426758, "start": 18.36, "word": "html" }, { "confidence": 0.9980469, "end": 19.24, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.73291016, "start": 19.08, "word": "we" }, { "confidence": 0.9970703, "end": 19.48, "punctuated_word": "call", "speaker": 0, "speaker_confidence": 0.73291016, "start": 19.24, "word": "call" }, { "confidence": 0.9970703, "end": 19.64, "punctuated_word": "these", "speaker": 0, "speaker_confidence": 0.73291016, "start": 19.48, "word": "these" }, { "confidence": 0.99609375, "end": 20.039999, "punctuated_word": "components", "speaker": 0, "speaker_confidence": 0.73291016, "start": 19.64, "word": "components" }, { "confidence": 0.9785156, "end": 20.52, "punctuated_word": "declarative", "speaker": 0, "speaker_confidence": 0.73291016, "start": 20.039999, "word": "declarative" }, { "confidence": 0.9902344, "end": 21, "punctuated_word": "views", "speaker": 0, "speaker_confidence": 0.73291016, "start": 20.52, "word": "views" }, { "confidence": 0.96240234, "end": 21.24, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.73291016, "start": 21, "word": "because" }, { "confidence": 1, "end": 21.4, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.73291016, "start": 21.24, "word": "the" }, { "confidence": 1, "end": 21.64, "punctuated_word": "same", "speaker": 0, "speaker_confidence": 0.73291016, "start": 21.4, "word": "same" }, { "confidence": 0.99902344, "end": 21.96, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.73291016, "start": 21.64, "word": "data" }, { "confidence": 0.9604492, "end": 22.36, "punctuated_word": "inputs", "speaker": 0, "speaker_confidence": 0.73291016, "start": 21.96, "word": "inputs" }, { "confidence": 0.99902344, "end": 22.599998, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.73291016, "start": 22.36, "word": "will" }, { "confidence": 1, "end": 22.84, "punctuated_word": "always", "speaker": 0, "speaker_confidence": 0.73291016, "start": 22.599998, "word": "always" }, { "confidence": 1, "end": 23.24, "punctuated_word": "produce", "speaker": 0, "speaker_confidence": 0.73291016, "start": 22.84, "word": "produce" }, { "confidence": 1, "end": 23.32, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5834961, "start": 23.24, "word": "the" }, { "confidence": 0.99902344, "end": 23.64, "punctuated_word": "same", "speaker": 0, "speaker_confidence": 0.5834961, "start": 23.32, "word": "same" }, { "confidence": 1, "end": 23.96, "punctuated_word": "output", "speaker": 0, "speaker_confidence": 0.5834961, "start": 23.64, "word": "output" }, { "confidence": 0.99902344, "end": 24.119999, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.5834961, "start": 23.96, "word": "in" }, { "confidence": 0.99902344, "end": 24.279999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5834961, "start": 24.119999, "word": "the" }, { "confidence": 0.98828125, "end": 24.68, "punctuated_word": "visual", "speaker": 0, "speaker_confidence": 0.5834961, "start": 24.279999, "word": "visual" }, { "confidence": 0.96875, "end": 25.08, "punctuated_word": "UI.", "speaker": 0, "speaker_confidence": 0.5834961, "start": 24.68, "word": "ui" }, { "confidence": 0.9980469, "end": 25.24, "punctuated_word": "When", "speaker": 0, "speaker_confidence": 0.76220703, "start": 25.08, "word": "when" }, { "confidence": 1, "end": 25.4, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.76220703, "start": 25.24, "word": "we" }, { "confidence": 0.56591797, "end": 25.8, "punctuated_word": "declared", "speaker": 0, "speaker_confidence": 0.76220703, "start": 25.4, "word": "declared" }, { "confidence": 1, "end": 26.04, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.76220703, "start": 25.8, "word": "data" }, { "confidence": 1, "end": 26.2, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.76220703, "start": 26.04, "word": "on" }, { "confidence": 0.9404297, "end": 26.439999, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.76220703, "start": 26.2, "word": "this" }, { "confidence": 0.9838867, "end": 26.68, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.76220703, "start": 26.439999, "word": "data" }, { "confidence": 0.9152832, "end": 27.18, "punctuated_word": "object,", "speaker": 0, "speaker_confidence": 0.76220703, "start": 26.68, "word": "object" }, { "confidence": 0.9980469, "end": 27.545, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.76220703, "start": 27.305, "word": "it" }, { "confidence": 0.99902344, "end": 27.705, "punctuated_word": "links", "speaker": 0, "speaker_confidence": 0.76220703, "start": 27.545, "word": "links" }, { "confidence": 0.98291016, "end": 28.105, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.76220703, "start": 27.705, "word": "or" }, { "confidence": 0.9980469, "end": 28.345001, "punctuated_word": "binds", "speaker": 0, "speaker_confidence": 0.76220703, "start": 28.105, "word": "binds" }, { "confidence": 0.9980469, "end": 28.505001, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.76220703, "start": 28.345001, "word": "it" }, { "confidence": 0.99902344, "end": 28.585001, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.76220703, "start": 28.505001, "word": "to" }, { "confidence": 0.9970703, "end": 28.745, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.76220703, "start": 28.585001, "word": "the" }, { "confidence": 0.96777344, "end": 29.225, "punctuated_word": "HTML", "speaker": 0, "speaker_confidence": 0.76220703, "start": 28.745, "word": "html" }, { "confidence": 0.4970703, "end": 29.385, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.76220703, "start": 29.225, "word": "on" }, { "confidence": 0.9873047, "end": 29.465, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.609375, "start": 29.385, "word": "the" }, { "confidence": 1, "end": 29.865, "punctuated_word": "template", "speaker": 0, "speaker_confidence": 0.609375, "start": 29.465, "word": "template" }, { "confidence": 0.9736328, "end": 30.345001, "punctuated_word": "above.", "speaker": 0, "speaker_confidence": 0.609375, "start": 29.865, "word": "above" }, { "confidence": 0.99902344, "end": 30.505001, "punctuated_word": "When", "speaker": 0, "speaker_confidence": 0.609375, "start": 30.345001, "word": "when" }, { "confidence": 1, "end": 30.585001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.609375, "start": 30.505001, "word": "the" }, { "confidence": 1, "end": 30.825, "punctuated_word": "value", "speaker": 0, "speaker_confidence": 0.609375, "start": 30.585001, "word": "value" }, { "confidence": 1, "end": 30.905, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.609375, "start": 30.825, "word": "of" }, { "confidence": 1, "end": 31.065, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.91259766, "start": 30.905, "word": "the" }, { "confidence": 1, "end": 31.305, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.91259766, "start": 31.065, "word": "data" }, { "confidence": 0.9807129, "end": 31.805, "punctuated_word": "changes,", "speaker": 0, "speaker_confidence": 0.91259766, "start": 31.305, "word": "changes" }, { "confidence": 1, "end": 32.025, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.91259766, "start": 31.865, "word": "the" }, { "confidence": 1, "end": 32.505, "punctuated_word": "component", "speaker": 0, "speaker_confidence": 0.91259766, "start": 32.025, "word": "component" }, { "confidence": 1, "end": 32.745, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.91259766, "start": 32.505, "word": "will" }, { "confidence": 1, "end": 33.245, "punctuated_word": "automatically", "speaker": 0, "speaker_confidence": 0.91259766, "start": 32.745, "word": "automatically" }, { "confidence": 0.8117676, "end": 33.805, "punctuated_word": "rerender", "speaker": 0, "speaker_confidence": 0.91259766, "start": 33.305, "word": "rerender" }, { "confidence": 0.36987305, "end": 34.105, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.91259766, "start": 33.865, "word": "or" }, { "confidence": 0.64208984, "end": 34.185, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.91259766, "start": 34.105, "word": "in" }, { "confidence": 0.9980469, "end": 34.345, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.91259766, "start": 34.185, "word": "other" }, { "confidence": 0.9189453, "end": 34.665, "punctuated_word": "words,", "speaker": 0, "speaker_confidence": 0.91259766, "start": 34.345, "word": "words" }, { "confidence": 0.99609375, "end": 34.905, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.91259766, "start": 34.665, "word": "it's" }, { "confidence": 0.74523926, "end": 35.405, "punctuated_word": "reactive.", "speaker": 0, "speaker_confidence": 0.91259766, "start": 34.905, "word": "reactive" }, { "confidence": 1, "end": 35.78, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.50439453, "start": 35.7, "word": "and" }, { "confidence": 0.99902344, "end": 35.94, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.50439453, "start": 35.78, "word": "the" }, { "confidence": 0.9970703, "end": 36.26, "punctuated_word": "framework", "speaker": 0, "speaker_confidence": 0.50439453, "start": 35.94, "word": "framework" }, { "confidence": 1, "end": 36.5, "punctuated_word": "does", "speaker": 0, "speaker_confidence": 0.50439453, "start": 36.26, "word": "does" }, { "confidence": 1, "end": 36.579998, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.50439453, "start": 36.5, "word": "a" }, { "confidence": 1, "end": 36.739998, "punctuated_word": "ton", "speaker": 0, "speaker_confidence": 0.49658203, "start": 36.579998, "word": "ton" }, { "confidence": 1, "end": 36.899998, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.49658203, "start": 36.739998, "word": "of" }, { "confidence": 1, "end": 37.059998, "punctuated_word": "work", "speaker": 0, "speaker_confidence": 0.49658203, "start": 36.899998, "word": "work" }, { "confidence": 1, "end": 37.3, "punctuated_word": "under", "speaker": 0, "speaker_confidence": 0.49658203, "start": 37.059998, "word": "under" }, { "confidence": 1, "end": 37.379997, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.49658203, "start": 37.3, "word": "the" }, { "confidence": 1, "end": 37.699997, "punctuated_word": "hood", "speaker": 0, "speaker_confidence": 0.49658203, "start": 37.379997, "word": "hood" }, { "confidence": 0.9980469, "end": 37.78, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7426758, "start": 37.699997, "word": "to" }, { "confidence": 0.99902344, "end": 37.94, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.7426758, "start": 37.78, "word": "make" }, { "confidence": 1, "end": 38.1, "punctuated_word": "sure", "speaker": 0, "speaker_confidence": 0.7426758, "start": 37.94, "word": "sure" }, { "confidence": 0.9951172, "end": 38.26, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7426758, "start": 38.1, "word": "that" }, { "confidence": 0.99902344, "end": 38.42, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.7426758, "start": 38.26, "word": "this" }, { "confidence": 0.9980469, "end": 38.739998, "punctuated_word": "process", "speaker": 0, "speaker_confidence": 0.7426758, "start": 38.42, "word": "process" }, { "confidence": 0.99902344, "end": 38.98, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7426758, "start": 38.739998, "word": "is" }, { "confidence": 0.95751953, "end": 39.46, "punctuated_word": "performant", "speaker": 0, "speaker_confidence": 0.7426758, "start": 38.98, "word": "performant" }, { "confidence": 1, "end": 39.86, "punctuated_word": "across", "speaker": 0, "speaker_confidence": 0.7426758, "start": 39.46, "word": "across" }, { "confidence": 0.99902344, "end": 40.02, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7426758, "start": 39.86, "word": "a" }, { "confidence": 1, "end": 40.26, "punctuated_word": "huge", "speaker": 0, "speaker_confidence": 0.7426758, "start": 40.02, "word": "huge" }, { "confidence": 0.9970703, "end": 40.66, "punctuated_word": "component", "speaker": 0, "speaker_confidence": 0.7426758, "start": 40.26, "word": "component" }, { "confidence": 0.7722168, "end": 41.059998, "punctuated_word": "tree.", "speaker": 0, "speaker_confidence": 0.7426758, "start": 40.66, "word": "tree" }, { "confidence": 1, "end": 41.219997, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.54003906, "start": 41.059998, "word": "we" }, { "confidence": 1, "end": 41.379997, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.54003906, "start": 41.219997, "word": "can" }, { "confidence": 1, "end": 41.54, "punctuated_word": "work", "speaker": 0, "speaker_confidence": 0.54003906, "start": 41.379997, "word": "work" }, { "confidence": 1, "end": 41.62, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.54003906, "start": 41.54, "word": "with" }, { "confidence": 0.99121094, "end": 41.78, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.54003906, "start": 41.62, "word": "this" }, { "confidence": 1, "end": 42.1, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.54003906, "start": 41.78, "word": "data" }, { "confidence": 0.99902344, "end": 42.18, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.75390625, "start": 42.1, "word": "in" }, { "confidence": 0.8198242, "end": 42.34, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.75390625, "start": 42.18, "word": "the" }, { "confidence": 0.99902344, "end": 42.739998, "punctuated_word": "template", "speaker": 0, "speaker_confidence": 0.75390625, "start": 42.34, "word": "template" }, { "confidence": 0.7109375, "end": 43.059998, "punctuated_word": "thanks", "speaker": 0, "speaker_confidence": 0.75390625, "start": 42.739998, "word": "thanks" }, { "confidence": 0.99902344, "end": 43.219997, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.75390625, "start": 43.059998, "word": "to" }, { "confidence": 0.8733724, "end": 43.62, "punctuated_word": "Vue's", "speaker": 0, "speaker_confidence": 0.75390625, "start": 43.219997, "word": "vue's" }, { "confidence": 0.9243164, "end": 44.12, "punctuated_word": "HTML", "speaker": 0, "speaker_confidence": 0.75390625, "start": 43.62, "word": "html" }, { "confidence": 0.984375, "end": 44.42, "punctuated_word": "based", "speaker": 0, "speaker_confidence": 0.75390625, "start": 44.18, "word": "based" }, { "confidence": 0.6484375, "end": 44.899998, "punctuated_word": "template", "speaker": 0, "speaker_confidence": 0.75390625, "start": 44.42, "word": "template" }, { "confidence": 0.9890137, "end": 45.399998, "punctuated_word": "syntax.", "speaker": 0, "speaker_confidence": 0.75390625, "start": 44.899998, "word": "syntax" }, { "confidence": 0.99121094, "end": 45.735, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.95947266, "start": 45.655003, "word": "we" }, { "confidence": 1, "end": 45.895, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.95947266, "start": 45.735, "word": "can" }, { "confidence": 1, "end": 46.375, "punctuated_word": "interpolate", "speaker": 0, "speaker_confidence": 0.95947266, "start": 45.895, "word": "interpolate" }, { "confidence": 1, "end": 46.535, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.95947266, "start": 46.375, "word": "a" }, { "confidence": 1, "end": 46.935, "punctuated_word": "value", "speaker": 0, "speaker_confidence": 0.95947266, "start": 46.535, "word": "value" }, { "confidence": 0.8535156, "end": 47.175, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.95947266, "start": 46.935, "word": "or" }, { "confidence": 0.9980469, "end": 47.675, "punctuated_word": "expression", "speaker": 0, "speaker_confidence": 0.95947266, "start": 47.175, "word": "expression" }, { "confidence": 0.9980469, "end": 48.135002, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.95947266, "start": 47.815002, "word": "using" }, { "confidence": 0.9970703, "end": 48.455, "punctuated_word": "double", "speaker": 0, "speaker_confidence": 0.95947266, "start": 48.135002, "word": "double" }, { "confidence": 0.80029297, "end": 48.955, "punctuated_word": "braces,", "speaker": 0, "speaker_confidence": 0.95947266, "start": 48.455, "word": "braces" }, { "confidence": 0.99609375, "end": 49.415, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.95947266, "start": 49.175, "word": "and" }, { "confidence": 0.99902344, "end": 49.495, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.95947266, "start": 49.415, "word": "we" }, { "confidence": 1, "end": 49.735, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.95947266, "start": 49.495, "word": "also" }, { "confidence": 1, "end": 50.055, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.95947266, "start": 49.735, "word": "have" }, { "confidence": 1, "end": 50.135002, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.95947266, "start": 50.055, "word": "a" }, { "confidence": 1, "end": 50.455, "punctuated_word": "variety", "speaker": 0, "speaker_confidence": 0.95947266, "start": 50.135002, "word": "variety" }, { "confidence": 1, "end": 50.615, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.95947266, "start": 50.455, "word": "of" }, { "confidence": 0.99902344, "end": 51.095, "punctuated_word": "directives", "speaker": 0, "speaker_confidence": 0.95947266, "start": 50.615, "word": "directives" }, { "confidence": 1, "end": 51.175, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7324219, "start": 51.095, "word": "to" }, { "confidence": 1, "end": 51.575, "punctuated_word": "control", "speaker": 0, "speaker_confidence": 0.7324219, "start": 51.175, "word": "control" }, { "confidence": 0.99902344, "end": 51.655, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7324219, "start": 51.575, "word": "the" }, { "confidence": 0.9941406, "end": 52.055, "punctuated_word": "behavior", "speaker": 0, "speaker_confidence": 0.7324219, "start": 51.655, "word": "behavior" }, { "confidence": 0.9980469, "end": 52.215, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7324219, "start": 52.055, "word": "of" }, { "confidence": 0.9951172, "end": 52.375, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7324219, "start": 52.215, "word": "the" }, { "confidence": 0.97802734, "end": 52.875, "punctuated_word": "HTML", "speaker": 0, "speaker_confidence": 0.7324219, "start": 52.375, "word": "html" }, { "confidence": 0.9921875, "end": 53.335, "punctuated_word": "based", "speaker": 0, "speaker_confidence": 0.7324219, "start": 53.095, "word": "based" }, { "confidence": 0.9790039, "end": 53.415, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.7324219, "start": 53.335, "word": "on" }, { "confidence": 0.91503906, "end": 53.67, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7324219, "start": 53.415, "word": "the" }, { "confidence": 0.76782227, "end": 53.91, "punctuated_word": "Yeah.", "speaker": 0, "speaker_confidence": 0.7324219, "start": 53.75, "word": "yeah" }, { "confidence": 0.9951172, "end": 54.03, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.95410156, "start": 53.91, "word": "we" }, { "confidence": 1, "end": 54.149998, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.95410156, "start": 54.03, "word": "can" }, { "confidence": 1, "end": 54.55, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.95410156, "start": 54.149998, "word": "use" }, { "confidence": 0.7385254, "end": 54.71, "punctuated_word": "'v", "speaker": 0, "speaker_confidence": 0.95410156, "start": 54.55, "word": "'v" }, { "confidence": 0.7546387, "end": 55.109997, "punctuated_word": "if'", "speaker": 0, "speaker_confidence": 0.95410156, "start": 54.71, "word": "if'" }, { "confidence": 0.99902344, "end": 55.269997, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.95410156, "start": 55.109997, "word": "to" }, { "confidence": 1, "end": 55.51, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.95410156, "start": 55.269997, "word": "only" }, { "confidence": 1, "end": 55.829998, "punctuated_word": "render", "speaker": 0, "speaker_confidence": 0.95410156, "start": 55.51, "word": "render" }, { "confidence": 0.99902344, "end": 55.989998, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.95410156, "start": 55.829998, "word": "an" }, { "confidence": 1, "end": 56.39, "punctuated_word": "element", "speaker": 0, "speaker_confidence": 0.95410156, "start": 55.989998, "word": "element" }, { "confidence": 0.99316406, "end": 56.55, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.95410156, "start": 56.39, "word": "when" }, { "confidence": 1, "end": 56.71, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.95410156, "start": 56.55, "word": "the" }, { "confidence": 1, "end": 56.949997, "punctuated_word": "value", "speaker": 0, "speaker_confidence": 0.95410156, "start": 56.71, "word": "value" }, { "confidence": 1, "end": 57.109997, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.95410156, "start": 56.949997, "word": "on" }, { "confidence": 1, "end": 57.19, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.95410156, "start": 57.109997, "word": "the" }, { "confidence": 1, "end": 57.429996, "punctuated_word": "right", "speaker": 0, "speaker_confidence": 0.95410156, "start": 57.19, "word": "right" }, { "confidence": 1, "end": 57.67, "punctuated_word": "side", "speaker": 0, "speaker_confidence": 0.95410156, "start": 57.429996, "word": "side" }, { "confidence": 1, "end": 57.909996, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.95410156, "start": 57.67, "word": "is" }, { "confidence": 0.8640137, "end": 58.409996, "punctuated_word": "truthy", "speaker": 0, "speaker_confidence": 0.95410156, "start": 57.909996, "word": "truthy" }, { "confidence": 0.4802246, "end": 58.629997, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.95410156, "start": 58.469997, "word": "and" }, { "confidence": 0.96972656, "end": 58.789997, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.95410156, "start": 58.629997, "word": "then" }, { "confidence": 0.99609375, "end": 58.87, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.95410156, "start": 58.789997, "word": "we" }, { "confidence": 1, "end": 59.03, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 0.95410156, "start": 58.87, "word": "might" }, { "confidence": 1, "end": 59.19, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.95410156, "start": 59.03, "word": "have" }, { "confidence": 1, "end": 59.35, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.95410156, "start": 59.19, "word": "a" }, { "confidence": 0.9946289, "end": 59.75, "punctuated_word": "fallback", "speaker": 0, "speaker_confidence": 0.95410156, "start": 59.35, "word": "fallback" }, { "confidence": 0.99902344, "end": 60.149998, "punctuated_word": "element", "speaker": 0, "speaker_confidence": 0.95410156, "start": 59.75, "word": "element" }, { "confidence": 0.99902344, "end": 60.39, "punctuated_word": "after", "speaker": 0, "speaker_confidence": 0.95410156, "start": 60.149998, "word": "after" }, { "confidence": 1, "end": 60.71, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.95410156, "start": 60.39, "word": "that" }, { "confidence": 0.9355469, "end": 60.87, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.95410156, "start": 60.71, "word": "that's" }, { "confidence": 1, "end": 61.109997, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.95410156, "start": 60.87, "word": "only" }, { "confidence": 1, "end": 61.429996, "punctuated_word": "rendered", "speaker": 0, "speaker_confidence": 0.95410156, "start": 61.109997, "word": "rendered" }, { "confidence": 1, "end": 61.589996, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.95410156, "start": 61.429996, "word": "when" }, { "confidence": 1, "end": 61.67, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.95410156, "start": 61.589996, "word": "the" }, { "confidence": 0.9667969, "end": 61.989998, "punctuated_word": "value", "speaker": 0, "speaker_confidence": 0.95410156, "start": 61.67, "word": "value" }, { "confidence": 0.7651367, "end": 62.07, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.95410156, "start": 61.989998, "word": "is" }, { "confidence": 0.7034912, "end": 62.469997, "punctuated_word": "falsy", "speaker": 0, "speaker_confidence": 0.42871094, "start": 62.07, "word": "falsy" }, { "confidence": 0.98291016, "end": 62.71, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.42871094, "start": 62.469997, "word": "with" }, { "confidence": 0.70043945, "end": 62.949997, "punctuated_word": "'v", "speaker": 0, "speaker_confidence": 0.42871094, "start": 62.71, "word": "'v" }, { "confidence": 0.8515625, "end": 63.449997, "punctuated_word": "else'.", "speaker": 0, "speaker_confidence": 0.42871094, "start": 62.949997, "word": "else'" }, { "confidence": 0.84814453, "end": 63.625, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.9238281, "start": 63.51, "word": "we" }, { "confidence": 0.99902344, "end": 63.705, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.9238281, "start": 63.625, "word": "we" }, { "confidence": 1, "end": 63.785, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9238281, "start": 63.705, "word": "can" }, { "confidence": 1, "end": 63.945, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.9238281, "start": 63.785, "word": "make" }, { "confidence": 1, "end": 64.025, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9238281, "start": 63.945, "word": "the" }, { "confidence": 1, "end": 64.265, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.9238281, "start": 64.025, "word": "app" }, { "confidence": 1, "end": 64.765, "punctuated_word": "interactive", "speaker": 0, "speaker_confidence": 0.9238281, "start": 64.265, "word": "interactive" }, { "confidence": 1, "end": 65.065, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.9238281, "start": 64.825, "word": "by" }, { "confidence": 1, "end": 65.385, "punctuated_word": "listening", "speaker": 0, "speaker_confidence": 0.9238281, "start": 65.065, "word": "listening" }, { "confidence": 1, "end": 65.545, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9238281, "start": 65.385, "word": "to" }, { "confidence": 0.9362793, "end": 66.045, "punctuated_word": "events.", "speaker": 0, "speaker_confidence": 0.9238281, "start": 65.545, "word": "events" }, { "confidence": 0.9970703, "end": 66.505, "punctuated_word": "Using", "speaker": 0, "speaker_confidence": 0.9238281, "start": 66.265, "word": "using" }, { "confidence": 1, "end": 66.745, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9238281, "start": 66.505, "word": "the" }, { "confidence": 0.84472656, "end": 66.825, "punctuated_word": "v", "speaker": 0, "speaker_confidence": 0.9238281, "start": 66.745, "word": "v" }, { "confidence": 0.9838867, "end": 67.065, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.9238281, "start": 66.825, "word": "on" }, { "confidence": 0.9848633, "end": 67.545, "punctuated_word": "directive,", "speaker": 0, "speaker_confidence": 0.9238281, "start": 67.065, "word": "directive" }, { "confidence": 1, "end": 67.705, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.9238281, "start": 67.545, "word": "we" }, { "confidence": 1, "end": 67.865, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9238281, "start": 67.705, "word": "can" }, { "confidence": 1, "end": 68.105, "punctuated_word": "listen", "speaker": 0, "speaker_confidence": 0.9238281, "start": 67.865, "word": "listen" }, { "confidence": 1, "end": 68.265, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9238281, "start": 68.105, "word": "to" }, { "confidence": 0.9980469, "end": 68.425, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.9238281, "start": 68.265, "word": "an" }, { "confidence": 1, "end": 68.665, "punctuated_word": "event", "speaker": 0, "speaker_confidence": 0.9238281, "start": 68.425, "word": "event" }, { "confidence": 1, "end": 68.825, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.9238281, "start": 68.665, "word": "on" }, { "confidence": 1, "end": 68.985, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.9238281, "start": 68.825, "word": "an" }, { "confidence": 0.89941406, "end": 69.485, "punctuated_word": "element,", "speaker": 0, "speaker_confidence": 0.9238281, "start": 68.985, "word": "element" }, { "confidence": 1, "end": 69.945, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.9238281, "start": 69.705, "word": "then" }, { "confidence": 0.9980469, "end": 70.105, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.9238281, "start": 69.945, "word": "run" }, { "confidence": 1, "end": 70.265, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.9238281, "start": 70.105, "word": "some" }, { "confidence": 1, "end": 70.585, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.9238281, "start": 70.265, "word": "code" }, { "confidence": 1, "end": 70.745, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9238281, "start": 70.585, "word": "to" }, { "confidence": 1, "end": 71.065, "punctuated_word": "handle", "speaker": 0, "speaker_confidence": 0.9238281, "start": 70.745, "word": "handle" }, { "confidence": 1, "end": 71.225, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9238281, "start": 71.065, "word": "that" }, { "confidence": 1, "end": 71.545, "punctuated_word": "event", "speaker": 0, "speaker_confidence": 0.9238281, "start": 71.225, "word": "event" }, { "confidence": 0.99902344, "end": 71.705, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.9238281, "start": 71.545, "word": "on" }, { "confidence": 1, "end": 71.865, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9238281, "start": 71.705, "word": "the" }, { "confidence": 1, "end": 72.025, "punctuated_word": "right", "speaker": 0, "speaker_confidence": 0.9238281, "start": 71.865, "word": "right" }, { "confidence": 0.99902344, "end": 72.32, "punctuated_word": "side.", "speaker": 0, "speaker_confidence": 0.9238281, "start": 72.025, "word": "side" }, { "confidence": 0.99902344, "end": 72.48, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.4633789, "start": 72.4, "word": "we" }, { "confidence": 1, "end": 72.64, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.4633789, "start": 72.48, "word": "can" }, { "confidence": 1, "end": 72.72, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.4633789, "start": 72.64, "word": "do" }, { "confidence": 1, "end": 72.96, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.4633789, "start": 72.72, "word": "that" }, { "confidence": 1, "end": 73.28, "punctuated_word": "directly", "speaker": 0, "speaker_confidence": 0.4633789, "start": 72.96, "word": "directly" }, { "confidence": 1, "end": 73.44, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.4633789, "start": 73.28, "word": "in" }, { "confidence": 0.99902344, "end": 73.52, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.4633789, "start": 73.44, "word": "the" }, { "confidence": 0.99902344, "end": 74, "punctuated_word": "template", "speaker": 0, "speaker_confidence": 0.72314453, "start": 73.52, "word": "template" }, { "confidence": 0.91259766, "end": 74.24, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.72314453, "start": 74, "word": "or" }, { "confidence": 0.9873047, "end": 74.56, "punctuated_word": "define", "speaker": 0, "speaker_confidence": 0.72314453, "start": 74.24, "word": "define" }, { "confidence": 1, "end": 74.72, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.72314453, "start": 74.56, "word": "a" }, { "confidence": 1, "end": 75.12, "punctuated_word": "custom", "speaker": 0, "speaker_confidence": 0.72314453, "start": 74.72, "word": "custom" }, { "confidence": 0.99902344, "end": 75.44, "punctuated_word": "method", "speaker": 0, "speaker_confidence": 0.72314453, "start": 75.12, "word": "method" }, { "confidence": 0.95166016, "end": 75.6, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.72314453, "start": 75.44, "word": "in" }, { "confidence": 0.99902344, "end": 75.76, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.72314453, "start": 75.6, "word": "the" }, { "confidence": 0.767334, "end": 76.26, "punctuated_word": "component's", "speaker": 0, "speaker_confidence": 0.72314453, "start": 75.76, "word": "component's" }, { "confidence": 0.9404297, "end": 76.82, "punctuated_word": "methods", "speaker": 0, "speaker_confidence": 0.72314453, "start": 76.32, "word": "methods" }, { "confidence": 0.9916992, "end": 77.38, "punctuated_word": "object.", "speaker": 0, "speaker_confidence": 0.72314453, "start": 76.88, "word": "object" }, { "confidence": 0.98828125, "end": 77.68, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.7480469, "start": 77.52, "word": "the" }, { "confidence": 0.99902344, "end": 78, "punctuated_word": "method", "speaker": 0, "speaker_confidence": 0.7480469, "start": 77.68, "word": "method" }, { "confidence": 1, "end": 78.24, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.7480469, "start": 78, "word": "has" }, { "confidence": 1, "end": 78.64, "punctuated_word": "access", "speaker": 0, "speaker_confidence": 0.7480469, "start": 78.24, "word": "access" }, { "confidence": 1, "end": 78.8, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7480469, "start": 78.64, "word": "to" }, { "confidence": 0.9980469, "end": 78.96, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.7480469, "start": 78.8, "word": "our" }, { "confidence": 0.98095703, "end": 79.36, "punctuated_word": "reactive", "speaker": 0, "speaker_confidence": 0.7480469, "start": 78.96, "word": "reactive" }, { "confidence": 0.99902344, "end": 79.68, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.7480469, "start": 79.36, "word": "data" }, { "confidence": 0.5957031, "end": 79.92, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7480469, "start": 79.68, "word": "and" }, { "confidence": 0.99902344, "end": 80.08, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7480469, "start": 79.92, "word": "that" }, { "confidence": 1, "end": 80.32, "punctuated_word": "means", "speaker": 0, "speaker_confidence": 0.7480469, "start": 80.08, "word": "means" }, { "confidence": 0.99121094, "end": 80.479996, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.7480469, "start": 80.32, "word": "all" }, { "confidence": 1, "end": 80.56, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.7480469, "start": 80.479996, "word": "we" }, { "confidence": 0.99902344, "end": 80.72, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.79833984, "start": 80.56, "word": "have" }, { "confidence": 0.9980469, "end": 80.8, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.79833984, "start": 80.72, "word": "to" }, { "confidence": 0.99902344, "end": 81.04, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.79833984, "start": 80.8, "word": "do" }, { "confidence": 0.99609375, "end": 81.2, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.79833984, "start": 81.04, "word": "is" }, { "confidence": 0.99902344, "end": 81.44, "punctuated_word": "change", "speaker": 0, "speaker_confidence": 0.79833984, "start": 81.2, "word": "change" }, { "confidence": 0.98535156, "end": 81.6, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.79833984, "start": 81.44, "word": "the" }, { "confidence": 0.9980469, "end": 81.84, "punctuated_word": "value", "speaker": 0, "speaker_confidence": 0.79833984, "start": 81.6, "word": "value" }, { "confidence": 0.9550781, "end": 82, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.79833984, "start": 81.84, "word": "of" }, { "confidence": 0.8354492, "end": 82.16, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.79833984, "start": 82, "word": "the" }, { "confidence": 0.54003906, "end": 82.305, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.79833984, "start": 82.16, "word": "data" }, { "confidence": 0.9604492, "end": 82.705, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.79833984, "start": 82.385, "word": "and" }, { "confidence": 0.9902344, "end": 82.785, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.79833984, "start": 82.705, "word": "the" }, { "confidence": 0.99902344, "end": 83.265, "punctuated_word": "component", "speaker": 0, "speaker_confidence": 0.79833984, "start": 82.785, "word": "component" }, { "confidence": 0.9980469, "end": 83.505, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.79833984, "start": 83.265, "word": "will" }, { "confidence": 0.9951172, "end": 84.005, "punctuated_word": "automatically", "speaker": 0, "speaker_confidence": 0.79833984, "start": 83.505, "word": "automatically" }, { "confidence": 0.8382161, "end": 84.645, "punctuated_word": "rerender.", "speaker": 0, "speaker_confidence": 0.79833984, "start": 84.145, "word": "rerender" }, { "confidence": 0.99316406, "end": 85.025, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.48242188, "start": 84.865, "word": "and" }, { "confidence": 0.9941406, "end": 85.185, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.48242188, "start": 85.025, "word": "that's" }, { "confidence": 1, "end": 85.265, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.48242188, "start": 85.185, "word": "all" }, { "confidence": 1, "end": 85.425, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.48242188, "start": 85.265, "word": "it" }, { "confidence": 1, "end": 85.665, "punctuated_word": "takes", "speaker": 0, "speaker_confidence": 0.48242188, "start": 85.425, "word": "takes" }, { "confidence": 0.99902344, "end": 85.745, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.48242188, "start": 85.665, "word": "to" }, { "confidence": 1, "end": 85.905, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.5703125, "start": 85.745, "word": "build" }, { "confidence": 0.99316406, "end": 86.065, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.5703125, "start": 85.905, "word": "an" }, { "confidence": 0.99902344, "end": 86.545, "punctuated_word": "interactive", "speaker": 0, "speaker_confidence": 0.5703125, "start": 86.065, "word": "interactive" }, { "confidence": 0.5410156, "end": 86.945, "punctuated_word": "reactive", "speaker": 0, "speaker_confidence": 0.5703125, "start": 86.545, "word": "reactive" }, { "confidence": 0.98502606, "end": 87.445, "punctuated_word": "declarative", "speaker": 0, "speaker_confidence": 0.5703125, "start": 86.945, "word": "declarative" }, { "confidence": 0.94384766, "end": 87.745, "punctuated_word": "UI", "speaker": 0, "speaker_confidence": 0.5703125, "start": 87.505, "word": "ui" }, { "confidence": 0.9951172, "end": 88.225, "punctuated_word": "component", "speaker": 0, "speaker_confidence": 0.5703125, "start": 87.745, "word": "component" }, { "confidence": 0.9941406, "end": 88.465, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.5703125, "start": 88.225, "word": "with" }, { "confidence": 0.9667969, "end": 88.785, "punctuated_word": "Vue.", "speaker": 0, "speaker_confidence": 0.5703125, "start": 88.465, "word": "vue" }, { "confidence": 0.97998047, "end": 88.865, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.7578125, "start": 88.785, "word": "the" }, { "confidence": 0.9970703, "end": 89.345, "punctuated_word": "framework", "speaker": 0, "speaker_confidence": 0.7578125, "start": 88.865, "word": "framework" }, { "confidence": 0.9980469, "end": 89.425, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7578125, "start": 89.345, "word": "is" }, { "confidence": 0.97802734, "end": 89.585, "punctuated_word": "loved", "speaker": 0, "speaker_confidence": 0.7578125, "start": 89.425, "word": "loved" }, { "confidence": 0.99902344, "end": 89.745, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.7578125, "start": 89.585, "word": "by" }, { "confidence": 0.9970703, "end": 90.225, "punctuated_word": "developers", "speaker": 0, "speaker_confidence": 0.7578125, "start": 89.745, "word": "developers" }, { "confidence": 0.9277344, "end": 90.305, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.7578125, "start": 90.225, "word": "for" }, { "confidence": 0.4177246, "end": 90.805, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.7578125, "start": 90.305, "word": "this" }, { "confidence": 0.98828125, "end": 91.340004, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.7578125, "start": 91.100006, "word": "but" }, { "confidence": 0.98535156, "end": 91.58, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.7578125, "start": 91.340004, "word": "also" }, { "confidence": 0.9760742, "end": 91.82, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.7578125, "start": 91.58, "word": "its" }, { "confidence": 1, "end": 92.14, "punctuated_word": "ability", "speaker": 0, "speaker_confidence": 0.7578125, "start": 91.82, "word": "ability" }, { "confidence": 1, "end": 92.3, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7578125, "start": 92.14, "word": "to" }, { "confidence": 1, "end": 92.62, "punctuated_word": "scale", "speaker": 0, "speaker_confidence": 0.7578125, "start": 92.3, "word": "scale" }, { "confidence": 1, "end": 92.700005, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.7578125, "start": 92.62, "word": "up" }, { "confidence": 0.96875, "end": 92.94, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7578125, "start": 92.700005, "word": "in" }, { "confidence": 0.99902344, "end": 93.44, "punctuated_word": "complexity", "speaker": 0, "speaker_confidence": 0.7578125, "start": 92.94, "word": "complexity" }, { "confidence": 0.99365234, "end": 94, "punctuated_word": "incrementally.", "speaker": 0, "speaker_confidence": 0.7578125, "start": 93.5, "word": "incrementally" }, { "confidence": 0.91015625, "end": 94.78, "punctuated_word": "Its", "speaker": 0, "speaker_confidence": 0.80810547, "start": 94.62, "word": "its" }, { "confidence": 0.7709961, "end": 95.020004, "punctuated_word": "plug", "speaker": 0, "speaker_confidence": 0.80810547, "start": 94.78, "word": "plug" }, { "confidence": 0.9951172, "end": 95.18, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.80810547, "start": 95.020004, "word": "in" }, { "confidence": 1, "end": 95.58, "punctuated_word": "system", "speaker": 0, "speaker_confidence": 0.80810547, "start": 95.18, "word": "system" }, { "confidence": 0.9980469, "end": 95.9, "punctuated_word": "allows", "speaker": 0, "speaker_confidence": 0.80810547, "start": 95.58, "word": "allows" }, { "confidence": 1, "end": 96.060005, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.80810547, "start": 95.9, "word": "you" }, { "confidence": 0.99902344, "end": 96.22, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.80810547, "start": 96.060005, "word": "to" }, { "confidence": 1, "end": 96.54, "punctuated_word": "easily", "speaker": 0, "speaker_confidence": 0.80810547, "start": 96.22, "word": "easily" }, { "confidence": 1, "end": 96.78, "punctuated_word": "drop", "speaker": 0, "speaker_confidence": 0.80810547, "start": 96.54, "word": "drop" }, { "confidence": 1, "end": 96.94, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.80810547, "start": 96.78, "word": "in" }, { "confidence": 1, "end": 97.18, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 0.80810547, "start": 96.94, "word": "things" }, { "confidence": 0.9350586, "end": 97.340004, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.80810547, "start": 97.18, "word": "like" }, { "confidence": 0.9951172, "end": 97.5, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.80810547, "start": 97.340004, "word": "a" }, { "confidence": 0.99609375, "end": 97.98, "punctuated_word": "router,", "speaker": 0, "speaker_confidence": 0.80810547, "start": 97.5, "word": "router" }, { "confidence": 0.9902344, "end": 98.22, "punctuated_word": "state", "speaker": 0, "speaker_confidence": 0.80810547, "start": 97.98, "word": "state" }, { "confidence": 0.99609375, "end": 98.72, "punctuated_word": "management,", "speaker": 0, "speaker_confidence": 0.80810547, "start": 98.22, "word": "management" }, { "confidence": 0.87719727, "end": 99.340004, "punctuated_word": "Firebase", "speaker": 0, "speaker_confidence": 0.80810547, "start": 98.86, "word": "firebase" }, { "confidence": 0.91674805, "end": 99.82, "punctuated_word": "support,", "speaker": 0, "speaker_confidence": 0.80810547, "start": 99.340004, "word": "support" }, { "confidence": 1, "end": 99.98, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.80810547, "start": 99.82, "word": "and" }, { "confidence": 0.9921875, "end": 100.445, "punctuated_word": "more.", "speaker": 0, "speaker_confidence": 0.80810547, "start": 99.98, "word": "more" }, { "confidence": 0.9970703, "end": 100.765, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.7661133, "start": 100.605, "word": "and" }, { "confidence": 0.8535156, "end": 101.085, "punctuated_word": "perhaps", "speaker": 0, "speaker_confidence": 0.7661133, "start": 100.765, "word": "perhaps" }, { "confidence": 0.96435547, "end": 101.325, "punctuated_word": "best", "speaker": 0, "speaker_confidence": 0.7661133, "start": 101.085, "word": "best" }, { "confidence": 1, "end": 101.405, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7661133, "start": 101.325, "word": "of" }, { "confidence": 0.9667969, "end": 101.645, "punctuated_word": "all,", "speaker": 0, "speaker_confidence": 0.7661133, "start": 101.405, "word": "all" }, { "confidence": 0.99853516, "end": 101.805, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.7661133, "start": 101.645, "word": "it's" }, { "confidence": 1, "end": 102.045, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.7661133, "start": 101.805, "word": "not" }, { "confidence": 1, "end": 102.365, "punctuated_word": "sponsored", "speaker": 0, "speaker_confidence": 0.7661133, "start": 102.045, "word": "sponsored" }, { "confidence": 1, "end": 102.525, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.7661133, "start": 102.365, "word": "by" }, { "confidence": 1, "end": 102.765, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.7661133, "start": 102.525, "word": "some" }, { "confidence": 0.8364258, "end": 103.005, "punctuated_word": "mega", "speaker": 0, "speaker_confidence": 0.7661133, "start": 102.765, "word": "mega" }, { "confidence": 0.9716797, "end": 103.505, "punctuated_word": "corporation.", "speaker": 0, "speaker_confidence": 0.7661133, "start": 103.005, "word": "corporation" }, { "confidence": 0.99902344, "end": 104.045, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.7661133, "start": 103.805, "word": "it's" }, { "confidence": 1, "end": 104.205, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.7661133, "start": 104.045, "word": "not" }, { "confidence": 0.98828125, "end": 104.604996, "punctuated_word": "pressured", "speaker": 0, "speaker_confidence": 0.7661133, "start": 104.205, "word": "pressured" }, { "confidence": 1, "end": 104.685, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.58251953, "start": 104.604996, "word": "to" }, { "confidence": 1, "end": 104.925, "punctuated_word": "push", "speaker": 0, "speaker_confidence": 0.58251953, "start": 104.685, "word": "push" }, { "confidence": 0.9614258, "end": 105.005, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.58251953, "start": 104.925, "word": "out" }, { "confidence": 0.9980469, "end": 105.245, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.58251953, "start": 105.005, "word": "new" }, { "confidence": 1, "end": 105.565, "punctuated_word": "releases", "speaker": 0, "speaker_confidence": 0.58251953, "start": 105.245, "word": "releases" }, { "confidence": 1, "end": 105.725, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.58251953, "start": 105.565, "word": "all" }, { "confidence": 0.9980469, "end": 105.805, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.640625, "start": 105.725, "word": "the" }, { "confidence": 1, "end": 106.045, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.640625, "start": 105.805, "word": "time" }, { "confidence": 0.5600586, "end": 106.205, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.640625, "start": 106.045, "word": "and" }, { "confidence": 0.99902344, "end": 106.365, "punctuated_word": "does", "speaker": 0, "speaker_confidence": 0.640625, "start": 106.205, "word": "does" }, { "confidence": 0.99902344, "end": 106.525, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.640625, "start": 106.365, "word": "a" }, { "confidence": 1, "end": 106.685, "punctuated_word": "great", "speaker": 0, "speaker_confidence": 0.640625, "start": 106.525, "word": "great" }, { "confidence": 1, "end": 106.925, "punctuated_word": "job", "speaker": 0, "speaker_confidence": 0.640625, "start": 106.685, "word": "job" }, { "confidence": 0.9970703, "end": 107.325, "punctuated_word": "listening", "speaker": 0, "speaker_confidence": 0.640625, "start": 106.925, "word": "listening" }, { "confidence": 1, "end": 107.405, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7573242, "start": 107.325, "word": "to" }, { "confidence": 0.9892578, "end": 107.645, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.7573242, "start": 107.405, "word": "its" }, { "confidence": 0.99902344, "end": 108.045, "punctuated_word": "community.", "speaker": 0, "speaker_confidence": 0.7573242, "start": 107.645, "word": "community" }, { "confidence": 1, "end": 108.205, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.7573242, "start": 108.045, "word": "this" }, { "confidence": 0.99609375, "end": 108.365, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.7573242, "start": 108.205, "word": "has" }, { "confidence": 1, "end": 108.604996, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.7573242, "start": 108.365, "word": "been" }, { "confidence": 0.8566081, "end": 108.925, "punctuated_word": "Vue.", "speaker": 0, "speaker_confidence": 0.7573242, "start": 108.604996, "word": "vue" }, { "confidence": 0.9472656, "end": 109.165, "punctuated_word": "Js", "speaker": 0, "speaker_confidence": 0.7573242, "start": 108.925, "word": "js" }, { "confidence": 0.84228516, "end": 109.405, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7573242, "start": 109.165, "word": "in" }, { "confidence": 0.9428711, "end": 109.805, "punctuated_word": "100", "speaker": 0, "speaker_confidence": 0.7573242, "start": 109.405, "word": "100" }, { "confidence": 0.94677734, "end": 110.305, "punctuated_word": "seconds.", "speaker": 0, "speaker_confidence": 0.7573242, "start": 109.805, "word": "seconds" }, { "confidence": 1, "end": 110.590004, "punctuated_word": "Stay", "speaker": 0, "speaker_confidence": 0.7573242, "start": 110.43, "word": "stay" }, { "confidence": 0.9980469, "end": 110.83, "punctuated_word": "tuned", "speaker": 0, "speaker_confidence": 0.7573242, "start": 110.590004, "word": "tuned" }, { "confidence": 1, "end": 110.91, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.6142578, "start": 110.83, "word": "for" }, { "confidence": 1, "end": 111.07, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6142578, "start": 110.91, "word": "a" }, { "confidence": 0.99902344, "end": 111.23, "punctuated_word": "full", "speaker": 0, "speaker_confidence": 0.6142578, "start": 111.07, "word": "full" }, { "confidence": 0.9921875, "end": 111.47, "punctuated_word": "length", "speaker": 0, "speaker_confidence": 0.6142578, "start": 111.23, "word": "length" }, { "confidence": 1, "end": 111.79, "punctuated_word": "tutorial", "speaker": 0, "speaker_confidence": 0.6142578, "start": 111.47, "word": "tutorial" }, { "confidence": 0.9951172, "end": 112.03, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0.6142578, "start": 111.79, "word": "here" }, { "confidence": 0.9970703, "end": 112.11, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.6142578, "start": 112.03, "word": "on" }, { "confidence": 0.9526367, "end": 112.43, "punctuated_word": "YouTube", "speaker": 0, "speaker_confidence": 0.6142578, "start": 112.11, "word": "youtube" }, { "confidence": 0.9980469, "end": 112.51, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9145508, "start": 112.43, "word": "in" }, { "confidence": 0.99902344, "end": 112.67, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9145508, "start": 112.51, "word": "the" }, { "confidence": 1, "end": 112.91, "punctuated_word": "near", "speaker": 0, "speaker_confidence": 0.9145508, "start": 112.67, "word": "near" }, { "confidence": 0.7614746, "end": 113.39, "punctuated_word": "future,", "speaker": 0, "speaker_confidence": 0.9145508, "start": 112.91, "word": "future" }, { "confidence": 0.99902344, "end": 113.63, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9145508, "start": 113.39, "word": "and" }, { "confidence": 0.9980469, "end": 113.79, "punctuated_word": "check", "speaker": 0, "speaker_confidence": 0.9145508, "start": 113.63, "word": "check" }, { "confidence": 1, "end": 113.95, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.9145508, "start": 113.79, "word": "out" }, { "confidence": 0.99902344, "end": 114.19, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.9145508, "start": 113.95, "word": "my" }, { "confidence": 0.53759766, "end": 114.43, "punctuated_word": "View", "speaker": 0, "speaker_confidence": 0.9145508, "start": 114.19, "word": "view" }, { "confidence": 0.99194336, "end": 114.91, "punctuated_word": "Firebase", "speaker": 0, "speaker_confidence": 0.9145508, "start": 114.43, "word": "firebase" }, { "confidence": 0.8535156, "end": 115.15, "punctuated_word": "course", "speaker": 0, "speaker_confidence": 0.9145508, "start": 114.91, "word": "course" }, { "confidence": 0.99902344, "end": 115.23, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.9145508, "start": 115.15, "word": "on" }, { "confidence": 0.79345703, "end": 115.73, "punctuated_word": "Fireship", "speaker": 0, "speaker_confidence": 0.9145508, "start": 115.23, "word": "fireship" }, { "confidence": 0.9370117, "end": 115.87, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.9145508, "start": 115.79, "word": "if" }, { "confidence": 0.99853516, "end": 116.03, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.9145508, "start": 115.87, "word": "you're" }, { "confidence": 1, "end": 116.27, "punctuated_word": "ready", "speaker": 0, "speaker_confidence": 0.9145508, "start": 116.03, "word": "ready" }, { "confidence": 1, "end": 116.43, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9145508, "start": 116.27, "word": "to" }, { "confidence": 1, "end": 116.59, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 0.9145508, "start": 116.43, "word": "start" }, { "confidence": 1, "end": 116.91, "punctuated_word": "building", "speaker": 0, "speaker_confidence": 0.9145508, "start": 116.59, "word": "building" }, { "confidence": 1, "end": 117.07, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9145508, "start": 116.91, "word": "a" }, { "confidence": 0.9980469, "end": 117.31, "punctuated_word": "full", "speaker": 0, "speaker_confidence": 0.9145508, "start": 117.07, "word": "full" }, { "confidence": 0.86865234, "end": 117.63, "punctuated_word": "stack", "speaker": 0, "speaker_confidence": 0.9145508, "start": 117.31, "word": "stack" }, { "confidence": 0.99658203, "end": 117.95, "punctuated_word": "app.", "speaker": 0, "speaker_confidence": 0.9145508, "start": 117.63, "word": "app" }, { "confidence": 1, "end": 118.19, "punctuated_word": "Thanks", "speaker": 0, "speaker_confidence": 0.9145508, "start": 117.95, "word": "thanks" }, { "confidence": 1, "end": 118.35, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.9145508, "start": 118.19, "word": "for" }, { "confidence": 0.76293945, "end": 118.67, "punctuated_word": "watching,", "speaker": 0, "speaker_confidence": 0.9145508, "start": 118.35, "word": "watching" }, { "confidence": 1, "end": 118.91, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9145508, "start": 118.67, "word": "and" }, { "confidence": 0.9980469, "end": 118.99, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.9145508, "start": 118.91, "word": "i" }, { "confidence": 0.99902344, "end": 119.15, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.5654297, "start": 118.99, "word": "will" }, { "confidence": 1, "end": 119.31, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.5654297, "start": 119.15, "word": "see" }, { "confidence": 1, "end": 119.47, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.5654297, "start": 119.31, "word": "you" }, { "confidence": 1, "end": 119.63, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.5654297, "start": 119.47, "word": "in" }, { "confidence": 1, "end": 119.79, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5654297, "start": 119.63, "word": "the" }, { "confidence": 1, "end": 120.03, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.5654297, "start": 119.79, "word": "next" }, { "confidence": 0.9916992, "end": 120.41225, "punctuated_word": "one.", "speaker": 0, "speaker_confidence": 0.5654297, "start": 120.03, "word": "one" } ] } ], "detected_language": "", "language_confidence": 0, "search": null } ], "summary": { "result": "success", "short": "The speaker explains the use of BuSass for building front end UI applications, including a JavaScript framework for building components that encapsulate data and connect it to HTML templates. The framework allows for live transcription of events and ability to interact with them through multiple methods, including listening to them directly in code. The speaker also mentions BuSass's ability to scale up in complexity and its plug-in system for easy development." }, "utterances": null } }
downloads\Vue.js_Explained_in_100_Seconds.wav
https://www.youtube.com/watch?v=nhBVL41-_Cw
Vue.js Explained in 100 Seconds
1,134,281
Fireship
480
Use Web Assembly to build an app that converts video files to GIF (using FFmpeg), entirely from a frontend React JavaScript application. https://fireship.io/lessons/wasm-video-to-gif/ Source Code: https://github.com/fireship-io/react-wasm-gif-maker FFmpeg.wasm https://ffmpegwasm.github.io/ #wasm #webdev #tutorial Install the quiz app 🤓 iOS https://itunes.apple.com/us/app/fireship/id1462592372?mt=8 Android https://play.google.com/store/apps/details?id=io.fireship.quizapp Upgrade to Fireship PRO at https://fireship.io/pro Use code lORhwXd2 for 25% off your first payment. My VS Code Theme - Atom One Dark - vscode-icons - Fira Code Font
{ "metadata": { "channels": 1, "created": "2024-02-04T06:02:58.356Z", "duration": 480.32794, "model_info": { "30089e05-99d1-4376-b32e-c263170674af": { "arch": "nova-2", "name": "2-general-nova", "version": "2024-01-09.29447" } }, "models": [ "30089e05-99d1-4376-b32e-c263170674af" ], "request_id": "39f3c288-aa17-4adc-8396-79418dd90071", "sha256": "e4fc8bc6515e1ad72585d721d4bb7b4ba46e6076198ed1d55f936704284fb6fc", "summary_info": { "input_tokens": 2004, "model_uuid": "67875a7f-c9c4-48a0-aa55-5bdb8a91c34a", "output_tokens": 143 }, "transaction_key": "deprecated", "warnings": null }, "results": { "channels": [ { "alternatives": [ { "confidence": 1, "entities": null, "paragraphs": { "paragraphs": [ { "end": 27.414999, "num_words": 101, "sentences": [ { "end": 5.46, "start": 0.16, "text": "WebAssembly opens the door to building high performance applications on the web and languages other than JavaScript." }, { "end": 11.965, "start": 5.6, "text": "In today's video, we'll build a simple video editing tool that can take a video file and convert it to an animated GIF." }, { "end": 18.845001, "start": 11.965, "text": "The cool thing about this demo is that it's made possible by a library called f f mpeg, which is a utility written in the c programming language." }, { "end": 22.01, "start": 18.845001, "text": "But But thanks to WebAssembly, we can run this tool directly in the browser." }, { "end": 27.414999, "start": 22.230001, "text": "And that means we can perform CPU intensive video editing jobs without the need for a back end server." } ], "speaker": 0, "start": 0.16 }, { "end": 44.975, "num_words": 69, "sentences": [ { "end": 30.275, "start": 27.474998, "text": "For example, here's how a traditional web application might work." }, { "end": 33.715, "start": 30.275, "text": "We collect a video file from the end user, then upload it to the cloud." }, { "end": 39.100002, "start": 33.715, "text": "We use our cloud server to run FFmpeg to encode the file, then send it back down to the client." }, { "end": 41.56, "start": 39.32, "text": "That works fine, but it's not very efficient." }, { "end": 44.975, "start": 41.56, "text": "And it also has no way to work offline if you're building a progressive web app." } ], "speaker": 0, "start": 27.474998 }, { "end": 78.74, "num_words": 115, "sentences": [ { "end": 57.53, "start": 45.215, "text": "What we'll do in this video is download the web assembly binary for FFmpeg directly into a React app, allowing us to combine the c programming language with JavaScript and offload the video editing work to the end user's hardware." }, { "end": 62.395, "start": 57.91, "text": "If you're new here, like and subscribe, and follow along with the full write up and source code on FireShip IO." }, { "end": 67.135, "start": 62.555, "text": "And if you have no idea what web assembly is, check out my 100 second breakdown on that topic." }, { "end": 72.175, "start": 67.195, "text": "This tutorial is very beginner friendly and doesn't require that you know anything about the c programming language." }, { "end": 78.74, "start": 72.32, "text": "That's because the ffmpeg.wasm package provides an API and JavaScript to interact with this low level utility." } ], "speaker": 0, "start": 45.215 }, { "end": 104.085, "num_words": 97, "sentences": [ { "end": 81.885, "start": 78.88, "text": "Now before we jump into the code, let's take a closer look at the demo." }, { "end": 84.945, "start": 81.965004, "text": "We have a file input where we can select a video file." }, { "end": 93.85, "start": 85.325005, "text": "The video can be previewed in a video element, then when you click the convert button, it runs f f mpeg to load the video file into memory and run the conversion." }, { "end": 100.409996, "start": 94.229996, "text": "Very simple stuff, but my main goal here is to give you a starting point for building more complex features through the magic of web assembly." }, { "end": 104.085, "start": 100.705, "text": "To get things started, I'm generating a new React app using Snowpack." } ], "speaker": 0, "start": 78.88 }, { "end": 128.16, "num_words": 86, "sentences": [ { "end": 109.35, "start": 104.545, "text": "And keep in mind here, the code is very simple, so feel free to follow along with any other framework." }, { "end": 114.33, "start": 109.43, "text": "Then from inside your project, you'll want to install the following packages from the ffmpeg namespace." }, { "end": 119.905, "start": 114.869995, "text": "And lastly, you can run npm start, which should give you the default React app running in the browser." }, { "end": 123.905, "start": 120.204994, "text": "From there, we'll go into the source directory and open the app JS file." }, { "end": 128.16, "start": 124.08, "text": "I'm gonna go ahead and delete all the boilerplate code, leaving us with a basic starting point." } ], "speaker": 0, "start": 104.545 }, { "end": 152.855, "num_words": 91, "sentences": [ { "end": 131.94, "start": 128.16, "text": "From there, I'm going to import 2 functions from the FFmpeg namespace." }, { "end": 138.535, "start": 132.595, "text": "The first function, create ffmpeg, we can call right away, which gives us a starting point for working with this library." }, { "end": 143.1824, "start": 138.675, "text": "We'll set the log option to true so we can see everything that it does directly play in the console." }, { "end": 149.075, "start": 143.1824, "text": "Now it's important to understand at this point that the actual web assembly binary has not been bundled in our application." }, { "end": 152.855, "start": 149.075, "text": "It's a pretty large file, so we don't want it to block our web application right away." } ], "speaker": 0, "start": 128.16 }, { "end": 175.245, "num_words": 78, "sentences": [ { "end": 155.495, "start": 152.915, "text": "Instead, we load it asynchronously over a CDN." }, { "end": 161.42, "start": 155.715, "text": "To keep track of the loading state, I'll go ahead and add a stateful property here called ready with the use state hook." }, { "end": 169.065, "start": 161.64, "text": "It has a default value of false, and then we'll create an async function here called load that can flip it to true after the binary has been loaded." }, { "end": 172.205, "start": 169.065, "text": "The function awaits the FFmpeg load promise." }, { "end": 175.245, "start": 172.585, "text": "And once loaded, we can flip the ready state to true." } ], "speaker": 0, "start": 152.915 }, { "end": 195.19, "num_words": 70, "sentences": [ { "end": 177.59999, "start": 175.34, "text": "And now we just need a place to call this function." }, { "end": 183.51999, "start": 177.9, "text": "In React, we can do that with the use effect hook to run this function when the component is first initialized." }, { "end": 186.315, "start": 184.05501, "text": "Use effect takes a function as its argument." }, { "end": 189.755, "start": 186.615, "text": "Then notice how I'm adding an empty array as the second argument." }, { "end": 195.19, "start": 190.055, "text": "This will ensure that the function is only called once when the component is first initialized or mounted." } ], "speaker": 0, "start": 175.34 }, { "end": 220.65001, "num_words": 97, "sentences": [ { "end": 198.63, "start": 195.65001, "text": "Then inside the effect, we can simply call our load function." }, { "end": 202.805, "start": 198.77, "text": "If you go ahead and save the file and open up the browser, you should get a blank page." }, { "end": 206.98499, "start": 202.805, "text": "But in the console, you'll notice that FFmpeg core is being loaded in the background." }, { "end": 212.07, "start": 207.28499, "text": "In fact, if we go over to the sources tab, you can inspect the actual web assembly code there." }, { "end": 220.65001, "start": 212.23001, "text": "You don't need to understand what any of this code means, but it is useful to know that this originally started as the c programming language and then was compiled over to WebAssembly." } ], "speaker": 0, "start": 195.65001 }, { "end": 243.75499, "num_words": 85, "sentences": [ { "end": 227.565, "start": 221.145, "text": "What we're looking at here is the web assembly text, which is an intermediate format before it becomes binary or ones and zeros." }, { "end": 233.17001, "start": 227.705, "text": "Now back in the source code, we'll go into our JSX, and then we'll use the ternary operator with our ready state." }, { "end": 235.19, "start": 233.17001, "text": "If the app's ready, we'll show the main UI." }, { "end": 237.35, "start": 235.25, "text": "Otherwise, we'll just show the text of loading." }, { "end": 243.75499, "start": 237.575, "text": "Now our next challenge is loading a video file into the application and also showing it in a video player in the UI." } ], "speaker": 0, "start": 221.145 }, { "end": 266.57, "num_words": 80, "sentences": [ { "end": 246.46, "start": 243.815, "text": "The first step is to add additional state to the component." }, { "end": 249.92001, "start": 246.54001, "text": "In this case, a video file, which will initially start undefined." }, { "end": 253.955, "start": 250.38, "text": "In the HTML, we can add an input element with a type of file." }, { "end": 260.615, "start": 254.035, "text": "When this input changes, we'll run an event handler that will set the video state and it gets the actual file from the event." }, { "end": 266.57, "start": 260.755, "text": "The event emits a file list and then we use item 0 to select the first file from that list." } ], "speaker": 0, "start": 243.815 }, { "end": 293.935, "num_words": 100, "sentences": [ { "end": 270.985, "start": 266.57, "text": "Now that we have access to a video file, we want to display it in an HTML video element." }, { "end": 275.56497, "start": 271.06497, "text": "We'll use a logical and operator to only show the video when the video file is defined." }, { "end": 283.24002, "start": 276.10498, "text": "The element has controls, a width of 250, But a tricky thing here is that we can't just pass the raw file to the source attribute." }, { "end": 286.155, "start": 283.38, "text": "We need to convert it to a URL that the browser can fetch." }, { "end": 293.935, "start": 286.555, "text": "We can handle that by using the URL interface and then calling its create object URL method, which takes the file object as its argument." } ], "speaker": 0, "start": 266.57 }, { "end": 327.81998, "num_words": 134, "sentences": [ { "end": 300.88, "start": 294.14, "text": "If we go ahead and open up the demo, we should now be able to choose a file on our system and then have that file displayed in the video player." }, { "end": 309.175, "start": 301.235, "text": "And now we're ready for the fun part, using FFmpeg and WebAssembly to modify this video file or, in our case, convert the file to an animated GIF." }, { "end": 317.15, "start": 309.28998, "text": "The first thing we'll do here is add one more piece of state to the component called GIF, and it will be used to hold the end result, which is a URL of an image file." }, { "end": 322.485, "start": 317.26498, "text": "From there, we'll create a function called convert to GIF, which the user can run when they're ready to make the conversion." }, { "end": 327.81998, "start": 322.625, "text": "Now one thing to understand here is that WebAssembly is managing its own in memory file system." } ], "speaker": 0, "start": 294.14 }, { "end": 357.305, "num_words": 113, "sentences": [ { "end": 332.46, "start": 327.87997, "text": "And in order to run FFmpeg on that file, we need to make it known to that file system." }, { "end": 342.675, "start": 332.59998, "text": "We can do that by calling f s or file system along with the right file method, along with the name of the file, and then we fetch the actual video file that we've collected from the end user." }, { "end": 348.33002, "start": 342.79, "text": "What we've done is taken the video file and saved it to a place in memory as test dot m p 4." }, { "end": 354.345, "start": 348.47, "text": "They can be now accessed by WebAssembly while it's in memory, and it only stays in memory until the browser is refreshed." }, { "end": 357.305, "start": 354.645, "text": "From there, we can run an actual f f mpeg command." } ], "speaker": 0, "start": 327.87997 }, { "end": 375.225, "num_words": 71, "sentences": [ { "end": 358.92, "start": 357.365, "text": "If you're not familiar with utility." }, { "end": 362.78, "start": 358.92, "text": "It's a command line tool that can perform all kinds of video editing jobs." }, { "end": 368.22, "start": 363, "text": "It's been around for a very long time and you can check out the full documentation to get an idea of what it can do." }, { "end": 372.82498, "start": 368.405, "text": "We can run the command by simply passing arguments that we would normally pass to the command line." }, { "end": 375.225, "start": 373.04498, "text": "The I flag is for the input file." } ], "speaker": 0, "start": 357.365 }, { "end": 404.26498, "num_words": 105, "sentences": [ { "end": 379.42, "start": 375.4, "text": "The t flag is for the time that we want the length of the video to be." }, { "end": 384.7, "start": 379.48, "text": "We can offset it with starting seconds, then we use the f flag to encode it as a GIF file." }, { "end": 393.695, "start": 384.875, "text": "When that's complete, it will write the result to memory, and then we can access it by again using the file system command this time to read a file called out dot gif." }, { "end": 397.86002, "start": 394, "text": "We then need to convert the file data into a URL that can be used in the browser." }, { "end": 404.26498, "start": 398.24002, "text": "Once again, we'll use URL create object URL, and as its argument, will create a new blob." } ], "speaker": 0, "start": 375.4 }, { "end": 433.53, "num_words": 116, "sentences": [ { "end": 411.305, "start": 404.485, "text": "Blob is kind of a scary word, but it just means a raw file, which in this case is the binary that we can access from the data buffer." }, { "end": 417.29, "start": 411.51, "text": "It's also a good idea to pass a second argument with the MIME type of the object, which in this case is a GIF image." }, { "end": 420.97, "start": 417.59, "text": "And lastly, we take that URL and update the state of the component." }, { "end": 424.625, "start": 421.405, "text": "From there, we just have a couple of simple updates to make to the UI." }, { "end": 433.53, "start": 424.92502, "text": "We'll go down here and add a button that when clicked will run the convert to get function and then we'll add an image tag that's only displayed when we have the GIF URL." } ], "speaker": 0, "start": 404.485 }, { "end": 465.86002, "num_words": 132, "sentences": [ { "end": 445.45, "start": 434.06998, "text": "You should now be able to open up your demo, select a video file, Then when you click the convert button, it uses web assembly to convert that file to an animated GIF, and it should log the entire process here in the console." }, { "end": 449.85, "start": 445.45, "text": "You could then take this file and upload it to Giphy or use it on Twitter or whatever you want." }, { "end": 453.63, "start": 449.85, "text": "And that's how easy it is to start incorporating WebAssembly into your web applications." }, { "end": 463.335, "start": 454.115, "text": "I'm gonna go ahead and wrap things up there, but in the near future, I plan on making a video about how to take your own custom rust code and convert it to web assembly to be used in the browser." }, { "end": 465.86002, "start": 463.52, "text": "And if you have any ideas, please let me know in the comments." } ], "speaker": 0, "start": 434.06998 }, { "end": 473.49503, "num_words": 31, "sentences": [ { "end": 470.515, "start": 466, "text": "If you want to learn more and support my work, consider becoming a pro member at FireShip I o." }, { "end": 473.49503, "start": 470.755, "text": "Thanks for watching and I will see you in the next one." } ], "speaker": 0, "start": 466 } ], "transcript": "\nSpeaker 0: WebAssembly opens the door to building high performance applications on the web and languages other than JavaScript. In today's video, we'll build a simple video editing tool that can take a video file and convert it to an animated GIF. The cool thing about this demo is that it's made possible by a library called f f mpeg, which is a utility written in the c programming language. But But thanks to WebAssembly, we can run this tool directly in the browser. And that means we can perform CPU intensive video editing jobs without the need for a back end server.\n\nFor example, here's how a traditional web application might work. We collect a video file from the end user, then upload it to the cloud. We use our cloud server to run FFmpeg to encode the file, then send it back down to the client. That works fine, but it's not very efficient. And it also has no way to work offline if you're building a progressive web app.\n\nWhat we'll do in this video is download the web assembly binary for FFmpeg directly into a React app, allowing us to combine the c programming language with JavaScript and offload the video editing work to the end user's hardware. If you're new here, like and subscribe, and follow along with the full write up and source code on FireShip IO. And if you have no idea what web assembly is, check out my 100 second breakdown on that topic. This tutorial is very beginner friendly and doesn't require that you know anything about the c programming language. That's because the ffmpeg.wasm package provides an API and JavaScript to interact with this low level utility.\n\nNow before we jump into the code, let's take a closer look at the demo. We have a file input where we can select a video file. The video can be previewed in a video element, then when you click the convert button, it runs f f mpeg to load the video file into memory and run the conversion. Very simple stuff, but my main goal here is to give you a starting point for building more complex features through the magic of web assembly. To get things started, I'm generating a new React app using Snowpack.\n\nAnd keep in mind here, the code is very simple, so feel free to follow along with any other framework. Then from inside your project, you'll want to install the following packages from the ffmpeg namespace. And lastly, you can run npm start, which should give you the default React app running in the browser. From there, we'll go into the source directory and open the app JS file. I'm gonna go ahead and delete all the boilerplate code, leaving us with a basic starting point.\n\nFrom there, I'm going to import 2 functions from the FFmpeg namespace. The first function, create ffmpeg, we can call right away, which gives us a starting point for working with this library. We'll set the log option to true so we can see everything that it does directly play in the console. Now it's important to understand at this point that the actual web assembly binary has not been bundled in our application. It's a pretty large file, so we don't want it to block our web application right away.\n\nInstead, we load it asynchronously over a CDN. To keep track of the loading state, I'll go ahead and add a stateful property here called ready with the use state hook. It has a default value of false, and then we'll create an async function here called load that can flip it to true after the binary has been loaded. The function awaits the FFmpeg load promise. And once loaded, we can flip the ready state to true.\n\nAnd now we just need a place to call this function. In React, we can do that with the use effect hook to run this function when the component is first initialized. Use effect takes a function as its argument. Then notice how I'm adding an empty array as the second argument. This will ensure that the function is only called once when the component is first initialized or mounted.\n\nThen inside the effect, we can simply call our load function. If you go ahead and save the file and open up the browser, you should get a blank page. But in the console, you'll notice that FFmpeg core is being loaded in the background. In fact, if we go over to the sources tab, you can inspect the actual web assembly code there. You don't need to understand what any of this code means, but it is useful to know that this originally started as the c programming language and then was compiled over to WebAssembly.\n\nWhat we're looking at here is the web assembly text, which is an intermediate format before it becomes binary or ones and zeros. Now back in the source code, we'll go into our JSX, and then we'll use the ternary operator with our ready state. If the app's ready, we'll show the main UI. Otherwise, we'll just show the text of loading. Now our next challenge is loading a video file into the application and also showing it in a video player in the UI.\n\nThe first step is to add additional state to the component. In this case, a video file, which will initially start undefined. In the HTML, we can add an input element with a type of file. When this input changes, we'll run an event handler that will set the video state and it gets the actual file from the event. The event emits a file list and then we use item 0 to select the first file from that list.\n\nNow that we have access to a video file, we want to display it in an HTML video element. We'll use a logical and operator to only show the video when the video file is defined. The element has controls, a width of 250, But a tricky thing here is that we can't just pass the raw file to the source attribute. We need to convert it to a URL that the browser can fetch. We can handle that by using the URL interface and then calling its create object URL method, which takes the file object as its argument.\n\nIf we go ahead and open up the demo, we should now be able to choose a file on our system and then have that file displayed in the video player. And now we're ready for the fun part, using FFmpeg and WebAssembly to modify this video file or, in our case, convert the file to an animated GIF. The first thing we'll do here is add one more piece of state to the component called GIF, and it will be used to hold the end result, which is a URL of an image file. From there, we'll create a function called convert to GIF, which the user can run when they're ready to make the conversion. Now one thing to understand here is that WebAssembly is managing its own in memory file system.\n\nAnd in order to run FFmpeg on that file, we need to make it known to that file system. We can do that by calling f s or file system along with the right file method, along with the name of the file, and then we fetch the actual video file that we've collected from the end user. What we've done is taken the video file and saved it to a place in memory as test dot m p 4. They can be now accessed by WebAssembly while it's in memory, and it only stays in memory until the browser is refreshed. From there, we can run an actual f f mpeg command.\n\nIf you're not familiar with utility. It's a command line tool that can perform all kinds of video editing jobs. It's been around for a very long time and you can check out the full documentation to get an idea of what it can do. We can run the command by simply passing arguments that we would normally pass to the command line. The I flag is for the input file.\n\nThe t flag is for the time that we want the length of the video to be. We can offset it with starting seconds, then we use the f flag to encode it as a GIF file. When that's complete, it will write the result to memory, and then we can access it by again using the file system command this time to read a file called out dot gif. We then need to convert the file data into a URL that can be used in the browser. Once again, we'll use URL create object URL, and as its argument, will create a new blob.\n\nBlob is kind of a scary word, but it just means a raw file, which in this case is the binary that we can access from the data buffer. It's also a good idea to pass a second argument with the MIME type of the object, which in this case is a GIF image. And lastly, we take that URL and update the state of the component. From there, we just have a couple of simple updates to make to the UI. We'll go down here and add a button that when clicked will run the convert to get function and then we'll add an image tag that's only displayed when we have the GIF URL.\n\nYou should now be able to open up your demo, select a video file, Then when you click the convert button, it uses web assembly to convert that file to an animated GIF, and it should log the entire process here in the console. You could then take this file and upload it to Giphy or use it on Twitter or whatever you want. And that's how easy it is to start incorporating WebAssembly into your web applications. I'm gonna go ahead and wrap things up there, but in the near future, I plan on making a video about how to take your own custom rust code and convert it to web assembly to be used in the browser. And if you have any ideas, please let me know in the comments.\n\nIf you want to learn more and support my work, consider becoming a pro member at FireShip I o. Thanks for watching and I will see you in the next one." }, "summaries": null, "topics": [ { "end_word": 402, "start_word": 0, "text": "WebAssembly opens the door to building high performance applications on the web and languages other than JavaScript. In today's video, we'll build a simple video editing tool that can take a video file and convert it to an animated GIF. The cool thing about this demo is that it's made possible by a library called f f mpeg, which is a utility written in the c programming language. But But thanks to WebAssembly, we can run this tool directly in the browser. And that means we can perform CPU intensive video editing jobs without the need for a back end server. For example, here's how a traditional web application might work. We collect a video file from the end user, then upload it to the cloud. We use our cloud server to run FFmpeg to encode the file, then send it back down to the client. That works fine, but it's not very efficient. And it also has no way to work offline if you're building a progressive web app. What we'll do in this video is download the web assembly binary for FFmpeg directly into a React app, allowing us to combine the c programming language with JavaScript and offload the video editing work to the end user's hardware. If you're new here, like and subscribe, and follow along with the full write up and source code on FireShip IO. And if you have no idea what web assembly is, check out my 100 second breakdown on that topic. This tutorial is very beginner friendly and doesn't require that you know anything about the c programming language. That's because the ffmpeg.wasm package provides an API and JavaScript to interact with this low level utility. Now before we jump into the code, let's take a closer look at the demo. We have a file input where we can select a video file. The video can be previewed in a video element, then when you click the convert button, it runs f f mpeg to load the video file into memory and run the conversion. Very simple stuff, but my main goal here is to give you a starting point for building more complex features through the magic of web assembly. To get things started, I'm generating a new React app using Snowpack. And keep in mind here, the code is very simple, so feel free to follow along with any other framework.", "topics": [ { "confidence": 0.8488421, "topic": "video gaming" }, { "confidence": 0.5641754, "topic": "multimedia" }, { "confidence": 0.17302923, "topic": "visualization" }, { "confidence": 0.1556648, "topic": "software development" }, { "confidence": 0.12455542, "topic": "software" }, { "confidence": 0.059191562, "topic": "streaming" }, { "confidence": 0.037533835, "topic": "youtube" }, { "confidence": 0.032751903, "topic": "programming" }, { "confidence": 0.02883467, "topic": "computer science" }, { "confidence": 0.008831983, "topic": "animation" } ] }, { "end_word": 567, "start_word": 402, "text": "Then from inside your project, you'll want to install the following packages from the ffmpeg namespace. And lastly, you can run npm start, which should give you the default React app running in the browser. From there, we'll go into the source directory and open the app JS file. I'm gonna go ahead and delete all the boilerplate code, leaving us with a basic starting point. From there, I'm going to import 2 functions from the FFmpeg namespace. The first function, create ffmpeg, we can call right away, which gives us a starting point for working with this library. We'll set the log option to true so we can see everything that it does directly play in the console. Now it's important to understand at this point that the actual web assembly binary has not been bundled in our application. It's a pretty large file, so we don't want it to block our web application right away. Instead, we load it asynchronously over a CDN.", "topics": [] }, { "end_word": 619, "start_word": 567, "text": "To keep track of the loading state, I'll go ahead and add a stateful property here called ready with the use state hook. It has a default value of false, and then we'll create an async function here called load that can flip it to true after the binary has been loaded.", "topics": [ { "confidence": 0.01866768, "topic": "programming" } ] }, { "end_word": 707, "start_word": 619, "text": "The function awaits the FFmpeg load promise. And once loaded, we can flip the ready state to true. And now we just need a place to call this function. In React, we can do that with the use effect hook to run this function when the component is first initialized. Use effect takes a function as its argument. Then notice how I'm adding an empty array as the second argument. This will ensure that the function is only called once when the component is first initialized or mounted.", "topics": [] }, { "end_word": 900, "start_word": 707, "text": "Then inside the effect, we can simply call our load function. If you go ahead and save the file and open up the browser, you should get a blank page. But in the console, you'll notice that FFmpeg core is being loaded in the background. In fact, if we go over to the sources tab, you can inspect the actual web assembly code there. You don't need to understand what any of this code means, but it is useful to know that this originally started as the c programming language and then was compiled over to WebAssembly. What we're looking at here is the web assembly text, which is an intermediate format before it becomes binary or ones and zeros. Now back in the source code, we'll go into our JSX, and then we'll use the ternary operator with our ready state. If the app's ready, we'll show the main UI. Otherwise, we'll just show the text of loading. Now our next challenge is loading a video file into the application and also showing it in a video player in the UI. The first step is to add additional state to the component.", "topics": [ { "confidence": 0.7798991, "topic": "programming" }, { "confidence": 0.031784594, "topic": "multimedia" }, { "confidence": 0.014638286, "topic": "video gaming" }, { "confidence": 0.008862344, "topic": "streaming" } ] }, { "end_word": 925, "start_word": 900, "text": "In this case, a video file, which will initially start undefined. In the HTML, we can add an input element with a type of file.", "topics": [] }, { "end_word": 1031, "start_word": 925, "text": "When this input changes, we'll run an event handler that will set the video state and it gets the actual file from the event. The event emits a file list and then we use item 0 to select the first file from that list. Now that we have access to a video file, we want to display it in an HTML video element. We'll use a logical and operator to only show the video when the video file is defined. The element has controls, a width of 250, But a tricky thing here is that we can't just pass the raw file to the source attribute.", "topics": [ { "confidence": 0.57276636, "topic": "video gaming" }, { "confidence": 0.16507186, "topic": "youtube" }, { "confidence": 0.08682697, "topic": "streaming" }, { "confidence": 0.051133044, "topic": "multimedia" } ] }, { "end_word": 1069, "start_word": 1031, "text": "We need to convert it to a URL that the browser can fetch. We can handle that by using the URL interface and then calling its create object URL method, which takes the file object as its argument.", "topics": [] }, { "end_word": 1164, "start_word": 1069, "text": "If we go ahead and open up the demo, we should now be able to choose a file on our system and then have that file displayed in the video player. And now we're ready for the fun part, using FFmpeg and WebAssembly to modify this video file or, in our case, convert the file to an animated GIF. The first thing we'll do here is add one more piece of state to the component called GIF, and it will be used to hold the end result, which is a URL of an image file.", "topics": [ { "confidence": 0.7537945, "topic": "multimedia" }, { "confidence": 0.691098, "topic": "video gaming" }, { "confidence": 0.5184623, "topic": "animation" }, { "confidence": 0.35326093, "topic": "youtube" }, { "confidence": 0.11902045, "topic": "streaming" } ] }, { "end_word": 1361, "start_word": 1164, "text": "From there, we'll create a function called convert to GIF, which the user can run when they're ready to make the conversion. Now one thing to understand here is that WebAssembly is managing its own in memory file system. And in order to run FFmpeg on that file, we need to make it known to that file system. We can do that by calling f s or file system along with the right file method, along with the name of the file, and then we fetch the actual video file that we've collected from the end user. What we've done is taken the video file and saved it to a place in memory as test dot m p 4. They can be now accessed by WebAssembly while it's in memory, and it only stays in memory until the browser is refreshed. From there, we can run an actual f f mpeg command. If you're not familiar with utility. It's a command line tool that can perform all kinds of video editing jobs. It's been around for a very long time and you can check out the full documentation to get an idea of what it can do.", "topics": [ { "confidence": 0.28060597, "topic": "video gaming" }, { "confidence": 0.19714081, "topic": "streaming" }, { "confidence": 0.014352053, "topic": "multimedia" }, { "confidence": 0.008599963, "topic": "youtube" }, { "confidence": 0.0057251616, "topic": "software development" } ] }, { "end_word": 1608, "start_word": 1361, "text": "We can run the command by simply passing arguments that we would normally pass to the command line. The I flag is for the input file. The t flag is for the time that we want the length of the video to be. We can offset it with starting seconds, then we use the f flag to encode it as a GIF file. When that's complete, it will write the result to memory, and then we can access it by again using the file system command this time to read a file called out dot gif. We then need to convert the file data into a URL that can be used in the browser. Once again, we'll use URL create object URL, and as its argument, will create a new blob. Blob is kind of a scary word, but it just means a raw file, which in this case is the binary that we can access from the data buffer. It's also a good idea to pass a second argument with the MIME type of the object, which in this case is a GIF image. And lastly, we take that URL and update the state of the component. From there, we just have a couple of simple updates to make to the UI. We'll go down here and add a button that when clicked will run the convert to get function and then we'll add an image tag that's only displayed when we have the GIF URL.", "topics": [] }, { "end_word": 1672, "start_word": 1608, "text": "You should now be able to open up your demo, select a video file, Then when you click the convert button, it uses web assembly to convert that file to an animated GIF, and it should log the entire process here in the console. You could then take this file and upload it to Giphy or use it on Twitter or whatever you want.", "topics": [ { "confidence": 0.35407725, "topic": "multimedia" }, { "confidence": 0.057304665, "topic": "animation" }, { "confidence": 0.020771295, "topic": "youtube" }, { "confidence": 0.014875502, "topic": "software" }, { "confidence": 0.014281508, "topic": "streaming" } ] }, { "end_word": 1727, "start_word": 1672, "text": "And that's how easy it is to start incorporating WebAssembly into your web applications. I'm gonna go ahead and wrap things up there, but in the near future, I plan on making a video about how to take your own custom rust code and convert it to web assembly to be used in the browser.", "topics": [] }, { "end_word": 1771, "start_word": 1727, "text": "And if you have any ideas, please let me know in the comments. If you want to learn more and support my work, consider becoming a pro member at FireShip I o. Thanks for watching and I will see you in the next one.", "topics": [ { "confidence": 0.036145713, "topic": "leadership" } ] } ], "transcript": "WebAssembly opens the door to building high performance applications on the web and languages other than JavaScript. In today's video, we'll build a simple video editing tool that can take a video file and convert it to an animated GIF. The cool thing about this demo is that it's made possible by a library called f f mpeg, which is a utility written in the c programming language. But But thanks to WebAssembly, we can run this tool directly in the browser. And that means we can perform CPU intensive video editing jobs without the need for a back end server. For example, here's how a traditional web application might work. We collect a video file from the end user, then upload it to the cloud. We use our cloud server to run FFmpeg to encode the file, then send it back down to the client. That works fine, but it's not very efficient. And it also has no way to work offline if you're building a progressive web app. What we'll do in this video is download the web assembly binary for FFmpeg directly into a React app, allowing us to combine the c programming language with JavaScript and offload the video editing work to the end user's hardware. If you're new here, like and subscribe, and follow along with the full write up and source code on FireShip IO. And if you have no idea what web assembly is, check out my 100 second breakdown on that topic. This tutorial is very beginner friendly and doesn't require that you know anything about the c programming language. That's because the ffmpeg.wasm package provides an API and JavaScript to interact with this low level utility. Now before we jump into the code, let's take a closer look at the demo. We have a file input where we can select a video file. The video can be previewed in a video element, then when you click the convert button, it runs f f mpeg to load the video file into memory and run the conversion. Very simple stuff, but my main goal here is to give you a starting point for building more complex features through the magic of web assembly. To get things started, I'm generating a new React app using Snowpack. And keep in mind here, the code is very simple, so feel free to follow along with any other framework. Then from inside your project, you'll want to install the following packages from the ffmpeg namespace. And lastly, you can run npm start, which should give you the default React app running in the browser. From there, we'll go into the source directory and open the app JS file. I'm gonna go ahead and delete all the boilerplate code, leaving us with a basic starting point. From there, I'm going to import 2 functions from the FFmpeg namespace. The first function, create ffmpeg, we can call right away, which gives us a starting point for working with this library. We'll set the log option to true so we can see everything that it does directly play in the console. Now it's important to understand at this point that the actual web assembly binary has not been bundled in our application. It's a pretty large file, so we don't want it to block our web application right away. Instead, we load it asynchronously over a CDN. To keep track of the loading state, I'll go ahead and add a stateful property here called ready with the use state hook. It has a default value of false, and then we'll create an async function here called load that can flip it to true after the binary has been loaded. The function awaits the FFmpeg load promise. And once loaded, we can flip the ready state to true. And now we just need a place to call this function. In React, we can do that with the use effect hook to run this function when the component is first initialized. Use effect takes a function as its argument. Then notice how I'm adding an empty array as the second argument. This will ensure that the function is only called once when the component is first initialized or mounted. Then inside the effect, we can simply call our load function. If you go ahead and save the file and open up the browser, you should get a blank page. But in the console, you'll notice that FFmpeg core is being loaded in the background. In fact, if we go over to the sources tab, you can inspect the actual web assembly code there. You don't need to understand what any of this code means, but it is useful to know that this originally started as the c programming language and then was compiled over to WebAssembly. What we're looking at here is the web assembly text, which is an intermediate format before it becomes binary or ones and zeros. Now back in the source code, we'll go into our JSX, and then we'll use the ternary operator with our ready state. If the app's ready, we'll show the main UI. Otherwise, we'll just show the text of loading. Now our next challenge is loading a video file into the application and also showing it in a video player in the UI. The first step is to add additional state to the component. In this case, a video file, which will initially start undefined. In the HTML, we can add an input element with a type of file. When this input changes, we'll run an event handler that will set the video state and it gets the actual file from the event. The event emits a file list and then we use item 0 to select the first file from that list. Now that we have access to a video file, we want to display it in an HTML video element. We'll use a logical and operator to only show the video when the video file is defined. The element has controls, a width of 250, But a tricky thing here is that we can't just pass the raw file to the source attribute. We need to convert it to a URL that the browser can fetch. We can handle that by using the URL interface and then calling its create object URL method, which takes the file object as its argument. If we go ahead and open up the demo, we should now be able to choose a file on our system and then have that file displayed in the video player. And now we're ready for the fun part, using FFmpeg and WebAssembly to modify this video file or, in our case, convert the file to an animated GIF. The first thing we'll do here is add one more piece of state to the component called GIF, and it will be used to hold the end result, which is a URL of an image file. From there, we'll create a function called convert to GIF, which the user can run when they're ready to make the conversion. Now one thing to understand here is that WebAssembly is managing its own in memory file system. And in order to run FFmpeg on that file, we need to make it known to that file system. We can do that by calling f s or file system along with the right file method, along with the name of the file, and then we fetch the actual video file that we've collected from the end user. What we've done is taken the video file and saved it to a place in memory as test dot m p 4. They can be now accessed by WebAssembly while it's in memory, and it only stays in memory until the browser is refreshed. From there, we can run an actual f f mpeg command. If you're not familiar with utility. It's a command line tool that can perform all kinds of video editing jobs. It's been around for a very long time and you can check out the full documentation to get an idea of what it can do. We can run the command by simply passing arguments that we would normally pass to the command line. The I flag is for the input file. The t flag is for the time that we want the length of the video to be. We can offset it with starting seconds, then we use the f flag to encode it as a GIF file. When that's complete, it will write the result to memory, and then we can access it by again using the file system command this time to read a file called out dot gif. We then need to convert the file data into a URL that can be used in the browser. Once again, we'll use URL create object URL, and as its argument, will create a new blob. Blob is kind of a scary word, but it just means a raw file, which in this case is the binary that we can access from the data buffer. It's also a good idea to pass a second argument with the MIME type of the object, which in this case is a GIF image. And lastly, we take that URL and update the state of the component. From there, we just have a couple of simple updates to make to the UI. We'll go down here and add a button that when clicked will run the convert to get function and then we'll add an image tag that's only displayed when we have the GIF URL. You should now be able to open up your demo, select a video file, Then when you click the convert button, it uses web assembly to convert that file to an animated GIF, and it should log the entire process here in the console. You could then take this file and upload it to Giphy or use it on Twitter or whatever you want. And that's how easy it is to start incorporating WebAssembly into your web applications. I'm gonna go ahead and wrap things up there, but in the near future, I plan on making a video about how to take your own custom rust code and convert it to web assembly to be used in the browser. And if you have any ideas, please let me know in the comments. If you want to learn more and support my work, consider becoming a pro member at FireShip I o. Thanks for watching and I will see you in the next one.", "translations": null, "words": [ { "confidence": 0.94506836, "end": 0.65999997, "punctuated_word": "WebAssembly", "speaker": 0, "speaker_confidence": 0.72509766, "start": 0.16, "word": "webassembly" }, { "confidence": 0.99902344, "end": 1.1999999, "punctuated_word": "opens", "speaker": 0, "speaker_confidence": 0.72509766, "start": 0.88, "word": "opens" }, { "confidence": 1, "end": 1.28, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.72509766, "start": 1.1999999, "word": "the" }, { "confidence": 1, "end": 1.5999999, "punctuated_word": "door", "speaker": 0, "speaker_confidence": 0.72509766, "start": 1.28, "word": "door" }, { "confidence": 1, "end": 1.76, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.72509766, "start": 1.5999999, "word": "to" }, { "confidence": 0.99902344, "end": 2.08, "punctuated_word": "building", "speaker": 0, "speaker_confidence": 0.72509766, "start": 1.76, "word": "building" }, { "confidence": 0.99609375, "end": 2.32, "punctuated_word": "high", "speaker": 0, "speaker_confidence": 0.72509766, "start": 2.08, "word": "high" }, { "confidence": 0.9970703, "end": 2.82, "punctuated_word": "performance", "speaker": 0, "speaker_confidence": 0.72509766, "start": 2.32, "word": "performance" }, { "confidence": 1, "end": 3.36, "punctuated_word": "applications", "speaker": 0, "speaker_confidence": 0.72509766, "start": 2.8799999, "word": "applications" }, { "confidence": 1, "end": 3.4399998, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.7729492, "start": 3.36, "word": "on" }, { "confidence": 0.9970703, "end": 3.6, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7729492, "start": 3.4399998, "word": "the" }, { "confidence": 0.99121094, "end": 3.9199998, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.7729492, "start": 3.6, "word": "web" }, { "confidence": 0.7573242, "end": 4.08, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7729492, "start": 3.9199998, "word": "and" }, { "confidence": 0.9980469, "end": 4.56, "punctuated_word": "languages", "speaker": 0, "speaker_confidence": 0.7729492, "start": 4.08, "word": "languages" }, { "confidence": 0.9951172, "end": 4.7999997, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.7729492, "start": 4.56, "word": "other" }, { "confidence": 1, "end": 4.96, "punctuated_word": "than", "speaker": 0, "speaker_confidence": 0.7729492, "start": 4.7999997, "word": "than" }, { "confidence": 0.9863281, "end": 5.46, "punctuated_word": "JavaScript.", "speaker": 0, "speaker_confidence": 0.7729492, "start": 4.96, "word": "javascript" }, { "confidence": 1, "end": 5.8399997, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.7729492, "start": 5.6, "word": "in" }, { "confidence": 0.9995117, "end": 6.16, "punctuated_word": "today's", "speaker": 0, "speaker_confidence": 0.7729492, "start": 5.8399997, "word": "today's" }, { "confidence": 0.9995117, "end": 6.48, "punctuated_word": "video,", "speaker": 0, "speaker_confidence": 0.7729492, "start": 6.16, "word": "video" }, { "confidence": 1, "end": 6.72, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.7729492, "start": 6.48, "word": "we'll" }, { "confidence": 1, "end": 6.96, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.7729492, "start": 6.72, "word": "build" }, { "confidence": 1, "end": 7.12, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7729492, "start": 6.96, "word": "a" }, { "confidence": 1, "end": 7.52, "punctuated_word": "simple", "speaker": 0, "speaker_confidence": 0.7729492, "start": 7.12, "word": "simple" }, { "confidence": 1, "end": 7.8399997, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.7729492, "start": 7.52, "word": "video" }, { "confidence": 1, "end": 8.24, "punctuated_word": "editing", "speaker": 0, "speaker_confidence": 0.7729492, "start": 7.8399997, "word": "editing" }, { "confidence": 1, "end": 8.559999, "punctuated_word": "tool", "speaker": 0, "speaker_confidence": 0.7729492, "start": 8.24, "word": "tool" }, { "confidence": 0.99902344, "end": 8.8, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7729492, "start": 8.559999, "word": "that" }, { "confidence": 1, "end": 8.88, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7729492, "start": 8.8, "word": "can" }, { "confidence": 1, "end": 9.12, "punctuated_word": "take", "speaker": 0, "speaker_confidence": 0.5551758, "start": 8.88, "word": "take" }, { "confidence": 0.99902344, "end": 9.28, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.5551758, "start": 9.12, "word": "a" }, { "confidence": 1, "end": 9.599999, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.5551758, "start": 9.28, "word": "video" }, { "confidence": 0.9941406, "end": 9.805, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.5551758, "start": 9.599999, "word": "file" }, { "confidence": 1, "end": 10.205, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.5551758, "start": 10.045, "word": "and" }, { "confidence": 1, "end": 10.525001, "punctuated_word": "convert", "speaker": 0, "speaker_confidence": 0.5551758, "start": 10.205, "word": "convert" }, { "confidence": 0.99902344, "end": 10.685, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.5551758, "start": 10.525001, "word": "it" }, { "confidence": 0.9980469, "end": 10.845, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.82373047, "start": 10.685, "word": "to" }, { "confidence": 0.99902344, "end": 11.005, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.82373047, "start": 10.845, "word": "an" }, { "confidence": 1, "end": 11.485001, "punctuated_word": "animated", "speaker": 0, "speaker_confidence": 0.82373047, "start": 11.005, "word": "animated" }, { "confidence": 0.9367676, "end": 11.965, "punctuated_word": "GIF.", "speaker": 0, "speaker_confidence": 0.82373047, "start": 11.485001, "word": "gif" }, { "confidence": 1, "end": 12.045, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.82373047, "start": 11.965, "word": "the" }, { "confidence": 1, "end": 12.205, "punctuated_word": "cool", "speaker": 0, "speaker_confidence": 0.82373047, "start": 12.045, "word": "cool" }, { "confidence": 1, "end": 12.365, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.82373047, "start": 12.205, "word": "thing" }, { "confidence": 1, "end": 12.6050005, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.82373047, "start": 12.365, "word": "about" }, { "confidence": 1, "end": 12.765, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.82373047, "start": 12.6050005, "word": "this" }, { "confidence": 1, "end": 13.085, "punctuated_word": "demo", "speaker": 0, "speaker_confidence": 0.82373047, "start": 12.765, "word": "demo" }, { "confidence": 0.99902344, "end": 13.245, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.82373047, "start": 13.085, "word": "is" }, { "confidence": 1, "end": 13.405001, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.82373047, "start": 13.245, "word": "that" }, { "confidence": 0.99902344, "end": 13.565001, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.82373047, "start": 13.405001, "word": "it's" }, { "confidence": 1, "end": 13.805, "punctuated_word": "made", "speaker": 0, "speaker_confidence": 0.82373047, "start": 13.565001, "word": "made" }, { "confidence": 0.99902344, "end": 14.205, "punctuated_word": "possible", "speaker": 0, "speaker_confidence": 0.82373047, "start": 13.805, "word": "possible" }, { "confidence": 1, "end": 14.445, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.82373047, "start": 14.205, "word": "by" }, { "confidence": 0.9980469, "end": 14.605, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.82373047, "start": 14.445, "word": "a" }, { "confidence": 1, "end": 15.005, "punctuated_word": "library", "speaker": 0, "speaker_confidence": 0.82373047, "start": 14.605, "word": "library" }, { "confidence": 0.9980469, "end": 15.325001, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 0.82373047, "start": 15.005, "word": "called" }, { "confidence": 0.44433594, "end": 15.485001, "punctuated_word": "f", "speaker": 0, "speaker_confidence": 0.82373047, "start": 15.325001, "word": "f" }, { "confidence": 0.9614258, "end": 15.725, "punctuated_word": "f", "speaker": 0, "speaker_confidence": 0.82373047, "start": 15.485001, "word": "f" }, { "confidence": 0.8800456, "end": 16.225, "punctuated_word": "mpeg,", "speaker": 0, "speaker_confidence": 0.82373047, "start": 15.725, "word": "mpeg" }, { "confidence": 1, "end": 16.445, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.82373047, "start": 16.285, "word": "which" }, { "confidence": 1, "end": 16.605, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.82373047, "start": 16.445, "word": "is" }, { "confidence": 0.99902344, "end": 16.765, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.82373047, "start": 16.605, "word": "a" }, { "confidence": 1, "end": 17.245, "punctuated_word": "utility", "speaker": 0, "speaker_confidence": 0.82373047, "start": 16.765, "word": "utility" }, { "confidence": 0.99902344, "end": 17.485, "punctuated_word": "written", "speaker": 0, "speaker_confidence": 0.82373047, "start": 17.245, "word": "written" }, { "confidence": 1, "end": 17.565, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.82373047, "start": 17.485, "word": "in" }, { "confidence": 0.9980469, "end": 17.725, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.82373047, "start": 17.565, "word": "the" }, { "confidence": 0.9404297, "end": 17.965, "punctuated_word": "c", "speaker": 0, "speaker_confidence": 0.82373047, "start": 17.725, "word": "c" }, { "confidence": 0.97998047, "end": 18.445, "punctuated_word": "programming", "speaker": 0, "speaker_confidence": 0.82373047, "start": 17.965, "word": "programming" }, { "confidence": 0.982666, "end": 18.845001, "punctuated_word": "language.", "speaker": 0, "speaker_confidence": 0.82373047, "start": 18.445, "word": "language" }, { "confidence": 0.7944336, "end": 18.95, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.82373047, "start": 18.845001, "word": "but" }, { "confidence": 0.8461914, "end": 19.11, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.82373047, "start": 19.03, "word": "but" }, { "confidence": 0.8886719, "end": 19.35, "punctuated_word": "thanks", "speaker": 0, "speaker_confidence": 0.82373047, "start": 19.11, "word": "thanks" }, { "confidence": 0.99902344, "end": 19.43, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.82373047, "start": 19.35, "word": "to" }, { "confidence": 0.92089844, "end": 19.93, "punctuated_word": "WebAssembly,", "speaker": 0, "speaker_confidence": 0.82373047, "start": 19.43, "word": "webassembly" }, { "confidence": 1, "end": 20.230001, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.44189453, "start": 20.150002, "word": "we" }, { "confidence": 1, "end": 20.390001, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.44189453, "start": 20.230001, "word": "can" }, { "confidence": 1, "end": 20.550001, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.44189453, "start": 20.390001, "word": "run" }, { "confidence": 1, "end": 20.710001, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.44189453, "start": 20.550001, "word": "this" }, { "confidence": 1, "end": 20.95, "punctuated_word": "tool", "speaker": 0, "speaker_confidence": 0.44189453, "start": 20.710001, "word": "tool" }, { "confidence": 1, "end": 21.35, "punctuated_word": "directly", "speaker": 0, "speaker_confidence": 0.44189453, "start": 20.95, "word": "directly" }, { "confidence": 0.9970703, "end": 21.43, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.37548828, "start": 21.35, "word": "in" }, { "confidence": 0.9951172, "end": 21.51, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.37548828, "start": 21.43, "word": "the" }, { "confidence": 0.779541, "end": 22.01, "punctuated_word": "browser.", "speaker": 0, "speaker_confidence": 0.37548828, "start": 21.51, "word": "browser" }, { "confidence": 0.9970703, "end": 22.390001, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.37548828, "start": 22.230001, "word": "and" }, { "confidence": 0.9760742, "end": 22.470001, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.37548828, "start": 22.390001, "word": "that" }, { "confidence": 1, "end": 22.710001, "punctuated_word": "means", "speaker": 0, "speaker_confidence": 0.7421875, "start": 22.470001, "word": "means" }, { "confidence": 0.9428711, "end": 22.79, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.7421875, "start": 22.710001, "word": "we" }, { "confidence": 0.99902344, "end": 23.03, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7421875, "start": 22.79, "word": "can" }, { "confidence": 1, "end": 23.51, "punctuated_word": "perform", "speaker": 0, "speaker_confidence": 0.7421875, "start": 23.03, "word": "perform" }, { "confidence": 0.9790039, "end": 23.91, "punctuated_word": "CPU", "speaker": 0, "speaker_confidence": 0.7421875, "start": 23.51, "word": "cpu" }, { "confidence": 0.9863281, "end": 24.41, "punctuated_word": "intensive", "speaker": 0, "speaker_confidence": 0.7421875, "start": 23.91, "word": "intensive" }, { "confidence": 0.9980469, "end": 24.79, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.7421875, "start": 24.470001, "word": "video" }, { "confidence": 1, "end": 25.19, "punctuated_word": "editing", "speaker": 0, "speaker_confidence": 0.7421875, "start": 24.79, "word": "editing" }, { "confidence": 0.9980469, "end": 25.51, "punctuated_word": "jobs", "speaker": 0, "speaker_confidence": 0.7421875, "start": 25.19, "word": "jobs" }, { "confidence": 0.99609375, "end": 25.83, "punctuated_word": "without", "speaker": 0, "speaker_confidence": 0.7421875, "start": 25.51, "word": "without" }, { "confidence": 0.9980469, "end": 25.91, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7421875, "start": 25.83, "word": "the" }, { "confidence": 1, "end": 26.23, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.7421875, "start": 25.91, "word": "need" }, { "confidence": 0.99902344, "end": 26.390001, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.7421875, "start": 26.23, "word": "for" }, { "confidence": 0.9980469, "end": 26.470001, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7421875, "start": 26.390001, "word": "a" }, { "confidence": 0.84228516, "end": 26.630001, "punctuated_word": "back", "speaker": 0, "speaker_confidence": 0.7421875, "start": 26.470001, "word": "back" }, { "confidence": 0.97509766, "end": 26.835, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.7421875, "start": 26.630001, "word": "end" }, { "confidence": 0.74194336, "end": 27.414999, "punctuated_word": "server.", "speaker": 0, "speaker_confidence": 0.7421875, "start": 26.914999, "word": "server" }, { "confidence": 1, "end": 27.714998, "punctuated_word": "For", "speaker": 0, "speaker_confidence": 0.7421875, "start": 27.474998, "word": "for" }, { "confidence": 1, "end": 28.115, "punctuated_word": "example,", "speaker": 0, "speaker_confidence": 0.7421875, "start": 27.714998, "word": "example" }, { "confidence": 0.99902344, "end": 28.435, "punctuated_word": "here's", "speaker": 0, "speaker_confidence": 0.55615234, "start": 28.115, "word": "here's" }, { "confidence": 1, "end": 28.595, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.55615234, "start": 28.435, "word": "how" }, { "confidence": 1, "end": 28.675, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.55615234, "start": 28.595, "word": "a" }, { "confidence": 1, "end": 29.154999, "punctuated_word": "traditional", "speaker": 0, "speaker_confidence": 0.55615234, "start": 28.675, "word": "traditional" }, { "confidence": 0.99609375, "end": 29.394999, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.55615234, "start": 29.154999, "word": "web" }, { "confidence": 1, "end": 29.794998, "punctuated_word": "application", "speaker": 0, "speaker_confidence": 0.55615234, "start": 29.394999, "word": "application" }, { "confidence": 1, "end": 29.954998, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 0.55615234, "start": 29.794998, "word": "might" }, { "confidence": 0.9951172, "end": 30.275, "punctuated_word": "work.", "speaker": 0, "speaker_confidence": 0.55615234, "start": 29.954998, "word": "work" }, { "confidence": 1, "end": 30.435, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.5966797, "start": 30.275, "word": "we" }, { "confidence": 1, "end": 30.675, "punctuated_word": "collect", "speaker": 0, "speaker_confidence": 0.5966797, "start": 30.435, "word": "collect" }, { "confidence": 0.99902344, "end": 30.835, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.5966797, "start": 30.675, "word": "a" }, { "confidence": 1, "end": 31.154999, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.5966797, "start": 30.835, "word": "video" }, { "confidence": 0.99902344, "end": 31.314999, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.5966797, "start": 31.154999, "word": "file" }, { "confidence": 1, "end": 31.474998, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.5966797, "start": 31.314999, "word": "from" }, { "confidence": 1, "end": 31.634998, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5966797, "start": 31.474998, "word": "the" }, { "confidence": 1, "end": 31.875, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.5966797, "start": 31.634998, "word": "end" }, { "confidence": 0.85961914, "end": 32.355, "punctuated_word": "user,", "speaker": 0, "speaker_confidence": 0.5966797, "start": 31.875, "word": "user" }, { "confidence": 0.99902344, "end": 32.594997, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.5966797, "start": 32.355, "word": "then" }, { "confidence": 0.9970703, "end": 32.915, "punctuated_word": "upload", "speaker": 0, "speaker_confidence": 0.5966797, "start": 32.594997, "word": "upload" }, { "confidence": 0.99902344, "end": 32.995, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.5966797, "start": 32.915, "word": "it" }, { "confidence": 0.99902344, "end": 33.155, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.44873047, "start": 32.995, "word": "to" }, { "confidence": 0.984375, "end": 33.315, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.44873047, "start": 33.155, "word": "the" }, { "confidence": 0.75561523, "end": 33.715, "punctuated_word": "cloud.", "speaker": 0, "speaker_confidence": 0.44873047, "start": 33.315, "word": "cloud" }, { "confidence": 1, "end": 33.875, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.44873047, "start": 33.715, "word": "we" }, { "confidence": 0.99902344, "end": 34.114998, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.44873047, "start": 33.875, "word": "use" }, { "confidence": 1, "end": 34.274998, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.44873047, "start": 34.114998, "word": "our" }, { "confidence": 0.9707031, "end": 34.594997, "punctuated_word": "cloud", "speaker": 0, "speaker_confidence": 0.44873047, "start": 34.274998, "word": "cloud" }, { "confidence": 0.9970703, "end": 34.995, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 0.44873047, "start": 34.594997, "word": "server" }, { "confidence": 1, "end": 35.074997, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.4946289, "start": 34.995, "word": "to" }, { "confidence": 0.9980469, "end": 35.315, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.4946289, "start": 35.074997, "word": "run" }, { "confidence": 0.80688477, "end": 35.815, "punctuated_word": "FFmpeg", "speaker": 0, "speaker_confidence": 0.4946289, "start": 35.315, "word": "ffmpeg" }, { "confidence": 0.99316406, "end": 36.280003, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.4946289, "start": 36.120003, "word": "to" }, { "confidence": 0.9980469, "end": 36.52, "punctuated_word": "encode", "speaker": 0, "speaker_confidence": 0.4946289, "start": 36.280003, "word": "encode" }, { "confidence": 0.9970703, "end": 36.68, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.4946289, "start": 36.52, "word": "the" }, { "confidence": 0.7624512, "end": 37.18, "punctuated_word": "file,", "speaker": 0, "speaker_confidence": 0.4946289, "start": 36.68, "word": "file" }, { "confidence": 0.9770508, "end": 37.56, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.4946289, "start": 37.32, "word": "then" }, { "confidence": 0.99902344, "end": 37.64, "punctuated_word": "send", "speaker": 0, "speaker_confidence": 0.4946289, "start": 37.56, "word": "send" }, { "confidence": 1, "end": 37.88, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.7885742, "start": 37.64, "word": "it" }, { "confidence": 1, "end": 38.120003, "punctuated_word": "back", "speaker": 0, "speaker_confidence": 0.7885742, "start": 37.88, "word": "back" }, { "confidence": 1, "end": 38.36, "punctuated_word": "down", "speaker": 0, "speaker_confidence": 0.7885742, "start": 38.120003, "word": "down" }, { "confidence": 0.99902344, "end": 38.52, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7885742, "start": 38.36, "word": "to" }, { "confidence": 1, "end": 38.600002, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7885742, "start": 38.52, "word": "the" }, { "confidence": 0.9995117, "end": 39.100002, "punctuated_word": "client.", "speaker": 0, "speaker_confidence": 0.7885742, "start": 38.600002, "word": "client" }, { "confidence": 1, "end": 39.56, "punctuated_word": "That", "speaker": 0, "speaker_confidence": 0.7885742, "start": 39.32, "word": "that" }, { "confidence": 1, "end": 39.8, "punctuated_word": "works", "speaker": 0, "speaker_confidence": 0.7885742, "start": 39.56, "word": "works" }, { "confidence": 0.96240234, "end": 40.2, "punctuated_word": "fine,", "speaker": 0, "speaker_confidence": 0.7885742, "start": 39.8, "word": "fine" }, { "confidence": 1, "end": 40.52, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.7885742, "start": 40.2, "word": "but" }, { "confidence": 0.9995117, "end": 40.68, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.7885742, "start": 40.52, "word": "it's" }, { "confidence": 1, "end": 40.84, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.7885742, "start": 40.68, "word": "not" }, { "confidence": 1, "end": 41.16, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 0.7885742, "start": 40.84, "word": "very" }, { "confidence": 0.85180664, "end": 41.56, "punctuated_word": "efficient.", "speaker": 0, "speaker_confidence": 0.7885742, "start": 41.16, "word": "efficient" }, { "confidence": 0.9970703, "end": 41.72, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.7885742, "start": 41.56, "word": "and" }, { "confidence": 0.74853516, "end": 41.88, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.7885742, "start": 41.72, "word": "it" }, { "confidence": 0.9941406, "end": 42.120003, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.7885742, "start": 41.88, "word": "also" }, { "confidence": 0.99902344, "end": 42.36, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.7885742, "start": 42.120003, "word": "has" }, { "confidence": 0.99902344, "end": 42.52, "punctuated_word": "no", "speaker": 0, "speaker_confidence": 0.7885742, "start": 42.36, "word": "no" }, { "confidence": 1, "end": 42.68, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 0.7885742, "start": 42.52, "word": "way" }, { "confidence": 1, "end": 42.84, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7885742, "start": 42.68, "word": "to" }, { "confidence": 1, "end": 43.08, "punctuated_word": "work", "speaker": 0, "speaker_confidence": 0.7885742, "start": 42.84, "word": "work" }, { "confidence": 0.99316406, "end": 43.4, "punctuated_word": "offline", "speaker": 0, "speaker_confidence": 0.7885742, "start": 43.08, "word": "offline" }, { "confidence": 0.984375, "end": 43.56, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.7885742, "start": 43.4, "word": "if" }, { "confidence": 0.99902344, "end": 43.72, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.7885742, "start": 43.56, "word": "you're" }, { "confidence": 1, "end": 44.04, "punctuated_word": "building", "speaker": 0, "speaker_confidence": 0.7885742, "start": 43.72, "word": "building" }, { "confidence": 1, "end": 44.2, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7885742, "start": 44.04, "word": "a" }, { "confidence": 0.98291016, "end": 44.6, "punctuated_word": "progressive", "speaker": 0, "speaker_confidence": 0.7885742, "start": 44.2, "word": "progressive" }, { "confidence": 0.98095703, "end": 44.760002, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.7885742, "start": 44.6, "word": "web" }, { "confidence": 0.9980469, "end": 44.975, "punctuated_word": "app.", "speaker": 0, "speaker_confidence": 0.7885742, "start": 44.760002, "word": "app" }, { "confidence": 1, "end": 45.454998, "punctuated_word": "What", "speaker": 0, "speaker_confidence": 0.7885742, "start": 45.215, "word": "what" }, { "confidence": 0.99902344, "end": 45.535, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.7885742, "start": 45.454998, "word": "we'll" }, { "confidence": 1, "end": 45.695, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.7885742, "start": 45.535, "word": "do" }, { "confidence": 0.9980469, "end": 45.934998, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7885742, "start": 45.695, "word": "in" }, { "confidence": 1, "end": 46.015, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.7885742, "start": 45.934998, "word": "this" }, { "confidence": 1, "end": 46.515, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.7885742, "start": 46.015, "word": "video" }, { "confidence": 0.9863281, "end": 46.815, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7885742, "start": 46.574997, "word": "is" }, { "confidence": 1, "end": 47.135, "punctuated_word": "download", "speaker": 0, "speaker_confidence": 0.7885742, "start": 46.815, "word": "download" }, { "confidence": 1, "end": 47.295, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7885742, "start": 47.135, "word": "the" }, { "confidence": 0.6958008, "end": 47.535, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.7885742, "start": 47.295, "word": "web" }, { "confidence": 0.99316406, "end": 48.015, "punctuated_word": "assembly", "speaker": 0, "speaker_confidence": 0.7885742, "start": 47.535, "word": "assembly" }, { "confidence": 0.9970703, "end": 48.414997, "punctuated_word": "binary", "speaker": 0, "speaker_confidence": 0.7885742, "start": 48.015, "word": "binary" }, { "confidence": 0.9428711, "end": 48.734997, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.7885742, "start": 48.414997, "word": "for" }, { "confidence": 0.78271484, "end": 49.234997, "punctuated_word": "FFmpeg", "speaker": 0, "speaker_confidence": 0.7885742, "start": 48.734997, "word": "ffmpeg" }, { "confidence": 0.96777344, "end": 50.094997, "punctuated_word": "directly", "speaker": 0, "speaker_confidence": 0.7885742, "start": 49.614998, "word": "directly" }, { "confidence": 0.9970703, "end": 50.335, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.7885742, "start": 50.094997, "word": "into" }, { "confidence": 0.9892578, "end": 50.574997, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7885742, "start": 50.335, "word": "a" }, { "confidence": 0.86035156, "end": 50.894997, "punctuated_word": "React", "speaker": 0, "speaker_confidence": 0.7885742, "start": 50.574997, "word": "react" }, { "confidence": 0.85913086, "end": 51.214996, "punctuated_word": "app,", "speaker": 0, "speaker_confidence": 0.7885742, "start": 50.894997, "word": "app" }, { "confidence": 0.99609375, "end": 51.535, "punctuated_word": "allowing", "speaker": 0, "speaker_confidence": 0.7885742, "start": 51.214996, "word": "allowing" }, { "confidence": 0.99902344, "end": 51.695, "punctuated_word": "us", "speaker": 0, "speaker_confidence": 0.7885742, "start": 51.535, "word": "us" }, { "confidence": 0.99902344, "end": 51.855, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7192383, "start": 51.695, "word": "to" }, { "confidence": 1, "end": 52.094997, "punctuated_word": "combine", "speaker": 0, "speaker_confidence": 0.7192383, "start": 51.855, "word": "combine" }, { "confidence": 0.99316406, "end": 52.254997, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7192383, "start": 52.094997, "word": "the" }, { "confidence": 0.63427734, "end": 52.414997, "punctuated_word": "c", "speaker": 0, "speaker_confidence": 0.7192383, "start": 52.254997, "word": "c" }, { "confidence": 0.9716797, "end": 52.894997, "punctuated_word": "programming", "speaker": 0, "speaker_confidence": 0.7192383, "start": 52.414997, "word": "programming" }, { "confidence": 0.99902344, "end": 53.214996, "punctuated_word": "language", "speaker": 0, "speaker_confidence": 0.7192383, "start": 52.894997, "word": "language" }, { "confidence": 0.97802734, "end": 53.375, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.7192383, "start": 53.214996, "word": "with" }, { "confidence": 0.83984375, "end": 53.875, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.7192383, "start": 53.375, "word": "javascript" }, { "confidence": 0.5878906, "end": 54.55, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7192383, "start": 54.39, "word": "and" }, { "confidence": 0.9499512, "end": 54.95, "punctuated_word": "offload", "speaker": 0, "speaker_confidence": 0.7192383, "start": 54.55, "word": "offload" }, { "confidence": 0.9873047, "end": 55.03, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7192383, "start": 54.95, "word": "the" }, { "confidence": 0.99902344, "end": 55.43, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.7192383, "start": 55.03, "word": "video" }, { "confidence": 1, "end": 55.829998, "punctuated_word": "editing", "speaker": 0, "speaker_confidence": 0.7192383, "start": 55.43, "word": "editing" }, { "confidence": 0.98535156, "end": 56.07, "punctuated_word": "work", "speaker": 0, "speaker_confidence": 0.7192383, "start": 55.829998, "word": "work" }, { "confidence": 1, "end": 56.23, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7192383, "start": 56.07, "word": "to" }, { "confidence": 0.99902344, "end": 56.47, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7192383, "start": 56.23, "word": "the" }, { "confidence": 0.99902344, "end": 56.63, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.7192383, "start": 56.47, "word": "end" }, { "confidence": 0.935791, "end": 57.03, "punctuated_word": "user's", "speaker": 0, "speaker_confidence": 0.7192383, "start": 56.63, "word": "user's" }, { "confidence": 0.99853516, "end": 57.53, "punctuated_word": "hardware.", "speaker": 0, "speaker_confidence": 0.7192383, "start": 57.03, "word": "hardware" }, { "confidence": 0.9980469, "end": 57.989998, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.5131836, "start": 57.91, "word": "if" }, { "confidence": 0.9970703, "end": 58.15, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.5131836, "start": 57.989998, "word": "you're" }, { "confidence": 1, "end": 58.31, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.5131836, "start": 58.15, "word": "new" }, { "confidence": 0.9855957, "end": 58.47, "punctuated_word": "here,", "speaker": 0, "speaker_confidence": 0.5131836, "start": 58.31, "word": "here" }, { "confidence": 0.9921875, "end": 58.63, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.5131836, "start": 58.47, "word": "like" }, { "confidence": 0.9394531, "end": 58.79, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.5131836, "start": 58.63, "word": "and" }, { "confidence": 0.7595215, "end": 59.29, "punctuated_word": "subscribe,", "speaker": 0, "speaker_confidence": 0.5131836, "start": 58.79, "word": "subscribe" }, { "confidence": 0.99902344, "end": 59.59, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.5131836, "start": 59.35, "word": "and" }, { "confidence": 0.99902344, "end": 59.83, "punctuated_word": "follow", "speaker": 0, "speaker_confidence": 0.5131836, "start": 59.59, "word": "follow" }, { "confidence": 0.9941406, "end": 60.07, "punctuated_word": "along", "speaker": 0, "speaker_confidence": 0.5131836, "start": 59.83, "word": "along" }, { "confidence": 0.97265625, "end": 60.15, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.5131836, "start": 60.07, "word": "with" }, { "confidence": 0.8984375, "end": 60.23, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.59228516, "start": 60.15, "word": "the" }, { "confidence": 0.98535156, "end": 60.39, "punctuated_word": "full", "speaker": 0, "speaker_confidence": 0.59228516, "start": 60.23, "word": "full" }, { "confidence": 0.9863281, "end": 60.63, "punctuated_word": "write", "speaker": 0, "speaker_confidence": 0.59228516, "start": 60.39, "word": "write" }, { "confidence": 0.88720703, "end": 60.79, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.59228516, "start": 60.63, "word": "up" }, { "confidence": 0.98828125, "end": 61.03, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.59228516, "start": 60.79, "word": "and" }, { "confidence": 0.9970703, "end": 61.35, "punctuated_word": "source", "speaker": 0, "speaker_confidence": 0.59228516, "start": 61.03, "word": "source" }, { "confidence": 0.99902344, "end": 61.59, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.59228516, "start": 61.35, "word": "code" }, { "confidence": 1, "end": 61.829998, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.59228516, "start": 61.59, "word": "on" }, { "confidence": 0.66381836, "end": 62.309998, "punctuated_word": "FireShip", "speaker": 0, "speaker_confidence": 0.59228516, "start": 61.829998, "word": "fireship" }, { "confidence": 0.85253906, "end": 62.395, "punctuated_word": "IO.", "speaker": 0, "speaker_confidence": 0.59228516, "start": 62.309998, "word": "io" }, { "confidence": 0.9980469, "end": 62.715, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.59228516, "start": 62.555, "word": "and" }, { "confidence": 0.9707031, "end": 62.795002, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.59228516, "start": 62.715, "word": "if" }, { "confidence": 1, "end": 62.875, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.59228516, "start": 62.795002, "word": "you" }, { "confidence": 1, "end": 62.955, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.89746094, "start": 62.875, "word": "have" }, { "confidence": 0.99902344, "end": 63.115, "punctuated_word": "no", "speaker": 0, "speaker_confidence": 0.89746094, "start": 62.955, "word": "no" }, { "confidence": 1, "end": 63.355, "punctuated_word": "idea", "speaker": 0, "speaker_confidence": 0.89746094, "start": 63.115, "word": "idea" }, { "confidence": 0.99902344, "end": 63.515, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.89746094, "start": 63.355, "word": "what" }, { "confidence": 0.5161133, "end": 63.755, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.89746094, "start": 63.515, "word": "web" }, { "confidence": 0.97802734, "end": 64.235, "punctuated_word": "assembly", "speaker": 0, "speaker_confidence": 0.89746094, "start": 63.755, "word": "assembly" }, { "confidence": 0.99609375, "end": 64.555, "punctuated_word": "is,", "speaker": 0, "speaker_confidence": 0.89746094, "start": 64.235, "word": "is" }, { "confidence": 0.9980469, "end": 64.715004, "punctuated_word": "check", "speaker": 0, "speaker_confidence": 0.89746094, "start": 64.555, "word": "check" }, { "confidence": 0.9980469, "end": 64.875, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.89746094, "start": 64.715004, "word": "out" }, { "confidence": 0.99902344, "end": 65.035, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.89746094, "start": 64.875, "word": "my" }, { "confidence": 0.5385742, "end": 65.435, "punctuated_word": "100", "speaker": 0, "speaker_confidence": 0.89746094, "start": 65.035, "word": "100" }, { "confidence": 0.68066406, "end": 65.755, "punctuated_word": "second", "speaker": 0, "speaker_confidence": 0.89746094, "start": 65.435, "word": "second" }, { "confidence": 0.98291016, "end": 66.235, "punctuated_word": "breakdown", "speaker": 0, "speaker_confidence": 0.89746094, "start": 65.755, "word": "breakdown" }, { "confidence": 0.99902344, "end": 66.395004, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.89746094, "start": 66.235, "word": "on" }, { "confidence": 1, "end": 66.635, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.89746094, "start": 66.395004, "word": "that" }, { "confidence": 1, "end": 67.135, "punctuated_word": "topic.", "speaker": 0, "speaker_confidence": 0.89746094, "start": 66.635, "word": "topic" }, { "confidence": 1, "end": 67.355, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.89746094, "start": 67.195, "word": "this" }, { "confidence": 1, "end": 67.855, "punctuated_word": "tutorial", "speaker": 0, "speaker_confidence": 0.89746094, "start": 67.355, "word": "tutorial" }, { "confidence": 1, "end": 68.075, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.89746094, "start": 67.915, "word": "is" }, { "confidence": 1, "end": 68.315, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 0.89746094, "start": 68.075, "word": "very" }, { "confidence": 1, "end": 68.635, "punctuated_word": "beginner", "speaker": 0, "speaker_confidence": 0.89746094, "start": 68.315, "word": "beginner" }, { "confidence": 1, "end": 69.115, "punctuated_word": "friendly", "speaker": 0, "speaker_confidence": 0.89746094, "start": 68.635, "word": "friendly" }, { "confidence": 0.9111328, "end": 69.275, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.89746094, "start": 69.115, "word": "and" }, { "confidence": 0.9995117, "end": 69.515, "punctuated_word": "doesn't", "speaker": 0, "speaker_confidence": 0.89746094, "start": 69.275, "word": "doesn't" }, { "confidence": 0.99902344, "end": 69.835, "punctuated_word": "require", "speaker": 0, "speaker_confidence": 0.89746094, "start": 69.515, "word": "require" }, { "confidence": 0.99902344, "end": 69.995, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.89746094, "start": 69.835, "word": "that" }, { "confidence": 0.99902344, "end": 70.155, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.89746094, "start": 69.995, "word": "you" }, { "confidence": 1, "end": 70.315, "punctuated_word": "know", "speaker": 0, "speaker_confidence": 0.89746094, "start": 70.155, "word": "know" }, { "confidence": 1, "end": 70.635, "punctuated_word": "anything", "speaker": 0, "speaker_confidence": 0.89746094, "start": 70.315, "word": "anything" }, { "confidence": 1, "end": 70.875, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.89746094, "start": 70.635, "word": "about" }, { "confidence": 0.99902344, "end": 71.035, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.89746094, "start": 70.875, "word": "the" }, { "confidence": 0.8144531, "end": 71.195, "punctuated_word": "c", "speaker": 0, "speaker_confidence": 0.89746094, "start": 71.035, "word": "c" }, { "confidence": 0.9741211, "end": 71.675, "punctuated_word": "programming", "speaker": 0, "speaker_confidence": 0.89746094, "start": 71.195, "word": "programming" }, { "confidence": 0.9941406, "end": 72.175, "punctuated_word": "language.", "speaker": 0, "speaker_confidence": 0.89746094, "start": 71.675, "word": "language" }, { "confidence": 1, "end": 72.56, "punctuated_word": "That's", "speaker": 0, "speaker_confidence": 0.89746094, "start": 72.32, "word": "that's" }, { "confidence": 1, "end": 72.72, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.89746094, "start": 72.56, "word": "because" }, { "confidence": 1, "end": 73.22, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.80126953, "start": 72.72, "word": "the" }, { "confidence": 0.7108887, "end": 74.1, "punctuated_word": "ffmpeg.wasm", "speaker": 0, "speaker_confidence": 0.80126953, "start": 73.6, "word": "ffmpeg.wasm" }, { "confidence": 0.95410156, "end": 74.979996, "punctuated_word": "package", "speaker": 0, "speaker_confidence": 0.80126953, "start": 74.479996, "word": "package" }, { "confidence": 0.99902344, "end": 75.36, "punctuated_word": "provides", "speaker": 0, "speaker_confidence": 0.80126953, "start": 75.04, "word": "provides" }, { "confidence": 0.99609375, "end": 75.52, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.80126953, "start": 75.36, "word": "an" }, { "confidence": 0.99902344, "end": 75.84, "punctuated_word": "API", "speaker": 0, "speaker_confidence": 0.80126953, "start": 75.52, "word": "api" }, { "confidence": 0.5576172, "end": 76.08, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.80126953, "start": 75.84, "word": "and" }, { "confidence": 0.9135742, "end": 76.58, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.80126953, "start": 76.08, "word": "javascript" }, { "confidence": 1, "end": 77.04, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.80126953, "start": 76.72, "word": "to" }, { "confidence": 1, "end": 77.36, "punctuated_word": "interact", "speaker": 0, "speaker_confidence": 0.80126953, "start": 77.04, "word": "interact" }, { "confidence": 1, "end": 77.52, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.80126953, "start": 77.36, "word": "with" }, { "confidence": 1, "end": 77.76, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.80126953, "start": 77.52, "word": "this" }, { "confidence": 1, "end": 77.92, "punctuated_word": "low", "speaker": 0, "speaker_confidence": 0.80126953, "start": 77.76, "word": "low" }, { "confidence": 1, "end": 78.24, "punctuated_word": "level", "speaker": 0, "speaker_confidence": 0.80126953, "start": 77.92, "word": "level" }, { "confidence": 1, "end": 78.74, "punctuated_word": "utility.", "speaker": 0, "speaker_confidence": 0.80126953, "start": 78.24, "word": "utility" }, { "confidence": 1, "end": 79.12, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.80126953, "start": 78.88, "word": "now" }, { "confidence": 0.98095703, "end": 79.28, "punctuated_word": "before", "speaker": 0, "speaker_confidence": 0.80126953, "start": 79.12, "word": "before" }, { "confidence": 1, "end": 79.44, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.80126953, "start": 79.28, "word": "we" }, { "confidence": 1, "end": 79.6, "punctuated_word": "jump", "speaker": 0, "speaker_confidence": 0.80126953, "start": 79.44, "word": "jump" }, { "confidence": 0.99902344, "end": 79.84, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.80126953, "start": 79.6, "word": "into" }, { "confidence": 1, "end": 79.92, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.80126953, "start": 79.84, "word": "the" }, { "confidence": 0.9995117, "end": 80.24, "punctuated_word": "code,", "speaker": 0, "speaker_confidence": 0.80126953, "start": 79.92, "word": "code" }, { "confidence": 1, "end": 80.479996, "punctuated_word": "let's", "speaker": 0, "speaker_confidence": 0.80126953, "start": 80.24, "word": "let's" }, { "confidence": 1, "end": 80.64, "punctuated_word": "take", "speaker": 0, "speaker_confidence": 0.80126953, "start": 80.479996, "word": "take" }, { "confidence": 1, "end": 80.72, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.64746094, "start": 80.64, "word": "a" }, { "confidence": 1, "end": 81.12, "punctuated_word": "closer", "speaker": 0, "speaker_confidence": 0.64746094, "start": 80.72, "word": "closer" }, { "confidence": 1, "end": 81.28, "punctuated_word": "look", "speaker": 0, "speaker_confidence": 0.64746094, "start": 81.12, "word": "look" }, { "confidence": 1, "end": 81.36, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.64746094, "start": 81.28, "word": "at" }, { "confidence": 1, "end": 81.52, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.64746094, "start": 81.36, "word": "the" }, { "confidence": 1, "end": 81.885, "punctuated_word": "demo.", "speaker": 0, "speaker_confidence": 0.64746094, "start": 81.52, "word": "demo" }, { "confidence": 1, "end": 82.125, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.64746094, "start": 81.965004, "word": "we" }, { "confidence": 1, "end": 82.285, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.64746094, "start": 82.125, "word": "have" }, { "confidence": 1, "end": 82.365005, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6352539, "start": 82.285, "word": "a" }, { "confidence": 1, "end": 82.685005, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.6352539, "start": 82.365005, "word": "file" }, { "confidence": 0.99902344, "end": 83.085, "punctuated_word": "input", "speaker": 0, "speaker_confidence": 0.6352539, "start": 82.685005, "word": "input" }, { "confidence": 0.9790039, "end": 83.325005, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.6352539, "start": 83.085, "word": "where" }, { "confidence": 1, "end": 83.405, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.6352539, "start": 83.325005, "word": "we" }, { "confidence": 1, "end": 83.565, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.6352539, "start": 83.405, "word": "can" }, { "confidence": 1, "end": 83.885, "punctuated_word": "select", "speaker": 0, "speaker_confidence": 0.6352539, "start": 83.565, "word": "select" }, { "confidence": 1, "end": 84.045, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6352539, "start": 83.885, "word": "a" }, { "confidence": 1, "end": 84.445, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.6352539, "start": 84.045, "word": "video" }, { "confidence": 0.9980469, "end": 84.945, "punctuated_word": "file.", "speaker": 0, "speaker_confidence": 0.6352539, "start": 84.445, "word": "file" }, { "confidence": 1, "end": 85.485, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.4921875, "start": 85.325005, "word": "the" }, { "confidence": 1, "end": 85.805, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.4921875, "start": 85.485, "word": "video" }, { "confidence": 1, "end": 85.965004, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.4921875, "start": 85.805, "word": "can" }, { "confidence": 1, "end": 86.045, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.4921875, "start": 85.965004, "word": "be" }, { "confidence": 1, "end": 86.525, "punctuated_word": "previewed", "speaker": 0, "speaker_confidence": 0.4921875, "start": 86.045, "word": "previewed" }, { "confidence": 1, "end": 86.685005, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.4921875, "start": 86.525, "word": "in" }, { "confidence": 1, "end": 86.765, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7182617, "start": 86.685005, "word": "a" }, { "confidence": 1, "end": 87.085, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.7182617, "start": 86.765, "word": "video" }, { "confidence": 0.8186035, "end": 87.585, "punctuated_word": "element,", "speaker": 0, "speaker_confidence": 0.7182617, "start": 87.085, "word": "element" }, { "confidence": 0.9980469, "end": 88.045, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.7182617, "start": 87.805, "word": "then" }, { "confidence": 0.99609375, "end": 88.205, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.7182617, "start": 88.045, "word": "when" }, { "confidence": 1, "end": 88.285, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7182617, "start": 88.205, "word": "you" }, { "confidence": 1, "end": 88.525, "punctuated_word": "click", "speaker": 0, "speaker_confidence": 0.7182617, "start": 88.285, "word": "click" }, { "confidence": 1, "end": 88.685005, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7182617, "start": 88.525, "word": "the" }, { "confidence": 1, "end": 89.005005, "punctuated_word": "convert", "speaker": 0, "speaker_confidence": 0.7182617, "start": 88.685005, "word": "convert" }, { "confidence": 0.8937988, "end": 89.405, "punctuated_word": "button,", "speaker": 0, "speaker_confidence": 0.7182617, "start": 89.005005, "word": "button" }, { "confidence": 1, "end": 89.565, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.7182617, "start": 89.405, "word": "it" }, { "confidence": 1, "end": 89.965004, "punctuated_word": "runs", "speaker": 0, "speaker_confidence": 0.7182617, "start": 89.565, "word": "runs" }, { "confidence": 0.78222656, "end": 90.205, "punctuated_word": "f", "speaker": 0, "speaker_confidence": 0.7182617, "start": 89.965004, "word": "f" }, { "confidence": 0.99316406, "end": 90.365005, "punctuated_word": "f", "speaker": 0, "speaker_confidence": 0.7182617, "start": 90.205, "word": "f" }, { "confidence": 0.7434082, "end": 90.865005, "punctuated_word": "mpeg", "speaker": 0, "speaker_confidence": 0.7182617, "start": 90.365005, "word": "mpeg" }, { "confidence": 0.99902344, "end": 91.27, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7182617, "start": 91.11, "word": "to" }, { "confidence": 1, "end": 91.39, "punctuated_word": "load", "speaker": 0, "speaker_confidence": 0.7182617, "start": 91.27, "word": "load" }, { "confidence": 0.9980469, "end": 91.51, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7319336, "start": 91.39, "word": "the" }, { "confidence": 1, "end": 91.909996, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.7319336, "start": 91.51, "word": "video" }, { "confidence": 1, "end": 92.07, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.7319336, "start": 91.909996, "word": "file" }, { "confidence": 0.63623047, "end": 92.31, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.7319336, "start": 92.07, "word": "into" }, { "confidence": 0.9980469, "end": 92.81, "punctuated_word": "memory", "speaker": 0, "speaker_confidence": 0.7319336, "start": 92.31, "word": "memory" }, { "confidence": 0.9921875, "end": 93.03, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7319336, "start": 92.869995, "word": "and" }, { "confidence": 1, "end": 93.19, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.7319336, "start": 93.03, "word": "run" }, { "confidence": 0.9980469, "end": 93.35, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7319336, "start": 93.19, "word": "the" }, { "confidence": 0.98999023, "end": 93.85, "punctuated_word": "conversion.", "speaker": 0, "speaker_confidence": 0.7319336, "start": 93.35, "word": "conversion" }, { "confidence": 1, "end": 94.47, "punctuated_word": "Very", "speaker": 0, "speaker_confidence": 0.7319336, "start": 94.229996, "word": "very" }, { "confidence": 1, "end": 94.79, "punctuated_word": "simple", "speaker": 0, "speaker_confidence": 0.7319336, "start": 94.47, "word": "simple" }, { "confidence": 0.92993164, "end": 95.19, "punctuated_word": "stuff,", "speaker": 0, "speaker_confidence": 0.7319336, "start": 94.79, "word": "stuff" }, { "confidence": 1, "end": 95.35, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.7319336, "start": 95.19, "word": "but" }, { "confidence": 0.99902344, "end": 95.51, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.7319336, "start": 95.35, "word": "my" }, { "confidence": 0.98828125, "end": 95.67, "punctuated_word": "main", "speaker": 0, "speaker_confidence": 0.7236328, "start": 95.51, "word": "main" }, { "confidence": 1, "end": 95.909996, "punctuated_word": "goal", "speaker": 0, "speaker_confidence": 0.7236328, "start": 95.67, "word": "goal" }, { "confidence": 1, "end": 96.07, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0.7236328, "start": 95.909996, "word": "here" }, { "confidence": 1, "end": 96.31, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7236328, "start": 96.07, "word": "is" }, { "confidence": 1, "end": 96.47, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7236328, "start": 96.31, "word": "to" }, { "confidence": 1, "end": 96.549995, "punctuated_word": "give", "speaker": 0, "speaker_confidence": 0.7236328, "start": 96.47, "word": "give" }, { "confidence": 1, "end": 96.71, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7236328, "start": 96.549995, "word": "you" }, { "confidence": 1, "end": 96.869995, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7236328, "start": 96.71, "word": "a" }, { "confidence": 1, "end": 97.19, "punctuated_word": "starting", "speaker": 0, "speaker_confidence": 0.7236328, "start": 96.869995, "word": "starting" }, { "confidence": 1, "end": 97.51, "punctuated_word": "point", "speaker": 0, "speaker_confidence": 0.7236328, "start": 97.19, "word": "point" }, { "confidence": 1, "end": 97.75, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.7236328, "start": 97.51, "word": "for" }, { "confidence": 1, "end": 98.07, "punctuated_word": "building", "speaker": 0, "speaker_confidence": 0.7236328, "start": 97.75, "word": "building" }, { "confidence": 1, "end": 98.229996, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.7236328, "start": 98.07, "word": "more" }, { "confidence": 1, "end": 98.63, "punctuated_word": "complex", "speaker": 0, "speaker_confidence": 0.7236328, "start": 98.229996, "word": "complex" }, { "confidence": 1, "end": 99.03, "punctuated_word": "features", "speaker": 0, "speaker_confidence": 0.7236328, "start": 98.63, "word": "features" }, { "confidence": 1, "end": 99.19, "punctuated_word": "through", "speaker": 0, "speaker_confidence": 0.7236328, "start": 99.03, "word": "through" }, { "confidence": 1, "end": 99.27, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.57958984, "start": 99.19, "word": "the" }, { "confidence": 1, "end": 99.59, "punctuated_word": "magic", "speaker": 0, "speaker_confidence": 0.57958984, "start": 99.27, "word": "magic" }, { "confidence": 1, "end": 99.75, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.57958984, "start": 99.59, "word": "of" }, { "confidence": 0.90771484, "end": 99.909996, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.57958984, "start": 99.75, "word": "web" }, { "confidence": 0.9970703, "end": 100.409996, "punctuated_word": "assembly.", "speaker": 0, "speaker_confidence": 0.57958984, "start": 99.909996, "word": "assembly" }, { "confidence": 1, "end": 100.865, "punctuated_word": "To", "speaker": 0, "speaker_confidence": 0.9248047, "start": 100.705, "word": "to" }, { "confidence": 1, "end": 101.025, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.9248047, "start": 100.865, "word": "get" }, { "confidence": 1, "end": 101.105, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 0.9248047, "start": 101.025, "word": "things" }, { "confidence": 0.9995117, "end": 101.605, "punctuated_word": "started,", "speaker": 0, "speaker_confidence": 0.9248047, "start": 101.105, "word": "started" }, { "confidence": 1, "end": 101.825, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.9248047, "start": 101.665, "word": "i'm" }, { "confidence": 1, "end": 102.325, "punctuated_word": "generating", "speaker": 0, "speaker_confidence": 0.9248047, "start": 101.825, "word": "generating" }, { "confidence": 1, "end": 102.465, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9248047, "start": 102.385, "word": "a" }, { "confidence": 1, "end": 102.705, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.9248047, "start": 102.465, "word": "new" }, { "confidence": 0.77978516, "end": 102.945, "punctuated_word": "React", "speaker": 0, "speaker_confidence": 0.9248047, "start": 102.705, "word": "react" }, { "confidence": 0.97998047, "end": 103.265, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.9248047, "start": 102.945, "word": "app" }, { "confidence": 1, "end": 103.585, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.9248047, "start": 103.265, "word": "using" }, { "confidence": 0.8979492, "end": 104.085, "punctuated_word": "Snowpack.", "speaker": 0, "speaker_confidence": 0.9248047, "start": 103.585, "word": "snowpack" }, { "confidence": 1, "end": 104.705, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.9248047, "start": 104.545, "word": "and" }, { "confidence": 0.99902344, "end": 104.865, "punctuated_word": "keep", "speaker": 0, "speaker_confidence": 0.9248047, "start": 104.705, "word": "keep" }, { "confidence": 1, "end": 105.025, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9248047, "start": 104.865, "word": "in" }, { "confidence": 1, "end": 105.265, "punctuated_word": "mind", "speaker": 0, "speaker_confidence": 0.9248047, "start": 105.025, "word": "mind" }, { "confidence": 0.88500977, "end": 105.505, "punctuated_word": "here,", "speaker": 0, "speaker_confidence": 0.9248047, "start": 105.265, "word": "here" }, { "confidence": 0.99609375, "end": 105.665, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9248047, "start": 105.505, "word": "the" }, { "confidence": 1, "end": 105.905, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.9248047, "start": 105.665, "word": "code" }, { "confidence": 1, "end": 105.985, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9248047, "start": 105.905, "word": "is" }, { "confidence": 1, "end": 106.225, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 0.9248047, "start": 105.985, "word": "very" }, { "confidence": 0.9160156, "end": 106.725, "punctuated_word": "simple,", "speaker": 0, "speaker_confidence": 0.9248047, "start": 106.225, "word": "simple" }, { "confidence": 1, "end": 107.025, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.9248047, "start": 106.785, "word": "so" }, { "confidence": 1, "end": 107.185, "punctuated_word": "feel", "speaker": 0, "speaker_confidence": 0.9248047, "start": 107.025, "word": "feel" }, { "confidence": 1, "end": 107.425, "punctuated_word": "free", "speaker": 0, "speaker_confidence": 0.9248047, "start": 107.185, "word": "free" }, { "confidence": 1, "end": 107.585, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9248047, "start": 107.425, "word": "to" }, { "confidence": 0.99902344, "end": 107.905, "punctuated_word": "follow", "speaker": 0, "speaker_confidence": 0.9248047, "start": 107.585, "word": "follow" }, { "confidence": 1, "end": 108.225, "punctuated_word": "along", "speaker": 0, "speaker_confidence": 0.9248047, "start": 107.905, "word": "along" }, { "confidence": 1, "end": 108.385, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.9248047, "start": 108.225, "word": "with" }, { "confidence": 1, "end": 108.625, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 0.9248047, "start": 108.385, "word": "any" }, { "confidence": 1, "end": 108.865, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.9248047, "start": 108.625, "word": "other" }, { "confidence": 0.9995117, "end": 109.35, "punctuated_word": "framework.", "speaker": 0, "speaker_confidence": 0.9248047, "start": 108.865, "word": "framework" }, { "confidence": 1, "end": 109.67, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.9248047, "start": 109.43, "word": "then" }, { "confidence": 0.9970703, "end": 109.83, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.9248047, "start": 109.67, "word": "from" }, { "confidence": 1, "end": 110.07, "punctuated_word": "inside", "speaker": 0, "speaker_confidence": 0.9248047, "start": 109.83, "word": "inside" }, { "confidence": 0.99609375, "end": 110.31, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.9248047, "start": 110.07, "word": "your" }, { "confidence": 0.9995117, "end": 110.71, "punctuated_word": "project,", "speaker": 0, "speaker_confidence": 0.9248047, "start": 110.31, "word": "project" }, { "confidence": 0.9680176, "end": 111.03, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 0.9248047, "start": 110.71, "word": "you'll" }, { "confidence": 1, "end": 111.11, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.9248047, "start": 111.03, "word": "want" }, { "confidence": 1, "end": 111.27, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.69189453, "start": 111.11, "word": "to" }, { "confidence": 1, "end": 111.509995, "punctuated_word": "install", "speaker": 0, "speaker_confidence": 0.69189453, "start": 111.27, "word": "install" }, { "confidence": 1, "end": 111.67, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.69189453, "start": 111.509995, "word": "the" }, { "confidence": 1, "end": 112.07, "punctuated_word": "following", "speaker": 0, "speaker_confidence": 0.69189453, "start": 111.67, "word": "following" }, { "confidence": 1, "end": 112.57, "punctuated_word": "packages", "speaker": 0, "speaker_confidence": 0.69189453, "start": 112.07, "word": "packages" }, { "confidence": 1, "end": 112.95, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.69189453, "start": 112.71, "word": "from" }, { "confidence": 1, "end": 113.189995, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.69189453, "start": 112.95, "word": "the" }, { "confidence": 0.7149658, "end": 113.689995, "punctuated_word": "ffmpeg", "speaker": 0, "speaker_confidence": 0.69189453, "start": 113.189995, "word": "ffmpeg" }, { "confidence": 0.8979492, "end": 114.33, "punctuated_word": "namespace.", "speaker": 0, "speaker_confidence": 0.69189453, "start": 113.83, "word": "namespace" }, { "confidence": 0.9980469, "end": 115.11, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.69189453, "start": 114.869995, "word": "and" }, { "confidence": 0.9511719, "end": 115.509995, "punctuated_word": "lastly,", "speaker": 0, "speaker_confidence": 0.69189453, "start": 115.11, "word": "lastly" }, { "confidence": 1, "end": 115.59, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7680664, "start": 115.509995, "word": "you" }, { "confidence": 0.99902344, "end": 115.75, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7680664, "start": 115.59, "word": "can" }, { "confidence": 1, "end": 115.99, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.7680664, "start": 115.75, "word": "run" }, { "confidence": 0.5239258, "end": 116.365, "punctuated_word": "npm", "speaker": 0, "speaker_confidence": 0.7680664, "start": 115.99, "word": "npm" }, { "confidence": 0.83496094, "end": 116.845, "punctuated_word": "start,", "speaker": 0, "speaker_confidence": 0.7680664, "start": 116.525, "word": "start" }, { "confidence": 1, "end": 117.085, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.7680664, "start": 116.845, "word": "which" }, { "confidence": 1, "end": 117.244995, "punctuated_word": "should", "speaker": 0, "speaker_confidence": 0.7680664, "start": 117.085, "word": "should" }, { "confidence": 1, "end": 117.405, "punctuated_word": "give", "speaker": 0, "speaker_confidence": 0.7680664, "start": 117.244995, "word": "give" }, { "confidence": 1, "end": 117.645, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7680664, "start": 117.405, "word": "you" }, { "confidence": 1, "end": 117.884995, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7680664, "start": 117.645, "word": "the" }, { "confidence": 1, "end": 118.284996, "punctuated_word": "default", "speaker": 0, "speaker_confidence": 0.7680664, "start": 117.884995, "word": "default" }, { "confidence": 0.7246094, "end": 118.685, "punctuated_word": "React", "speaker": 0, "speaker_confidence": 0.7680664, "start": 118.284996, "word": "react" }, { "confidence": 0.9760742, "end": 118.924995, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.7680664, "start": 118.685, "word": "app" }, { "confidence": 1, "end": 119.165, "punctuated_word": "running", "speaker": 0, "speaker_confidence": 0.7680664, "start": 118.924995, "word": "running" }, { "confidence": 0.9941406, "end": 119.325, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7680664, "start": 119.165, "word": "in" }, { "confidence": 1, "end": 119.405, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7680664, "start": 119.325, "word": "the" }, { "confidence": 1, "end": 119.905, "punctuated_word": "browser.", "speaker": 0, "speaker_confidence": 0.7680664, "start": 119.405, "word": "browser" }, { "confidence": 1, "end": 120.365, "punctuated_word": "From", "speaker": 0, "speaker_confidence": 0.72314453, "start": 120.204994, "word": "from" }, { "confidence": 0.99853516, "end": 120.524994, "punctuated_word": "there,", "speaker": 0, "speaker_confidence": 0.72314453, "start": 120.365, "word": "there" }, { "confidence": 1, "end": 120.604996, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.72314453, "start": 120.524994, "word": "we'll" }, { "confidence": 1, "end": 120.765, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.72314453, "start": 120.604996, "word": "go" }, { "confidence": 0.99902344, "end": 121.005, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.72314453, "start": 120.765, "word": "into" }, { "confidence": 1, "end": 121.244995, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.72314453, "start": 121.005, "word": "the" }, { "confidence": 1, "end": 121.485, "punctuated_word": "source", "speaker": 0, "speaker_confidence": 0.72314453, "start": 121.244995, "word": "source" }, { "confidence": 1, "end": 121.985, "punctuated_word": "directory", "speaker": 0, "speaker_confidence": 0.72314453, "start": 121.485, "word": "directory" }, { "confidence": 0.9892578, "end": 122.365, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.72314453, "start": 122.125, "word": "and" }, { "confidence": 1, "end": 122.604996, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.72314453, "start": 122.365, "word": "open" }, { "confidence": 1, "end": 122.845, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.72314453, "start": 122.604996, "word": "the" }, { "confidence": 0.65625, "end": 123.085, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.72314453, "start": 122.845, "word": "app" }, { "confidence": 0.8286133, "end": 123.405, "punctuated_word": "JS", "speaker": 0, "speaker_confidence": 0.72314453, "start": 123.085, "word": "js" }, { "confidence": 0.99902344, "end": 123.905, "punctuated_word": "file.", "speaker": 0, "speaker_confidence": 0.72314453, "start": 123.405, "word": "file" }, { "confidence": 1, "end": 124.24, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.6772461, "start": 124.08, "word": "i'm" }, { "confidence": 0.97265625, "end": 124.32, "punctuated_word": "gonna", "speaker": 0, "speaker_confidence": 0.6772461, "start": 124.24, "word": "gonna" }, { "confidence": 0.9980469, "end": 124.4, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.6772461, "start": 124.32, "word": "go" }, { "confidence": 1, "end": 124.72, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 0.6772461, "start": 124.4, "word": "ahead" }, { "confidence": 1, "end": 124.96, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6772461, "start": 124.72, "word": "and" }, { "confidence": 1, "end": 125.28, "punctuated_word": "delete", "speaker": 0, "speaker_confidence": 0.6772461, "start": 124.96, "word": "delete" }, { "confidence": 1, "end": 125.439995, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.6772461, "start": 125.28, "word": "all" }, { "confidence": 0.99902344, "end": 125.6, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6772461, "start": 125.439995, "word": "the" }, { "confidence": 0.90625, "end": 126.08, "punctuated_word": "boilerplate", "speaker": 0, "speaker_confidence": 0.6772461, "start": 125.6, "word": "boilerplate" }, { "confidence": 0.9580078, "end": 126.479996, "punctuated_word": "code,", "speaker": 0, "speaker_confidence": 0.6772461, "start": 126.08, "word": "code" }, { "confidence": 1, "end": 126.72, "punctuated_word": "leaving", "speaker": 0, "speaker_confidence": 0.6772461, "start": 126.479996, "word": "leaving" }, { "confidence": 1, "end": 126.88, "punctuated_word": "us", "speaker": 0, "speaker_confidence": 0.6772461, "start": 126.72, "word": "us" }, { "confidence": 1, "end": 127.04, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.6772461, "start": 126.88, "word": "with" }, { "confidence": 1, "end": 127.2, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6772461, "start": 127.04, "word": "a" }, { "confidence": 1, "end": 127.52, "punctuated_word": "basic", "speaker": 0, "speaker_confidence": 0.6772461, "start": 127.2, "word": "basic" }, { "confidence": 1, "end": 127.84, "punctuated_word": "starting", "speaker": 0, "speaker_confidence": 0.6772461, "start": 127.52, "word": "starting" }, { "confidence": 1, "end": 128.16, "punctuated_word": "point.", "speaker": 0, "speaker_confidence": 0.6772461, "start": 127.84, "word": "point" }, { "confidence": 1, "end": 128.4, "punctuated_word": "From", "speaker": 0, "speaker_confidence": 0.6772461, "start": 128.16, "word": "from" }, { "confidence": 0.9980469, "end": 128.64, "punctuated_word": "there,", "speaker": 0, "speaker_confidence": 0.6772461, "start": 128.4, "word": "there" }, { "confidence": 0.99853516, "end": 128.72, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.6772461, "start": 128.64, "word": "i'm" }, { "confidence": 1, "end": 128.95999, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.53564453, "start": 128.72, "word": "going" }, { "confidence": 0.99902344, "end": 129.2, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.53564453, "start": 128.95999, "word": "to" }, { "confidence": 0.99902344, "end": 129.52, "punctuated_word": "import", "speaker": 0, "speaker_confidence": 0.53564453, "start": 129.2, "word": "import" }, { "confidence": 0.8984375, "end": 129.76, "punctuated_word": "2", "speaker": 0, "speaker_confidence": 0.53564453, "start": 129.52, "word": "2" }, { "confidence": 1, "end": 130.23999, "punctuated_word": "functions", "speaker": 0, "speaker_confidence": 0.53564453, "start": 129.76, "word": "functions" }, { "confidence": 1, "end": 130.48, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.53564453, "start": 130.23999, "word": "from" }, { "confidence": 1, "end": 130.64, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.53564453, "start": 130.48, "word": "the" }, { "confidence": 0.81396484, "end": 131.14, "punctuated_word": "FFmpeg", "speaker": 0, "speaker_confidence": 0.53564453, "start": 130.64, "word": "ffmpeg" }, { "confidence": 0.9543457, "end": 131.94, "punctuated_word": "namespace.", "speaker": 0, "speaker_confidence": 0.53564453, "start": 131.44, "word": "namespace" }, { "confidence": 1, "end": 132.675, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.66259766, "start": 132.595, "word": "the" }, { "confidence": 0.90625, "end": 133.07501, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 0.66259766, "start": 132.675, "word": "first" }, { "confidence": 0.9321289, "end": 133.57501, "punctuated_word": "function,", "speaker": 0, "speaker_confidence": 0.66259766, "start": 133.07501, "word": "function" }, { "confidence": 0.9970703, "end": 133.955, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.66259766, "start": 133.63501, "word": "create" }, { "confidence": 0.81673175, "end": 134.455, "punctuated_word": "ffmpeg,", "speaker": 0, "speaker_confidence": 0.66259766, "start": 133.955, "word": "ffmpeg" }, { "confidence": 0.99902344, "end": 134.835, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.66259766, "start": 134.675, "word": "we" }, { "confidence": 0.99902344, "end": 135.07501, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.66259766, "start": 134.835, "word": "can" }, { "confidence": 0.99902344, "end": 135.315, "punctuated_word": "call", "speaker": 0, "speaker_confidence": 0.66259766, "start": 135.07501, "word": "call" }, { "confidence": 0.9970703, "end": 135.475, "punctuated_word": "right", "speaker": 0, "speaker_confidence": 0.66259766, "start": 135.315, "word": "right" }, { "confidence": 0.9550781, "end": 135.875, "punctuated_word": "away,", "speaker": 0, "speaker_confidence": 0.66259766, "start": 135.475, "word": "away" }, { "confidence": 1, "end": 136.115, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.66259766, "start": 135.875, "word": "which" }, { "confidence": 1, "end": 136.35501, "punctuated_word": "gives", "speaker": 0, "speaker_confidence": 0.66259766, "start": 136.115, "word": "gives" }, { "confidence": 1, "end": 136.51501, "punctuated_word": "us", "speaker": 0, "speaker_confidence": 0.66259766, "start": 136.35501, "word": "us" }, { "confidence": 0.99902344, "end": 136.595, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.53222656, "start": 136.51501, "word": "a" }, { "confidence": 1, "end": 136.91501, "punctuated_word": "starting", "speaker": 0, "speaker_confidence": 0.53222656, "start": 136.595, "word": "starting" }, { "confidence": 1, "end": 137.15501, "punctuated_word": "point", "speaker": 0, "speaker_confidence": 0.53222656, "start": 136.91501, "word": "point" }, { "confidence": 0.99902344, "end": 137.395, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.53222656, "start": 137.15501, "word": "for" }, { "confidence": 1, "end": 137.71501, "punctuated_word": "working", "speaker": 0, "speaker_confidence": 0.53222656, "start": 137.395, "word": "working" }, { "confidence": 0.99902344, "end": 137.875, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.53222656, "start": 137.71501, "word": "with" }, { "confidence": 0.99902344, "end": 138.035, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.53222656, "start": 137.875, "word": "this" }, { "confidence": 1, "end": 138.535, "punctuated_word": "library.", "speaker": 0, "speaker_confidence": 0.53222656, "start": 138.035, "word": "library" }, { "confidence": 0.99902344, "end": 138.835, "punctuated_word": "We'll", "speaker": 0, "speaker_confidence": 0.79541016, "start": 138.675, "word": "we'll" }, { "confidence": 0.99902344, "end": 138.99501, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.79541016, "start": 138.835, "word": "set" }, { "confidence": 0.9902344, "end": 139.15501, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.79541016, "start": 138.99501, "word": "the" }, { "confidence": 0.9980469, "end": 139.395, "punctuated_word": "log", "speaker": 0, "speaker_confidence": 0.79541016, "start": 139.15501, "word": "log" }, { "confidence": 0.99902344, "end": 139.71501, "punctuated_word": "option", "speaker": 0, "speaker_confidence": 0.79541016, "start": 139.395, "word": "option" }, { "confidence": 0.9902344, "end": 139.875, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.79541016, "start": 139.71501, "word": "to" }, { "confidence": 0.9941406, "end": 140.195, "punctuated_word": "true", "speaker": 0, "speaker_confidence": 0.79541016, "start": 139.875, "word": "true" }, { "confidence": 0.9003906, "end": 140.35501, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.79541016, "start": 140.195, "word": "so" }, { "confidence": 0.9921875, "end": 140.43501, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.79541016, "start": 140.35501, "word": "we" }, { "confidence": 0.9921875, "end": 140.595, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.79541016, "start": 140.43501, "word": "can" }, { "confidence": 0.97998047, "end": 140.755, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.79541016, "start": 140.595, "word": "see" }, { "confidence": 0.9951172, "end": 141.15501, "punctuated_word": "everything", "speaker": 0, "speaker_confidence": 0.79541016, "start": 140.755, "word": "everything" }, { "confidence": 0.97265625, "end": 141.315, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.79541016, "start": 141.15501, "word": "that" }, { "confidence": 0.9614258, "end": 141.475, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.79541016, "start": 141.315, "word": "it" }, { "confidence": 0.97509766, "end": 141.71501, "punctuated_word": "does", "speaker": 0, "speaker_confidence": 0.79541016, "start": 141.475, "word": "does" }, { "confidence": 0.67626953, "end": 142.06, "punctuated_word": "directly", "speaker": 0, "speaker_confidence": 0.79541016, "start": 141.71501, "word": "directly" }, { "confidence": 0.3474121, "end": 142.34059, "punctuated_word": "play", "speaker": 0, "speaker_confidence": 0.79541016, "start": 142.06, "word": "play" }, { "confidence": 1, "end": 142.6212, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.79541016, "start": 142.34059, "word": "in" }, { "confidence": 0.99902344, "end": 142.9018, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.79541016, "start": 142.6212, "word": "the" }, { "confidence": 0.9387207, "end": 143.1824, "punctuated_word": "console.", "speaker": 0, "speaker_confidence": 0.79541016, "start": 142.9018, "word": "console" }, { "confidence": 1, "end": 143.463, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.79541016, "start": 143.1824, "word": "now" }, { "confidence": 0.9926758, "end": 143.74359, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.79541016, "start": 143.463, "word": "it's" }, { "confidence": 1, "end": 144.0242, "punctuated_word": "important", "speaker": 0, "speaker_confidence": 0.79541016, "start": 143.74359, "word": "important" }, { "confidence": 0.99902344, "end": 144.3048, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.79541016, "start": 144.0242, "word": "to" }, { "confidence": 1, "end": 144.5854, "punctuated_word": "understand", "speaker": 0, "speaker_confidence": 0.79541016, "start": 144.3048, "word": "understand" }, { "confidence": 0.9716797, "end": 144.866, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.79541016, "start": 144.5854, "word": "at" }, { "confidence": 1, "end": 145.14659, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.79541016, "start": 144.866, "word": "this" }, { "confidence": 1, "end": 145.4272, "punctuated_word": "point", "speaker": 0, "speaker_confidence": 0.79541016, "start": 145.14659, "word": "point" }, { "confidence": 0.9970703, "end": 145.7078, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.79541016, "start": 145.4272, "word": "that" }, { "confidence": 1, "end": 145.9884, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.79541016, "start": 145.7078, "word": "the" }, { "confidence": 1, "end": 146.269, "punctuated_word": "actual", "speaker": 0, "speaker_confidence": 0.79541016, "start": 145.9884, "word": "actual" }, { "confidence": 0.7675781, "end": 146.54959, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.79541016, "start": 146.269, "word": "web" }, { "confidence": 0.9970703, "end": 146.8302, "punctuated_word": "assembly", "speaker": 0, "speaker_confidence": 0.79541016, "start": 146.54959, "word": "assembly" }, { "confidence": 0.99902344, "end": 147.1108, "punctuated_word": "binary", "speaker": 0, "speaker_confidence": 0.79541016, "start": 146.8302, "word": "binary" }, { "confidence": 1, "end": 147.3914, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.79541016, "start": 147.1108, "word": "has" }, { "confidence": 1, "end": 147.672, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.79541016, "start": 147.3914, "word": "not" }, { "confidence": 1, "end": 147.95259, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.79541016, "start": 147.672, "word": "been" }, { "confidence": 1, "end": 148.2332, "punctuated_word": "bundled", "speaker": 0, "speaker_confidence": 0.79541016, "start": 147.95259, "word": "bundled" }, { "confidence": 0.99902344, "end": 148.5138, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.79541016, "start": 148.2332, "word": "in" }, { "confidence": 0.99902344, "end": 148.7944, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.79541016, "start": 148.5138, "word": "our" }, { "confidence": 1, "end": 149.075, "punctuated_word": "application.", "speaker": 0, "speaker_confidence": 0.79541016, "start": 148.7944, "word": "application" }, { "confidence": 1, "end": 149.315, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.79541016, "start": 149.075, "word": "it's" }, { "confidence": 1, "end": 149.47499, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.79541016, "start": 149.315, "word": "a" }, { "confidence": 1, "end": 149.555, "punctuated_word": "pretty", "speaker": 0, "speaker_confidence": 0.3857422, "start": 149.47499, "word": "pretty" }, { "confidence": 1, "end": 149.955, "punctuated_word": "large", "speaker": 0, "speaker_confidence": 0.3857422, "start": 149.555, "word": "large" }, { "confidence": 0.97265625, "end": 150.275, "punctuated_word": "file,", "speaker": 0, "speaker_confidence": 0.3857422, "start": 149.955, "word": "file" }, { "confidence": 1, "end": 150.435, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.3857422, "start": 150.275, "word": "so" }, { "confidence": 1, "end": 150.515, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.3857422, "start": 150.435, "word": "we" }, { "confidence": 1, "end": 150.675, "punctuated_word": "don't", "speaker": 0, "speaker_confidence": 0.3857422, "start": 150.515, "word": "don't" }, { "confidence": 0.9951172, "end": 150.83499, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.3857422, "start": 150.675, "word": "want" }, { "confidence": 0.99609375, "end": 150.915, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.68652344, "start": 150.83499, "word": "it" }, { "confidence": 0.99902344, "end": 151.075, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.68652344, "start": 150.915, "word": "to" }, { "confidence": 1, "end": 151.395, "punctuated_word": "block", "speaker": 0, "speaker_confidence": 0.68652344, "start": 151.075, "word": "block" }, { "confidence": 0.9980469, "end": 151.47499, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.68652344, "start": 151.395, "word": "our" }, { "confidence": 0.9941406, "end": 151.795, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.68652344, "start": 151.47499, "word": "web" }, { "confidence": 1, "end": 152.19499, "punctuated_word": "application", "speaker": 0, "speaker_confidence": 0.68652344, "start": 151.795, "word": "application" }, { "confidence": 1, "end": 152.355, "punctuated_word": "right", "speaker": 0, "speaker_confidence": 0.68652344, "start": 152.19499, "word": "right" }, { "confidence": 0.98999023, "end": 152.855, "punctuated_word": "away.", "speaker": 0, "speaker_confidence": 0.68652344, "start": 152.355, "word": "away" }, { "confidence": 0.9975586, "end": 153.235, "punctuated_word": "Instead,", "speaker": 0, "speaker_confidence": 0.68652344, "start": 152.915, "word": "instead" }, { "confidence": 1, "end": 153.39499, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.68652344, "start": 153.235, "word": "we" }, { "confidence": 0.99121094, "end": 153.555, "punctuated_word": "load", "speaker": 0, "speaker_confidence": 0.68652344, "start": 153.39499, "word": "load" }, { "confidence": 0.99902344, "end": 153.795, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.68652344, "start": 153.555, "word": "it" }, { "confidence": 0.99902344, "end": 154.295, "punctuated_word": "asynchronously", "speaker": 0, "speaker_confidence": 0.68652344, "start": 153.795, "word": "asynchronously" }, { "confidence": 1, "end": 154.83499, "punctuated_word": "over", "speaker": 0, "speaker_confidence": 0.68652344, "start": 154.595, "word": "over" }, { "confidence": 0.99902344, "end": 154.995, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.68652344, "start": 154.83499, "word": "a" }, { "confidence": 0.95133466, "end": 155.495, "punctuated_word": "CDN.", "speaker": 0, "speaker_confidence": 0.68652344, "start": 154.995, "word": "cdn" }, { "confidence": 1, "end": 155.875, "punctuated_word": "To", "speaker": 0, "speaker_confidence": 0.68652344, "start": 155.715, "word": "to" }, { "confidence": 1, "end": 156.035, "punctuated_word": "keep", "speaker": 0, "speaker_confidence": 0.68652344, "start": 155.875, "word": "keep" }, { "confidence": 0.99902344, "end": 156.275, "punctuated_word": "track", "speaker": 0, "speaker_confidence": 0.68652344, "start": 156.035, "word": "track" }, { "confidence": 0.9970703, "end": 156.355, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.62353516, "start": 156.275, "word": "of" }, { "confidence": 1, "end": 156.515, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.62353516, "start": 156.355, "word": "the" }, { "confidence": 1, "end": 156.75499, "punctuated_word": "loading", "speaker": 0, "speaker_confidence": 0.62353516, "start": 156.515, "word": "loading" }, { "confidence": 1, "end": 157.08, "punctuated_word": "state,", "speaker": 0, "speaker_confidence": 0.62353516, "start": 156.75499, "word": "state" }, { "confidence": 1, "end": 157.16, "punctuated_word": "I'll", "speaker": 0, "speaker_confidence": 0.62353516, "start": 157.08, "word": "i'll" }, { "confidence": 1, "end": 157.40001, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.62353516, "start": 157.16, "word": "go" }, { "confidence": 1, "end": 157.56, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 0.62353516, "start": 157.40001, "word": "ahead" }, { "confidence": 1, "end": 157.72, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.62353516, "start": 157.56, "word": "and" }, { "confidence": 1, "end": 158.04001, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.62353516, "start": 157.72, "word": "add" }, { "confidence": 1, "end": 158.28, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.62353516, "start": 158.04001, "word": "a" }, { "confidence": 0.9519043, "end": 158.68001, "punctuated_word": "stateful", "speaker": 0, "speaker_confidence": 0.62353516, "start": 158.28, "word": "stateful" }, { "confidence": 1, "end": 159, "punctuated_word": "property", "speaker": 0, "speaker_confidence": 0.62353516, "start": 158.68001, "word": "property" }, { "confidence": 1, "end": 159.24, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0.62353516, "start": 159, "word": "here" }, { "confidence": 1, "end": 159.56, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 0.62353516, "start": 159.24, "word": "called" }, { "confidence": 0.9970703, "end": 160.04001, "punctuated_word": "ready", "speaker": 0, "speaker_confidence": 0.62353516, "start": 159.56, "word": "ready" }, { "confidence": 0.9980469, "end": 160.2, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.62353516, "start": 160.04001, "word": "with" }, { "confidence": 0.99316406, "end": 160.44, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.62353516, "start": 160.2, "word": "the" }, { "confidence": 0.9658203, "end": 160.68001, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.62353516, "start": 160.44, "word": "use" }, { "confidence": 0.9921875, "end": 160.92, "punctuated_word": "state", "speaker": 0, "speaker_confidence": 0.62353516, "start": 160.68001, "word": "state" }, { "confidence": 0.99902344, "end": 161.42, "punctuated_word": "hook.", "speaker": 0, "speaker_confidence": 0.62353516, "start": 160.92, "word": "hook" }, { "confidence": 1, "end": 161.72, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.62353516, "start": 161.64, "word": "it" }, { "confidence": 1, "end": 161.88, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.62353516, "start": 161.72, "word": "has" }, { "confidence": 1, "end": 161.96, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.76220703, "start": 161.88, "word": "a" }, { "confidence": 1, "end": 162.36, "punctuated_word": "default", "speaker": 0, "speaker_confidence": 0.76220703, "start": 161.96, "word": "default" }, { "confidence": 1, "end": 162.68001, "punctuated_word": "value", "speaker": 0, "speaker_confidence": 0.76220703, "start": 162.36, "word": "value" }, { "confidence": 0.99902344, "end": 162.76, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.76220703, "start": 162.68001, "word": "of" }, { "confidence": 0.96118164, "end": 163.26, "punctuated_word": "false,", "speaker": 0, "speaker_confidence": 0.76220703, "start": 162.76, "word": "false" }, { "confidence": 1, "end": 163.56, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.76220703, "start": 163.4, "word": "and" }, { "confidence": 0.99609375, "end": 163.64, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.76220703, "start": 163.56, "word": "then" }, { "confidence": 0.9926758, "end": 163.88, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.76220703, "start": 163.64, "word": "we'll" }, { "confidence": 1, "end": 164.12, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.76220703, "start": 163.88, "word": "create" }, { "confidence": 1, "end": 164.28, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.76220703, "start": 164.12, "word": "an" }, { "confidence": 0.9770508, "end": 164.76, "punctuated_word": "async", "speaker": 0, "speaker_confidence": 0.76220703, "start": 164.28, "word": "async" }, { "confidence": 1, "end": 165.08, "punctuated_word": "function", "speaker": 0, "speaker_confidence": 0.76220703, "start": 164.76, "word": "function" }, { "confidence": 1, "end": 165.4, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0.76220703, "start": 165.08, "word": "here" }, { "confidence": 1, "end": 165.72, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 0.76220703, "start": 165.4, "word": "called" }, { "confidence": 1, "end": 166.04001, "punctuated_word": "load", "speaker": 0, "speaker_confidence": 0.76220703, "start": 165.72, "word": "load" }, { "confidence": 0.9980469, "end": 166.28, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.76220703, "start": 166.04001, "word": "that" }, { "confidence": 1, "end": 166.52, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.76220703, "start": 166.28, "word": "can" }, { "confidence": 1, "end": 166.68001, "punctuated_word": "flip", "speaker": 0, "speaker_confidence": 0.76220703, "start": 166.52, "word": "flip" }, { "confidence": 1, "end": 166.84, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.76220703, "start": 166.68001, "word": "it" }, { "confidence": 0.9980469, "end": 167.065, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.76220703, "start": 166.84, "word": "to" }, { "confidence": 0.6386719, "end": 167.545, "punctuated_word": "true", "speaker": 0, "speaker_confidence": 0.76220703, "start": 167.145, "word": "true" }, { "confidence": 0.99902344, "end": 167.625, "punctuated_word": "after", "speaker": 0, "speaker_confidence": 0.76220703, "start": 167.545, "word": "after" }, { "confidence": 1, "end": 167.865, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.76220703, "start": 167.625, "word": "the" }, { "confidence": 1, "end": 168.265, "punctuated_word": "binary", "speaker": 0, "speaker_confidence": 0.76220703, "start": 167.865, "word": "binary" }, { "confidence": 1, "end": 168.505, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.76220703, "start": 168.265, "word": "has" }, { "confidence": 1, "end": 168.585, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.76220703, "start": 168.505, "word": "been" }, { "confidence": 1, "end": 169.065, "punctuated_word": "loaded.", "speaker": 0, "speaker_confidence": 0.76220703, "start": 168.585, "word": "loaded" }, { "confidence": 1, "end": 169.225, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.76220703, "start": 169.065, "word": "the" }, { "confidence": 1, "end": 169.725, "punctuated_word": "function", "speaker": 0, "speaker_confidence": 0.76220703, "start": 169.225, "word": "function" }, { "confidence": 0.9980469, "end": 170.185, "punctuated_word": "awaits", "speaker": 0, "speaker_confidence": 0.76220703, "start": 169.785, "word": "awaits" }, { "confidence": 0.99902344, "end": 170.505, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.76220703, "start": 170.185, "word": "the" }, { "confidence": 0.71643066, "end": 171.005, "punctuated_word": "FFmpeg", "speaker": 0, "speaker_confidence": 0.76220703, "start": 170.505, "word": "ffmpeg" }, { "confidence": 0.95166016, "end": 171.705, "punctuated_word": "load", "speaker": 0, "speaker_confidence": 0.76220703, "start": 171.38501, "word": "load" }, { "confidence": 0.7624512, "end": 172.205, "punctuated_word": "promise.", "speaker": 0, "speaker_confidence": 0.76220703, "start": 171.705, "word": "promise" }, { "confidence": 1, "end": 172.745, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.60839844, "start": 172.585, "word": "and" }, { "confidence": 0.99902344, "end": 173.065, "punctuated_word": "once", "speaker": 0, "speaker_confidence": 0.60839844, "start": 172.745, "word": "once" }, { "confidence": 1, "end": 173.38501, "punctuated_word": "loaded,", "speaker": 0, "speaker_confidence": 0.60839844, "start": 173.065, "word": "loaded" }, { "confidence": 1, "end": 173.545, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.60839844, "start": 173.38501, "word": "we" }, { "confidence": 1, "end": 173.625, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.60839844, "start": 173.545, "word": "can" }, { "confidence": 1, "end": 173.865, "punctuated_word": "flip", "speaker": 0, "speaker_confidence": 0.60839844, "start": 173.625, "word": "flip" }, { "confidence": 1, "end": 174.02501, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.60839844, "start": 173.865, "word": "the" }, { "confidence": 1, "end": 174.345, "punctuated_word": "ready", "speaker": 0, "speaker_confidence": 0.60839844, "start": 174.02501, "word": "ready" }, { "confidence": 0.99902344, "end": 174.585, "punctuated_word": "state", "speaker": 0, "speaker_confidence": 0.60839844, "start": 174.345, "word": "state" }, { "confidence": 1, "end": 174.745, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.60839844, "start": 174.585, "word": "to" }, { "confidence": 0.98535156, "end": 175.245, "punctuated_word": "true.", "speaker": 0, "speaker_confidence": 0.60839844, "start": 174.745, "word": "true" }, { "confidence": 1, "end": 175.5, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.60839844, "start": 175.34, "word": "and" }, { "confidence": 0.99902344, "end": 175.66, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 0.60839844, "start": 175.5, "word": "now" }, { "confidence": 0.9980469, "end": 175.81999, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.60839844, "start": 175.66, "word": "we" }, { "confidence": 1, "end": 175.9, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.60839844, "start": 175.81999, "word": "just" }, { "confidence": 1, "end": 176.14, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.60839844, "start": 175.9, "word": "need" }, { "confidence": 0.99902344, "end": 176.22, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.60839844, "start": 176.14, "word": "a" }, { "confidence": 1, "end": 176.54, "punctuated_word": "place", "speaker": 0, "speaker_confidence": 0.78027344, "start": 176.22, "word": "place" }, { "confidence": 1, "end": 176.7, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.78027344, "start": 176.54, "word": "to" }, { "confidence": 1, "end": 176.86, "punctuated_word": "call", "speaker": 0, "speaker_confidence": 0.78027344, "start": 176.7, "word": "call" }, { "confidence": 0.99902344, "end": 177.09999, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.78027344, "start": 176.86, "word": "this" }, { "confidence": 0.9995117, "end": 177.59999, "punctuated_word": "function.", "speaker": 0, "speaker_confidence": 0.78027344, "start": 177.09999, "word": "function" }, { "confidence": 1, "end": 178.14, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.78027344, "start": 177.9, "word": "in" }, { "confidence": 0.98535156, "end": 178.54, "punctuated_word": "React,", "speaker": 0, "speaker_confidence": 0.78027344, "start": 178.14, "word": "react" }, { "confidence": 1, "end": 178.7, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.78027344, "start": 178.54, "word": "we" }, { "confidence": 1, "end": 178.86, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.78027344, "start": 178.7, "word": "can" }, { "confidence": 1, "end": 179.01999, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.78027344, "start": 178.86, "word": "do" }, { "confidence": 1, "end": 179.18, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.78027344, "start": 179.01999, "word": "that" }, { "confidence": 1, "end": 179.34, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.78027344, "start": 179.18, "word": "with" }, { "confidence": 0.99902344, "end": 179.5, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.78027344, "start": 179.34, "word": "the" }, { "confidence": 1, "end": 179.73999, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.78027344, "start": 179.5, "word": "use" }, { "confidence": 0.97802734, "end": 180.14, "punctuated_word": "effect", "speaker": 0, "speaker_confidence": 0.78027344, "start": 179.73999, "word": "effect" }, { "confidence": 0.9980469, "end": 180.54, "punctuated_word": "hook", "speaker": 0, "speaker_confidence": 0.78027344, "start": 180.14, "word": "hook" }, { "confidence": 1, "end": 180.78, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.78027344, "start": 180.54, "word": "to" }, { "confidence": 1, "end": 180.94, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.78027344, "start": 180.78, "word": "run" }, { "confidence": 1, "end": 181.09999, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.78027344, "start": 180.94, "word": "this" }, { "confidence": 1, "end": 181.59999, "punctuated_word": "function", "speaker": 0, "speaker_confidence": 0.78027344, "start": 181.09999, "word": "function" }, { "confidence": 0.9980469, "end": 181.81999, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.78027344, "start": 181.66, "word": "when" }, { "confidence": 1, "end": 182.06, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.78027344, "start": 181.81999, "word": "the" }, { "confidence": 1, "end": 182.54, "punctuated_word": "component", "speaker": 0, "speaker_confidence": 0.78027344, "start": 182.06, "word": "component" }, { "confidence": 1, "end": 182.78, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.78027344, "start": 182.54, "word": "is" }, { "confidence": 0.95703125, "end": 183.01999, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 0.78027344, "start": 182.78, "word": "first" }, { "confidence": 1, "end": 183.51999, "punctuated_word": "initialized.", "speaker": 0, "speaker_confidence": 0.78027344, "start": 183.01999, "word": "initialized" }, { "confidence": 0.9819336, "end": 184.215, "punctuated_word": "Use", "speaker": 0, "speaker_confidence": 0.78027344, "start": 184.05501, "word": "use" }, { "confidence": 0.9819336, "end": 184.695, "punctuated_word": "effect", "speaker": 0, "speaker_confidence": 0.78027344, "start": 184.215, "word": "effect" }, { "confidence": 0.9941406, "end": 184.935, "punctuated_word": "takes", "speaker": 0, "speaker_confidence": 0.78027344, "start": 184.695, "word": "takes" }, { "confidence": 0.99902344, "end": 185.095, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.78027344, "start": 184.935, "word": "a" }, { "confidence": 1, "end": 185.495, "punctuated_word": "function", "speaker": 0, "speaker_confidence": 0.78027344, "start": 185.095, "word": "function" }, { "confidence": 1, "end": 185.655, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.78027344, "start": 185.495, "word": "as" }, { "confidence": 0.9970703, "end": 185.815, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.78027344, "start": 185.655, "word": "its" }, { "confidence": 0.75219727, "end": 186.315, "punctuated_word": "argument.", "speaker": 0, "speaker_confidence": 0.78027344, "start": 185.815, "word": "argument" }, { "confidence": 0.99902344, "end": 186.855, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.78027344, "start": 186.615, "word": "then" }, { "confidence": 0.99902344, "end": 187.095, "punctuated_word": "notice", "speaker": 0, "speaker_confidence": 0.78027344, "start": 186.855, "word": "notice" }, { "confidence": 1, "end": 187.335, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.78027344, "start": 187.095, "word": "how" }, { "confidence": 1, "end": 187.495, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.78027344, "start": 187.335, "word": "i'm" }, { "confidence": 1, "end": 187.735, "punctuated_word": "adding", "speaker": 0, "speaker_confidence": 0.78027344, "start": 187.495, "word": "adding" }, { "confidence": 1, "end": 187.975, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.78027344, "start": 187.735, "word": "an" }, { "confidence": 1, "end": 188.295, "punctuated_word": "empty", "speaker": 0, "speaker_confidence": 0.78027344, "start": 187.975, "word": "empty" }, { "confidence": 1, "end": 188.615, "punctuated_word": "array", "speaker": 0, "speaker_confidence": 0.78027344, "start": 188.295, "word": "array" }, { "confidence": 1, "end": 188.855, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.78027344, "start": 188.615, "word": "as" }, { "confidence": 1, "end": 189.015, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.78027344, "start": 188.855, "word": "the" }, { "confidence": 0.90625, "end": 189.255, "punctuated_word": "second", "speaker": 0, "speaker_confidence": 0.78027344, "start": 189.015, "word": "second" }, { "confidence": 0.9995117, "end": 189.755, "punctuated_word": "argument.", "speaker": 0, "speaker_confidence": 0.78027344, "start": 189.255, "word": "argument" }, { "confidence": 1, "end": 190.215, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.77246094, "start": 190.055, "word": "this" }, { "confidence": 1, "end": 190.375, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.77246094, "start": 190.215, "word": "will" }, { "confidence": 1, "end": 190.695, "punctuated_word": "ensure", "speaker": 0, "speaker_confidence": 0.77246094, "start": 190.375, "word": "ensure" }, { "confidence": 1, "end": 190.855, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.77246094, "start": 190.695, "word": "that" }, { "confidence": 1, "end": 191.015, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.77246094, "start": 190.855, "word": "the" }, { "confidence": 1, "end": 191.495, "punctuated_word": "function", "speaker": 0, "speaker_confidence": 0.77246094, "start": 191.015, "word": "function" }, { "confidence": 1, "end": 191.655, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.77246094, "start": 191.495, "word": "is" }, { "confidence": 1, "end": 191.975, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.77246094, "start": 191.655, "word": "only" }, { "confidence": 1, "end": 192.215, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 0.77246094, "start": 191.975, "word": "called" }, { "confidence": 1, "end": 192.535, "punctuated_word": "once", "speaker": 0, "speaker_confidence": 0.77246094, "start": 192.215, "word": "once" }, { "confidence": 1, "end": 192.695, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.77246094, "start": 192.535, "word": "when" }, { "confidence": 1, "end": 192.855, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.77246094, "start": 192.695, "word": "the" }, { "confidence": 1, "end": 193.255, "punctuated_word": "component", "speaker": 0, "speaker_confidence": 0.77246094, "start": 192.855, "word": "component" }, { "confidence": 1, "end": 193.57, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.77246094, "start": 193.255, "word": "is" }, { "confidence": 0.66015625, "end": 193.97, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 0.77246094, "start": 193.65001, "word": "first" }, { "confidence": 0.9892578, "end": 194.45001, "punctuated_word": "initialized", "speaker": 0, "speaker_confidence": 0.77246094, "start": 193.97, "word": "initialized" }, { "confidence": 1, "end": 194.69, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.77246094, "start": 194.45001, "word": "or" }, { "confidence": 0.96240234, "end": 195.19, "punctuated_word": "mounted.", "speaker": 0, "speaker_confidence": 0.77246094, "start": 194.69, "word": "mounted" }, { "confidence": 0.99902344, "end": 195.89001, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.77246094, "start": 195.65001, "word": "then" }, { "confidence": 0.9951172, "end": 196.29001, "punctuated_word": "inside", "speaker": 0, "speaker_confidence": 0.77246094, "start": 195.89001, "word": "inside" }, { "confidence": 1, "end": 196.37001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.77246094, "start": 196.29001, "word": "the" }, { "confidence": 0.9926758, "end": 196.77, "punctuated_word": "effect,", "speaker": 0, "speaker_confidence": 0.6020508, "start": 196.37001, "word": "effect" }, { "confidence": 1, "end": 196.93001, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.6020508, "start": 196.77, "word": "we" }, { "confidence": 1, "end": 197.09001, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.6020508, "start": 196.93001, "word": "can" }, { "confidence": 1, "end": 197.41, "punctuated_word": "simply", "speaker": 0, "speaker_confidence": 0.6020508, "start": 197.09001, "word": "simply" }, { "confidence": 1, "end": 197.73001, "punctuated_word": "call", "speaker": 0, "speaker_confidence": 0.6020508, "start": 197.41, "word": "call" }, { "confidence": 1, "end": 197.89001, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.6020508, "start": 197.73001, "word": "our" }, { "confidence": 1, "end": 198.13, "punctuated_word": "load", "speaker": 0, "speaker_confidence": 0.6020508, "start": 197.89001, "word": "load" }, { "confidence": 1, "end": 198.63, "punctuated_word": "function.", "speaker": 0, "speaker_confidence": 0.6020508, "start": 198.13, "word": "function" }, { "confidence": 1, "end": 198.93001, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.390625, "start": 198.77, "word": "if" }, { "confidence": 1, "end": 199.01001, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.390625, "start": 198.93001, "word": "you" }, { "confidence": 1, "end": 199.17001, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.390625, "start": 199.01001, "word": "go" }, { "confidence": 0.9970703, "end": 199.33, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 0.390625, "start": 199.17001, "word": "ahead" }, { "confidence": 1, "end": 199.41, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.390625, "start": 199.33, "word": "and" }, { "confidence": 1, "end": 199.65001, "punctuated_word": "save", "speaker": 0, "speaker_confidence": 0.390625, "start": 199.41, "word": "save" }, { "confidence": 1, "end": 199.73001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.41308594, "start": 199.65001, "word": "the" }, { "confidence": 1, "end": 200.05, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.41308594, "start": 199.73001, "word": "file" }, { "confidence": 0.9941406, "end": 200.21, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.41308594, "start": 200.05, "word": "and" }, { "confidence": 1, "end": 200.45001, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.41308594, "start": 200.21, "word": "open" }, { "confidence": 1, "end": 200.53001, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.41308594, "start": 200.45001, "word": "up" }, { "confidence": 1, "end": 200.69, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5654297, "start": 200.53001, "word": "the" }, { "confidence": 0.99658203, "end": 201.19, "punctuated_word": "browser,", "speaker": 0, "speaker_confidence": 0.5654297, "start": 200.69, "word": "browser" }, { "confidence": 1, "end": 201.49, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.5654297, "start": 201.33, "word": "you" }, { "confidence": 1, "end": 201.65001, "punctuated_word": "should", "speaker": 0, "speaker_confidence": 0.5654297, "start": 201.49, "word": "should" }, { "confidence": 1, "end": 201.89001, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.5654297, "start": 201.65001, "word": "get" }, { "confidence": 1, "end": 202.05, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.5654297, "start": 201.89001, "word": "a" }, { "confidence": 1, "end": 202.37001, "punctuated_word": "blank", "speaker": 0, "speaker_confidence": 0.5654297, "start": 202.05, "word": "blank" }, { "confidence": 0.77563477, "end": 202.805, "punctuated_word": "page.", "speaker": 0, "speaker_confidence": 0.5654297, "start": 202.37001, "word": "page" }, { "confidence": 0.99902344, "end": 202.965, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.5654297, "start": 202.805, "word": "but" }, { "confidence": 1, "end": 203.125, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.5654297, "start": 202.965, "word": "in" }, { "confidence": 1, "end": 203.20499, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7944336, "start": 203.125, "word": "the" }, { "confidence": 0.9633789, "end": 203.685, "punctuated_word": "console,", "speaker": 0, "speaker_confidence": 0.7944336, "start": 203.20499, "word": "console" }, { "confidence": 1, "end": 203.84499, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 0.7944336, "start": 203.685, "word": "you'll" }, { "confidence": 1, "end": 204.245, "punctuated_word": "notice", "speaker": 0, "speaker_confidence": 0.7944336, "start": 203.84499, "word": "notice" }, { "confidence": 1, "end": 204.48499, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7944336, "start": 204.245, "word": "that" }, { "confidence": 0.8640137, "end": 204.98499, "punctuated_word": "FFmpeg", "speaker": 0, "speaker_confidence": 0.7944336, "start": 204.48499, "word": "ffmpeg" }, { "confidence": 0.7919922, "end": 205.525, "punctuated_word": "core", "speaker": 0, "speaker_confidence": 0.7944336, "start": 205.125, "word": "core" }, { "confidence": 1, "end": 205.685, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7944336, "start": 205.525, "word": "is" }, { "confidence": 1, "end": 205.92499, "punctuated_word": "being", "speaker": 0, "speaker_confidence": 0.7944336, "start": 205.685, "word": "being" }, { "confidence": 1, "end": 206.245, "punctuated_word": "loaded", "speaker": 0, "speaker_confidence": 0.7944336, "start": 205.92499, "word": "loaded" }, { "confidence": 1, "end": 206.405, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7944336, "start": 206.245, "word": "in" }, { "confidence": 1, "end": 206.48499, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7944336, "start": 206.405, "word": "the" }, { "confidence": 1, "end": 206.98499, "punctuated_word": "background.", "speaker": 0, "speaker_confidence": 0.7944336, "start": 206.48499, "word": "background" }, { "confidence": 1, "end": 207.525, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.7944336, "start": 207.28499, "word": "in" }, { "confidence": 1, "end": 207.765, "punctuated_word": "fact,", "speaker": 0, "speaker_confidence": 0.7944336, "start": 207.525, "word": "fact" }, { "confidence": 0.99902344, "end": 207.92499, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.7944336, "start": 207.765, "word": "if" }, { "confidence": 1, "end": 208.00499, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.7944336, "start": 207.92499, "word": "we" }, { "confidence": 1, "end": 208.165, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.7944336, "start": 208.00499, "word": "go" }, { "confidence": 1, "end": 208.325, "punctuated_word": "over", "speaker": 0, "speaker_confidence": 0.7944336, "start": 208.165, "word": "over" }, { "confidence": 1, "end": 208.48499, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7944336, "start": 208.325, "word": "to" }, { "confidence": 0.96972656, "end": 208.72499, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7944336, "start": 208.48499, "word": "the" }, { "confidence": 0.9921875, "end": 209.125, "punctuated_word": "sources", "speaker": 0, "speaker_confidence": 0.7944336, "start": 208.72499, "word": "sources" }, { "confidence": 1, "end": 209.525, "punctuated_word": "tab,", "speaker": 0, "speaker_confidence": 0.7944336, "start": 209.125, "word": "tab" }, { "confidence": 1, "end": 209.685, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7944336, "start": 209.525, "word": "you" }, { "confidence": 0.99902344, "end": 209.84499, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7944336, "start": 209.685, "word": "can" }, { "confidence": 0.9980469, "end": 210.245, "punctuated_word": "inspect", "speaker": 0, "speaker_confidence": 0.7944336, "start": 209.84499, "word": "inspect" }, { "confidence": 1, "end": 210.325, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5776367, "start": 210.245, "word": "the" }, { "confidence": 1, "end": 210.72499, "punctuated_word": "actual", "speaker": 0, "speaker_confidence": 0.5776367, "start": 210.325, "word": "actual" }, { "confidence": 0.8076172, "end": 210.965, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.5776367, "start": 210.72499, "word": "web" }, { "confidence": 0.99902344, "end": 211.44499, "punctuated_word": "assembly", "speaker": 0, "speaker_confidence": 0.5776367, "start": 210.965, "word": "assembly" }, { "confidence": 1, "end": 211.605, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.5776367, "start": 211.44499, "word": "code" }, { "confidence": 1, "end": 212.07, "punctuated_word": "there.", "speaker": 0, "speaker_confidence": 0.5776367, "start": 211.605, "word": "there" }, { "confidence": 1, "end": 212.39001, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.5776367, "start": 212.23001, "word": "you" }, { "confidence": 1, "end": 212.47, "punctuated_word": "don't", "speaker": 0, "speaker_confidence": 0.5776367, "start": 212.39001, "word": "don't" }, { "confidence": 1, "end": 212.55, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.5776367, "start": 212.47, "word": "need" }, { "confidence": 1, "end": 212.87001, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.64941406, "start": 212.55, "word": "to" }, { "confidence": 1, "end": 213.27, "punctuated_word": "understand", "speaker": 0, "speaker_confidence": 0.64941406, "start": 212.87001, "word": "understand" }, { "confidence": 1, "end": 213.43001, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.64941406, "start": 213.27, "word": "what" }, { "confidence": 1, "end": 213.59001, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 0.64941406, "start": 213.43001, "word": "any" }, { "confidence": 1, "end": 213.75, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.64941406, "start": 213.59001, "word": "of" }, { "confidence": 0.9921875, "end": 213.91, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.64941406, "start": 213.75, "word": "this" }, { "confidence": 1, "end": 214.15001, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.64941406, "start": 213.91, "word": "code" }, { "confidence": 0.9904785, "end": 214.65001, "punctuated_word": "means,", "speaker": 0, "speaker_confidence": 0.64941406, "start": 214.15001, "word": "means" }, { "confidence": 1, "end": 214.95001, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.64941406, "start": 214.79001, "word": "but" }, { "confidence": 1, "end": 215.11, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.64941406, "start": 214.95001, "word": "it" }, { "confidence": 1, "end": 215.27, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.64941406, "start": 215.11, "word": "is" }, { "confidence": 1, "end": 215.59001, "punctuated_word": "useful", "speaker": 0, "speaker_confidence": 0.64941406, "start": 215.27, "word": "useful" }, { "confidence": 1, "end": 215.67001, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.78564453, "start": 215.59001, "word": "to" }, { "confidence": 0.9980469, "end": 215.91, "punctuated_word": "know", "speaker": 0, "speaker_confidence": 0.78564453, "start": 215.67001, "word": "know" }, { "confidence": 1, "end": 216.15001, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.78564453, "start": 215.91, "word": "that" }, { "confidence": 1, "end": 216.31001, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.78564453, "start": 216.15001, "word": "this" }, { "confidence": 1, "end": 216.79001, "punctuated_word": "originally", "speaker": 0, "speaker_confidence": 0.78564453, "start": 216.31001, "word": "originally" }, { "confidence": 1, "end": 217.11, "punctuated_word": "started", "speaker": 0, "speaker_confidence": 0.78564453, "start": 216.79001, "word": "started" }, { "confidence": 1, "end": 217.35, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.78564453, "start": 217.11, "word": "as" }, { "confidence": 1, "end": 217.51001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.78564453, "start": 217.35, "word": "the" }, { "confidence": 0.9091797, "end": 217.75, "punctuated_word": "c", "speaker": 0, "speaker_confidence": 0.78564453, "start": 217.51001, "word": "c" }, { "confidence": 0.9941406, "end": 218.15001, "punctuated_word": "programming", "speaker": 0, "speaker_confidence": 0.78564453, "start": 217.75, "word": "programming" }, { "confidence": 1, "end": 218.63, "punctuated_word": "language", "speaker": 0, "speaker_confidence": 0.78564453, "start": 218.15001, "word": "language" }, { "confidence": 0.8535156, "end": 218.87001, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.78564453, "start": 218.63, "word": "and" }, { "confidence": 0.9980469, "end": 218.95001, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.78564453, "start": 218.87001, "word": "then" }, { "confidence": 0.99902344, "end": 219.19, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.78564453, "start": 218.95001, "word": "was" }, { "confidence": 1, "end": 219.67001, "punctuated_word": "compiled", "speaker": 0, "speaker_confidence": 0.78564453, "start": 219.19, "word": "compiled" }, { "confidence": 1, "end": 219.99, "punctuated_word": "over", "speaker": 0, "speaker_confidence": 0.78564453, "start": 219.67001, "word": "over" }, { "confidence": 1, "end": 220.15001, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.78564453, "start": 219.99, "word": "to" }, { "confidence": 0.8805339, "end": 220.65001, "punctuated_word": "WebAssembly.", "speaker": 0, "speaker_confidence": 0.78564453, "start": 220.15001, "word": "webassembly" }, { "confidence": 1, "end": 221.225, "punctuated_word": "What", "speaker": 0, "speaker_confidence": 0.81591797, "start": 221.145, "word": "what" }, { "confidence": 1, "end": 221.465, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.81591797, "start": 221.225, "word": "we're" }, { "confidence": 1, "end": 221.545, "punctuated_word": "looking", "speaker": 0, "speaker_confidence": 0.81591797, "start": 221.465, "word": "looking" }, { "confidence": 1, "end": 221.785, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.81591797, "start": 221.545, "word": "at" }, { "confidence": 1, "end": 222.105, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0.81591797, "start": 221.785, "word": "here" }, { "confidence": 1, "end": 222.265, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.81591797, "start": 222.105, "word": "is" }, { "confidence": 1, "end": 222.425, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.81591797, "start": 222.265, "word": "the" }, { "confidence": 0.86279297, "end": 222.66501, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.81591797, "start": 222.425, "word": "web" }, { "confidence": 0.9951172, "end": 223.065, "punctuated_word": "assembly", "speaker": 0, "speaker_confidence": 0.81591797, "start": 222.66501, "word": "assembly" }, { "confidence": 0.9797363, "end": 223.465, "punctuated_word": "text,", "speaker": 0, "speaker_confidence": 0.81591797, "start": 223.065, "word": "text" }, { "confidence": 1, "end": 223.705, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.81591797, "start": 223.465, "word": "which" }, { "confidence": 1, "end": 223.865, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.81591797, "start": 223.705, "word": "is" }, { "confidence": 0.99902344, "end": 224.02501, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.81591797, "start": 223.865, "word": "an" }, { "confidence": 1, "end": 224.505, "punctuated_word": "intermediate", "speaker": 0, "speaker_confidence": 0.81591797, "start": 224.02501, "word": "intermediate" }, { "confidence": 1, "end": 225.005, "punctuated_word": "format", "speaker": 0, "speaker_confidence": 0.81591797, "start": 224.505, "word": "format" }, { "confidence": 0.984375, "end": 225.30501, "punctuated_word": "before", "speaker": 0, "speaker_confidence": 0.81591797, "start": 225.065, "word": "before" }, { "confidence": 1, "end": 225.465, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.81591797, "start": 225.30501, "word": "it" }, { "confidence": 1, "end": 225.785, "punctuated_word": "becomes", "speaker": 0, "speaker_confidence": 0.81591797, "start": 225.465, "word": "becomes" }, { "confidence": 1, "end": 226.265, "punctuated_word": "binary", "speaker": 0, "speaker_confidence": 0.81591797, "start": 225.785, "word": "binary" }, { "confidence": 0.93603516, "end": 226.585, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.81591797, "start": 226.265, "word": "or" }, { "confidence": 0.9550781, "end": 226.905, "punctuated_word": "ones", "speaker": 0, "speaker_confidence": 0.81591797, "start": 226.585, "word": "ones" }, { "confidence": 0.9838867, "end": 227.065, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.81591797, "start": 226.905, "word": "and" }, { "confidence": 0.97265625, "end": 227.565, "punctuated_word": "zeros.", "speaker": 0, "speaker_confidence": 0.81591797, "start": 227.065, "word": "zeros" }, { "confidence": 1, "end": 227.945, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.81591797, "start": 227.705, "word": "now" }, { "confidence": 0.9970703, "end": 228.105, "punctuated_word": "back", "speaker": 0, "speaker_confidence": 0.81591797, "start": 227.945, "word": "back" }, { "confidence": 1, "end": 228.265, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.81591797, "start": 228.105, "word": "in" }, { "confidence": 1, "end": 228.345, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.62060547, "start": 228.265, "word": "the" }, { "confidence": 1, "end": 228.66501, "punctuated_word": "source", "speaker": 0, "speaker_confidence": 0.62060547, "start": 228.345, "word": "source" }, { "confidence": 0.99902344, "end": 228.905, "punctuated_word": "code,", "speaker": 0, "speaker_confidence": 0.62060547, "start": 228.66501, "word": "code" }, { "confidence": 1, "end": 229.065, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.62060547, "start": 228.905, "word": "we'll" }, { "confidence": 1, "end": 229.145, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.62060547, "start": 229.065, "word": "go" }, { "confidence": 1, "end": 229.38501, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.62060547, "start": 229.145, "word": "into" }, { "confidence": 1, "end": 229.625, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.62060547, "start": 229.38501, "word": "our" }, { "confidence": 0.8745117, "end": 230.125, "punctuated_word": "JSX,", "speaker": 0, "speaker_confidence": 0.62060547, "start": 229.625, "word": "jsx" }, { "confidence": 1, "end": 230.53001, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.62060547, "start": 230.37001, "word": "and" }, { "confidence": 1, "end": 230.61002, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.6245117, "start": 230.53001, "word": "then" }, { "confidence": 0.9995117, "end": 230.69, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.6245117, "start": 230.61002, "word": "we'll" }, { "confidence": 1, "end": 231.01001, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.6245117, "start": 230.69, "word": "use" }, { "confidence": 1, "end": 231.17001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6245117, "start": 231.01001, "word": "the" }, { "confidence": 0.99641925, "end": 231.57, "punctuated_word": "ternary", "speaker": 0, "speaker_confidence": 0.6245117, "start": 231.17001, "word": "ternary" }, { "confidence": 1, "end": 232.05, "punctuated_word": "operator", "speaker": 0, "speaker_confidence": 0.6245117, "start": 231.57, "word": "operator" }, { "confidence": 1, "end": 232.29001, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.6245117, "start": 232.05, "word": "with" }, { "confidence": 1, "end": 232.37001, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.6245117, "start": 232.29001, "word": "our" }, { "confidence": 0.99902344, "end": 232.69, "punctuated_word": "ready", "speaker": 0, "speaker_confidence": 0.6245117, "start": 232.37001, "word": "ready" }, { "confidence": 1, "end": 233.17001, "punctuated_word": "state.", "speaker": 0, "speaker_confidence": 0.6245117, "start": 232.69, "word": "state" }, { "confidence": 1, "end": 233.33, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.42871094, "start": 233.17001, "word": "if" }, { "confidence": 1, "end": 233.41, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.42871094, "start": 233.33, "word": "the" }, { "confidence": 0.9394531, "end": 233.73001, "punctuated_word": "app's", "speaker": 0, "speaker_confidence": 0.42871094, "start": 233.41, "word": "app's" }, { "confidence": 1, "end": 234.05, "punctuated_word": "ready,", "speaker": 0, "speaker_confidence": 0.42871094, "start": 233.73001, "word": "ready" }, { "confidence": 0.9980469, "end": 234.21, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.42871094, "start": 234.05, "word": "we'll" }, { "confidence": 1, "end": 234.37001, "punctuated_word": "show", "speaker": 0, "speaker_confidence": 0.42871094, "start": 234.21, "word": "show" }, { "confidence": 0.99902344, "end": 234.45001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.82177734, "start": 234.37001, "word": "the" }, { "confidence": 0.99902344, "end": 234.69, "punctuated_word": "main", "speaker": 0, "speaker_confidence": 0.82177734, "start": 234.45001, "word": "main" }, { "confidence": 0.9765625, "end": 235.19, "punctuated_word": "UI.", "speaker": 0, "speaker_confidence": 0.82177734, "start": 234.69, "word": "ui" }, { "confidence": 1, "end": 235.65001, "punctuated_word": "Otherwise,", "speaker": 0, "speaker_confidence": 0.82177734, "start": 235.25, "word": "otherwise" }, { "confidence": 0.9975586, "end": 235.81001, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.82177734, "start": 235.65001, "word": "we'll" }, { "confidence": 1, "end": 235.97, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.82177734, "start": 235.81001, "word": "just" }, { "confidence": 1, "end": 236.21, "punctuated_word": "show", "speaker": 0, "speaker_confidence": 0.82177734, "start": 235.97, "word": "show" }, { "confidence": 1, "end": 236.29001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.82177734, "start": 236.21, "word": "the" }, { "confidence": 1, "end": 236.61, "punctuated_word": "text", "speaker": 0, "speaker_confidence": 0.82177734, "start": 236.29001, "word": "text" }, { "confidence": 1, "end": 236.85, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.82177734, "start": 236.61, "word": "of" }, { "confidence": 0.9995117, "end": 237.35, "punctuated_word": "loading.", "speaker": 0, "speaker_confidence": 0.82177734, "start": 236.85, "word": "loading" }, { "confidence": 1, "end": 237.815, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.82177734, "start": 237.575, "word": "now" }, { "confidence": 0.9536133, "end": 237.89499, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.82177734, "start": 237.815, "word": "our" }, { "confidence": 1, "end": 238.135, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.82177734, "start": 237.89499, "word": "next" }, { "confidence": 1, "end": 238.53499, "punctuated_word": "challenge", "speaker": 0, "speaker_confidence": 0.82177734, "start": 238.135, "word": "challenge" }, { "confidence": 1, "end": 238.775, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.82177734, "start": 238.53499, "word": "is" }, { "confidence": 1, "end": 239.095, "punctuated_word": "loading", "speaker": 0, "speaker_confidence": 0.82177734, "start": 238.775, "word": "loading" }, { "confidence": 1, "end": 239.25499, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.82177734, "start": 239.095, "word": "a" }, { "confidence": 1, "end": 239.575, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.82177734, "start": 239.25499, "word": "video" }, { "confidence": 1, "end": 239.815, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.82177734, "start": 239.575, "word": "file" }, { "confidence": 1, "end": 240.055, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.82177734, "start": 239.815, "word": "into" }, { "confidence": 1, "end": 240.215, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.82177734, "start": 240.055, "word": "the" }, { "confidence": 1, "end": 240.715, "punctuated_word": "application", "speaker": 0, "speaker_confidence": 0.82177734, "start": 240.215, "word": "application" }, { "confidence": 0.96875, "end": 241.33499, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.78466797, "start": 241.25499, "word": "and" }, { "confidence": 0.99121094, "end": 241.655, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.78466797, "start": 241.33499, "word": "also" }, { "confidence": 0.99902344, "end": 241.89499, "punctuated_word": "showing", "speaker": 0, "speaker_confidence": 0.78466797, "start": 241.655, "word": "showing" }, { "confidence": 0.99609375, "end": 242.055, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.78466797, "start": 241.89499, "word": "it" }, { "confidence": 1, "end": 242.215, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.78466797, "start": 242.055, "word": "in" }, { "confidence": 1, "end": 242.295, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.78466797, "start": 242.215, "word": "a" }, { "confidence": 1, "end": 242.69499, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.78466797, "start": 242.295, "word": "video" }, { "confidence": 1, "end": 242.935, "punctuated_word": "player", "speaker": 0, "speaker_confidence": 0.78466797, "start": 242.69499, "word": "player" }, { "confidence": 0.99902344, "end": 243.095, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.78466797, "start": 242.935, "word": "in" }, { "confidence": 0.99902344, "end": 243.25499, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.78466797, "start": 243.095, "word": "the" }, { "confidence": 0.9797363, "end": 243.75499, "punctuated_word": "UI.", "speaker": 0, "speaker_confidence": 0.78466797, "start": 243.25499, "word": "ui" }, { "confidence": 1, "end": 243.97499, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.78466797, "start": 243.815, "word": "the" }, { "confidence": 0.9770508, "end": 244.215, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 0.78466797, "start": 243.97499, "word": "first" }, { "confidence": 1, "end": 244.53499, "punctuated_word": "step", "speaker": 0, "speaker_confidence": 0.78466797, "start": 244.215, "word": "step" }, { "confidence": 1, "end": 244.69499, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.78466797, "start": 244.53499, "word": "is" }, { "confidence": 1, "end": 244.855, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.78466797, "start": 244.69499, "word": "to" }, { "confidence": 1, "end": 245.015, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.78466797, "start": 244.855, "word": "add" }, { "confidence": 1, "end": 245.495, "punctuated_word": "additional", "speaker": 0, "speaker_confidence": 0.78466797, "start": 245.015, "word": "additional" }, { "confidence": 1, "end": 245.735, "punctuated_word": "state", "speaker": 0, "speaker_confidence": 0.78466797, "start": 245.495, "word": "state" }, { "confidence": 0.99902344, "end": 245.815, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.78466797, "start": 245.735, "word": "to" }, { "confidence": 1, "end": 245.97499, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.91503906, "start": 245.815, "word": "the" }, { "confidence": 0.7841797, "end": 246.46, "punctuated_word": "component.", "speaker": 0, "speaker_confidence": 0.91503906, "start": 245.97499, "word": "component" }, { "confidence": 0.99902344, "end": 246.70001, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.91503906, "start": 246.54001, "word": "in" }, { "confidence": 1, "end": 246.94, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.91503906, "start": 246.70001, "word": "this" }, { "confidence": 0.9165039, "end": 247.18001, "punctuated_word": "case,", "speaker": 0, "speaker_confidence": 0.91503906, "start": 246.94, "word": "case" }, { "confidence": 1, "end": 247.42001, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.91503906, "start": 247.18001, "word": "a" }, { "confidence": 1, "end": 247.82, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.91503906, "start": 247.42001, "word": "video" }, { "confidence": 0.94262695, "end": 248.3, "punctuated_word": "file,", "speaker": 0, "speaker_confidence": 0.91503906, "start": 247.82, "word": "file" }, { "confidence": 1, "end": 248.54001, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.91503906, "start": 248.3, "word": "which" }, { "confidence": 0.9873047, "end": 248.70001, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.91503906, "start": 248.54001, "word": "will" }, { "confidence": 1, "end": 249.1, "punctuated_word": "initially", "speaker": 0, "speaker_confidence": 0.91503906, "start": 248.70001, "word": "initially" }, { "confidence": 1, "end": 249.42001, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 0.91503906, "start": 249.1, "word": "start" }, { "confidence": 1, "end": 249.92001, "punctuated_word": "undefined.", "speaker": 0, "speaker_confidence": 0.91503906, "start": 249.42001, "word": "undefined" }, { "confidence": 0.9980469, "end": 250.54001, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.91503906, "start": 250.38, "word": "in" }, { "confidence": 0.9980469, "end": 250.70001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.91503906, "start": 250.54001, "word": "the" }, { "confidence": 0.94189453, "end": 251.20001, "punctuated_word": "HTML,", "speaker": 0, "speaker_confidence": 0.91503906, "start": 250.70001, "word": "html" }, { "confidence": 1, "end": 251.5, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.91503906, "start": 251.34001, "word": "we" }, { "confidence": 1, "end": 251.66, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.91503906, "start": 251.5, "word": "can" }, { "confidence": 1, "end": 251.82, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.91503906, "start": 251.66, "word": "add" }, { "confidence": 1, "end": 251.98001, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.91503906, "start": 251.82, "word": "an" }, { "confidence": 1, "end": 252.3, "punctuated_word": "input", "speaker": 0, "speaker_confidence": 0.91503906, "start": 251.98001, "word": "input" }, { "confidence": 1, "end": 252.78, "punctuated_word": "element", "speaker": 0, "speaker_confidence": 0.91503906, "start": 252.3, "word": "element" }, { "confidence": 1, "end": 252.94, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.91503906, "start": 252.78, "word": "with" }, { "confidence": 0.99902344, "end": 253.1, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.91503906, "start": 252.94, "word": "a" }, { "confidence": 1, "end": 253.34001, "punctuated_word": "type", "speaker": 0, "speaker_confidence": 0.91503906, "start": 253.1, "word": "type" }, { "confidence": 1, "end": 253.5, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.91503906, "start": 253.34001, "word": "of" }, { "confidence": 0.9995117, "end": 253.955, "punctuated_word": "file.", "speaker": 0, "speaker_confidence": 0.91503906, "start": 253.5, "word": "file" }, { "confidence": 1, "end": 254.27501, "punctuated_word": "When", "speaker": 0, "speaker_confidence": 0.91503906, "start": 254.035, "word": "when" }, { "confidence": 0.99609375, "end": 254.355, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.91503906, "start": 254.27501, "word": "this" }, { "confidence": 1, "end": 254.835, "punctuated_word": "input", "speaker": 0, "speaker_confidence": 0.77783203, "start": 254.355, "word": "input" }, { "confidence": 0.9975586, "end": 255.235, "punctuated_word": "changes,", "speaker": 0, "speaker_confidence": 0.77783203, "start": 254.835, "word": "changes" }, { "confidence": 0.99365234, "end": 255.475, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.77783203, "start": 255.235, "word": "we'll" }, { "confidence": 1, "end": 255.635, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.77783203, "start": 255.475, "word": "run" }, { "confidence": 0.99902344, "end": 255.795, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.77783203, "start": 255.635, "word": "an" }, { "confidence": 0.99902344, "end": 256.115, "punctuated_word": "event", "speaker": 0, "speaker_confidence": 0.77783203, "start": 255.795, "word": "event" }, { "confidence": 1, "end": 256.615, "punctuated_word": "handler", "speaker": 0, "speaker_confidence": 0.77783203, "start": 256.115, "word": "handler" }, { "confidence": 1, "end": 256.995, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.77783203, "start": 256.835, "word": "that" }, { "confidence": 0.9980469, "end": 257.23502, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.77783203, "start": 256.995, "word": "will" }, { "confidence": 1, "end": 257.395, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.77783203, "start": 257.23502, "word": "set" }, { "confidence": 1, "end": 257.555, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.77783203, "start": 257.395, "word": "the" }, { "confidence": 1, "end": 257.95502, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.77783203, "start": 257.555, "word": "video" }, { "confidence": 0.9902344, "end": 258.435, "punctuated_word": "state", "speaker": 0, "speaker_confidence": 0.77783203, "start": 257.95502, "word": "state" }, { "confidence": 0.5566406, "end": 258.595, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.77783203, "start": 258.435, "word": "and" }, { "confidence": 1, "end": 258.755, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.77783203, "start": 258.595, "word": "it" }, { "confidence": 1, "end": 258.915, "punctuated_word": "gets", "speaker": 0, "speaker_confidence": 0.77783203, "start": 258.755, "word": "gets" }, { "confidence": 0.99902344, "end": 259.075, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.77783203, "start": 258.915, "word": "the" }, { "confidence": 1, "end": 259.475, "punctuated_word": "actual", "speaker": 0, "speaker_confidence": 0.77783203, "start": 259.075, "word": "actual" }, { "confidence": 1, "end": 259.795, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.77783203, "start": 259.475, "word": "file" }, { "confidence": 1, "end": 259.95502, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.77783203, "start": 259.795, "word": "from" }, { "confidence": 1, "end": 260.115, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.77783203, "start": 259.95502, "word": "the" }, { "confidence": 1, "end": 260.615, "punctuated_word": "event.", "speaker": 0, "speaker_confidence": 0.77783203, "start": 260.115, "word": "event" }, { "confidence": 0.984375, "end": 260.915, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.77783203, "start": 260.755, "word": "the" }, { "confidence": 0.99902344, "end": 261.23502, "punctuated_word": "event", "speaker": 0, "speaker_confidence": 0.77783203, "start": 260.915, "word": "event" }, { "confidence": 0.9863281, "end": 261.635, "punctuated_word": "emits", "speaker": 0, "speaker_confidence": 0.77783203, "start": 261.23502, "word": "emits" }, { "confidence": 1, "end": 261.795, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.77783203, "start": 261.635, "word": "a" }, { "confidence": 0.9970703, "end": 262.115, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.77783203, "start": 261.795, "word": "file" }, { "confidence": 1, "end": 262.615, "punctuated_word": "list", "speaker": 0, "speaker_confidence": 0.77783203, "start": 262.115, "word": "list" }, { "confidence": 1, "end": 262.81, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.75341797, "start": 262.72998, "word": "and" }, { "confidence": 0.9970703, "end": 263.05, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.75341797, "start": 262.81, "word": "then" }, { "confidence": 0.9980469, "end": 263.13, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.75341797, "start": 263.05, "word": "we" }, { "confidence": 0.9838867, "end": 263.44998, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.75341797, "start": 263.13, "word": "use" }, { "confidence": 0.9902344, "end": 263.93, "punctuated_word": "item", "speaker": 0, "speaker_confidence": 0.75341797, "start": 263.44998, "word": "item" }, { "confidence": 0.9326172, "end": 264.41, "punctuated_word": "0", "speaker": 0, "speaker_confidence": 0.75341797, "start": 263.93, "word": "0" }, { "confidence": 0.9980469, "end": 264.57, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.75341797, "start": 264.41, "word": "to" }, { "confidence": 1, "end": 264.88998, "punctuated_word": "select", "speaker": 0, "speaker_confidence": 0.75341797, "start": 264.57, "word": "select" }, { "confidence": 0.99902344, "end": 265.05, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.75341797, "start": 264.88998, "word": "the" }, { "confidence": 0.6538086, "end": 265.37, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 0.75341797, "start": 265.05, "word": "first" }, { "confidence": 1, "end": 265.69, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.75341797, "start": 265.37, "word": "file" }, { "confidence": 1, "end": 265.85, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.75341797, "start": 265.69, "word": "from" }, { "confidence": 1, "end": 266.09, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.75341797, "start": 265.85, "word": "that" }, { "confidence": 1, "end": 266.57, "punctuated_word": "list.", "speaker": 0, "speaker_confidence": 0.75341797, "start": 266.09, "word": "list" }, { "confidence": 1, "end": 266.72998, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.4399414, "start": 266.57, "word": "now" }, { "confidence": 0.9951172, "end": 266.81, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.4399414, "start": 266.72998, "word": "that" }, { "confidence": 1, "end": 266.88998, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.4399414, "start": 266.81, "word": "we" }, { "confidence": 1, "end": 267.05, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.4399414, "start": 266.88998, "word": "have" }, { "confidence": 1, "end": 267.29, "punctuated_word": "access", "speaker": 0, "speaker_confidence": 0.4399414, "start": 267.05, "word": "access" }, { "confidence": 1, "end": 267.44998, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.4399414, "start": 267.29, "word": "to" }, { "confidence": 1, "end": 267.53, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.41845703, "start": 267.44998, "word": "a" }, { "confidence": 1, "end": 267.85, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.41845703, "start": 267.53, "word": "video" }, { "confidence": 0.99853516, "end": 268.16998, "punctuated_word": "file,", "speaker": 0, "speaker_confidence": 0.41845703, "start": 267.85, "word": "file" }, { "confidence": 1, "end": 268.41, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.41845703, "start": 268.16998, "word": "we" }, { "confidence": 1, "end": 268.65, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.41845703, "start": 268.41, "word": "want" }, { "confidence": 1, "end": 268.72998, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.5253906, "start": 268.65, "word": "to" }, { "confidence": 1, "end": 269.13, "punctuated_word": "display", "speaker": 0, "speaker_confidence": 0.5253906, "start": 268.72998, "word": "display" }, { "confidence": 0.99902344, "end": 269.29, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.5253906, "start": 269.13, "word": "it" }, { "confidence": 0.99902344, "end": 269.44998, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.5253906, "start": 269.29, "word": "in" }, { "confidence": 0.9902344, "end": 269.61, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.5253906, "start": 269.44998, "word": "an" }, { "confidence": 0.91503906, "end": 270.11, "punctuated_word": "HTML", "speaker": 0, "speaker_confidence": 0.5253906, "start": 269.61, "word": "html" }, { "confidence": 0.9838867, "end": 270.49, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.5253906, "start": 270.16998, "word": "video" }, { "confidence": 0.99902344, "end": 270.985, "punctuated_word": "element.", "speaker": 0, "speaker_confidence": 0.5253906, "start": 270.49, "word": "element" }, { "confidence": 0.99853516, "end": 271.22498, "punctuated_word": "We'll", "speaker": 0, "speaker_confidence": 0.84521484, "start": 271.06497, "word": "we'll" }, { "confidence": 1, "end": 271.38498, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.84521484, "start": 271.22498, "word": "use" }, { "confidence": 0.9863281, "end": 271.465, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.84521484, "start": 271.38498, "word": "a" }, { "confidence": 1, "end": 271.94498, "punctuated_word": "logical", "speaker": 0, "speaker_confidence": 0.84521484, "start": 271.465, "word": "logical" }, { "confidence": 0.92578125, "end": 272.185, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.84521484, "start": 271.94498, "word": "and" }, { "confidence": 1, "end": 272.685, "punctuated_word": "operator", "speaker": 0, "speaker_confidence": 0.84521484, "start": 272.185, "word": "operator" }, { "confidence": 1, "end": 272.985, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.84521484, "start": 272.745, "word": "to" }, { "confidence": 1, "end": 273.22498, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.84521484, "start": 272.985, "word": "only" }, { "confidence": 1, "end": 273.38498, "punctuated_word": "show", "speaker": 0, "speaker_confidence": 0.84521484, "start": 273.22498, "word": "show" }, { "confidence": 1, "end": 273.54498, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.84521484, "start": 273.38498, "word": "the" }, { "confidence": 1, "end": 273.94498, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.84521484, "start": 273.54498, "word": "video" }, { "confidence": 1, "end": 274.10498, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.84521484, "start": 273.94498, "word": "when" }, { "confidence": 1, "end": 274.26498, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.84521484, "start": 274.10498, "word": "the" }, { "confidence": 1, "end": 274.585, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.84521484, "start": 274.26498, "word": "video" }, { "confidence": 1, "end": 274.82498, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.84521484, "start": 274.585, "word": "file" }, { "confidence": 1, "end": 275.06497, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.84521484, "start": 274.82498, "word": "is" }, { "confidence": 1, "end": 275.56497, "punctuated_word": "defined.", "speaker": 0, "speaker_confidence": 0.84521484, "start": 275.06497, "word": "defined" }, { "confidence": 1, "end": 276.26498, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.84521484, "start": 276.10498, "word": "the" }, { "confidence": 1, "end": 276.585, "punctuated_word": "element", "speaker": 0, "speaker_confidence": 0.84521484, "start": 276.26498, "word": "element" }, { "confidence": 1, "end": 276.905, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.84521484, "start": 276.585, "word": "has" }, { "confidence": 0.7890625, "end": 277.405, "punctuated_word": "controls,", "speaker": 0, "speaker_confidence": 0.84521484, "start": 276.905, "word": "controls" }, { "confidence": 1, "end": 277.705, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.84521484, "start": 277.465, "word": "a" }, { "confidence": 0.99902344, "end": 277.94498, "punctuated_word": "width", "speaker": 0, "speaker_confidence": 0.84521484, "start": 277.705, "word": "width" }, { "confidence": 1, "end": 278.10498, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.84521484, "start": 277.94498, "word": "of" }, { "confidence": 0.9145508, "end": 278.60498, "punctuated_word": "250,", "speaker": 0, "speaker_confidence": 0.84521484, "start": 278.10498, "word": "250" }, { "confidence": 1, "end": 279.30002, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.84521484, "start": 279.14, "word": "but" }, { "confidence": 0.9970703, "end": 279.46002, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.84521484, "start": 279.30002, "word": "a" }, { "confidence": 1, "end": 279.78003, "punctuated_word": "tricky", "speaker": 0, "speaker_confidence": 0.84521484, "start": 279.46002, "word": "tricky" }, { "confidence": 1, "end": 280.02002, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.84521484, "start": 279.78003, "word": "thing" }, { "confidence": 1, "end": 280.26, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0.84521484, "start": 280.02002, "word": "here" }, { "confidence": 0.9980469, "end": 280.42, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.84521484, "start": 280.26, "word": "is" }, { "confidence": 1, "end": 280.58002, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.84521484, "start": 280.42, "word": "that" }, { "confidence": 1, "end": 280.74002, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.84521484, "start": 280.58002, "word": "we" }, { "confidence": 1, "end": 280.90002, "punctuated_word": "can't", "speaker": 0, "speaker_confidence": 0.78808594, "start": 280.74002, "word": "can't" }, { "confidence": 1, "end": 281.06003, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.78808594, "start": 280.90002, "word": "just" }, { "confidence": 1, "end": 281.30002, "punctuated_word": "pass", "speaker": 0, "speaker_confidence": 0.78808594, "start": 281.06003, "word": "pass" }, { "confidence": 1, "end": 281.54, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.78808594, "start": 281.30002, "word": "the" }, { "confidence": 0.9941406, "end": 281.78003, "punctuated_word": "raw", "speaker": 0, "speaker_confidence": 0.78808594, "start": 281.54, "word": "raw" }, { "confidence": 0.99902344, "end": 282.1, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.78808594, "start": 281.78003, "word": "file" }, { "confidence": 1, "end": 282.26, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.78808594, "start": 282.1, "word": "to" }, { "confidence": 1, "end": 282.42, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.78808594, "start": 282.26, "word": "the" }, { "confidence": 1, "end": 282.74002, "punctuated_word": "source", "speaker": 0, "speaker_confidence": 0.78808594, "start": 282.42, "word": "source" }, { "confidence": 0.98291016, "end": 283.24002, "punctuated_word": "attribute.", "speaker": 0, "speaker_confidence": 0.78808594, "start": 282.74002, "word": "attribute" }, { "confidence": 1, "end": 283.54, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.78808594, "start": 283.38, "word": "we" }, { "confidence": 1, "end": 283.7, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.78808594, "start": 283.54, "word": "need" }, { "confidence": 1, "end": 283.86002, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.78808594, "start": 283.7, "word": "to" }, { "confidence": 1, "end": 284.18002, "punctuated_word": "convert", "speaker": 0, "speaker_confidence": 0.78808594, "start": 283.86002, "word": "convert" }, { "confidence": 1, "end": 284.34003, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.78808594, "start": 284.18002, "word": "it" }, { "confidence": 1, "end": 284.5, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.78808594, "start": 284.34003, "word": "to" }, { "confidence": 1, "end": 284.66, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.78808594, "start": 284.5, "word": "a" }, { "confidence": 0.9951172, "end": 284.98, "punctuated_word": "URL", "speaker": 0, "speaker_confidence": 0.78808594, "start": 284.66, "word": "url" }, { "confidence": 0.9980469, "end": 285.22, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.78808594, "start": 284.98, "word": "that" }, { "confidence": 1, "end": 285.30002, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.78808594, "start": 285.22, "word": "the" }, { "confidence": 1, "end": 285.7, "punctuated_word": "browser", "speaker": 0, "speaker_confidence": 0.78808594, "start": 285.30002, "word": "browser" }, { "confidence": 1, "end": 285.86002, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.78808594, "start": 285.7, "word": "can" }, { "confidence": 1, "end": 286.155, "punctuated_word": "fetch.", "speaker": 0, "speaker_confidence": 0.78808594, "start": 285.86002, "word": "fetch" }, { "confidence": 1, "end": 286.635, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.85058594, "start": 286.555, "word": "we" }, { "confidence": 1, "end": 286.795, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.85058594, "start": 286.635, "word": "can" }, { "confidence": 1, "end": 287.115, "punctuated_word": "handle", "speaker": 0, "speaker_confidence": 0.85058594, "start": 286.795, "word": "handle" }, { "confidence": 1, "end": 287.355, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.85058594, "start": 287.115, "word": "that" }, { "confidence": 1, "end": 287.51498, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.85058594, "start": 287.355, "word": "by" }, { "confidence": 1, "end": 287.755, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.85058594, "start": 287.51498, "word": "using" }, { "confidence": 1, "end": 287.915, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.85058594, "start": 287.755, "word": "the" }, { "confidence": 0.96435547, "end": 288.315, "punctuated_word": "URL", "speaker": 0, "speaker_confidence": 0.85058594, "start": 287.915, "word": "url" }, { "confidence": 0.99902344, "end": 288.815, "punctuated_word": "interface", "speaker": 0, "speaker_confidence": 0.85058594, "start": 288.315, "word": "interface" }, { "confidence": 0.9199219, "end": 289.195, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.85058594, "start": 289.035, "word": "and" }, { "confidence": 1, "end": 289.355, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.85058594, "start": 289.195, "word": "then" }, { "confidence": 0.984375, "end": 289.675, "punctuated_word": "calling", "speaker": 0, "speaker_confidence": 0.85058594, "start": 289.355, "word": "calling" }, { "confidence": 0.6801758, "end": 289.915, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.85058594, "start": 289.675, "word": "its" }, { "confidence": 0.99902344, "end": 290.395, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.85058594, "start": 289.915, "word": "create" }, { "confidence": 0.9892578, "end": 290.875, "punctuated_word": "object", "speaker": 0, "speaker_confidence": 0.85058594, "start": 290.395, "word": "object" }, { "confidence": 0.9941406, "end": 291.195, "punctuated_word": "URL", "speaker": 0, "speaker_confidence": 0.85058594, "start": 290.875, "word": "url" }, { "confidence": 0.923584, "end": 291.695, "punctuated_word": "method,", "speaker": 0, "speaker_confidence": 0.85058594, "start": 291.195, "word": "method" }, { "confidence": 1, "end": 292.075, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.85058594, "start": 291.835, "word": "which" }, { "confidence": 1, "end": 292.315, "punctuated_word": "takes", "speaker": 0, "speaker_confidence": 0.85058594, "start": 292.075, "word": "takes" }, { "confidence": 1, "end": 292.475, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.85058594, "start": 292.315, "word": "the" }, { "confidence": 1, "end": 292.715, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.85058594, "start": 292.475, "word": "file" }, { "confidence": 1, "end": 293.035, "punctuated_word": "object", "speaker": 0, "speaker_confidence": 0.85058594, "start": 292.715, "word": "object" }, { "confidence": 1, "end": 293.275, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.85058594, "start": 293.035, "word": "as" }, { "confidence": 0.9770508, "end": 293.435, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.85058594, "start": 293.275, "word": "its" }, { "confidence": 1, "end": 293.935, "punctuated_word": "argument.", "speaker": 0, "speaker_confidence": 0.85058594, "start": 293.435, "word": "argument" }, { "confidence": 1, "end": 294.22, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.85058594, "start": 294.14, "word": "if" }, { "confidence": 0.99902344, "end": 294.3, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.85058594, "start": 294.22, "word": "we" }, { "confidence": 1, "end": 294.38, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.67041016, "start": 294.3, "word": "go" }, { "confidence": 1, "end": 294.46002, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 0.67041016, "start": 294.38, "word": "ahead" }, { "confidence": 1, "end": 294.7, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.67041016, "start": 294.46002, "word": "and" }, { "confidence": 1, "end": 294.94, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.67041016, "start": 294.7, "word": "open" }, { "confidence": 1, "end": 295.02002, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.67041016, "start": 294.94, "word": "up" }, { "confidence": 1, "end": 295.18002, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.67041016, "start": 295.02002, "word": "the" }, { "confidence": 0.99902344, "end": 295.58002, "punctuated_word": "demo,", "speaker": 0, "speaker_confidence": 0.67041016, "start": 295.18002, "word": "demo" }, { "confidence": 1, "end": 295.66, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.67041016, "start": 295.58002, "word": "we" }, { "confidence": 1, "end": 295.90002, "punctuated_word": "should", "speaker": 0, "speaker_confidence": 0.67041016, "start": 295.66, "word": "should" }, { "confidence": 1, "end": 296.06, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 0.67041016, "start": 295.90002, "word": "now" }, { "confidence": 1, "end": 296.22, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.67041016, "start": 296.06, "word": "be" }, { "confidence": 1, "end": 296.46002, "punctuated_word": "able", "speaker": 0, "speaker_confidence": 0.67041016, "start": 296.22, "word": "able" }, { "confidence": 1, "end": 296.62003, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.67041016, "start": 296.46002, "word": "to" }, { "confidence": 1, "end": 296.94, "punctuated_word": "choose", "speaker": 0, "speaker_confidence": 0.67041016, "start": 296.62003, "word": "choose" }, { "confidence": 0.99121094, "end": 297.02002, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.70166016, "start": 296.94, "word": "a" }, { "confidence": 1, "end": 297.34, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.70166016, "start": 297.02002, "word": "file" }, { "confidence": 1, "end": 297.42, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.70166016, "start": 297.34, "word": "on" }, { "confidence": 1, "end": 297.66, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.70166016, "start": 297.42, "word": "our" }, { "confidence": 1, "end": 298.16, "punctuated_word": "system", "speaker": 0, "speaker_confidence": 0.70166016, "start": 297.66, "word": "system" }, { "confidence": 0.9550781, "end": 298.54, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.70166016, "start": 298.38, "word": "and" }, { "confidence": 1, "end": 298.7, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.70166016, "start": 298.54, "word": "then" }, { "confidence": 1, "end": 298.86002, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.70166016, "start": 298.7, "word": "have" }, { "confidence": 1, "end": 299.1, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.70166016, "start": 298.86002, "word": "that" }, { "confidence": 0.9980469, "end": 299.42, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.70166016, "start": 299.1, "word": "file" }, { "confidence": 1, "end": 299.82, "punctuated_word": "displayed", "speaker": 0, "speaker_confidence": 0.70166016, "start": 299.42, "word": "displayed" }, { "confidence": 1, "end": 299.98, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.70166016, "start": 299.82, "word": "in" }, { "confidence": 0.99902344, "end": 300.06, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.70166016, "start": 299.98, "word": "the" }, { "confidence": 1, "end": 300.38, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.70166016, "start": 300.06, "word": "video" }, { "confidence": 0.98706055, "end": 300.88, "punctuated_word": "player.", "speaker": 0, "speaker_confidence": 0.70166016, "start": 300.38, "word": "player" }, { "confidence": 1, "end": 301.395, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.7475586, "start": 301.235, "word": "and" }, { "confidence": 0.9941406, "end": 301.475, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 0.7475586, "start": 301.395, "word": "now" }, { "confidence": 0.99365234, "end": 301.715, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.7475586, "start": 301.475, "word": "we're" }, { "confidence": 1, "end": 301.875, "punctuated_word": "ready", "speaker": 0, "speaker_confidence": 0.7475586, "start": 301.715, "word": "ready" }, { "confidence": 1, "end": 301.955, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.7475586, "start": 301.875, "word": "for" }, { "confidence": 1, "end": 302.035, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7475586, "start": 301.955, "word": "the" }, { "confidence": 1, "end": 302.275, "punctuated_word": "fun", "speaker": 0, "speaker_confidence": 0.7475586, "start": 302.035, "word": "fun" }, { "confidence": 0.7907715, "end": 302.675, "punctuated_word": "part,", "speaker": 0, "speaker_confidence": 0.7475586, "start": 302.275, "word": "part" }, { "confidence": 0.99902344, "end": 302.995, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.7475586, "start": 302.675, "word": "using" }, { "confidence": 0.8664551, "end": 303.495, "punctuated_word": "FFmpeg", "speaker": 0, "speaker_confidence": 0.7475586, "start": 302.995, "word": "ffmpeg" }, { "confidence": 0.99316406, "end": 303.955, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7475586, "start": 303.715, "word": "and" }, { "confidence": 0.70825195, "end": 304.455, "punctuated_word": "WebAssembly", "speaker": 0, "speaker_confidence": 0.7475586, "start": 303.955, "word": "webassembly" }, { "confidence": 1, "end": 304.995, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7475586, "start": 304.755, "word": "to" }, { "confidence": 1, "end": 305.395, "punctuated_word": "modify", "speaker": 0, "speaker_confidence": 0.7475586, "start": 304.995, "word": "modify" }, { "confidence": 1, "end": 305.635, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.7475586, "start": 305.395, "word": "this" }, { "confidence": 1, "end": 305.875, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.7475586, "start": 305.635, "word": "video" }, { "confidence": 1, "end": 306.375, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.7475586, "start": 305.875, "word": "file" }, { "confidence": 0.5428467, "end": 306.675, "punctuated_word": "or,", "speaker": 0, "speaker_confidence": 0.7475586, "start": 306.435, "word": "or" }, { "confidence": 1, "end": 306.835, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7475586, "start": 306.675, "word": "in" }, { "confidence": 1, "end": 306.915, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.6586914, "start": 306.835, "word": "our" }, { "confidence": 0.9995117, "end": 307.235, "punctuated_word": "case,", "speaker": 0, "speaker_confidence": 0.6586914, "start": 306.915, "word": "case" }, { "confidence": 1, "end": 307.555, "punctuated_word": "convert", "speaker": 0, "speaker_confidence": 0.6586914, "start": 307.235, "word": "convert" }, { "confidence": 1, "end": 307.715, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6586914, "start": 307.555, "word": "the" }, { "confidence": 1, "end": 307.955, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.6586914, "start": 307.715, "word": "file" }, { "confidence": 1, "end": 308.115, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6586914, "start": 307.955, "word": "to" }, { "confidence": 1, "end": 308.275, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.6586914, "start": 308.115, "word": "an" }, { "confidence": 1, "end": 308.675, "punctuated_word": "animated", "speaker": 0, "speaker_confidence": 0.6586914, "start": 308.275, "word": "animated" }, { "confidence": 0.96240234, "end": 309.175, "punctuated_word": "GIF.", "speaker": 0, "speaker_confidence": 0.6586914, "start": 308.675, "word": "gif" }, { "confidence": 1, "end": 309.44998, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.6586914, "start": 309.28998, "word": "the" }, { "confidence": 0.99902344, "end": 309.61, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 0.6586914, "start": 309.44998, "word": "first" }, { "confidence": 1, "end": 309.69, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.6586914, "start": 309.61, "word": "thing" }, { "confidence": 0.9980469, "end": 309.85, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.62646484, "start": 309.69, "word": "we'll" }, { "confidence": 1, "end": 310.09, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.62646484, "start": 309.85, "word": "do" }, { "confidence": 1, "end": 310.33, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0.62646484, "start": 310.09, "word": "here" }, { "confidence": 1, "end": 310.56998, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.62646484, "start": 310.33, "word": "is" }, { "confidence": 1, "end": 310.72998, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.62646484, "start": 310.56998, "word": "add" }, { "confidence": 0.74902344, "end": 310.88998, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.62646484, "start": 310.72998, "word": "one" }, { "confidence": 1, "end": 311.05, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.62646484, "start": 310.88998, "word": "more" }, { "confidence": 1, "end": 311.28998, "punctuated_word": "piece", "speaker": 0, "speaker_confidence": 0.62646484, "start": 311.05, "word": "piece" }, { "confidence": 1, "end": 311.37, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.62646484, "start": 311.28998, "word": "of" }, { "confidence": 1, "end": 311.61, "punctuated_word": "state", "speaker": 0, "speaker_confidence": 0.62646484, "start": 311.37, "word": "state" }, { "confidence": 1, "end": 311.69, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.49804688, "start": 311.61, "word": "to" }, { "confidence": 1, "end": 311.85, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.49804688, "start": 311.69, "word": "the" }, { "confidence": 0.9716797, "end": 312.33, "punctuated_word": "component", "speaker": 0, "speaker_confidence": 0.49804688, "start": 311.85, "word": "component" }, { "confidence": 0.99316406, "end": 312.65, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 0.49804688, "start": 312.33, "word": "called" }, { "confidence": 0.89819336, "end": 313.15, "punctuated_word": "GIF,", "speaker": 0, "speaker_confidence": 0.49804688, "start": 312.65, "word": "gif" }, { "confidence": 1, "end": 313.37, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.49804688, "start": 313.21, "word": "and" }, { "confidence": 0.99902344, "end": 313.44998, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.49804688, "start": 313.37, "word": "it" }, { "confidence": 1, "end": 313.61, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.49804688, "start": 313.44998, "word": "will" }, { "confidence": 1, "end": 313.69, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.73339844, "start": 313.61, "word": "be" }, { "confidence": 1, "end": 314.00998, "punctuated_word": "used", "speaker": 0, "speaker_confidence": 0.73339844, "start": 313.69, "word": "used" }, { "confidence": 1, "end": 314.09, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.73339844, "start": 314.00998, "word": "to" }, { "confidence": 1, "end": 314.33, "punctuated_word": "hold", "speaker": 0, "speaker_confidence": 0.73339844, "start": 314.09, "word": "hold" }, { "confidence": 1, "end": 314.49, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.73339844, "start": 314.33, "word": "the" }, { "confidence": 1, "end": 314.65, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.73339844, "start": 314.49, "word": "end" }, { "confidence": 0.97143555, "end": 315.05, "punctuated_word": "result,", "speaker": 0, "speaker_confidence": 0.73339844, "start": 314.65, "word": "result" }, { "confidence": 1, "end": 315.28998, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.73339844, "start": 315.05, "word": "which" }, { "confidence": 1, "end": 315.37, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.73339844, "start": 315.28998, "word": "is" }, { "confidence": 1, "end": 315.61, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.73339844, "start": 315.37, "word": "a" }, { "confidence": 0.99902344, "end": 316.00998, "punctuated_word": "URL", "speaker": 0, "speaker_confidence": 0.73339844, "start": 315.61, "word": "url" }, { "confidence": 1, "end": 316.25, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.73339844, "start": 316.00998, "word": "of" }, { "confidence": 1, "end": 316.41, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.73339844, "start": 316.25, "word": "an" }, { "confidence": 1, "end": 316.65, "punctuated_word": "image", "speaker": 0, "speaker_confidence": 0.73339844, "start": 316.41, "word": "image" }, { "confidence": 1, "end": 317.15, "punctuated_word": "file.", "speaker": 0, "speaker_confidence": 0.73339844, "start": 316.65, "word": "file" }, { "confidence": 1, "end": 317.345, "punctuated_word": "From", "speaker": 0, "speaker_confidence": 0.7944336, "start": 317.26498, "word": "from" }, { "confidence": 0.98291016, "end": 317.585, "punctuated_word": "there,", "speaker": 0, "speaker_confidence": 0.7944336, "start": 317.345, "word": "there" }, { "confidence": 0.9980469, "end": 317.665, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.7944336, "start": 317.585, "word": "we'll" }, { "confidence": 1, "end": 317.905, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.7944336, "start": 317.665, "word": "create" }, { "confidence": 1, "end": 318.145, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7944336, "start": 317.905, "word": "a" }, { "confidence": 1, "end": 318.465, "punctuated_word": "function", "speaker": 0, "speaker_confidence": 0.7944336, "start": 318.145, "word": "function" }, { "confidence": 0.99902344, "end": 318.865, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 0.7944336, "start": 318.465, "word": "called" }, { "confidence": 0.9951172, "end": 319.185, "punctuated_word": "convert", "speaker": 0, "speaker_confidence": 0.7944336, "start": 318.865, "word": "convert" }, { "confidence": 0.9970703, "end": 319.26498, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7944336, "start": 319.185, "word": "to" }, { "confidence": 0.7487793, "end": 319.665, "punctuated_word": "GIF,", "speaker": 0, "speaker_confidence": 0.7944336, "start": 319.26498, "word": "gif" }, { "confidence": 1, "end": 319.905, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.7944336, "start": 319.665, "word": "which" }, { "confidence": 1, "end": 319.985, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7944336, "start": 319.905, "word": "the" }, { "confidence": 1, "end": 320.305, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 0.7944336, "start": 319.985, "word": "user" }, { "confidence": 1, "end": 320.465, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7944336, "start": 320.305, "word": "can" }, { "confidence": 1, "end": 320.785, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.7944336, "start": 320.465, "word": "run" }, { "confidence": 1, "end": 320.945, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.7944336, "start": 320.785, "word": "when" }, { "confidence": 1, "end": 321.185, "punctuated_word": "they're", "speaker": 0, "speaker_confidence": 0.7944336, "start": 320.945, "word": "they're" }, { "confidence": 1, "end": 321.425, "punctuated_word": "ready", "speaker": 0, "speaker_confidence": 0.7944336, "start": 321.185, "word": "ready" }, { "confidence": 1, "end": 321.585, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7944336, "start": 321.425, "word": "to" }, { "confidence": 1, "end": 321.825, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.7944336, "start": 321.585, "word": "make" }, { "confidence": 0.99902344, "end": 321.985, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7944336, "start": 321.825, "word": "the" }, { "confidence": 1, "end": 322.485, "punctuated_word": "conversion.", "speaker": 0, "speaker_confidence": 0.7944336, "start": 321.985, "word": "conversion" }, { "confidence": 1, "end": 322.865, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.7944336, "start": 322.625, "word": "now" }, { "confidence": 0.98828125, "end": 323.025, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.7944336, "start": 322.865, "word": "one" }, { "confidence": 1, "end": 323.185, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.7944336, "start": 323.025, "word": "thing" }, { "confidence": 1, "end": 323.345, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8027344, "start": 323.185, "word": "to" }, { "confidence": 1, "end": 323.745, "punctuated_word": "understand", "speaker": 0, "speaker_confidence": 0.8027344, "start": 323.345, "word": "understand" }, { "confidence": 1, "end": 324.065, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0.8027344, "start": 323.745, "word": "here" }, { "confidence": 0.99902344, "end": 324.225, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8027344, "start": 324.065, "word": "is" }, { "confidence": 1, "end": 324.465, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8027344, "start": 324.225, "word": "that" }, { "confidence": 0.9243164, "end": 324.965, "punctuated_word": "WebAssembly", "speaker": 0, "speaker_confidence": 0.8027344, "start": 324.465, "word": "webassembly" }, { "confidence": 0.99902344, "end": 325.425, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8027344, "start": 325.185, "word": "is" }, { "confidence": 0.99902344, "end": 325.825, "punctuated_word": "managing", "speaker": 0, "speaker_confidence": 0.8027344, "start": 325.425, "word": "managing" }, { "confidence": 0.9970703, "end": 325.985, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.8027344, "start": 325.825, "word": "its" }, { "confidence": 0.99902344, "end": 326.305, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 0.8027344, "start": 325.985, "word": "own" }, { "confidence": 0.9921875, "end": 326.465, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8027344, "start": 326.305, "word": "in" }, { "confidence": 0.9970703, "end": 326.865, "punctuated_word": "memory", "speaker": 0, "speaker_confidence": 0.8027344, "start": 326.465, "word": "memory" }, { "confidence": 0.97509766, "end": 327.08, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.8027344, "start": 326.865, "word": "file" }, { "confidence": 0.9157715, "end": 327.81998, "punctuated_word": "system.", "speaker": 0, "speaker_confidence": 0.8027344, "start": 327.31998, "word": "system" }, { "confidence": 0.9892578, "end": 327.96, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.7651367, "start": 327.87997, "word": "and" }, { "confidence": 1, "end": 328.12, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7651367, "start": 327.96, "word": "in" }, { "confidence": 1, "end": 328.36, "punctuated_word": "order", "speaker": 0, "speaker_confidence": 0.7651367, "start": 328.12, "word": "order" }, { "confidence": 1, "end": 328.52, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7651367, "start": 328.36, "word": "to" }, { "confidence": 1, "end": 328.75998, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.7651367, "start": 328.52, "word": "run" }, { "confidence": 0.86865234, "end": 329.25998, "punctuated_word": "FFmpeg", "speaker": 0, "speaker_confidence": 0.7651367, "start": 328.75998, "word": "ffmpeg" }, { "confidence": 1, "end": 329.72, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.7651367, "start": 329.56, "word": "on" }, { "confidence": 1, "end": 329.96, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7651367, "start": 329.72, "word": "that" }, { "confidence": 0.99902344, "end": 330.28, "punctuated_word": "file,", "speaker": 0, "speaker_confidence": 0.7651367, "start": 329.96, "word": "file" }, { "confidence": 1, "end": 330.43997, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.7651367, "start": 330.28, "word": "we" }, { "confidence": 1, "end": 330.59998, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.7651367, "start": 330.43997, "word": "need" }, { "confidence": 1, "end": 330.75998, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7651367, "start": 330.59998, "word": "to" }, { "confidence": 1, "end": 330.91998, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.7651367, "start": 330.75998, "word": "make" }, { "confidence": 1, "end": 331.08, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.7651367, "start": 330.91998, "word": "it" }, { "confidence": 1, "end": 331.4, "punctuated_word": "known", "speaker": 0, "speaker_confidence": 0.7651367, "start": 331.08, "word": "known" }, { "confidence": 1, "end": 331.56, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7651367, "start": 331.4, "word": "to" }, { "confidence": 1, "end": 331.72, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7651367, "start": 331.56, "word": "that" }, { "confidence": 1, "end": 331.96, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.7651367, "start": 331.72, "word": "file" }, { "confidence": 1, "end": 332.46, "punctuated_word": "system.", "speaker": 0, "speaker_confidence": 0.7651367, "start": 331.96, "word": "system" }, { "confidence": 1, "end": 332.75998, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.6040039, "start": 332.59998, "word": "we" }, { "confidence": 1, "end": 332.91998, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.6040039, "start": 332.75998, "word": "can" }, { "confidence": 1, "end": 333.08, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.6040039, "start": 332.91998, "word": "do" }, { "confidence": 1, "end": 333.31998, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.6040039, "start": 333.08, "word": "that" }, { "confidence": 1, "end": 333.47998, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.6040039, "start": 333.31998, "word": "by" }, { "confidence": 1, "end": 333.8, "punctuated_word": "calling", "speaker": 0, "speaker_confidence": 0.6040039, "start": 333.47998, "word": "calling" }, { "confidence": 0.90478516, "end": 334.03998, "punctuated_word": "f", "speaker": 0, "speaker_confidence": 0.6040039, "start": 333.8, "word": "f" }, { "confidence": 0.9838867, "end": 334.335, "punctuated_word": "s", "speaker": 0, "speaker_confidence": 0.6040039, "start": 334.03998, "word": "s" }, { "confidence": 0.9941406, "end": 334.735, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.6040039, "start": 334.41498, "word": "or" }, { "confidence": 0.6381836, "end": 334.815, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.61328125, "start": 334.735, "word": "file" }, { "confidence": 1, "end": 335.315, "punctuated_word": "system", "speaker": 0, "speaker_confidence": 0.61328125, "start": 334.815, "word": "system" }, { "confidence": 0.92822266, "end": 336.01498, "punctuated_word": "along", "speaker": 0, "speaker_confidence": 0.61328125, "start": 335.69498, "word": "along" }, { "confidence": 1, "end": 336.095, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.61328125, "start": 336.01498, "word": "with" }, { "confidence": 1, "end": 336.175, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.61328125, "start": 336.095, "word": "the" }, { "confidence": 0.9951172, "end": 336.41498, "punctuated_word": "right", "speaker": 0, "speaker_confidence": 0.61328125, "start": 336.175, "word": "right" }, { "confidence": 0.99902344, "end": 336.655, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.61328125, "start": 336.41498, "word": "file" }, { "confidence": 0.9345703, "end": 337.155, "punctuated_word": "method,", "speaker": 0, "speaker_confidence": 0.61328125, "start": 336.655, "word": "method" }, { "confidence": 1, "end": 337.615, "punctuated_word": "along", "speaker": 0, "speaker_confidence": 0.61328125, "start": 337.375, "word": "along" }, { "confidence": 1, "end": 337.775, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.61328125, "start": 337.615, "word": "with" }, { "confidence": 1, "end": 337.935, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.61328125, "start": 337.775, "word": "the" }, { "confidence": 1, "end": 338.095, "punctuated_word": "name", "speaker": 0, "speaker_confidence": 0.61328125, "start": 337.935, "word": "name" }, { "confidence": 1, "end": 338.175, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.81396484, "start": 338.095, "word": "of" }, { "confidence": 1, "end": 338.255, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.81396484, "start": 338.175, "word": "the" }, { "confidence": 0.9440918, "end": 338.755, "punctuated_word": "file,", "speaker": 0, "speaker_confidence": 0.81396484, "start": 338.255, "word": "file" }, { "confidence": 1, "end": 339.055, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.81396484, "start": 338.975, "word": "and" }, { "confidence": 1, "end": 339.215, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.81396484, "start": 339.055, "word": "then" }, { "confidence": 0.99902344, "end": 339.29498, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.81396484, "start": 339.215, "word": "we" }, { "confidence": 0.96972656, "end": 339.615, "punctuated_word": "fetch", "speaker": 0, "speaker_confidence": 0.81396484, "start": 339.29498, "word": "fetch" }, { "confidence": 1, "end": 339.85498, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.81396484, "start": 339.615, "word": "the" }, { "confidence": 1, "end": 340.175, "punctuated_word": "actual", "speaker": 0, "speaker_confidence": 0.81396484, "start": 339.85498, "word": "actual" }, { "confidence": 1, "end": 340.495, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.81396484, "start": 340.175, "word": "video" }, { "confidence": 1, "end": 340.735, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.81396484, "start": 340.495, "word": "file" }, { "confidence": 1, "end": 340.895, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.81396484, "start": 340.735, "word": "that" }, { "confidence": 0.9995117, "end": 341.13498, "punctuated_word": "we've", "speaker": 0, "speaker_confidence": 0.81396484, "start": 340.895, "word": "we've" }, { "confidence": 1, "end": 341.615, "punctuated_word": "collected", "speaker": 0, "speaker_confidence": 0.81396484, "start": 341.13498, "word": "collected" }, { "confidence": 1, "end": 341.775, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.81396484, "start": 341.615, "word": "from" }, { "confidence": 1, "end": 341.935, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.81396484, "start": 341.775, "word": "the" }, { "confidence": 1, "end": 342.175, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.81396484, "start": 341.935, "word": "end" }, { "confidence": 1, "end": 342.675, "punctuated_word": "user.", "speaker": 0, "speaker_confidence": 0.81396484, "start": 342.175, "word": "user" }, { "confidence": 1, "end": 342.95, "punctuated_word": "What", "speaker": 0, "speaker_confidence": 0.81396484, "start": 342.79, "word": "what" }, { "confidence": 1, "end": 343.19, "punctuated_word": "we've", "speaker": 0, "speaker_confidence": 0.81396484, "start": 342.95, "word": "we've" }, { "confidence": 1, "end": 343.43002, "punctuated_word": "done", "speaker": 0, "speaker_confidence": 0.81396484, "start": 343.19, "word": "done" }, { "confidence": 1, "end": 343.67, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.81396484, "start": 343.43002, "word": "is" }, { "confidence": 0.9863281, "end": 343.91, "punctuated_word": "taken", "speaker": 0, "speaker_confidence": 0.81396484, "start": 343.67, "word": "taken" }, { "confidence": 0.80078125, "end": 343.99002, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.81396484, "start": 343.91, "word": "the" }, { "confidence": 1, "end": 344.31, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.81396484, "start": 343.99002, "word": "video" }, { "confidence": 1, "end": 344.79, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.81396484, "start": 344.31, "word": "file" }, { "confidence": 0.99316406, "end": 345.03, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.81396484, "start": 344.79, "word": "and" }, { "confidence": 0.88720703, "end": 345.27002, "punctuated_word": "saved", "speaker": 0, "speaker_confidence": 0.81396484, "start": 345.03, "word": "saved" }, { "confidence": 1, "end": 345.35, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.81396484, "start": 345.27002, "word": "it" }, { "confidence": 1, "end": 345.43002, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.70947266, "start": 345.35, "word": "to" }, { "confidence": 1, "end": 345.51, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.70947266, "start": 345.43002, "word": "a" }, { "confidence": 1, "end": 345.75, "punctuated_word": "place", "speaker": 0, "speaker_confidence": 0.70947266, "start": 345.51, "word": "place" }, { "confidence": 0.99609375, "end": 345.99002, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.70947266, "start": 345.75, "word": "in" }, { "confidence": 1, "end": 346.47, "punctuated_word": "memory", "speaker": 0, "speaker_confidence": 0.70947266, "start": 345.99002, "word": "memory" }, { "confidence": 0.96972656, "end": 346.79, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.70947266, "start": 346.47, "word": "as" }, { "confidence": 0.98828125, "end": 347.19, "punctuated_word": "test", "speaker": 0, "speaker_confidence": 0.70947266, "start": 346.79, "word": "test" }, { "confidence": 0.77246094, "end": 347.43002, "punctuated_word": "dot", "speaker": 0, "speaker_confidence": 0.70947266, "start": 347.19, "word": "dot" }, { "confidence": 0.34838867, "end": 347.67, "punctuated_word": "m", "speaker": 0, "speaker_confidence": 0.70947266, "start": 347.43002, "word": "m" }, { "confidence": 0.62060547, "end": 347.83002, "punctuated_word": "p", "speaker": 0, "speaker_confidence": 0.70947266, "start": 347.67, "word": "p" }, { "confidence": 0.68725586, "end": 348.33002, "punctuated_word": "4.", "speaker": 0, "speaker_confidence": 0.70947266, "start": 347.83002, "word": "4" }, { "confidence": 0.4724121, "end": 348.63, "punctuated_word": "They", "speaker": 0, "speaker_confidence": 0.70947266, "start": 348.47, "word": "they" }, { "confidence": 1, "end": 348.71002, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.70947266, "start": 348.63, "word": "can" }, { "confidence": 0.9980469, "end": 348.87, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.6616211, "start": 348.71002, "word": "be" }, { "confidence": 1, "end": 349.11002, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 0.6616211, "start": 348.87, "word": "now" }, { "confidence": 0.99902344, "end": 349.43002, "punctuated_word": "accessed", "speaker": 0, "speaker_confidence": 0.6616211, "start": 349.11002, "word": "accessed" }, { "confidence": 1, "end": 349.67, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.6616211, "start": 349.43002, "word": "by" }, { "confidence": 0.75634766, "end": 350.17, "punctuated_word": "WebAssembly", "speaker": 0, "speaker_confidence": 0.6616211, "start": 349.67, "word": "webassembly" }, { "confidence": 1, "end": 350.55002, "punctuated_word": "while", "speaker": 0, "speaker_confidence": 0.6616211, "start": 350.39, "word": "while" }, { "confidence": 0.9995117, "end": 350.71002, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.6616211, "start": 350.55002, "word": "it's" }, { "confidence": 0.9980469, "end": 350.87, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.72802734, "start": 350.71002, "word": "in" }, { "confidence": 0.7585449, "end": 351.365, "punctuated_word": "memory,", "speaker": 0, "speaker_confidence": 0.72802734, "start": 350.87, "word": "memory" }, { "confidence": 1, "end": 351.685, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.72802734, "start": 351.525, "word": "and" }, { "confidence": 1, "end": 351.76498, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.72802734, "start": 351.685, "word": "it" }, { "confidence": 1, "end": 351.925, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.72802734, "start": 351.76498, "word": "only" }, { "confidence": 1, "end": 352.245, "punctuated_word": "stays", "speaker": 0, "speaker_confidence": 0.72802734, "start": 351.925, "word": "stays" }, { "confidence": 0.99609375, "end": 352.405, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.72802734, "start": 352.245, "word": "in" }, { "confidence": 1, "end": 352.72498, "punctuated_word": "memory", "speaker": 0, "speaker_confidence": 0.72802734, "start": 352.405, "word": "memory" }, { "confidence": 0.99902344, "end": 353.04498, "punctuated_word": "until", "speaker": 0, "speaker_confidence": 0.72802734, "start": 352.72498, "word": "until" }, { "confidence": 1, "end": 353.205, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.72802734, "start": 353.04498, "word": "the" }, { "confidence": 1, "end": 353.60498, "punctuated_word": "browser", "speaker": 0, "speaker_confidence": 0.72802734, "start": 353.205, "word": "browser" }, { "confidence": 1, "end": 353.845, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.72802734, "start": 353.60498, "word": "is" }, { "confidence": 1, "end": 354.345, "punctuated_word": "refreshed.", "speaker": 0, "speaker_confidence": 0.72802734, "start": 353.845, "word": "refreshed" }, { "confidence": 1, "end": 354.805, "punctuated_word": "From", "speaker": 0, "speaker_confidence": 0.77197266, "start": 354.645, "word": "from" }, { "confidence": 0.9741211, "end": 354.965, "punctuated_word": "there,", "speaker": 0, "speaker_confidence": 0.77197266, "start": 354.805, "word": "there" }, { "confidence": 1, "end": 355.125, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.77197266, "start": 354.965, "word": "we" }, { "confidence": 1, "end": 355.285, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.77197266, "start": 355.125, "word": "can" }, { "confidence": 1, "end": 355.525, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.77197266, "start": 355.285, "word": "run" }, { "confidence": 1, "end": 355.685, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.77197266, "start": 355.525, "word": "an" }, { "confidence": 0.99902344, "end": 356.005, "punctuated_word": "actual", "speaker": 0, "speaker_confidence": 0.77197266, "start": 355.685, "word": "actual" }, { "confidence": 0.5209961, "end": 356.245, "punctuated_word": "f", "speaker": 0, "speaker_confidence": 0.77197266, "start": 356.005, "word": "f" }, { "confidence": 0.9941406, "end": 356.405, "punctuated_word": "f", "speaker": 0, "speaker_confidence": 0.77197266, "start": 356.245, "word": "f" }, { "confidence": 0.8720703, "end": 356.805, "punctuated_word": "mpeg", "speaker": 0, "speaker_confidence": 0.77197266, "start": 356.405, "word": "mpeg" }, { "confidence": 0.9980469, "end": 357.305, "punctuated_word": "command.", "speaker": 0, "speaker_confidence": 0.77197266, "start": 356.805, "word": "command" }, { "confidence": 0.99902344, "end": 357.525, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.77197266, "start": 357.365, "word": "if" }, { "confidence": 1, "end": 357.685, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.77197266, "start": 357.525, "word": "you're" }, { "confidence": 1, "end": 357.845, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.77197266, "start": 357.685, "word": "not" }, { "confidence": 1, "end": 358.085, "punctuated_word": "familiar", "speaker": 0, "speaker_confidence": 0.77197266, "start": 357.845, "word": "familiar" }, { "confidence": 0.99121094, "end": 358.44, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.77197266, "start": 358.085, "word": "with" }, { "confidence": 0.98999023, "end": 358.92, "punctuated_word": "utility.", "speaker": 0, "speaker_confidence": 0.77197266, "start": 358.6, "word": "utility" }, { "confidence": 1, "end": 359.24, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.77197266, "start": 358.92, "word": "it's" }, { "confidence": 1, "end": 359.4, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.77197266, "start": 359.24, "word": "a" }, { "confidence": 0.99902344, "end": 359.64, "punctuated_word": "command", "speaker": 0, "speaker_confidence": 0.77197266, "start": 359.4, "word": "command" }, { "confidence": 1, "end": 359.88, "punctuated_word": "line", "speaker": 0, "speaker_confidence": 0.77197266, "start": 359.64, "word": "line" }, { "confidence": 1, "end": 360.28, "punctuated_word": "tool", "speaker": 0, "speaker_confidence": 0.77197266, "start": 359.88, "word": "tool" }, { "confidence": 1, "end": 360.44, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.77197266, "start": 360.28, "word": "that" }, { "confidence": 1, "end": 360.6, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.77197266, "start": 360.44, "word": "can" }, { "confidence": 1, "end": 361.08002, "punctuated_word": "perform", "speaker": 0, "speaker_confidence": 0.77197266, "start": 360.6, "word": "perform" }, { "confidence": 1, "end": 361.16, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.7397461, "start": 361.08002, "word": "all" }, { "confidence": 1, "end": 361.4, "punctuated_word": "kinds", "speaker": 0, "speaker_confidence": 0.7397461, "start": 361.16, "word": "kinds" }, { "confidence": 1, "end": 361.56, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7397461, "start": 361.4, "word": "of" }, { "confidence": 1, "end": 361.96, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.7397461, "start": 361.56, "word": "video" }, { "confidence": 1, "end": 362.28, "punctuated_word": "editing", "speaker": 0, "speaker_confidence": 0.7397461, "start": 361.96, "word": "editing" }, { "confidence": 1, "end": 362.78, "punctuated_word": "jobs.", "speaker": 0, "speaker_confidence": 0.7397461, "start": 362.28, "word": "jobs" }, { "confidence": 1, "end": 363.16, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.7397461, "start": 363, "word": "it's" }, { "confidence": 1, "end": 363.32, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.7397461, "start": 363.16, "word": "been" }, { "confidence": 1, "end": 363.56, "punctuated_word": "around", "speaker": 0, "speaker_confidence": 0.7397461, "start": 363.32, "word": "around" }, { "confidence": 1, "end": 363.8, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.7397461, "start": 363.56, "word": "for" }, { "confidence": 1, "end": 363.88, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7397461, "start": 363.8, "word": "a" }, { "confidence": 1, "end": 364.12, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 0.7397461, "start": 363.88, "word": "very" }, { "confidence": 1, "end": 364.28, "punctuated_word": "long", "speaker": 0, "speaker_confidence": 0.7397461, "start": 364.12, "word": "long" }, { "confidence": 1, "end": 364.6, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.7397461, "start": 364.28, "word": "time" }, { "confidence": 0.5239258, "end": 364.84, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7397461, "start": 364.6, "word": "and" }, { "confidence": 1, "end": 364.92, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.63671875, "start": 364.84, "word": "you" }, { "confidence": 1, "end": 365.08002, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.63671875, "start": 364.92, "word": "can" }, { "confidence": 1, "end": 365.24, "punctuated_word": "check", "speaker": 0, "speaker_confidence": 0.63671875, "start": 365.08002, "word": "check" }, { "confidence": 1, "end": 365.4, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.63671875, "start": 365.24, "word": "out" }, { "confidence": 1, "end": 365.48, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.63671875, "start": 365.4, "word": "the" }, { "confidence": 1, "end": 365.8, "punctuated_word": "full", "speaker": 0, "speaker_confidence": 0.63671875, "start": 365.48, "word": "full" }, { "confidence": 1, "end": 366.3, "punctuated_word": "documentation", "speaker": 0, "speaker_confidence": 0.63671875, "start": 365.8, "word": "documentation" }, { "confidence": 1, "end": 366.52, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.63671875, "start": 366.36002, "word": "to" }, { "confidence": 1, "end": 366.68, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.63671875, "start": 366.52, "word": "get" }, { "confidence": 1, "end": 366.84, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.63671875, "start": 366.68, "word": "an" }, { "confidence": 1, "end": 367.16, "punctuated_word": "idea", "speaker": 0, "speaker_confidence": 0.63671875, "start": 366.84, "word": "idea" }, { "confidence": 1, "end": 367.32, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.63671875, "start": 367.16, "word": "of" }, { "confidence": 1, "end": 367.48, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.63671875, "start": 367.32, "word": "what" }, { "confidence": 1, "end": 367.64, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.63671875, "start": 367.48, "word": "it" }, { "confidence": 1, "end": 367.72, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.63671875, "start": 367.64, "word": "can" }, { "confidence": 1, "end": 368.22, "punctuated_word": "do.", "speaker": 0, "speaker_confidence": 0.63671875, "start": 367.72, "word": "do" }, { "confidence": 1, "end": 368.565, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.63671875, "start": 368.405, "word": "we" }, { "confidence": 1, "end": 368.645, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.63671875, "start": 368.565, "word": "can" }, { "confidence": 1, "end": 368.725, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.82373047, "start": 368.645, "word": "run" }, { "confidence": 1, "end": 368.885, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.82373047, "start": 368.725, "word": "the" }, { "confidence": 1, "end": 369.285, "punctuated_word": "command", "speaker": 0, "speaker_confidence": 0.82373047, "start": 368.885, "word": "command" }, { "confidence": 1, "end": 369.525, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.82373047, "start": 369.285, "word": "by" }, { "confidence": 1, "end": 369.845, "punctuated_word": "simply", "speaker": 0, "speaker_confidence": 0.82373047, "start": 369.525, "word": "simply" }, { "confidence": 1, "end": 370.245, "punctuated_word": "passing", "speaker": 0, "speaker_confidence": 0.82373047, "start": 369.845, "word": "passing" }, { "confidence": 0.9921875, "end": 370.725, "punctuated_word": "arguments", "speaker": 0, "speaker_confidence": 0.82373047, "start": 370.245, "word": "arguments" }, { "confidence": 1, "end": 370.885, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.82373047, "start": 370.725, "word": "that" }, { "confidence": 1, "end": 371.04498, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.82373047, "start": 370.885, "word": "we" }, { "confidence": 1, "end": 371.205, "punctuated_word": "would", "speaker": 0, "speaker_confidence": 0.82373047, "start": 371.04498, "word": "would" }, { "confidence": 1, "end": 371.60498, "punctuated_word": "normally", "speaker": 0, "speaker_confidence": 0.82373047, "start": 371.205, "word": "normally" }, { "confidence": 0.99902344, "end": 371.845, "punctuated_word": "pass", "speaker": 0, "speaker_confidence": 0.82373047, "start": 371.60498, "word": "pass" }, { "confidence": 0.89746094, "end": 371.925, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.82373047, "start": 371.845, "word": "to" }, { "confidence": 1, "end": 372.085, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.82373047, "start": 371.925, "word": "the" }, { "confidence": 1, "end": 372.32498, "punctuated_word": "command", "speaker": 0, "speaker_confidence": 0.82373047, "start": 372.085, "word": "command" }, { "confidence": 0.9995117, "end": 372.82498, "punctuated_word": "line.", "speaker": 0, "speaker_confidence": 0.82373047, "start": 372.32498, "word": "line" }, { "confidence": 0.9980469, "end": 373.205, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.82373047, "start": 373.04498, "word": "the" }, { "confidence": 0.88427734, "end": 373.445, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.82373047, "start": 373.205, "word": "i" }, { "confidence": 0.99609375, "end": 373.845, "punctuated_word": "flag", "speaker": 0, "speaker_confidence": 0.82373047, "start": 373.445, "word": "flag" }, { "confidence": 1, "end": 374.005, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.82373047, "start": 373.845, "word": "is" }, { "confidence": 1, "end": 374.165, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.82373047, "start": 374.005, "word": "for" }, { "confidence": 1, "end": 374.405, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.82373047, "start": 374.165, "word": "the" }, { "confidence": 1, "end": 374.725, "punctuated_word": "input", "speaker": 0, "speaker_confidence": 0.82373047, "start": 374.405, "word": "input" }, { "confidence": 0.8510742, "end": 375.225, "punctuated_word": "file.", "speaker": 0, "speaker_confidence": 0.82373047, "start": 374.725, "word": "file" }, { "confidence": 0.9941406, "end": 375.56, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.82373047, "start": 375.4, "word": "the" }, { "confidence": 0.9223633, "end": 375.80002, "punctuated_word": "t", "speaker": 0, "speaker_confidence": 0.82373047, "start": 375.56, "word": "t" }, { "confidence": 0.9863281, "end": 376.30002, "punctuated_word": "flag", "speaker": 0, "speaker_confidence": 0.82373047, "start": 375.80002, "word": "flag" }, { "confidence": 0.9980469, "end": 376.6, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.82373047, "start": 376.36002, "word": "is" }, { "confidence": 1, "end": 376.76, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.82373047, "start": 376.6, "word": "for" }, { "confidence": 1, "end": 376.92, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.82373047, "start": 376.76, "word": "the" }, { "confidence": 1, "end": 377.16, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.82373047, "start": 376.92, "word": "time" }, { "confidence": 1, "end": 377.32, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.82373047, "start": 377.16, "word": "that" }, { "confidence": 1, "end": 377.48, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.82373047, "start": 377.32, "word": "we" }, { "confidence": 1, "end": 377.72, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.82373047, "start": 377.48, "word": "want" }, { "confidence": 1, "end": 377.96002, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.82373047, "start": 377.72, "word": "the" }, { "confidence": 1, "end": 378.2, "punctuated_word": "length", "speaker": 0, "speaker_confidence": 0.82373047, "start": 377.96002, "word": "length" }, { "confidence": 1, "end": 378.28, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.82373047, "start": 378.2, "word": "of" }, { "confidence": 1, "end": 378.44, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.82373047, "start": 378.28, "word": "the" }, { "confidence": 1, "end": 378.76, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.82373047, "start": 378.44, "word": "video" }, { "confidence": 1, "end": 378.92, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.82373047, "start": 378.76, "word": "to" }, { "confidence": 0.99658203, "end": 379.42, "punctuated_word": "be.", "speaker": 0, "speaker_confidence": 0.82373047, "start": 378.92, "word": "be" }, { "confidence": 1, "end": 379.56, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.82373047, "start": 379.48, "word": "we" }, { "confidence": 1, "end": 379.80002, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.82373047, "start": 379.56, "word": "can" }, { "confidence": 1, "end": 380.12, "punctuated_word": "offset", "speaker": 0, "speaker_confidence": 0.82373047, "start": 379.80002, "word": "offset" }, { "confidence": 1, "end": 380.36002, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.82373047, "start": 380.12, "word": "it" }, { "confidence": 1, "end": 380.52002, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.82373047, "start": 380.36002, "word": "with" }, { "confidence": 1, "end": 380.92, "punctuated_word": "starting", "speaker": 0, "speaker_confidence": 0.82373047, "start": 380.52002, "word": "starting" }, { "confidence": 0.8725586, "end": 381.42, "punctuated_word": "seconds,", "speaker": 0, "speaker_confidence": 0.82373047, "start": 380.92, "word": "seconds" }, { "confidence": 0.9013672, "end": 381.88, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.82373047, "start": 381.64, "word": "then" }, { "confidence": 1, "end": 381.96002, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.82373047, "start": 381.88, "word": "we" }, { "confidence": 0.99609375, "end": 382.12, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.82373047, "start": 381.96002, "word": "use" }, { "confidence": 1, "end": 382.28, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.66259766, "start": 382.12, "word": "the" }, { "confidence": 0.9790039, "end": 382.52002, "punctuated_word": "f", "speaker": 0, "speaker_confidence": 0.66259766, "start": 382.28, "word": "f" }, { "confidence": 0.9838867, "end": 382.92, "punctuated_word": "flag", "speaker": 0, "speaker_confidence": 0.66259766, "start": 382.52002, "word": "flag" }, { "confidence": 1, "end": 383.08002, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.66259766, "start": 382.92, "word": "to" }, { "confidence": 1, "end": 383.4, "punctuated_word": "encode", "speaker": 0, "speaker_confidence": 0.66259766, "start": 383.08002, "word": "encode" }, { "confidence": 1, "end": 383.56, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.66259766, "start": 383.4, "word": "it" }, { "confidence": 1, "end": 383.80002, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.66259766, "start": 383.56, "word": "as" }, { "confidence": 1, "end": 383.88, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.66259766, "start": 383.80002, "word": "a" }, { "confidence": 0.6855469, "end": 384.2, "punctuated_word": "GIF", "speaker": 0, "speaker_confidence": 0.66259766, "start": 383.88, "word": "gif" }, { "confidence": 0.99853516, "end": 384.7, "punctuated_word": "file.", "speaker": 0, "speaker_confidence": 0.66259766, "start": 384.2, "word": "file" }, { "confidence": 1, "end": 385.035, "punctuated_word": "When", "speaker": 0, "speaker_confidence": 0.6386719, "start": 384.875, "word": "when" }, { "confidence": 1, "end": 385.195, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.6386719, "start": 385.035, "word": "that's" }, { "confidence": 0.99902344, "end": 385.67502, "punctuated_word": "complete,", "speaker": 0, "speaker_confidence": 0.6386719, "start": 385.195, "word": "complete" }, { "confidence": 1, "end": 385.83502, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.6386719, "start": 385.67502, "word": "it" }, { "confidence": 1, "end": 385.99503, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.6386719, "start": 385.83502, "word": "will" }, { "confidence": 1, "end": 386.23502, "punctuated_word": "write", "speaker": 0, "speaker_confidence": 0.6386719, "start": 385.99503, "word": "write" }, { "confidence": 1, "end": 386.315, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6386719, "start": 386.23502, "word": "the" }, { "confidence": 0.99902344, "end": 386.71503, "punctuated_word": "result", "speaker": 0, "speaker_confidence": 0.6386719, "start": 386.315, "word": "result" }, { "confidence": 1, "end": 386.875, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6386719, "start": 386.71503, "word": "to" }, { "confidence": 0.8720703, "end": 387.375, "punctuated_word": "memory,", "speaker": 0, "speaker_confidence": 0.6386719, "start": 386.875, "word": "memory" }, { "confidence": 1, "end": 387.595, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6386719, "start": 387.43503, "word": "and" }, { "confidence": 1, "end": 387.755, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.6386719, "start": 387.595, "word": "then" }, { "confidence": 1, "end": 387.83502, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.8486328, "start": 387.755, "word": "we" }, { "confidence": 1, "end": 388.075, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.8486328, "start": 387.83502, "word": "can" }, { "confidence": 1, "end": 388.475, "punctuated_word": "access", "speaker": 0, "speaker_confidence": 0.8486328, "start": 388.075, "word": "access" }, { "confidence": 1, "end": 388.795, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8486328, "start": 388.475, "word": "it" }, { "confidence": 0.9980469, "end": 388.95502, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.8486328, "start": 388.795, "word": "by" }, { "confidence": 0.5883789, "end": 389.27502, "punctuated_word": "again", "speaker": 0, "speaker_confidence": 0.8486328, "start": 388.95502, "word": "again" }, { "confidence": 0.98535156, "end": 389.515, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.8486328, "start": 389.27502, "word": "using" }, { "confidence": 0.99902344, "end": 389.67502, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8486328, "start": 389.515, "word": "the" }, { "confidence": 0.99902344, "end": 389.99503, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.8486328, "start": 389.67502, "word": "file" }, { "confidence": 1, "end": 390.39502, "punctuated_word": "system", "speaker": 0, "speaker_confidence": 0.8486328, "start": 389.99503, "word": "system" }, { "confidence": 1, "end": 390.875, "punctuated_word": "command", "speaker": 0, "speaker_confidence": 0.8486328, "start": 390.39502, "word": "command" }, { "confidence": 0.50634766, "end": 391.11502, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.8486328, "start": 390.875, "word": "this" }, { "confidence": 1, "end": 391.355, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.8486328, "start": 391.11502, "word": "time" }, { "confidence": 0.9970703, "end": 391.515, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8486328, "start": 391.355, "word": "to" }, { "confidence": 0.9980469, "end": 391.755, "punctuated_word": "read", "speaker": 0, "speaker_confidence": 0.8486328, "start": 391.515, "word": "read" }, { "confidence": 1, "end": 391.915, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8486328, "start": 391.755, "word": "a" }, { "confidence": 1, "end": 392.23502, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.8486328, "start": 391.915, "word": "file" }, { "confidence": 0.99902344, "end": 392.635, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 0.8486328, "start": 392.23502, "word": "called" }, { "confidence": 0.98828125, "end": 392.95502, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.8486328, "start": 392.635, "word": "out" }, { "confidence": 0.63720703, "end": 393.195, "punctuated_word": "dot", "speaker": 0, "speaker_confidence": 0.8486328, "start": 392.95502, "word": "dot" }, { "confidence": 0.7241211, "end": 393.695, "punctuated_word": "gif.", "speaker": 0, "speaker_confidence": 0.8486328, "start": 393.195, "word": "gif" }, { "confidence": 1, "end": 394.24002, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.8486328, "start": 394, "word": "we" }, { "confidence": 0.99902344, "end": 394.40002, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.8486328, "start": 394.24002, "word": "then" }, { "confidence": 1, "end": 394.48, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.8486328, "start": 394.40002, "word": "need" }, { "confidence": 1, "end": 394.72, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8486328, "start": 394.48, "word": "to" }, { "confidence": 1, "end": 394.96002, "punctuated_word": "convert", "speaker": 0, "speaker_confidence": 0.8486328, "start": 394.72, "word": "convert" }, { "confidence": 1, "end": 395.12, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8486328, "start": 394.96002, "word": "the" }, { "confidence": 1, "end": 395.36002, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.8486328, "start": 395.12, "word": "file" }, { "confidence": 1, "end": 395.68002, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.8486328, "start": 395.36002, "word": "data" }, { "confidence": 1, "end": 395.92, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.8486328, "start": 395.68002, "word": "into" }, { "confidence": 1, "end": 396.08002, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8486328, "start": 395.92, "word": "a" }, { "confidence": 0.99902344, "end": 396.40002, "punctuated_word": "URL", "speaker": 0, "speaker_confidence": 0.8486328, "start": 396.08002, "word": "url" }, { "confidence": 0.99902344, "end": 396.64, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8486328, "start": 396.40002, "word": "that" }, { "confidence": 1, "end": 396.80002, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.8486328, "start": 396.64, "word": "can" }, { "confidence": 1, "end": 396.88, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.54003906, "start": 396.80002, "word": "be" }, { "confidence": 1, "end": 397.12, "punctuated_word": "used", "speaker": 0, "speaker_confidence": 0.54003906, "start": 396.88, "word": "used" }, { "confidence": 1, "end": 397.2, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.54003906, "start": 397.12, "word": "in" }, { "confidence": 0.99902344, "end": 397.36002, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.54003906, "start": 397.2, "word": "the" }, { "confidence": 1, "end": 397.86002, "punctuated_word": "browser.", "speaker": 0, "speaker_confidence": 0.54003906, "start": 397.36002, "word": "browser" }, { "confidence": 1, "end": 398.40002, "punctuated_word": "Once", "speaker": 0, "speaker_confidence": 0.8105469, "start": 398.24002, "word": "once" }, { "confidence": 0.9995117, "end": 398.80002, "punctuated_word": "again,", "speaker": 0, "speaker_confidence": 0.8105469, "start": 398.40002, "word": "again" }, { "confidence": 0.9946289, "end": 398.96002, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.8105469, "start": 398.80002, "word": "we'll" }, { "confidence": 1, "end": 399.28, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.8105469, "start": 398.96002, "word": "use" }, { "confidence": 0.9428711, "end": 399.78, "punctuated_word": "URL", "speaker": 0, "speaker_confidence": 0.8105469, "start": 399.28, "word": "url" }, { "confidence": 0.94384766, "end": 400.32, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.8105469, "start": 399.92, "word": "create" }, { "confidence": 0.9941406, "end": 400.80002, "punctuated_word": "object", "speaker": 0, "speaker_confidence": 0.8105469, "start": 400.32, "word": "object" }, { "confidence": 0.74731445, "end": 401.30002, "punctuated_word": "URL,", "speaker": 0, "speaker_confidence": 0.8105469, "start": 400.80002, "word": "url" }, { "confidence": 0.99902344, "end": 401.845, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8105469, "start": 401.685, "word": "and" }, { "confidence": 0.7133789, "end": 401.925, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.8105469, "start": 401.845, "word": "as" }, { "confidence": 0.9482422, "end": 402.165, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.8105469, "start": 401.925, "word": "its" }, { "confidence": 0.82666016, "end": 402.665, "punctuated_word": "argument,", "speaker": 0, "speaker_confidence": 0.8105469, "start": 402.165, "word": "argument" }, { "confidence": 0.6328125, "end": 403.125, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.8105469, "start": 402.88498, "word": "will" }, { "confidence": 1, "end": 403.365, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.8105469, "start": 403.125, "word": "create" }, { "confidence": 1, "end": 403.525, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8105469, "start": 403.365, "word": "a" }, { "confidence": 1, "end": 403.76498, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.8105469, "start": 403.525, "word": "new" }, { "confidence": 0.9951172, "end": 404.26498, "punctuated_word": "blob.", "speaker": 0, "speaker_confidence": 0.8105469, "start": 403.76498, "word": "blob" }, { "confidence": 0.9951172, "end": 404.725, "punctuated_word": "Blob", "speaker": 0, "speaker_confidence": 0.8105469, "start": 404.485, "word": "blob" }, { "confidence": 0.99902344, "end": 404.88498, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8105469, "start": 404.725, "word": "is" }, { "confidence": 0.9941406, "end": 405.04498, "punctuated_word": "kind", "speaker": 0, "speaker_confidence": 0.8105469, "start": 404.88498, "word": "kind" }, { "confidence": 1, "end": 405.125, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.94873047, "start": 405.04498, "word": "of" }, { "confidence": 0.99902344, "end": 405.285, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.94873047, "start": 405.125, "word": "a" }, { "confidence": 1, "end": 405.60498, "punctuated_word": "scary", "speaker": 0, "speaker_confidence": 0.94873047, "start": 405.285, "word": "scary" }, { "confidence": 0.95825195, "end": 406.005, "punctuated_word": "word,", "speaker": 0, "speaker_confidence": 0.94873047, "start": 405.60498, "word": "word" }, { "confidence": 1, "end": 406.165, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.94873047, "start": 406.005, "word": "but" }, { "confidence": 1, "end": 406.32498, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.94873047, "start": 406.165, "word": "it" }, { "confidence": 1, "end": 406.485, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.94873047, "start": 406.32498, "word": "just" }, { "confidence": 1, "end": 406.725, "punctuated_word": "means", "speaker": 0, "speaker_confidence": 0.94873047, "start": 406.485, "word": "means" }, { "confidence": 1, "end": 406.88498, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.94873047, "start": 406.725, "word": "a" }, { "confidence": 0.99316406, "end": 407.205, "punctuated_word": "raw", "speaker": 0, "speaker_confidence": 0.94873047, "start": 406.88498, "word": "raw" }, { "confidence": 0.91552734, "end": 407.685, "punctuated_word": "file,", "speaker": 0, "speaker_confidence": 0.94873047, "start": 407.205, "word": "file" }, { "confidence": 1, "end": 407.925, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.94873047, "start": 407.685, "word": "which" }, { "confidence": 0.8051758, "end": 408.005, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.94873047, "start": 407.925, "word": "in" }, { "confidence": 1, "end": 408.085, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.94873047, "start": 408.005, "word": "this" }, { "confidence": 1, "end": 408.405, "punctuated_word": "case", "speaker": 0, "speaker_confidence": 0.94873047, "start": 408.085, "word": "case" }, { "confidence": 0.9086914, "end": 408.565, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.94873047, "start": 408.405, "word": "is" }, { "confidence": 1, "end": 408.725, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.94873047, "start": 408.565, "word": "the" }, { "confidence": 1, "end": 409.205, "punctuated_word": "binary", "speaker": 0, "speaker_confidence": 0.94873047, "start": 408.725, "word": "binary" }, { "confidence": 0.99902344, "end": 409.365, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.94873047, "start": 409.205, "word": "that" }, { "confidence": 1, "end": 409.445, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.94873047, "start": 409.365, "word": "we" }, { "confidence": 0.99902344, "end": 409.685, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.94873047, "start": 409.445, "word": "can" }, { "confidence": 1, "end": 410.085, "punctuated_word": "access", "speaker": 0, "speaker_confidence": 0.94873047, "start": 409.685, "word": "access" }, { "confidence": 1, "end": 410.245, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.94873047, "start": 410.085, "word": "from" }, { "confidence": 1, "end": 410.485, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.94873047, "start": 410.245, "word": "the" }, { "confidence": 0.99902344, "end": 410.805, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.94873047, "start": 410.485, "word": "data" }, { "confidence": 1, "end": 411.305, "punctuated_word": "buffer.", "speaker": 0, "speaker_confidence": 0.94873047, "start": 410.805, "word": "buffer" }, { "confidence": 0.9995117, "end": 411.75, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.94873047, "start": 411.51, "word": "it's" }, { "confidence": 1, "end": 411.83002, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.94873047, "start": 411.75, "word": "also" }, { "confidence": 1, "end": 411.91, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.94873047, "start": 411.83002, "word": "a" }, { "confidence": 1, "end": 411.99002, "punctuated_word": "good", "speaker": 0, "speaker_confidence": 0.94873047, "start": 411.91, "word": "good" }, { "confidence": 1, "end": 412.39, "punctuated_word": "idea", "speaker": 0, "speaker_confidence": 0.94873047, "start": 411.99002, "word": "idea" }, { "confidence": 1, "end": 412.55002, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.94873047, "start": 412.39, "word": "to" }, { "confidence": 1, "end": 412.79, "punctuated_word": "pass", "speaker": 0, "speaker_confidence": 0.94873047, "start": 412.55002, "word": "pass" }, { "confidence": 1, "end": 412.95, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.94873047, "start": 412.79, "word": "a" }, { "confidence": 0.9111328, "end": 413.19, "punctuated_word": "second", "speaker": 0, "speaker_confidence": 0.94873047, "start": 412.95, "word": "second" }, { "confidence": 1, "end": 413.67, "punctuated_word": "argument", "speaker": 0, "speaker_confidence": 0.94873047, "start": 413.19, "word": "argument" }, { "confidence": 1, "end": 413.83002, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.94873047, "start": 413.67, "word": "with" }, { "confidence": 1, "end": 413.99002, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.94873047, "start": 413.83002, "word": "the" }, { "confidence": 0.7998047, "end": 414.31, "punctuated_word": "MIME", "speaker": 0, "speaker_confidence": 0.94873047, "start": 413.99002, "word": "mime" }, { "confidence": 0.9980469, "end": 414.55002, "punctuated_word": "type", "speaker": 0, "speaker_confidence": 0.94873047, "start": 414.31, "word": "type" }, { "confidence": 1, "end": 414.71002, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.94873047, "start": 414.55002, "word": "of" }, { "confidence": 1, "end": 414.87, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.94873047, "start": 414.71002, "word": "the" }, { "confidence": 0.9748535, "end": 415.35, "punctuated_word": "object,", "speaker": 0, "speaker_confidence": 0.94873047, "start": 414.87, "word": "object" }, { "confidence": 1, "end": 415.59, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.94873047, "start": 415.35, "word": "which" }, { "confidence": 0.8613281, "end": 415.67, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.94873047, "start": 415.59, "word": "in" }, { "confidence": 1, "end": 415.83002, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.94873047, "start": 415.67, "word": "this" }, { "confidence": 1, "end": 416.07, "punctuated_word": "case", "speaker": 0, "speaker_confidence": 0.94873047, "start": 415.83002, "word": "case" }, { "confidence": 0.95410156, "end": 416.23, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.94873047, "start": 416.07, "word": "is" }, { "confidence": 1, "end": 416.39, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.94873047, "start": 416.23, "word": "a" }, { "confidence": 0.9291992, "end": 416.79, "punctuated_word": "GIF", "speaker": 0, "speaker_confidence": 0.94873047, "start": 416.39, "word": "gif" }, { "confidence": 0.9916992, "end": 417.29, "punctuated_word": "image.", "speaker": 0, "speaker_confidence": 0.94873047, "start": 416.79, "word": "image" }, { "confidence": 0.99902344, "end": 417.83002, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.94873047, "start": 417.59, "word": "and" }, { "confidence": 0.9930013, "end": 418.23, "punctuated_word": "lastly,", "speaker": 0, "speaker_confidence": 0.94873047, "start": 417.83002, "word": "lastly" }, { "confidence": 1, "end": 418.31, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.94873047, "start": 418.23, "word": "we" }, { "confidence": 1, "end": 418.55002, "punctuated_word": "take", "speaker": 0, "speaker_confidence": 0.94873047, "start": 418.31, "word": "take" }, { "confidence": 0.99902344, "end": 418.71002, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.94873047, "start": 418.55002, "word": "that" }, { "confidence": 0.98535156, "end": 419.21002, "punctuated_word": "URL", "speaker": 0, "speaker_confidence": 0.94873047, "start": 418.71002, "word": "url" }, { "confidence": 0.99609375, "end": 419.51, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.94873047, "start": 419.27002, "word": "and" }, { "confidence": 1, "end": 419.83002, "punctuated_word": "update", "speaker": 0, "speaker_confidence": 0.94873047, "start": 419.51, "word": "update" }, { "confidence": 1, "end": 419.99002, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.94873047, "start": 419.83002, "word": "the" }, { "confidence": 1, "end": 420.23, "punctuated_word": "state", "speaker": 0, "speaker_confidence": 0.94873047, "start": 419.99002, "word": "state" }, { "confidence": 1, "end": 420.39, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.94873047, "start": 420.23, "word": "of" }, { "confidence": 1, "end": 420.47, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5917969, "start": 420.39, "word": "the" }, { "confidence": 0.9995117, "end": 420.97, "punctuated_word": "component.", "speaker": 0, "speaker_confidence": 0.5917969, "start": 420.47, "word": "component" }, { "confidence": 1, "end": 421.64502, "punctuated_word": "From", "speaker": 0, "speaker_confidence": 0.5917969, "start": 421.405, "word": "from" }, { "confidence": 0.9941406, "end": 421.885, "punctuated_word": "there,", "speaker": 0, "speaker_confidence": 0.5917969, "start": 421.64502, "word": "there" }, { "confidence": 1, "end": 422.045, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.5917969, "start": 421.885, "word": "we" }, { "confidence": 1, "end": 422.285, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.5917969, "start": 422.045, "word": "just" }, { "confidence": 1, "end": 422.445, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.5917969, "start": 422.285, "word": "have" }, { "confidence": 1, "end": 422.525, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.4814453, "start": 422.445, "word": "a" }, { "confidence": 1, "end": 422.765, "punctuated_word": "couple", "speaker": 0, "speaker_confidence": 0.4814453, "start": 422.525, "word": "couple" }, { "confidence": 1, "end": 422.92502, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.4814453, "start": 422.765, "word": "of" }, { "confidence": 1, "end": 423.245, "punctuated_word": "simple", "speaker": 0, "speaker_confidence": 0.4814453, "start": 422.92502, "word": "simple" }, { "confidence": 1, "end": 423.565, "punctuated_word": "updates", "speaker": 0, "speaker_confidence": 0.4814453, "start": 423.245, "word": "updates" }, { "confidence": 1, "end": 423.725, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.4814453, "start": 423.565, "word": "to" }, { "confidence": 1, "end": 423.80502, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.7788086, "start": 423.725, "word": "make" }, { "confidence": 0.99902344, "end": 423.965, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7788086, "start": 423.80502, "word": "to" }, { "confidence": 1, "end": 424.125, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7788086, "start": 423.965, "word": "the" }, { "confidence": 0.9682617, "end": 424.625, "punctuated_word": "UI.", "speaker": 0, "speaker_confidence": 0.7788086, "start": 424.125, "word": "ui" }, { "confidence": 1, "end": 425.165, "punctuated_word": "We'll", "speaker": 0, "speaker_confidence": 0.7788086, "start": 424.92502, "word": "we'll" }, { "confidence": 1, "end": 425.245, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.7788086, "start": 425.165, "word": "go" }, { "confidence": 1, "end": 425.48502, "punctuated_word": "down", "speaker": 0, "speaker_confidence": 0.7788086, "start": 425.245, "word": "down" }, { "confidence": 1, "end": 425.885, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0.7788086, "start": 425.48502, "word": "here" }, { "confidence": 0.9970703, "end": 426.045, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7788086, "start": 425.885, "word": "and" }, { "confidence": 0.99902344, "end": 426.20502, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.7788086, "start": 426.045, "word": "add" }, { "confidence": 1, "end": 426.285, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7788086, "start": 426.20502, "word": "a" }, { "confidence": 1, "end": 426.785, "punctuated_word": "button", "speaker": 0, "speaker_confidence": 0.7788086, "start": 426.285, "word": "button" }, { "confidence": 0.97265625, "end": 427.165, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7788086, "start": 426.92502, "word": "that" }, { "confidence": 0.8276367, "end": 427.405, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.7788086, "start": 427.165, "word": "when" }, { "confidence": 0.99902344, "end": 427.80502, "punctuated_word": "clicked", "speaker": 0, "speaker_confidence": 0.7788086, "start": 427.405, "word": "clicked" }, { "confidence": 0.7373047, "end": 428.045, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.7788086, "start": 427.80502, "word": "will" }, { "confidence": 1, "end": 428.285, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.7788086, "start": 428.045, "word": "run" }, { "confidence": 0.53759766, "end": 428.525, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7788086, "start": 428.285, "word": "the" }, { "confidence": 0.9980469, "end": 428.845, "punctuated_word": "convert", "speaker": 0, "speaker_confidence": 0.7788086, "start": 428.525, "word": "convert" }, { "confidence": 1, "end": 429.005, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7788086, "start": 428.845, "word": "to" }, { "confidence": 0.8959961, "end": 429.165, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.7788086, "start": 429.005, "word": "get" }, { "confidence": 0.9980469, "end": 429.665, "punctuated_word": "function", "speaker": 0, "speaker_confidence": 0.7788086, "start": 429.165, "word": "function" }, { "confidence": 1, "end": 429.90997, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6772461, "start": 429.83, "word": "and" }, { "confidence": 1, "end": 429.99, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.6772461, "start": 429.90997, "word": "then" }, { "confidence": 0.99194336, "end": 430.22998, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.6772461, "start": 429.99, "word": "we'll" }, { "confidence": 1, "end": 430.31, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.6772461, "start": 430.22998, "word": "add" }, { "confidence": 1, "end": 430.47, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.6772461, "start": 430.31, "word": "an" }, { "confidence": 1, "end": 430.87, "punctuated_word": "image", "speaker": 0, "speaker_confidence": 0.6772461, "start": 430.47, "word": "image" }, { "confidence": 1, "end": 431.18997, "punctuated_word": "tag", "speaker": 0, "speaker_confidence": 0.6772461, "start": 430.87, "word": "tag" }, { "confidence": 0.99658203, "end": 431.50998, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.6772461, "start": 431.18997, "word": "that's" }, { "confidence": 1, "end": 431.83, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.6772461, "start": 431.50998, "word": "only" }, { "confidence": 1, "end": 432.15, "punctuated_word": "displayed", "speaker": 0, "speaker_confidence": 0.6772461, "start": 431.83, "word": "displayed" }, { "confidence": 0.99902344, "end": 432.38998, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.6772461, "start": 432.15, "word": "when" }, { "confidence": 1, "end": 432.47, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.6772461, "start": 432.38998, "word": "we" }, { "confidence": 1, "end": 432.62997, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.6772461, "start": 432.47, "word": "have" }, { "confidence": 1, "end": 432.78998, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6772461, "start": 432.62997, "word": "the" }, { "confidence": 0.9267578, "end": 433.03, "punctuated_word": "GIF", "speaker": 0, "speaker_confidence": 0.6772461, "start": 432.78998, "word": "gif" }, { "confidence": 0.95458984, "end": 433.53, "punctuated_word": "URL.", "speaker": 0, "speaker_confidence": 0.6772461, "start": 433.03, "word": "url" }, { "confidence": 0.99902344, "end": 434.22998, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.74658203, "start": 434.06998, "word": "you" }, { "confidence": 1, "end": 434.31, "punctuated_word": "should", "speaker": 0, "speaker_confidence": 0.74658203, "start": 434.22998, "word": "should" }, { "confidence": 0.9941406, "end": 434.55, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 0.74658203, "start": 434.31, "word": "now" }, { "confidence": 1, "end": 434.62997, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.74658203, "start": 434.55, "word": "be" }, { "confidence": 1, "end": 434.87, "punctuated_word": "able", "speaker": 0, "speaker_confidence": 0.74658203, "start": 434.62997, "word": "able" }, { "confidence": 1, "end": 435.03, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.74658203, "start": 434.87, "word": "to" }, { "confidence": 1, "end": 435.27, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.74658203, "start": 435.03, "word": "open" }, { "confidence": 1, "end": 435.34998, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.74658203, "start": 435.27, "word": "up" }, { "confidence": 1, "end": 435.59, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.74658203, "start": 435.34998, "word": "your" }, { "confidence": 0.99316406, "end": 436.09, "punctuated_word": "demo,", "speaker": 0, "speaker_confidence": 0.74658203, "start": 435.59, "word": "demo" }, { "confidence": 1, "end": 436.47, "punctuated_word": "select", "speaker": 0, "speaker_confidence": 0.74658203, "start": 436.15, "word": "select" }, { "confidence": 1, "end": 436.62997, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.74658203, "start": 436.47, "word": "a" }, { "confidence": 1, "end": 436.87, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.74658203, "start": 436.62997, "word": "video" }, { "confidence": 0.9069824, "end": 437.37, "punctuated_word": "file,", "speaker": 0, "speaker_confidence": 0.74658203, "start": 436.87, "word": "file" }, { "confidence": 0.61083984, "end": 437.685, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.74658203, "start": 437.525, "word": "then" }, { "confidence": 0.99902344, "end": 437.845, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.74658203, "start": 437.685, "word": "when" }, { "confidence": 1, "end": 437.92502, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.74658203, "start": 437.845, "word": "you" }, { "confidence": 1, "end": 438.08502, "punctuated_word": "click", "speaker": 0, "speaker_confidence": 0.96777344, "start": 437.92502, "word": "click" }, { "confidence": 1, "end": 438.245, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.96777344, "start": 438.08502, "word": "the" }, { "confidence": 0.9980469, "end": 438.565, "punctuated_word": "convert", "speaker": 0, "speaker_confidence": 0.96777344, "start": 438.245, "word": "convert" }, { "confidence": 0.99853516, "end": 439.045, "punctuated_word": "button,", "speaker": 0, "speaker_confidence": 0.96777344, "start": 438.565, "word": "button" }, { "confidence": 1, "end": 439.125, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.96777344, "start": 439.045, "word": "it" }, { "confidence": 0.99902344, "end": 439.525, "punctuated_word": "uses", "speaker": 0, "speaker_confidence": 0.96777344, "start": 439.125, "word": "uses" }, { "confidence": 0.8774414, "end": 439.765, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.96777344, "start": 439.525, "word": "web" }, { "confidence": 0.9863281, "end": 440.245, "punctuated_word": "assembly", "speaker": 0, "speaker_confidence": 0.96777344, "start": 439.765, "word": "assembly" }, { "confidence": 1, "end": 440.405, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.96777344, "start": 440.245, "word": "to" }, { "confidence": 1, "end": 440.805, "punctuated_word": "convert", "speaker": 0, "speaker_confidence": 0.96777344, "start": 440.405, "word": "convert" }, { "confidence": 1, "end": 441.045, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.96777344, "start": 440.805, "word": "that" }, { "confidence": 1, "end": 441.445, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.96777344, "start": 441.045, "word": "file" }, { "confidence": 1, "end": 441.605, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.96777344, "start": 441.445, "word": "to" }, { "confidence": 1, "end": 441.845, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.96777344, "start": 441.605, "word": "an" }, { "confidence": 1, "end": 442.245, "punctuated_word": "animated", "speaker": 0, "speaker_confidence": 0.96777344, "start": 441.845, "word": "animated" }, { "confidence": 0.8364258, "end": 442.745, "punctuated_word": "GIF,", "speaker": 0, "speaker_confidence": 0.96777344, "start": 442.245, "word": "gif" }, { "confidence": 1, "end": 442.965, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.96777344, "start": 442.805, "word": "and" }, { "confidence": 1, "end": 443.125, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.96777344, "start": 442.965, "word": "it" }, { "confidence": 1, "end": 443.285, "punctuated_word": "should", "speaker": 0, "speaker_confidence": 0.96777344, "start": 443.125, "word": "should" }, { "confidence": 1, "end": 443.525, "punctuated_word": "log", "speaker": 0, "speaker_confidence": 0.96777344, "start": 443.285, "word": "log" }, { "confidence": 1, "end": 443.685, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.96777344, "start": 443.525, "word": "the" }, { "confidence": 1, "end": 444.005, "punctuated_word": "entire", "speaker": 0, "speaker_confidence": 0.96777344, "start": 443.685, "word": "entire" }, { "confidence": 1, "end": 444.405, "punctuated_word": "process", "speaker": 0, "speaker_confidence": 0.96777344, "start": 444.005, "word": "process" }, { "confidence": 1, "end": 444.64502, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0.96777344, "start": 444.405, "word": "here" }, { "confidence": 1, "end": 444.805, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.96777344, "start": 444.64502, "word": "in" }, { "confidence": 1, "end": 444.965, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.96777344, "start": 444.805, "word": "the" }, { "confidence": 0.9719238, "end": 445.45, "punctuated_word": "console.", "speaker": 0, "speaker_confidence": 0.96777344, "start": 444.965, "word": "console" }, { "confidence": 1, "end": 445.61002, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.96777344, "start": 445.45, "word": "you" }, { "confidence": 0.7709961, "end": 445.77002, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.96777344, "start": 445.61002, "word": "could" }, { "confidence": 0.99609375, "end": 445.93002, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.96777344, "start": 445.77002, "word": "then" }, { "confidence": 0.9980469, "end": 446.09003, "punctuated_word": "take", "speaker": 0, "speaker_confidence": 0.96777344, "start": 445.93002, "word": "take" }, { "confidence": 1, "end": 446.25, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.96777344, "start": 446.09003, "word": "this" }, { "confidence": 1, "end": 446.57, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.96777344, "start": 446.25, "word": "file" }, { "confidence": 0.9941406, "end": 446.81, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.96777344, "start": 446.57, "word": "and" }, { "confidence": 1, "end": 447.05002, "punctuated_word": "upload", "speaker": 0, "speaker_confidence": 0.96777344, "start": 446.81, "word": "upload" }, { "confidence": 0.99316406, "end": 447.13, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.96777344, "start": 447.05002, "word": "it" }, { "confidence": 1, "end": 447.29, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.96777344, "start": 447.13, "word": "to" }, { "confidence": 0.9375, "end": 447.69, "punctuated_word": "Giphy", "speaker": 0, "speaker_confidence": 0.96777344, "start": 447.29, "word": "giphy" }, { "confidence": 0.8432617, "end": 447.93002, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.96777344, "start": 447.69, "word": "or" }, { "confidence": 1, "end": 448.09003, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.96777344, "start": 447.93002, "word": "use" }, { "confidence": 0.99902344, "end": 448.25, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.96777344, "start": 448.09003, "word": "it" }, { "confidence": 0.99902344, "end": 448.41, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.96777344, "start": 448.25, "word": "on" }, { "confidence": 0.98291016, "end": 448.73, "punctuated_word": "Twitter", "speaker": 0, "speaker_confidence": 0.96777344, "start": 448.41, "word": "twitter" }, { "confidence": 0.99121094, "end": 448.97, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.96777344, "start": 448.73, "word": "or" }, { "confidence": 1, "end": 449.29, "punctuated_word": "whatever", "speaker": 0, "speaker_confidence": 0.96777344, "start": 448.97, "word": "whatever" }, { "confidence": 1, "end": 449.45, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.96777344, "start": 449.29, "word": "you" }, { "confidence": 0.9030762, "end": 449.85, "punctuated_word": "want.", "speaker": 0, "speaker_confidence": 0.96777344, "start": 449.45, "word": "want" }, { "confidence": 0.9980469, "end": 450.01, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.96777344, "start": 449.85, "word": "and" }, { "confidence": 0.7753906, "end": 450.25, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.96777344, "start": 450.01, "word": "that's" }, { "confidence": 0.99902344, "end": 450.33002, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.96777344, "start": 450.25, "word": "how" }, { "confidence": 1, "end": 450.57, "punctuated_word": "easy", "speaker": 0, "speaker_confidence": 0.96777344, "start": 450.33002, "word": "easy" }, { "confidence": 1, "end": 450.73, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.96777344, "start": 450.57, "word": "it" }, { "confidence": 1, "end": 450.89, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.96777344, "start": 450.73, "word": "is" }, { "confidence": 1, "end": 451.05002, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.96777344, "start": 450.89, "word": "to" }, { "confidence": 1, "end": 451.37003, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 0.96777344, "start": 451.05002, "word": "start" }, { "confidence": 1, "end": 451.77002, "punctuated_word": "incorporating", "speaker": 0, "speaker_confidence": 0.96777344, "start": 451.37003, "word": "incorporating" }, { "confidence": 0.7746582, "end": 452.27002, "punctuated_word": "WebAssembly", "speaker": 0, "speaker_confidence": 0.96777344, "start": 451.77002, "word": "webassembly" }, { "confidence": 0.9970703, "end": 452.73, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.96777344, "start": 452.49002, "word": "into" }, { "confidence": 0.99902344, "end": 452.89, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.96777344, "start": 452.73, "word": "your" }, { "confidence": 0.9892578, "end": 453.13, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.96777344, "start": 452.89, "word": "web" }, { "confidence": 0.9995117, "end": 453.63, "punctuated_word": "applications.", "speaker": 0, "speaker_confidence": 0.96777344, "start": 453.13, "word": "applications" }, { "confidence": 0.9995117, "end": 454.275, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.47265625, "start": 454.115, "word": "i'm" }, { "confidence": 0.96972656, "end": 454.355, "punctuated_word": "gonna", "speaker": 0, "speaker_confidence": 0.47265625, "start": 454.275, "word": "gonna" }, { "confidence": 0.9921875, "end": 454.435, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.47265625, "start": 454.355, "word": "go" }, { "confidence": 1, "end": 454.595, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 0.47265625, "start": 454.435, "word": "ahead" }, { "confidence": 0.99902344, "end": 454.755, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.47265625, "start": 454.595, "word": "and" }, { "confidence": 1, "end": 454.915, "punctuated_word": "wrap", "speaker": 0, "speaker_confidence": 0.47265625, "start": 454.755, "word": "wrap" }, { "confidence": 1, "end": 455.155, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 0.47265625, "start": 454.915, "word": "things" }, { "confidence": 1, "end": 455.315, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.47265625, "start": 455.155, "word": "up" }, { "confidence": 0.89038086, "end": 455.635, "punctuated_word": "there,", "speaker": 0, "speaker_confidence": 0.47265625, "start": 455.315, "word": "there" }, { "confidence": 1, "end": 455.795, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.47265625, "start": 455.635, "word": "but" }, { "confidence": 0.99609375, "end": 455.955, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.47265625, "start": 455.795, "word": "in" }, { "confidence": 0.99902344, "end": 456.035, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.47265625, "start": 455.955, "word": "the" }, { "confidence": 1, "end": 456.275, "punctuated_word": "near", "speaker": 0, "speaker_confidence": 0.32910156, "start": 456.035, "word": "near" }, { "confidence": 0.9069824, "end": 456.595, "punctuated_word": "future,", "speaker": 0, "speaker_confidence": 0.32910156, "start": 456.275, "word": "future" }, { "confidence": 0.99902344, "end": 456.835, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.32910156, "start": 456.595, "word": "i" }, { "confidence": 0.99316406, "end": 457.075, "punctuated_word": "plan", "speaker": 0, "speaker_confidence": 0.32910156, "start": 456.835, "word": "plan" }, { "confidence": 1, "end": 457.155, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.32910156, "start": 457.075, "word": "on" }, { "confidence": 1, "end": 457.475, "punctuated_word": "making", "speaker": 0, "speaker_confidence": 0.73583984, "start": 457.155, "word": "making" }, { "confidence": 1, "end": 457.555, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.73583984, "start": 457.475, "word": "a" }, { "confidence": 1, "end": 458.035, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.73583984, "start": 457.555, "word": "video" }, { "confidence": 1, "end": 458.355, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.73583984, "start": 458.035, "word": "about" }, { "confidence": 1, "end": 458.515, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.73583984, "start": 458.355, "word": "how" }, { "confidence": 0.99902344, "end": 458.675, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.73583984, "start": 458.515, "word": "to" }, { "confidence": 0.99902344, "end": 458.915, "punctuated_word": "take", "speaker": 0, "speaker_confidence": 0.73583984, "start": 458.675, "word": "take" }, { "confidence": 1, "end": 459.075, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.73583984, "start": 458.915, "word": "your" }, { "confidence": 1, "end": 459.395, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 0.73583984, "start": 459.075, "word": "own" }, { "confidence": 0.99902344, "end": 459.715, "punctuated_word": "custom", "speaker": 0, "speaker_confidence": 0.73583984, "start": 459.395, "word": "custom" }, { "confidence": 0.60253906, "end": 459.955, "punctuated_word": "rust", "speaker": 0, "speaker_confidence": 0.73583984, "start": 459.715, "word": "rust" }, { "confidence": 0.9902344, "end": 460.455, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.73583984, "start": 459.955, "word": "code" }, { "confidence": 0.99609375, "end": 460.755, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.73583984, "start": 460.515, "word": "and" }, { "confidence": 0.99902344, "end": 461.075, "punctuated_word": "convert", "speaker": 0, "speaker_confidence": 0.73583984, "start": 460.755, "word": "convert" }, { "confidence": 0.99902344, "end": 461.235, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.73583984, "start": 461.075, "word": "it" }, { "confidence": 0.99902344, "end": 461.395, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.73583984, "start": 461.235, "word": "to" }, { "confidence": 0.8911133, "end": 461.635, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.73583984, "start": 461.395, "word": "web" }, { "confidence": 0.9863281, "end": 462.035, "punctuated_word": "assembly", "speaker": 0, "speaker_confidence": 0.73583984, "start": 461.635, "word": "assembly" }, { "confidence": 0.9980469, "end": 462.195, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.73583984, "start": 462.035, "word": "to" }, { "confidence": 0.9980469, "end": 462.355, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.73583984, "start": 462.195, "word": "be" }, { "confidence": 0.99902344, "end": 462.595, "punctuated_word": "used", "speaker": 0, "speaker_confidence": 0.73583984, "start": 462.355, "word": "used" }, { "confidence": 1, "end": 462.675, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.73583984, "start": 462.595, "word": "in" }, { "confidence": 1, "end": 462.835, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.73583984, "start": 462.675, "word": "the" }, { "confidence": 0.9926758, "end": 463.335, "punctuated_word": "browser.", "speaker": 0, "speaker_confidence": 0.73583984, "start": 462.835, "word": "browser" }, { "confidence": 0.97998047, "end": 463.56, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.5576172, "start": 463.52, "word": "and" }, { "confidence": 0.9970703, "end": 463.6, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.5576172, "start": 463.56, "word": "if" }, { "confidence": 1, "end": 463.76, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.5576172, "start": 463.6, "word": "you" }, { "confidence": 0.9980469, "end": 463.92, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.5576172, "start": 463.76, "word": "have" }, { "confidence": 1, "end": 464.08002, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 0.5576172, "start": 463.92, "word": "any" }, { "confidence": 0.99316406, "end": 464.56, "punctuated_word": "ideas,", "speaker": 0, "speaker_confidence": 0.5576172, "start": 464.08002, "word": "ideas" }, { "confidence": 1, "end": 464.72, "punctuated_word": "please", "speaker": 0, "speaker_confidence": 0.5576172, "start": 464.56, "word": "please" }, { "confidence": 1, "end": 464.88, "punctuated_word": "let", "speaker": 0, "speaker_confidence": 0.5576172, "start": 464.72, "word": "let" }, { "confidence": 1, "end": 464.96, "punctuated_word": "me", "speaker": 0, "speaker_confidence": 0.5576172, "start": 464.88, "word": "me" }, { "confidence": 1, "end": 465.12, "punctuated_word": "know", "speaker": 0, "speaker_confidence": 0.7446289, "start": 464.96, "word": "know" }, { "confidence": 0.9951172, "end": 465.28, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7446289, "start": 465.12, "word": "in" }, { "confidence": 1, "end": 465.36002, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7446289, "start": 465.28, "word": "the" }, { "confidence": 0.9995117, "end": 465.86002, "punctuated_word": "comments.", "speaker": 0, "speaker_confidence": 0.7446289, "start": 465.36002, "word": "comments" }, { "confidence": 0.99902344, "end": 466.16, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.7446289, "start": 466, "word": "if" }, { "confidence": 1, "end": 466.32, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7446289, "start": 466.16, "word": "you" }, { "confidence": 1, "end": 466.48, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.7446289, "start": 466.32, "word": "want" }, { "confidence": 1, "end": 466.64, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7446289, "start": 466.48, "word": "to" }, { "confidence": 1, "end": 466.88, "punctuated_word": "learn", "speaker": 0, "speaker_confidence": 0.7446289, "start": 466.64, "word": "learn" }, { "confidence": 1, "end": 467.12, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.7446289, "start": 466.88, "word": "more" }, { "confidence": 1, "end": 467.28, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7446289, "start": 467.12, "word": "and" }, { "confidence": 1, "end": 467.6, "punctuated_word": "support", "speaker": 0, "speaker_confidence": 0.7446289, "start": 467.28, "word": "support" }, { "confidence": 1, "end": 467.76, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.7446289, "start": 467.6, "word": "my" }, { "confidence": 0.9941406, "end": 468, "punctuated_word": "work,", "speaker": 0, "speaker_confidence": 0.7446289, "start": 467.76, "word": "work" }, { "confidence": 0.99902344, "end": 468.4, "punctuated_word": "consider", "speaker": 0, "speaker_confidence": 0.7446289, "start": 468, "word": "consider" }, { "confidence": 1, "end": 468.72, "punctuated_word": "becoming", "speaker": 0, "speaker_confidence": 0.7446289, "start": 468.4, "word": "becoming" }, { "confidence": 1, "end": 468.88, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7446289, "start": 468.72, "word": "a" }, { "confidence": 0.95166016, "end": 469.12, "punctuated_word": "pro", "speaker": 0, "speaker_confidence": 0.7446289, "start": 468.88, "word": "pro" }, { "confidence": 0.9892578, "end": 469.44, "punctuated_word": "member", "speaker": 0, "speaker_confidence": 0.7446289, "start": 469.12, "word": "member" }, { "confidence": 0.9980469, "end": 469.6, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.7446289, "start": 469.44, "word": "at" }, { "confidence": 0.6732178, "end": 470.08002, "punctuated_word": "FireShip", "speaker": 0, "speaker_confidence": 0.7446289, "start": 469.6, "word": "fireship" }, { "confidence": 0.5620117, "end": 470.24, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.7446289, "start": 470.08002, "word": "i" }, { "confidence": 0.8520508, "end": 470.515, "punctuated_word": "o.", "speaker": 0, "speaker_confidence": 0.7446289, "start": 470.24, "word": "o" }, { "confidence": 0.99902344, "end": 470.915, "punctuated_word": "Thanks", "speaker": 0, "speaker_confidence": 0.7446289, "start": 470.755, "word": "thanks" }, { "confidence": 1, "end": 470.99503, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.7446289, "start": 470.915, "word": "for" }, { "confidence": 1, "end": 471.49503, "punctuated_word": "watching", "speaker": 0, "speaker_confidence": 0.7446289, "start": 470.99503, "word": "watching" }, { "confidence": 0.9536133, "end": 471.795, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7446289, "start": 471.635, "word": "and" }, { "confidence": 1, "end": 471.95502, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.7446289, "start": 471.795, "word": "i" }, { "confidence": 0.99902344, "end": 472.11502, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.7446289, "start": 471.95502, "word": "will" }, { "confidence": 0.9980469, "end": 472.27502, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.7446289, "start": 472.11502, "word": "see" }, { "confidence": 0.9970703, "end": 472.43503, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7446289, "start": 472.27502, "word": "you" }, { "confidence": 0.98828125, "end": 472.595, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7446289, "start": 472.43503, "word": "in" }, { "confidence": 1, "end": 472.67502, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7446289, "start": 472.595, "word": "the" }, { "confidence": 1, "end": 472.99503, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.7446289, "start": 472.67502, "word": "next" }, { "confidence": 0.9921875, "end": 473.49503, "punctuated_word": "one.", "speaker": 0, "speaker_confidence": 0.7446289, "start": 472.99503, "word": "one" } ] } ], "detected_language": "", "language_confidence": 0, "search": null } ], "summary": { "result": "success", "short": "The speakers discuss how to use Web reminded the web application to convert video files to animated GIF files, using a library called FFTF and the use state hook in React app. They also explain the process of creating a new React app using the web assembly file, installing the necessary functions, and modifying it with the help of a web assembly code. They also discuss the use of the web assembly code, the loading state of the web assembly file, and the use of the logical and operator method. Finally, they discuss the process of adding additional state to a component in an application, including a video file, which can be displayed in an HTML video element, and the use of a tool called WebFinancial." }, "utterances": null } }
downloads\WASM_+_React..._Easily_build_video_editing_software_with_JS_&_FFmpeg.wav
https://www.youtube.com/watch?v=-OTc0Ki7Sv0
WASM + React... Easily build video editing software with JS & FFmpeg
205,041
Fireship
140
Web5 is a new decentralized web framework based on the Bitcoin Lightning Network designed to replace Web3. #webdevelopment #crypto #TheCodeReport #web3 🔗 Resources Web 5 Overview https://cryptoslate.com/web5-announced-by-jack-dorseys-block-to-replace-web3-as-future-of-internet/ Web5 Tweets https://twitter.com/brockm/status/1535999323732815872 Web5 Slide Deck https://bestpitchdeck.com/tbd 🔖 Topics Covered - What is Web5? - Web3 vs Web5 - Decentralized Apps - Crypto news - Will Web5 replace Web3? - How does Web5 work?
{ "metadata": { "channels": 1, "created": "2024-02-04T13:36:09.748Z", "duration": 139.78412, "model_info": { "30089e05-99d1-4376-b32e-c263170674af": { "arch": "nova-2", "name": "2-general-nova", "version": "2024-01-09.29447" } }, "models": [ "30089e05-99d1-4376-b32e-c263170674af" ], "request_id": "5c2e736d-1f54-43ec-9cec-8f18bdc2c1a0", "sha256": "b8bf555ce4c505972592a90d3185aa55fa64c165bfe4b47a2bfcd56bfe44d925", "summary_info": { "input_tokens": 607, "model_uuid": "67875a7f-c9c4-48a0-aa55-5bdb8a91c34a", "output_tokens": 87 }, "transaction_key": "deprecated", "warnings": null }, "results": { "channels": [ { "alternatives": [ { "confidence": 0.9970703, "entities": null, "paragraphs": { "paragraphs": [ { "end": 22.58, "num_words": 76, "sentences": [ { "end": 5.3599997, "start": 1.4399999, "text": "It is June 13, 2022, and you're watching the Code Report." }, { "end": 7.2, "start": 5.3599997, "text": "Things move fast on the World Wide Web." }, { "end": 9.599999, "start": 7.2, "text": "Just a few months ago, Web 3 was all the rage." }, { "end": 19.699999, "start": 9.599999, "text": "But then, Bitcoin crashed 50%, NFT sales collapsed, the Ponzinomics of tokens like Luna stopped working, and even networks like Celsius and changes like Binance are not letting people get their money out." }, { "end": 22.58, "start": 19.699999, "text": "This is all totally normal and nothing to be concerned about at all." } ], "speaker": 0, "start": 1.4399999 }, { "end": 42.605, "num_words": 57, "sentences": [ { "end": 23.779999, "start": 22.58, "text": "The Lambos are still coming." }, { "end": 27.422962, "start": 23.779999, "text": "Now, if you I've been paying attention, we've already moved ahead to web 5." }, { "end": 34.96, "start": 27.422962, "text": "Because just the other day, billionaire Jack Dorsey steamrolled right over web 4 and announced web 5, which they're calling the decentralized web platform." }, { "end": 38.16, "start": 35.1, "text": "Like most people, you might be thinking that this announcement is satire." }, { "end": 42.605, "start": 41.865, "text": "You serious?" } ], "speaker": 0, "start": 22.58 }, { "end": 92.835, "num_words": 184, "sentences": [ { "end": 45.065002, "start": 42.985, "text": "But apparently, they're totally serious about it." }, { "end": 63.185, "start": 45.065002, "text": "It's being developed by the block head unit at Block, formally Square, and the idea is to provide a decentralized Internet layer based on Bitcoin's Lightning Network, where users own and control their data and have a wallet just like web 3, that can connect their identity to any app without needing to sign up and explicitly share their data with the host app." }, { "end": 76.405, "start": 63.185, "text": "When when it comes to app developers, instead of building PWAs, you would build DWAs, where the web app is not served by a centralized app server, most likely owned by Amazon, Google, or Microsoft, but rather a decentralized node owned by some other user on the network." }, { "end": 80.119995, "start": 76.545, "text": "Most notably though, there will be no tokens involved other than Bitcoin itself." }, { "end": 92.835, "start": 80.119995, "text": "That means end users won't have to worry about investing in all these different shit coins, like this one called Ethereum that went from 48100 to 1200 in just a few months, not to mention the insane gas fees that you have to pay just to perform trivial transactions with web 3." } ], "speaker": 0, "start": 42.985 }, { "end": 123.03, "num_words": 111, "sentences": [ { "end": 100.840004, "start": 92.835, "text": "And as many critics have pointed out, the current state of web 3 is not decentralized at all, but rather controlled by a small number of VCs and Silicon Valley insiders." }, { "end": 105.115, "start": 101.06, "text": "It's unfortunate because decentralization is a really awesome concept for the Web." }, { "end": 111.055, "start": 105.275, "text": "You don't actually need cryptocurrency to make it work, you just need a bunch of people participating and benefiting from the system." }, { "end": 114.71, "start": 111.115, "text": "BitTorrent has been doing this for file sharing long before Bitcoin was even a thing." }, { "end": 123.03, "start": 114.71, "text": "Now the funny thing about Web 5 is that it's being spearheaded by Jack Dorsey, a CEO with an excellent track record of not caring about your speech, privacy, or freedom." } ], "speaker": 0, "start": 92.835 }, { "end": 136.93633, "num_words": 57, "sentences": [ { "end": 124.675, "start": 123.03, "text": "You're a big fat then Foti." }, { "end": 127.555, "start": 124.735, "text": "Like, you wouldn't want Mark Zuckerberg to be king of the metaverse." }, { "end": 131.215, "start": 127.615, "text": "In the same way, you definitely don't want Jack Dorsey to be king of Web 5." }, { "end": 135.51242, "start": 131.215, "text": "Personally, I'm putting all my bets on Web 6, which is already under development by Snoop Dogg." }, { "end": 136.93633, "start": 135.51242, "text": "This has been the code report." } ], "speaker": 0, "start": 123.03 }, { "end": 139.78412, "num_words": 12, "sentences": [ { "end": 139.78412, "start": 136.93633, "text": "Thanks for watching, and I will see you in the next one." } ], "speaker": 0, "start": 136.93633 } ], "transcript": "\nSpeaker 0: It is June 13, 2022, and you're watching the Code Report. Things move fast on the World Wide Web. Just a few months ago, Web 3 was all the rage. But then, Bitcoin crashed 50%, NFT sales collapsed, the Ponzinomics of tokens like Luna stopped working, and even networks like Celsius and changes like Binance are not letting people get their money out. This is all totally normal and nothing to be concerned about at all.\n\nThe Lambos are still coming. Now, if you I've been paying attention, we've already moved ahead to web 5. Because just the other day, billionaire Jack Dorsey steamrolled right over web 4 and announced web 5, which they're calling the decentralized web platform. Like most people, you might be thinking that this announcement is satire. You serious?\n\nBut apparently, they're totally serious about it. It's being developed by the block head unit at Block, formally Square, and the idea is to provide a decentralized Internet layer based on Bitcoin's Lightning Network, where users own and control their data and have a wallet just like web 3, that can connect their identity to any app without needing to sign up and explicitly share their data with the host app. When when it comes to app developers, instead of building PWAs, you would build DWAs, where the web app is not served by a centralized app server, most likely owned by Amazon, Google, or Microsoft, but rather a decentralized node owned by some other user on the network. Most notably though, there will be no tokens involved other than Bitcoin itself. That means end users won't have to worry about investing in all these different shit coins, like this one called Ethereum that went from 48100 to 1200 in just a few months, not to mention the insane gas fees that you have to pay just to perform trivial transactions with web 3.\n\nAnd as many critics have pointed out, the current state of web 3 is not decentralized at all, but rather controlled by a small number of VCs and Silicon Valley insiders. It's unfortunate because decentralization is a really awesome concept for the Web. You don't actually need cryptocurrency to make it work, you just need a bunch of people participating and benefiting from the system. BitTorrent has been doing this for file sharing long before Bitcoin was even a thing. Now the funny thing about Web 5 is that it's being spearheaded by Jack Dorsey, a CEO with an excellent track record of not caring about your speech, privacy, or freedom.\n\nYou're a big fat then Foti. Like, you wouldn't want Mark Zuckerberg to be king of the metaverse. In the same way, you definitely don't want Jack Dorsey to be king of Web 5. Personally, I'm putting all my bets on Web 6, which is already under development by Snoop Dogg. This has been the code report.\n\nThanks for watching, and I will see you in the next one." }, "summaries": null, "topics": [ { "end_word": 204, "start_word": 0, "text": "It is June 13, 2022, and you're watching the Code Report. Things move fast on the World Wide Web. Just a few months ago, Web 3 was all the rage. But then, Bitcoin crashed 50%, NFT sales collapsed, the Ponzinomics of tokens like Luna stopped working, and even networks like Celsius and changes like Binance are not letting people get their money out. This is all totally normal and nothing to be concerned about at all. The Lambos are still coming. Now, if you I've been paying attention, we've already moved ahead to web 5. Because just the other day, billionaire Jack Dorsey steamrolled right over web 4 and announced web 5, which they're calling the decentralized web platform. Like most people, you might be thinking that this announcement is satire. You serious? But apparently, they're totally serious about it. It's being developed by the block head unit at Block, formally Square, and the idea is to provide a decentralized Internet layer based on Bitcoin's Lightning Network, where users own and control their data and have a wallet just like web 3, that can connect their identity to any app without needing to sign up and explicitly share their data with the host app.", "topics": [ { "confidence": 0.71649057, "topic": "cryptocurrency" }, { "confidence": 0.28718588, "topic": "google" }, { "confidence": 0.091842145, "topic": "internet" } ] }, { "end_word": 252, "start_word": 204, "text": "When when it comes to app developers, instead of building PWAs, you would build DWAs, where the web app is not served by a centralized app server, most likely owned by Amazon, Google, or Microsoft, but rather a decentralized node owned by some other user on the network.", "topics": [] }, { "end_word": 479, "start_word": 252, "text": "Most notably though, there will be no tokens involved other than Bitcoin itself. That means end users won't have to worry about investing in all these different shit coins, like this one called Ethereum that went from 48100 to 1200 in just a few months, not to mention the insane gas fees that you have to pay just to perform trivial transactions with web 3. And as many critics have pointed out, the current state of web 3 is not decentralized at all, but rather controlled by a small number of VCs and Silicon Valley insiders. It's unfortunate because decentralization is a really awesome concept for the Web. You don't actually need cryptocurrency to make it work, you just need a bunch of people participating and benefiting from the system. BitTorrent has been doing this for file sharing long before Bitcoin was even a thing. Now the funny thing about Web 5 is that it's being spearheaded by Jack Dorsey, a CEO with an excellent track record of not caring about your speech, privacy, or freedom. You're a big fat then Foti. Like, you wouldn't want Mark Zuckerberg to be king of the metaverse. In the same way, you definitely don't want Jack Dorsey to be king of Web 5. Personally, I'm putting all my bets on Web 6, which is already under development by Snoop Dogg.", "topics": [ { "confidence": 0.99319446, "topic": "cryptocurrency" }, { "confidence": 0.0556017, "topic": "google" }, { "confidence": 0.013334737, "topic": "banking" }, { "confidence": 0.010238755, "topic": "internet" } ] }, { "end_word": 497, "start_word": 479, "text": "This has been the code report. Thanks for watching, and I will see you in the next one.", "topics": [] } ], "transcript": "It is June 13, 2022, and you're watching the Code Report. Things move fast on the World Wide Web. Just a few months ago, Web 3 was all the rage. But then, Bitcoin crashed 50%, NFT sales collapsed, the Ponzinomics of tokens like Luna stopped working, and even networks like Celsius and changes like Binance are not letting people get their money out. This is all totally normal and nothing to be concerned about at all. The Lambos are still coming. Now, if you I've been paying attention, we've already moved ahead to web 5. Because just the other day, billionaire Jack Dorsey steamrolled right over web 4 and announced web 5, which they're calling the decentralized web platform. Like most people, you might be thinking that this announcement is satire. You serious? But apparently, they're totally serious about it. It's being developed by the block head unit at Block, formally Square, and the idea is to provide a decentralized Internet layer based on Bitcoin's Lightning Network, where users own and control their data and have a wallet just like web 3, that can connect their identity to any app without needing to sign up and explicitly share their data with the host app. When when it comes to app developers, instead of building PWAs, you would build DWAs, where the web app is not served by a centralized app server, most likely owned by Amazon, Google, or Microsoft, but rather a decentralized node owned by some other user on the network. Most notably though, there will be no tokens involved other than Bitcoin itself. That means end users won't have to worry about investing in all these different shit coins, like this one called Ethereum that went from 48100 to 1200 in just a few months, not to mention the insane gas fees that you have to pay just to perform trivial transactions with web 3. And as many critics have pointed out, the current state of web 3 is not decentralized at all, but rather controlled by a small number of VCs and Silicon Valley insiders. It's unfortunate because decentralization is a really awesome concept for the Web. You don't actually need cryptocurrency to make it work, you just need a bunch of people participating and benefiting from the system. BitTorrent has been doing this for file sharing long before Bitcoin was even a thing. Now the funny thing about Web 5 is that it's being spearheaded by Jack Dorsey, a CEO with an excellent track record of not caring about your speech, privacy, or freedom. You're a big fat then Foti. Like, you wouldn't want Mark Zuckerberg to be king of the metaverse. In the same way, you definitely don't want Jack Dorsey to be king of Web 5. Personally, I'm putting all my bets on Web 6, which is already under development by Snoop Dogg. This has been the code report. Thanks for watching, and I will see you in the next one.", "translations": null, "words": [ { "confidence": 0.94384766, "end": 1.68, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.7036133, "start": 1.4399999, "word": "it" }, { "confidence": 0.9980469, "end": 1.92, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7036133, "start": 1.68, "word": "is" }, { "confidence": 0.99609375, "end": 2.1599998, "punctuated_word": "June", "speaker": 0, "speaker_confidence": 0.7036133, "start": 1.92, "word": "june" }, { "confidence": 0.95336914, "end": 2.6599998, "punctuated_word": "13,", "speaker": 0, "speaker_confidence": 0.7036133, "start": 2.1599998, "word": "13" }, { "confidence": 0.9633789, "end": 3.3, "punctuated_word": "2022,", "speaker": 0, "speaker_confidence": 0.7036133, "start": 2.8, "word": "2022" }, { "confidence": 0.9980469, "end": 3.84, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7036133, "start": 3.6, "word": "and" }, { "confidence": 0.9790039, "end": 4.08, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.7036133, "start": 3.84, "word": "you're" }, { "confidence": 1, "end": 4.48, "punctuated_word": "watching", "speaker": 0, "speaker_confidence": 0.7036133, "start": 4.08, "word": "watching" }, { "confidence": 0.64404297, "end": 4.64, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7036133, "start": 4.48, "word": "the" }, { "confidence": 0.49047852, "end": 4.88, "punctuated_word": "Code", "speaker": 0, "speaker_confidence": 0.7036133, "start": 4.64, "word": "code" }, { "confidence": 0.8925781, "end": 5.3599997, "punctuated_word": "Report.", "speaker": 0, "speaker_confidence": 0.7036133, "start": 4.88, "word": "report" }, { "confidence": 0.9921875, "end": 5.6, "punctuated_word": "Things", "speaker": 0, "speaker_confidence": 0.7036133, "start": 5.3599997, "word": "things" }, { "confidence": 0.9902344, "end": 5.8399997, "punctuated_word": "move", "speaker": 0, "speaker_confidence": 0.7036133, "start": 5.6, "word": "move" }, { "confidence": 0.9970703, "end": 6.16, "punctuated_word": "fast", "speaker": 0, "speaker_confidence": 0.7036133, "start": 5.8399997, "word": "fast" }, { "confidence": 1, "end": 6.24, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.7036133, "start": 6.16, "word": "on" }, { "confidence": 0.99902344, "end": 6.3999996, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7548828, "start": 6.24, "word": "the" }, { "confidence": 0.9716797, "end": 6.56, "punctuated_word": "World", "speaker": 0, "speaker_confidence": 0.7548828, "start": 6.3999996, "word": "world" }, { "confidence": 0.9970703, "end": 6.7999997, "punctuated_word": "Wide", "speaker": 0, "speaker_confidence": 0.7548828, "start": 6.56, "word": "wide" }, { "confidence": 0.92626953, "end": 7.2, "punctuated_word": "Web.", "speaker": 0, "speaker_confidence": 0.7548828, "start": 6.7999997, "word": "web" }, { "confidence": 0.9980469, "end": 7.44, "punctuated_word": "Just", "speaker": 0, "speaker_confidence": 0.7548828, "start": 7.2, "word": "just" }, { "confidence": 0.9951172, "end": 7.6, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7548828, "start": 7.44, "word": "a" }, { "confidence": 1, "end": 7.7599998, "punctuated_word": "few", "speaker": 0, "speaker_confidence": 0.7548828, "start": 7.6, "word": "few" }, { "confidence": 1, "end": 8, "punctuated_word": "months", "speaker": 0, "speaker_confidence": 0.7548828, "start": 7.7599998, "word": "months" }, { "confidence": 0.99194336, "end": 8.32, "punctuated_word": "ago,", "speaker": 0, "speaker_confidence": 0.7548828, "start": 8, "word": "ago" }, { "confidence": 0.9375, "end": 8.559999, "punctuated_word": "Web", "speaker": 0, "speaker_confidence": 0.7548828, "start": 8.32, "word": "web" }, { "confidence": 0.92089844, "end": 8.72, "punctuated_word": "3", "speaker": 0, "speaker_confidence": 0.7548828, "start": 8.559999, "word": "3" }, { "confidence": 0.99609375, "end": 8.96, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.7548828, "start": 8.72, "word": "was" }, { "confidence": 1, "end": 9.12, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.7548828, "start": 8.96, "word": "all" }, { "confidence": 1, "end": 9.2, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 9.12, "word": "the" }, { "confidence": 0.8720703, "end": 9.599999, "punctuated_word": "rage.", "speaker": 0, "speaker_confidence": 1, "start": 9.2, "word": "rage" }, { "confidence": 0.9941406, "end": 9.76, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 1, "start": 9.599999, "word": "but" }, { "confidence": 0.87109375, "end": 9.985, "punctuated_word": "then,", "speaker": 0, "speaker_confidence": 1, "start": 9.76, "word": "then" }, { "confidence": 0.86865234, "end": 10.464999, "punctuated_word": "Bitcoin", "speaker": 0, "speaker_confidence": 1, "start": 10.224999, "word": "bitcoin" }, { "confidence": 0.95166016, "end": 10.945, "punctuated_word": "crashed", "speaker": 0, "speaker_confidence": 1, "start": 10.464999, "word": "crashed" }, { "confidence": 0.8913574, "end": 11.445, "punctuated_word": "50%,", "speaker": 0, "speaker_confidence": 1, "start": 10.945, "word": "50%" }, { "confidence": 0.8942871, "end": 12.065, "punctuated_word": "NFT", "speaker": 0, "speaker_confidence": 1, "start": 11.584999, "word": "nft" }, { "confidence": 0.9091797, "end": 12.384999, "punctuated_word": "sales", "speaker": 0, "speaker_confidence": 1, "start": 12.065, "word": "sales" }, { "confidence": 0.8833008, "end": 12.785, "punctuated_word": "collapsed,", "speaker": 0, "speaker_confidence": 1, "start": 12.384999, "word": "collapsed" }, { "confidence": 0.99121094, "end": 12.945, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 12.785, "word": "the" }, { "confidence": 0.7738037, "end": 13.445, "punctuated_word": "Ponzinomics", "speaker": 0, "speaker_confidence": 1, "start": 12.945, "word": "ponzinomics" }, { "confidence": 0.9873047, "end": 13.664999, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 13.584999, "word": "of" }, { "confidence": 0.9941406, "end": 13.985, "punctuated_word": "tokens", "speaker": 0, "speaker_confidence": 1, "start": 13.664999, "word": "tokens" }, { "confidence": 0.94140625, "end": 14.224999, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 13.985, "word": "like" }, { "confidence": 0.7373047, "end": 14.545, "punctuated_word": "Luna", "speaker": 0, "speaker_confidence": 1, "start": 14.224999, "word": "luna" }, { "confidence": 0.9707031, "end": 14.785, "punctuated_word": "stopped", "speaker": 0, "speaker_confidence": 1, "start": 14.545, "word": "stopped" }, { "confidence": 0.9489746, "end": 15.264999, "punctuated_word": "working,", "speaker": 0, "speaker_confidence": 1, "start": 14.785, "word": "working" }, { "confidence": 0.99902344, "end": 15.424999, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 15.264999, "word": "and" }, { "confidence": 0.99902344, "end": 15.664999, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 1, "start": 15.424999, "word": "even" }, { "confidence": 0.9921875, "end": 16.064999, "punctuated_word": "networks", "speaker": 0, "speaker_confidence": 1, "start": 15.664999, "word": "networks" }, { "confidence": 0.97314453, "end": 16.224998, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 16.064999, "word": "like" }, { "confidence": 0.97802734, "end": 16.705, "punctuated_word": "Celsius", "speaker": 0, "speaker_confidence": 1, "start": 16.224998, "word": "celsius" }, { "confidence": 0.9375, "end": 17.06, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 16.705, "word": "and" }, { "confidence": 0.96972656, "end": 17.46, "punctuated_word": "changes", "speaker": 0, "speaker_confidence": 1, "start": 17.14, "word": "changes" }, { "confidence": 0.8852539, "end": 17.619999, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 17.46, "word": "like" }, { "confidence": 0.967041, "end": 18.099998, "punctuated_word": "Binance", "speaker": 0, "speaker_confidence": 1, "start": 17.619999, "word": "binance" }, { "confidence": 0.97509766, "end": 18.34, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 1, "start": 18.099998, "word": "are" }, { "confidence": 1, "end": 18.42, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 1, "start": 18.34, "word": "not" }, { "confidence": 0.99902344, "end": 18.74, "punctuated_word": "letting", "speaker": 0, "speaker_confidence": 1, "start": 18.42, "word": "letting" }, { "confidence": 1, "end": 18.98, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 1, "start": 18.74, "word": "people" }, { "confidence": 0.9951172, "end": 19.14, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 1, "start": 18.98, "word": "get" }, { "confidence": 1, "end": 19.3, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 1, "start": 19.14, "word": "their" }, { "confidence": 1, "end": 19.539999, "punctuated_word": "money", "speaker": 0, "speaker_confidence": 1, "start": 19.3, "word": "money" }, { "confidence": 0.9946289, "end": 19.699999, "punctuated_word": "out.", "speaker": 0, "speaker_confidence": 1, "start": 19.539999, "word": "out" }, { "confidence": 0.99902344, "end": 19.939999, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 1, "start": 19.699999, "word": "this" }, { "confidence": 0.99902344, "end": 20.02, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 19.939999, "word": "is" }, { "confidence": 0.99902344, "end": 20.18, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 1, "start": 20.02, "word": "all" }, { "confidence": 1, "end": 20.58, "punctuated_word": "totally", "speaker": 0, "speaker_confidence": 1, "start": 20.18, "word": "totally" }, { "confidence": 0.99902344, "end": 20.98, "punctuated_word": "normal", "speaker": 0, "speaker_confidence": 1, "start": 20.58, "word": "normal" }, { "confidence": 0.9038086, "end": 21.14, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 20.98, "word": "and" }, { "confidence": 0.99902344, "end": 21.38, "punctuated_word": "nothing", "speaker": 0, "speaker_confidence": 1, "start": 21.14, "word": "nothing" }, { "confidence": 0.9980469, "end": 21.539999, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 21.38, "word": "to" }, { "confidence": 0.99902344, "end": 21.619999, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 1, "start": 21.539999, "word": "be" }, { "confidence": 0.9980469, "end": 22.02, "punctuated_word": "concerned", "speaker": 0, "speaker_confidence": 1, "start": 21.619999, "word": "concerned" }, { "confidence": 0.9970703, "end": 22.18, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 1, "start": 22.02, "word": "about" }, { "confidence": 0.9350586, "end": 22.259998, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 1, "start": 22.18, "word": "at" }, { "confidence": 0.99609375, "end": 22.58, "punctuated_word": "all.", "speaker": 0, "speaker_confidence": 1, "start": 22.259998, "word": "all" }, { "confidence": 0.9921875, "end": 22.74, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 1, "start": 22.58, "word": "the" }, { "confidence": 0.9675293, "end": 23.14, "punctuated_word": "Lambos", "speaker": 0, "speaker_confidence": 1, "start": 22.74, "word": "lambos" }, { "confidence": 0.9951172, "end": 23.3, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 1, "start": 23.14, "word": "are" }, { "confidence": 0.9980469, "end": 23.46, "punctuated_word": "still", "speaker": 0, "speaker_confidence": 1, "start": 23.3, "word": "still" }, { "confidence": 0.98095703, "end": 23.779999, "punctuated_word": "coming.", "speaker": 0, "speaker_confidence": 1, "start": 23.46, "word": "coming" }, { "confidence": 0.82714844, "end": 23.939999, "punctuated_word": "Now,", "speaker": 0, "speaker_confidence": 1, "start": 23.779999, "word": "now" }, { "confidence": 0.9760742, "end": 24.099998, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 1, "start": 23.939999, "word": "if" }, { "confidence": 0.9658203, "end": 24.345, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 24.099998, "word": "you" }, { "confidence": 0.67370605, "end": 24.624815, "punctuated_word": "I've", "speaker": 0, "speaker_confidence": 1, "start": 24.345, "word": "i've" }, { "confidence": 0.99609375, "end": 24.904629, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 1, "start": 24.624815, "word": "been" }, { "confidence": 0.99902344, "end": 25.184444, "punctuated_word": "paying", "speaker": 0, "speaker_confidence": 1, "start": 24.904629, "word": "paying" }, { "confidence": 0.8881836, "end": 25.464258, "punctuated_word": "attention,", "speaker": 0, "speaker_confidence": 1, "start": 25.184444, "word": "attention" }, { "confidence": 0.9941406, "end": 25.744074, "punctuated_word": "we've", "speaker": 0, "speaker_confidence": 1, "start": 25.464258, "word": "we've" }, { "confidence": 1, "end": 26.023888, "punctuated_word": "already", "speaker": 0, "speaker_confidence": 1, "start": 25.744074, "word": "already" }, { "confidence": 0.99902344, "end": 26.303703, "punctuated_word": "moved", "speaker": 0, "speaker_confidence": 1, "start": 26.023888, "word": "moved" }, { "confidence": 0.9980469, "end": 26.583519, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 1, "start": 26.303703, "word": "ahead" }, { "confidence": 0.99902344, "end": 26.863333, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 26.583519, "word": "to" }, { "confidence": 0.9038086, "end": 27.143148, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 1, "start": 26.863333, "word": "web" }, { "confidence": 0.7104492, "end": 27.422962, "punctuated_word": "5.", "speaker": 0, "speaker_confidence": 1, "start": 27.143148, "word": "5" }, { "confidence": 0.99316406, "end": 27.702778, "punctuated_word": "Because", "speaker": 0, "speaker_confidence": 1, "start": 27.422962, "word": "because" }, { "confidence": 0.95703125, "end": 27.982592, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 1, "start": 27.702778, "word": "just" }, { "confidence": 1, "end": 28.262407, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 27.982592, "word": "the" }, { "confidence": 1, "end": 28.542221, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 1, "start": 28.262407, "word": "other" }, { "confidence": 0.9904785, "end": 28.822037, "punctuated_word": "day,", "speaker": 0, "speaker_confidence": 1, "start": 28.542221, "word": "day" }, { "confidence": 0.9970703, "end": 29.101852, "punctuated_word": "billionaire", "speaker": 0, "speaker_confidence": 1, "start": 28.822037, "word": "billionaire" }, { "confidence": 0.9526367, "end": 29.381666, "punctuated_word": "Jack", "speaker": 0, "speaker_confidence": 1, "start": 29.101852, "word": "jack" }, { "confidence": 0.9951172, "end": 29.661482, "punctuated_word": "Dorsey", "speaker": 0, "speaker_confidence": 1, "start": 29.381666, "word": "dorsey" }, { "confidence": 0.9494629, "end": 29.941296, "punctuated_word": "steamrolled", "speaker": 0, "speaker_confidence": 1, "start": 29.661482, "word": "steamrolled" }, { "confidence": 0.9970703, "end": 30.221111, "punctuated_word": "right", "speaker": 0, "speaker_confidence": 1, "start": 29.941296, "word": "right" }, { "confidence": 1, "end": 30.500927, "punctuated_word": "over", "speaker": 0, "speaker_confidence": 1, "start": 30.221111, "word": "over" }, { "confidence": 0.95947266, "end": 30.78074, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 1, "start": 30.500927, "word": "web" }, { "confidence": 0.94189453, "end": 31.060555, "punctuated_word": "4", "speaker": 0, "speaker_confidence": 1, "start": 30.78074, "word": "4" }, { "confidence": 0.83984375, "end": 31.34037, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 31.060555, "word": "and" }, { "confidence": 0.9902344, "end": 31.620186, "punctuated_word": "announced", "speaker": 0, "speaker_confidence": 1, "start": 31.34037, "word": "announced" }, { "confidence": 0.9326172, "end": 31.9, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 1, "start": 31.620186, "word": "web" }, { "confidence": 0.9069824, "end": 32.38, "punctuated_word": "5,", "speaker": 0, "speaker_confidence": 1, "start": 32.06, "word": "5" }, { "confidence": 0.99902344, "end": 32.62, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 1, "start": 32.38, "word": "which" }, { "confidence": 0.9975586, "end": 32.86, "punctuated_word": "they're", "speaker": 0, "speaker_confidence": 1, "start": 32.62, "word": "they're" }, { "confidence": 0.99902344, "end": 33.18, "punctuated_word": "calling", "speaker": 0, "speaker_confidence": 1, "start": 32.86, "word": "calling" }, { "confidence": 0.98535156, "end": 33.5, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 33.18, "word": "the" }, { "confidence": 0.9716797, "end": 34, "punctuated_word": "decentralized", "speaker": 0, "speaker_confidence": 1, "start": 33.5, "word": "decentralized" }, { "confidence": 0.8432617, "end": 34.46, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 1, "start": 34.14, "word": "web" }, { "confidence": 0.9970703, "end": 34.96, "punctuated_word": "platform.", "speaker": 0, "speaker_confidence": 1, "start": 34.46, "word": "platform" }, { "confidence": 0.99609375, "end": 35.34, "punctuated_word": "Like", "speaker": 0, "speaker_confidence": 1, "start": 35.1, "word": "like" }, { "confidence": 0.99902344, "end": 35.5, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 1, "start": 35.34, "word": "most" }, { "confidence": 0.9941406, "end": 35.9, "punctuated_word": "people,", "speaker": 0, "speaker_confidence": 1, "start": 35.5, "word": "people" }, { "confidence": 1, "end": 36.059998, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 35.9, "word": "you" }, { "confidence": 1, "end": 36.22, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 1, "start": 36.059998, "word": "might" }, { "confidence": 0.99902344, "end": 36.38, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 1, "start": 36.22, "word": "be" }, { "confidence": 1, "end": 36.62, "punctuated_word": "thinking", "speaker": 0, "speaker_confidence": 1, "start": 36.38, "word": "thinking" }, { "confidence": 0.99902344, "end": 36.78, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 36.62, "word": "that" }, { "confidence": 1, "end": 36.94, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 1, "start": 36.78, "word": "this" }, { "confidence": 0.99902344, "end": 37.44, "punctuated_word": "announcement", "speaker": 0, "speaker_confidence": 1, "start": 36.94, "word": "announcement" }, { "confidence": 0.99316406, "end": 37.66, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 37.5, "word": "is" }, { "confidence": 0.99853516, "end": 38.16, "punctuated_word": "satire.", "speaker": 0, "speaker_confidence": 1, "start": 37.66, "word": "satire" }, { "confidence": 0.53027344, "end": 42.105, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.001953125, "start": 41.865, "word": "you" }, { "confidence": 0.99365234, "end": 42.605, "punctuated_word": "serious?", "speaker": 0, "speaker_confidence": 0.001953125, "start": 42.105, "word": "serious" }, { "confidence": 0.9951172, "end": 43.225002, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 1, "start": 42.985, "word": "but" }, { "confidence": 0.8417969, "end": 43.705, "punctuated_word": "apparently,", "speaker": 0, "speaker_confidence": 1, "start": 43.225002, "word": "apparently" }, { "confidence": 0.9890137, "end": 43.945, "punctuated_word": "they're", "speaker": 0, "speaker_confidence": 1, "start": 43.705, "word": "they're" }, { "confidence": 0.99902344, "end": 44.345, "punctuated_word": "totally", "speaker": 0, "speaker_confidence": 1, "start": 43.945, "word": "totally" }, { "confidence": 1, "end": 44.665, "punctuated_word": "serious", "speaker": 0, "speaker_confidence": 1, "start": 44.345, "word": "serious" }, { "confidence": 1, "end": 44.825, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 1, "start": 44.665, "word": "about" }, { "confidence": 0.99902344, "end": 45.065002, "punctuated_word": "it.", "speaker": 0, "speaker_confidence": 1, "start": 44.825, "word": "it" }, { "confidence": 0.99902344, "end": 45.225002, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 1, "start": 45.065002, "word": "it's" }, { "confidence": 0.9536133, "end": 45.465, "punctuated_word": "being", "speaker": 0, "speaker_confidence": 1, "start": 45.225002, "word": "being" }, { "confidence": 1, "end": 45.865, "punctuated_word": "developed", "speaker": 0, "speaker_confidence": 1, "start": 45.465, "word": "developed" }, { "confidence": 0.99902344, "end": 46.025, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 1, "start": 45.865, "word": "by" }, { "confidence": 0.99121094, "end": 46.185, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 46.025, "word": "the" }, { "confidence": 0.73291016, "end": 46.425003, "punctuated_word": "block", "speaker": 0, "speaker_confidence": 1, "start": 46.185, "word": "block" }, { "confidence": 0.5986328, "end": 46.665, "punctuated_word": "head", "speaker": 0, "speaker_confidence": 1, "start": 46.425003, "word": "head" }, { "confidence": 0.9790039, "end": 46.985, "punctuated_word": "unit", "speaker": 0, "speaker_confidence": 1, "start": 46.665, "word": "unit" }, { "confidence": 0.90527344, "end": 47.225002, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 1, "start": 46.985, "word": "at" }, { "confidence": 0.51953125, "end": 47.67, "punctuated_word": "Block,", "speaker": 0, "speaker_confidence": 1, "start": 47.225002, "word": "block" }, { "confidence": 0.8911133, "end": 48.149998, "punctuated_word": "formally", "speaker": 0, "speaker_confidence": 1, "start": 47.829998, "word": "formally" }, { "confidence": 0.85913086, "end": 48.629997, "punctuated_word": "Square,", "speaker": 0, "speaker_confidence": 1, "start": 48.149998, "word": "square" }, { "confidence": 0.9980469, "end": 48.789997, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 48.629997, "word": "and" }, { "confidence": 1, "end": 48.949997, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 48.789997, "word": "the" }, { "confidence": 1, "end": 49.35, "punctuated_word": "idea", "speaker": 0, "speaker_confidence": 1, "start": 48.949997, "word": "idea" }, { "confidence": 0.99902344, "end": 49.51, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 49.35, "word": "is" }, { "confidence": 1, "end": 49.67, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 49.51, "word": "to" }, { "confidence": 1, "end": 50.07, "punctuated_word": "provide", "speaker": 0, "speaker_confidence": 1, "start": 49.67, "word": "provide" }, { "confidence": 1, "end": 50.309998, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 50.07, "word": "a" }, { "confidence": 0.9980469, "end": 50.809998, "punctuated_word": "decentralized", "speaker": 0, "speaker_confidence": 1, "start": 50.309998, "word": "decentralized" }, { "confidence": 0.90478516, "end": 51.429996, "punctuated_word": "Internet", "speaker": 0, "speaker_confidence": 1, "start": 51.03, "word": "internet" }, { "confidence": 0.9921875, "end": 51.75, "punctuated_word": "layer", "speaker": 0, "speaker_confidence": 1, "start": 51.429996, "word": "layer" }, { "confidence": 0.99316406, "end": 51.989998, "punctuated_word": "based", "speaker": 0, "speaker_confidence": 1, "start": 51.75, "word": "based" }, { "confidence": 1, "end": 52.149998, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 1, "start": 51.989998, "word": "on" }, { "confidence": 0.9733887, "end": 52.649998, "punctuated_word": "Bitcoin's", "speaker": 0, "speaker_confidence": 1, "start": 52.149998, "word": "bitcoin's" }, { "confidence": 0.5019531, "end": 53.109997, "punctuated_word": "Lightning", "speaker": 0, "speaker_confidence": 1, "start": 52.71, "word": "lightning" }, { "confidence": 0.8833008, "end": 53.589996, "punctuated_word": "Network,", "speaker": 0, "speaker_confidence": 1, "start": 53.109997, "word": "network" }, { "confidence": 0.99902344, "end": 53.829998, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 1, "start": 53.589996, "word": "where" }, { "confidence": 1, "end": 54.149998, "punctuated_word": "users", "speaker": 0, "speaker_confidence": 1, "start": 53.829998, "word": "users" }, { "confidence": 0.9980469, "end": 54.309998, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 1, "start": 54.149998, "word": "own" }, { "confidence": 0.99902344, "end": 54.469997, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 54.309998, "word": "and" }, { "confidence": 1, "end": 54.789997, "punctuated_word": "control", "speaker": 0, "speaker_confidence": 1, "start": 54.469997, "word": "control" }, { "confidence": 1, "end": 54.949997, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 1, "start": 54.789997, "word": "their" }, { "confidence": 1, "end": 55.429996, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 1, "start": 54.949997, "word": "data" }, { "confidence": 0.7841797, "end": 55.589996, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 55.429996, "word": "and" }, { "confidence": 1, "end": 55.829998, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 1, "start": 55.589996, "word": "have" }, { "confidence": 1, "end": 55.909996, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 55.829998, "word": "a" }, { "confidence": 0.9951172, "end": 56.305, "punctuated_word": "wallet", "speaker": 0, "speaker_confidence": 1, "start": 55.909996, "word": "wallet" }, { "confidence": 0.9980469, "end": 56.545002, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 1, "start": 56.385002, "word": "just" }, { "confidence": 0.9970703, "end": 56.785, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 56.545002, "word": "like" }, { "confidence": 0.9316406, "end": 57.025, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 1, "start": 56.785, "word": "web" }, { "confidence": 0.79907227, "end": 57.345, "punctuated_word": "3,", "speaker": 0, "speaker_confidence": 1, "start": 57.025, "word": "3" }, { "confidence": 0.9951172, "end": 57.585, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 57.345, "word": "that" }, { "confidence": 0.9980469, "end": 57.745, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 57.585, "word": "can" }, { "confidence": 1, "end": 57.985, "punctuated_word": "connect", "speaker": 0, "speaker_confidence": 1, "start": 57.745, "word": "connect" }, { "confidence": 0.99902344, "end": 58.225, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 1, "start": 57.985, "word": "their" }, { "confidence": 1, "end": 58.725, "punctuated_word": "identity", "speaker": 0, "speaker_confidence": 1, "start": 58.225, "word": "identity" }, { "confidence": 1, "end": 59.025, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 58.785, "word": "to" }, { "confidence": 1, "end": 59.265, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 1, "start": 59.025, "word": "any" }, { "confidence": 1, "end": 59.505, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 1, "start": 59.265, "word": "app" }, { "confidence": 0.9873047, "end": 59.825, "punctuated_word": "without", "speaker": 0, "speaker_confidence": 1, "start": 59.505, "word": "without" }, { "confidence": 0.99902344, "end": 60.225, "punctuated_word": "needing", "speaker": 0, "speaker_confidence": 1, "start": 59.825, "word": "needing" }, { "confidence": 0.99902344, "end": 60.465, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 60.225, "word": "to" }, { "confidence": 1, "end": 60.625, "punctuated_word": "sign", "speaker": 0, "speaker_confidence": 1, "start": 60.465, "word": "sign" }, { "confidence": 0.99609375, "end": 60.865, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 1, "start": 60.625, "word": "up" }, { "confidence": 0.9790039, "end": 61.105, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 60.865, "word": "and" }, { "confidence": 1, "end": 61.605, "punctuated_word": "explicitly", "speaker": 0, "speaker_confidence": 1, "start": 61.105, "word": "explicitly" }, { "confidence": 0.99902344, "end": 61.905, "punctuated_word": "share", "speaker": 0, "speaker_confidence": 1, "start": 61.665, "word": "share" }, { "confidence": 0.99902344, "end": 62.065, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 1, "start": 61.905, "word": "their" }, { "confidence": 1, "end": 62.385002, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 1, "start": 62.065, "word": "data" }, { "confidence": 0.99902344, "end": 62.545, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 62.385002, "word": "with" }, { "confidence": 0.9970703, "end": 62.625, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 62.545, "word": "the" }, { "confidence": 0.99902344, "end": 62.945, "punctuated_word": "host", "speaker": 0, "speaker_confidence": 1, "start": 62.625, "word": "host" }, { "confidence": 0.99658203, "end": 63.185, "punctuated_word": "app.", "speaker": 0, "speaker_confidence": 1, "start": 62.945, "word": "app" }, { "confidence": 0.98828125, "end": 63.32, "punctuated_word": "When", "speaker": 0, "speaker_confidence": 1, "start": 63.185, "word": "when" }, { "confidence": 0.52490234, "end": 63.48, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 1, "start": 63.4, "word": "when" }, { "confidence": 0.99902344, "end": 63.56, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8886719, "start": 63.48, "word": "it" }, { "confidence": 0.9980469, "end": 63.72, "punctuated_word": "comes", "speaker": 0, "speaker_confidence": 0.8886719, "start": 63.56, "word": "comes" }, { "confidence": 0.9980469, "end": 63.8, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8886719, "start": 63.72, "word": "to" }, { "confidence": 0.9941406, "end": 64.04, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.8886719, "start": 63.8, "word": "app" }, { "confidence": 0.953125, "end": 64.54, "punctuated_word": "developers,", "speaker": 0, "speaker_confidence": 0.8886719, "start": 64.04, "word": "developers" }, { "confidence": 0.99609375, "end": 64.92, "punctuated_word": "instead", "speaker": 0, "speaker_confidence": 0.8886719, "start": 64.68, "word": "instead" }, { "confidence": 0.99902344, "end": 65.08, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8886719, "start": 64.92, "word": "of" }, { "confidence": 0.9951172, "end": 65.4, "punctuated_word": "building", "speaker": 0, "speaker_confidence": 0.8886719, "start": 65.08, "word": "building" }, { "confidence": 0.9607747, "end": 65.9, "punctuated_word": "PWAs,", "speaker": 0, "speaker_confidence": 0.8886719, "start": 65.4, "word": "pwas" }, { "confidence": 0.99609375, "end": 66.28, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.8886719, "start": 66.12, "word": "you" }, { "confidence": 0.99609375, "end": 66.44, "punctuated_word": "would", "speaker": 0, "speaker_confidence": 0.8886719, "start": 66.28, "word": "would" }, { "confidence": 0.9716797, "end": 66.76, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.8886719, "start": 66.44, "word": "build" }, { "confidence": 0.8531901, "end": 67.26, "punctuated_word": "DWAs,", "speaker": 0, "speaker_confidence": 0.8886719, "start": 66.76, "word": "dwas" }, { "confidence": 0.99121094, "end": 67.8, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.8886719, "start": 67.64, "word": "where" }, { "confidence": 0.99609375, "end": 67.96, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8886719, "start": 67.8, "word": "the" }, { "confidence": 0.9863281, "end": 68.12, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.8886719, "start": 67.96, "word": "web" }, { "confidence": 0.98828125, "end": 68.36, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.8886719, "start": 68.12, "word": "app" }, { "confidence": 0.9951172, "end": 68.52, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8886719, "start": 68.36, "word": "is" }, { "confidence": 0.9970703, "end": 68.76, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.8886719, "start": 68.52, "word": "not" }, { "confidence": 0.99121094, "end": 69, "punctuated_word": "served", "speaker": 0, "speaker_confidence": 0.8886719, "start": 68.76, "word": "served" }, { "confidence": 0.9658203, "end": 69.159996, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.8886719, "start": 69, "word": "by" }, { "confidence": 0.9790039, "end": 69.32, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8886719, "start": 69.159996, "word": "a" }, { "confidence": 0.9863281, "end": 69.82, "punctuated_word": "centralized", "speaker": 0, "speaker_confidence": 0.8886719, "start": 69.32, "word": "centralized" }, { "confidence": 0.9560547, "end": 70.04, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.8886719, "start": 69.88, "word": "app" }, { "confidence": 0.7583008, "end": 70.44, "punctuated_word": "server,", "speaker": 0, "speaker_confidence": 0.6699219, "start": 70.04, "word": "server" }, { "confidence": 0.82373047, "end": 70.76, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 0.6699219, "start": 70.44, "word": "most" }, { "confidence": 0.51171875, "end": 71.025, "punctuated_word": "likely", "speaker": 0, "speaker_confidence": 0.6699219, "start": 70.76, "word": "likely" }, { "confidence": 0.87841797, "end": 71.265, "punctuated_word": "owned", "speaker": 0, "speaker_confidence": 0.6699219, "start": 71.105, "word": "owned" }, { "confidence": 0.9980469, "end": 71.425, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.6699219, "start": 71.265, "word": "by" }, { "confidence": 0.9863281, "end": 71.905, "punctuated_word": "Amazon,", "speaker": 0, "speaker_confidence": 0.6699219, "start": 71.425, "word": "amazon" }, { "confidence": 0.9658203, "end": 72.225, "punctuated_word": "Google,", "speaker": 0, "speaker_confidence": 0.6699219, "start": 71.905, "word": "google" }, { "confidence": 0.99121094, "end": 72.305, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.796875, "start": 72.225, "word": "or" }, { "confidence": 0.96118164, "end": 72.805, "punctuated_word": "Microsoft,", "speaker": 0, "speaker_confidence": 0.796875, "start": 72.305, "word": "microsoft" }, { "confidence": 1, "end": 73.025, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.796875, "start": 72.865, "word": "but" }, { "confidence": 0.9633789, "end": 73.265, "punctuated_word": "rather", "speaker": 0, "speaker_confidence": 0.796875, "start": 73.025, "word": "rather" }, { "confidence": 0.9604492, "end": 73.505005, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.796875, "start": 73.265, "word": "a" }, { "confidence": 0.99902344, "end": 74.005005, "punctuated_word": "decentralized", "speaker": 0, "speaker_confidence": 0.796875, "start": 73.505005, "word": "decentralized" }, { "confidence": 0.98535156, "end": 74.465004, "punctuated_word": "node", "speaker": 0, "speaker_confidence": 0.796875, "start": 74.065, "word": "node" }, { "confidence": 0.99902344, "end": 74.705, "punctuated_word": "owned", "speaker": 0, "speaker_confidence": 0.796875, "start": 74.465004, "word": "owned" }, { "confidence": 1, "end": 74.945, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.796875, "start": 74.705, "word": "by" }, { "confidence": 1, "end": 75.185, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.796875, "start": 74.945, "word": "some" }, { "confidence": 0.99902344, "end": 75.425, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.796875, "start": 75.185, "word": "other" }, { "confidence": 1, "end": 75.665, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 0.796875, "start": 75.425, "word": "user" }, { "confidence": 1, "end": 75.825005, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.796875, "start": 75.665, "word": "on" }, { "confidence": 0.9980469, "end": 75.905, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.76464844, "start": 75.825005, "word": "the" }, { "confidence": 1, "end": 76.405, "punctuated_word": "network.", "speaker": 0, "speaker_confidence": 0.76464844, "start": 75.905, "word": "network" }, { "confidence": 0.99902344, "end": 76.785, "punctuated_word": "Most", "speaker": 0, "speaker_confidence": 0.76464844, "start": 76.545, "word": "most" }, { "confidence": 0.9980469, "end": 77.105, "punctuated_word": "notably", "speaker": 0, "speaker_confidence": 0.76464844, "start": 76.785, "word": "notably" }, { "confidence": 0.81884766, "end": 77.345, "punctuated_word": "though,", "speaker": 0, "speaker_confidence": 0.76464844, "start": 77.105, "word": "though" }, { "confidence": 1, "end": 77.505005, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.76464844, "start": 77.345, "word": "there" }, { "confidence": 0.81152344, "end": 77.665, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.76464844, "start": 77.505005, "word": "will" }, { "confidence": 0.99902344, "end": 77.825005, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.76464844, "start": 77.665, "word": "be" }, { "confidence": 1, "end": 77.985, "punctuated_word": "no", "speaker": 0, "speaker_confidence": 0.76464844, "start": 77.825005, "word": "no" }, { "confidence": 1, "end": 78.385, "punctuated_word": "tokens", "speaker": 0, "speaker_confidence": 0.76464844, "start": 77.985, "word": "tokens" }, { "confidence": 1, "end": 78.785, "punctuated_word": "involved", "speaker": 0, "speaker_confidence": 0.76464844, "start": 78.385, "word": "involved" }, { "confidence": 0.9902344, "end": 78.945, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.76464844, "start": 78.785, "word": "other" }, { "confidence": 1, "end": 79.24, "punctuated_word": "than", "speaker": 0, "speaker_confidence": 0.76464844, "start": 78.945, "word": "than" }, { "confidence": 0.9658203, "end": 79.72, "punctuated_word": "Bitcoin", "speaker": 0, "speaker_confidence": 0.76464844, "start": 79.32, "word": "bitcoin" }, { "confidence": 0.9711914, "end": 80.119995, "punctuated_word": "itself.", "speaker": 0, "speaker_confidence": 0.76464844, "start": 79.72, "word": "itself" }, { "confidence": 0.9970703, "end": 80.28, "punctuated_word": "That", "speaker": 0, "speaker_confidence": 0.5439453, "start": 80.119995, "word": "that" }, { "confidence": 1, "end": 80.52, "punctuated_word": "means", "speaker": 0, "speaker_confidence": 0.5439453, "start": 80.28, "word": "means" }, { "confidence": 0.91259766, "end": 80.759995, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.5439453, "start": 80.52, "word": "end" }, { "confidence": 0.99902344, "end": 81.079994, "punctuated_word": "users", "speaker": 0, "speaker_confidence": 0.5439453, "start": 80.759995, "word": "users" }, { "confidence": 1, "end": 81.32, "punctuated_word": "won't", "speaker": 0, "speaker_confidence": 0.5439453, "start": 81.079994, "word": "won't" }, { "confidence": 1, "end": 81.479996, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.5439453, "start": 81.32, "word": "have" }, { "confidence": 0.99902344, "end": 81.56, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9121094, "start": 81.479996, "word": "to" }, { "confidence": 1, "end": 81.799995, "punctuated_word": "worry", "speaker": 0, "speaker_confidence": 0.9121094, "start": 81.56, "word": "worry" }, { "confidence": 0.99902344, "end": 81.96, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.9121094, "start": 81.799995, "word": "about" }, { "confidence": 0.99902344, "end": 82.36, "punctuated_word": "investing", "speaker": 0, "speaker_confidence": 0.9121094, "start": 81.96, "word": "investing" }, { "confidence": 0.9863281, "end": 82.52, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9121094, "start": 82.36, "word": "in" }, { "confidence": 0.99902344, "end": 82.68, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.9121094, "start": 82.52, "word": "all" }, { "confidence": 0.984375, "end": 82.84, "punctuated_word": "these", "speaker": 0, "speaker_confidence": 0.9121094, "start": 82.68, "word": "these" }, { "confidence": 0.9980469, "end": 83.159996, "punctuated_word": "different", "speaker": 0, "speaker_confidence": 0.9121094, "start": 82.84, "word": "different" }, { "confidence": 0.921875, "end": 83.32, "punctuated_word": "shit", "speaker": 0, "speaker_confidence": 0.9121094, "start": 83.159996, "word": "shit" }, { "confidence": 0.5522461, "end": 83.64, "punctuated_word": "coins,", "speaker": 0, "speaker_confidence": 0.9121094, "start": 83.32, "word": "coins" }, { "confidence": 0.9970703, "end": 83.799995, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.9121094, "start": 83.64, "word": "like" }, { "confidence": 0.9873047, "end": 83.96, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.9121094, "start": 83.799995, "word": "this" }, { "confidence": 0.96435547, "end": 84.119995, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.9121094, "start": 83.96, "word": "one" }, { "confidence": 0.9951172, "end": 84.36, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 0.9121094, "start": 84.119995, "word": "called" }, { "confidence": 0.9375, "end": 84.759995, "punctuated_word": "Ethereum", "speaker": 0, "speaker_confidence": 0.9121094, "start": 84.36, "word": "ethereum" }, { "confidence": 0.9560547, "end": 84.92, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9121094, "start": 84.759995, "word": "that" }, { "confidence": 0.99316406, "end": 85.159996, "punctuated_word": "went", "speaker": 0, "speaker_confidence": 0.9121094, "start": 84.92, "word": "went" }, { "confidence": 0.99316406, "end": 85.399994, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.9121094, "start": 85.159996, "word": "from" }, { "confidence": 0.7458496, "end": 85.899994, "punctuated_word": "48100", "speaker": 0, "speaker_confidence": 0.9121094, "start": 85.399994, "word": "48100" }, { "confidence": 0.85253906, "end": 86.439995, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9121094, "start": 86.2, "word": "to" }, { "confidence": 0.7651367, "end": 86.915, "punctuated_word": "1200", "speaker": 0, "speaker_confidence": 0.9121094, "start": 86.439995, "word": "1200" }, { "confidence": 0.7675781, "end": 87.155, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9121094, "start": 86.995, "word": "in" }, { "confidence": 0.99316406, "end": 87.315, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.9121094, "start": 87.155, "word": "just" }, { "confidence": 0.9970703, "end": 87.395004, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9121094, "start": 87.315, "word": "a" }, { "confidence": 1, "end": 87.555, "punctuated_word": "few", "speaker": 0, "speaker_confidence": 0.9121094, "start": 87.395004, "word": "few" }, { "confidence": 0.77197266, "end": 87.955, "punctuated_word": "months,", "speaker": 0, "speaker_confidence": 0.9121094, "start": 87.555, "word": "months" }, { "confidence": 0.9980469, "end": 88.115, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.9121094, "start": 87.955, "word": "not" }, { "confidence": 0.99902344, "end": 88.195, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6928711, "start": 88.115, "word": "to" }, { "confidence": 0.99902344, "end": 88.435, "punctuated_word": "mention", "speaker": 0, "speaker_confidence": 0.6928711, "start": 88.195, "word": "mention" }, { "confidence": 0.9902344, "end": 88.595, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6928711, "start": 88.435, "word": "the" }, { "confidence": 0.99902344, "end": 88.995, "punctuated_word": "insane", "speaker": 0, "speaker_confidence": 0.6928711, "start": 88.595, "word": "insane" }, { "confidence": 0.9951172, "end": 89.235, "punctuated_word": "gas", "speaker": 0, "speaker_confidence": 0.6928711, "start": 88.995, "word": "gas" }, { "confidence": 0.99121094, "end": 89.475, "punctuated_word": "fees", "speaker": 0, "speaker_confidence": 0.6928711, "start": 89.235, "word": "fees" }, { "confidence": 0.99902344, "end": 89.555, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.6928711, "start": 89.475, "word": "that" }, { "confidence": 1, "end": 89.715004, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.6928711, "start": 89.555, "word": "you" }, { "confidence": 0.9980469, "end": 89.875, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.6928711, "start": 89.715004, "word": "have" }, { "confidence": 0.9980469, "end": 89.955, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9692383, "start": 89.875, "word": "to" }, { "confidence": 1, "end": 90.195, "punctuated_word": "pay", "speaker": 0, "speaker_confidence": 0.9692383, "start": 89.955, "word": "pay" }, { "confidence": 0.99121094, "end": 90.435, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.9692383, "start": 90.195, "word": "just" }, { "confidence": 0.9941406, "end": 90.595, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9692383, "start": 90.435, "word": "to" }, { "confidence": 0.99902344, "end": 90.915, "punctuated_word": "perform", "speaker": 0, "speaker_confidence": 0.9692383, "start": 90.595, "word": "perform" }, { "confidence": 0.99902344, "end": 91.415, "punctuated_word": "trivial", "speaker": 0, "speaker_confidence": 0.9692383, "start": 90.915, "word": "trivial" }, { "confidence": 0.9980469, "end": 91.975, "punctuated_word": "transactions", "speaker": 0, "speaker_confidence": 0.9692383, "start": 91.475, "word": "transactions" }, { "confidence": 0.99902344, "end": 92.195, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.9692383, "start": 92.035, "word": "with" }, { "confidence": 0.7392578, "end": 92.435, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.9692383, "start": 92.195, "word": "web" }, { "confidence": 0.82592773, "end": 92.835, "punctuated_word": "3.", "speaker": 0, "speaker_confidence": 0.9692383, "start": 92.435, "word": "3" }, { "confidence": 0.9980469, "end": 92.995, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.9692383, "start": 92.835, "word": "and" }, { "confidence": 0.95166016, "end": 93.155, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.9692383, "start": 92.995, "word": "as" }, { "confidence": 0.99902344, "end": 93.315, "punctuated_word": "many", "speaker": 0, "speaker_confidence": 0.9692383, "start": 93.155, "word": "many" }, { "confidence": 0.99902344, "end": 93.635, "punctuated_word": "critics", "speaker": 0, "speaker_confidence": 0.9692383, "start": 93.315, "word": "critics" }, { "confidence": 0.9838867, "end": 93.795, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.9692383, "start": 93.635, "word": "have" }, { "confidence": 1, "end": 94.035, "punctuated_word": "pointed", "speaker": 0, "speaker_confidence": 0.9692383, "start": 93.795, "word": "pointed" }, { "confidence": 0.9926758, "end": 94.355, "punctuated_word": "out,", "speaker": 0, "speaker_confidence": 0.9692383, "start": 94.035, "word": "out" }, { "confidence": 1, "end": 94.515, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9692383, "start": 94.355, "word": "the" }, { "confidence": 1, "end": 94.755, "punctuated_word": "current", "speaker": 0, "speaker_confidence": 0.9692383, "start": 94.515, "word": "current" }, { "confidence": 0.9970703, "end": 94.995, "punctuated_word": "state", "speaker": 0, "speaker_confidence": 0.9692383, "start": 94.755, "word": "state" }, { "confidence": 1, "end": 95.075, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9692383, "start": 94.995, "word": "of" }, { "confidence": 0.93408203, "end": 95.315, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.9692383, "start": 95.075, "word": "web" }, { "confidence": 0.921875, "end": 95.475, "punctuated_word": "3", "speaker": 0, "speaker_confidence": 0.9692383, "start": 95.315, "word": "3" }, { "confidence": 0.99609375, "end": 95.635, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9692383, "start": 95.475, "word": "is" }, { "confidence": 1, "end": 95.875, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.9692383, "start": 95.635, "word": "not" }, { "confidence": 0.9902344, "end": 96.375, "punctuated_word": "decentralized", "speaker": 0, "speaker_confidence": 0.9692383, "start": 95.875, "word": "decentralized" }, { "confidence": 0.9970703, "end": 96.595, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.9692383, "start": 96.515, "word": "at" }, { "confidence": 0.9785156, "end": 96.9, "punctuated_word": "all,", "speaker": 0, "speaker_confidence": 0.9692383, "start": 96.595, "word": "all" }, { "confidence": 0.9980469, "end": 97.14, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.9692383, "start": 96.9, "word": "but" }, { "confidence": 0.9921875, "end": 97.380005, "punctuated_word": "rather", "speaker": 0, "speaker_confidence": 0.9692383, "start": 97.14, "word": "rather" }, { "confidence": 0.9326172, "end": 97.86, "punctuated_word": "controlled", "speaker": 0, "speaker_confidence": 0.9692383, "start": 97.380005, "word": "controlled" }, { "confidence": 0.9980469, "end": 97.979996, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.9692383, "start": 97.86, "word": "by" }, { "confidence": 0.99121094, "end": 98.1, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 97.979996, "word": "a" }, { "confidence": 0.99902344, "end": 98.340004, "punctuated_word": "small", "speaker": 0, "speaker_confidence": 1, "start": 98.1, "word": "small" }, { "confidence": 0.99902344, "end": 98.66, "punctuated_word": "number", "speaker": 0, "speaker_confidence": 1, "start": 98.340004, "word": "number" }, { "confidence": 0.99902344, "end": 98.74, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 98.66, "word": "of" }, { "confidence": 0.9187012, "end": 99.24, "punctuated_word": "VCs", "speaker": 0, "speaker_confidence": 1, "start": 98.74, "word": "vcs" }, { "confidence": 0.94921875, "end": 99.54, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 99.3, "word": "and" }, { "confidence": 0.99316406, "end": 99.94, "punctuated_word": "Silicon", "speaker": 0, "speaker_confidence": 1, "start": 99.54, "word": "silicon" }, { "confidence": 0.9970703, "end": 100.340004, "punctuated_word": "Valley", "speaker": 0, "speaker_confidence": 1, "start": 99.94, "word": "valley" }, { "confidence": 0.9289551, "end": 100.840004, "punctuated_word": "insiders.", "speaker": 0, "speaker_confidence": 1, "start": 100.340004, "word": "insiders" }, { "confidence": 0.9995117, "end": 101.3, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 1, "start": 101.06, "word": "it's" }, { "confidence": 0.99902344, "end": 101.8, "punctuated_word": "unfortunate", "speaker": 0, "speaker_confidence": 1, "start": 101.3, "word": "unfortunate" }, { "confidence": 0.53515625, "end": 102.26, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 1, "start": 101.86, "word": "because" }, { "confidence": 0.9946289, "end": 102.76, "punctuated_word": "decentralization", "speaker": 0, "speaker_confidence": 1, "start": 102.26, "word": "decentralization" }, { "confidence": 1, "end": 103.380005, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 103.14, "word": "is" }, { "confidence": 1, "end": 103.46, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 103.380005, "word": "a" }, { "confidence": 1, "end": 103.700005, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 1, "start": 103.46, "word": "really" }, { "confidence": 1, "end": 104.18, "punctuated_word": "awesome", "speaker": 0, "speaker_confidence": 1, "start": 103.700005, "word": "awesome" }, { "confidence": 1, "end": 104.58, "punctuated_word": "concept", "speaker": 0, "speaker_confidence": 1, "start": 104.18, "word": "concept" }, { "confidence": 1, "end": 104.74, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 104.58, "word": "for" }, { "confidence": 0.99902344, "end": 104.9, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 104.74, "word": "the" }, { "confidence": 0.8984375, "end": 105.115, "punctuated_word": "Web.", "speaker": 0, "speaker_confidence": 1, "start": 104.9, "word": "web" }, { "confidence": 0.9980469, "end": 105.435, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 1, "start": 105.275, "word": "you" }, { "confidence": 0.9995117, "end": 105.515, "punctuated_word": "don't", "speaker": 0, "speaker_confidence": 1, "start": 105.435, "word": "don't" }, { "confidence": 0.9970703, "end": 105.835, "punctuated_word": "actually", "speaker": 0, "speaker_confidence": 1, "start": 105.515, "word": "actually" }, { "confidence": 1, "end": 106.075, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 1, "start": 105.835, "word": "need" }, { "confidence": 0.9863281, "end": 106.575, "punctuated_word": "cryptocurrency", "speaker": 0, "speaker_confidence": 1, "start": 106.075, "word": "cryptocurrency" }, { "confidence": 1, "end": 106.795, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 106.715, "word": "to" }, { "confidence": 0.9980469, "end": 106.954994, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 1, "start": 106.795, "word": "make" }, { "confidence": 1, "end": 107.034996, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 106.954994, "word": "it" }, { "confidence": 0.8483887, "end": 107.435, "punctuated_word": "work,", "speaker": 0, "speaker_confidence": 1, "start": 107.034996, "word": "work" }, { "confidence": 0.99902344, "end": 107.595, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 107.435, "word": "you" }, { "confidence": 0.99902344, "end": 107.755, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 1, "start": 107.595, "word": "just" }, { "confidence": 0.99902344, "end": 107.915, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 1, "start": 107.755, "word": "need" }, { "confidence": 0.9980469, "end": 107.994995, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 107.915, "word": "a" }, { "confidence": 1, "end": 108.235, "punctuated_word": "bunch", "speaker": 0, "speaker_confidence": 1, "start": 107.994995, "word": "bunch" }, { "confidence": 0.99609375, "end": 108.314995, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 108.235, "word": "of" }, { "confidence": 0.99902344, "end": 108.715, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 1, "start": 108.314995, "word": "people" }, { "confidence": 1, "end": 109.215, "punctuated_word": "participating", "speaker": 0, "speaker_confidence": 1, "start": 108.715, "word": "participating" }, { "confidence": 0.9892578, "end": 109.674995, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 109.435, "word": "and" }, { "confidence": 0.9589844, "end": 110.174995, "punctuated_word": "benefiting", "speaker": 0, "speaker_confidence": 1, "start": 109.674995, "word": "benefiting" }, { "confidence": 1, "end": 110.475, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 1, "start": 110.235, "word": "from" }, { "confidence": 0.984375, "end": 110.555, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8847656, "start": 110.475, "word": "the" }, { "confidence": 0.9995117, "end": 111.055, "punctuated_word": "system.", "speaker": 0, "speaker_confidence": 0.8847656, "start": 110.555, "word": "system" }, { "confidence": 0.9916992, "end": 111.515, "punctuated_word": "BitTorrent", "speaker": 0, "speaker_confidence": 0.8847656, "start": 111.115, "word": "bittorrent" }, { "confidence": 0.9970703, "end": 111.674995, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.8847656, "start": 111.515, "word": "has" }, { "confidence": 1, "end": 111.755, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.8847656, "start": 111.674995, "word": "been" }, { "confidence": 1, "end": 111.994995, "punctuated_word": "doing", "speaker": 0, "speaker_confidence": 0.8847656, "start": 111.755, "word": "doing" }, { "confidence": 0.9970703, "end": 112.155, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.8847656, "start": 111.994995, "word": "this" }, { "confidence": 0.9980469, "end": 112.314995, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.8847656, "start": 112.155, "word": "for" }, { "confidence": 0.984375, "end": 112.634995, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.8847656, "start": 112.314995, "word": "file" }, { "confidence": 1, "end": 112.954994, "punctuated_word": "sharing", "speaker": 0, "speaker_confidence": 0.8847656, "start": 112.634995, "word": "sharing" }, { "confidence": 0.9453125, "end": 113.195, "punctuated_word": "long", "speaker": 0, "speaker_confidence": 0.8847656, "start": 112.954994, "word": "long" }, { "confidence": 1, "end": 113.515, "punctuated_word": "before", "speaker": 0, "speaker_confidence": 0.8847656, "start": 113.195, "word": "before" }, { "confidence": 0.9716797, "end": 113.915, "punctuated_word": "Bitcoin", "speaker": 0, "speaker_confidence": 0.8847656, "start": 113.515, "word": "bitcoin" }, { "confidence": 0.9970703, "end": 114.075, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.8847656, "start": 113.915, "word": "was" }, { "confidence": 0.9980469, "end": 114.235, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 0.8847656, "start": 114.075, "word": "even" }, { "confidence": 0.9970703, "end": 114.314995, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.95214844, "start": 114.235, "word": "a" }, { "confidence": 0.9980469, "end": 114.71, "punctuated_word": "thing.", "speaker": 0, "speaker_confidence": 0.95214844, "start": 114.314995, "word": "thing" }, { "confidence": 0.93847656, "end": 114.87, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.95214844, "start": 114.71, "word": "now" }, { "confidence": 0.9003906, "end": 114.95, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.95214844, "start": 114.87, "word": "the" }, { "confidence": 0.9980469, "end": 115.11, "punctuated_word": "funny", "speaker": 0, "speaker_confidence": 0.95214844, "start": 114.95, "word": "funny" }, { "confidence": 0.99121094, "end": 115.19, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.95214844, "start": 115.11, "word": "thing" }, { "confidence": 0.9970703, "end": 115.51, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.95214844, "start": 115.19, "word": "about" }, { "confidence": 0.74316406, "end": 115.75, "punctuated_word": "Web", "speaker": 0, "speaker_confidence": 0.95214844, "start": 115.51, "word": "web" }, { "confidence": 0.96777344, "end": 115.99, "punctuated_word": "5", "speaker": 0, "speaker_confidence": 0.95214844, "start": 115.75, "word": "5" }, { "confidence": 0.9199219, "end": 116.229996, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.95214844, "start": 115.99, "word": "is" }, { "confidence": 0.99902344, "end": 116.39, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.95214844, "start": 116.229996, "word": "that" }, { "confidence": 0.9904785, "end": 116.47, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.95214844, "start": 116.39, "word": "it's" }, { "confidence": 0.8833008, "end": 116.79, "punctuated_word": "being", "speaker": 0, "speaker_confidence": 0.95214844, "start": 116.47, "word": "being" }, { "confidence": 0.9980469, "end": 117.29, "punctuated_word": "spearheaded", "speaker": 0, "speaker_confidence": 0.95214844, "start": 116.79, "word": "spearheaded" }, { "confidence": 1, "end": 117.59, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.95214844, "start": 117.35, "word": "by" }, { "confidence": 0.9770508, "end": 117.909996, "punctuated_word": "Jack", "speaker": 0, "speaker_confidence": 0.95214844, "start": 117.59, "word": "jack" }, { "confidence": 0.9527995, "end": 118.409996, "punctuated_word": "Dorsey,", "speaker": 0, "speaker_confidence": 0.95214844, "start": 117.909996, "word": "dorsey" }, { "confidence": 0.9941406, "end": 118.63, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.95214844, "start": 118.47, "word": "a" }, { "confidence": 0.9980469, "end": 119.03, "punctuated_word": "CEO", "speaker": 0, "speaker_confidence": 0.95214844, "start": 118.63, "word": "ceo" }, { "confidence": 0.99902344, "end": 119.27, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.95214844, "start": 119.03, "word": "with" }, { "confidence": 1, "end": 119.43, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.95214844, "start": 119.27, "word": "an" }, { "confidence": 1, "end": 119.83, "punctuated_word": "excellent", "speaker": 0, "speaker_confidence": 0.95214844, "start": 119.43, "word": "excellent" }, { "confidence": 0.99902344, "end": 120.07, "punctuated_word": "track", "speaker": 0, "speaker_confidence": 0.95214844, "start": 119.83, "word": "track" }, { "confidence": 1, "end": 120.47, "punctuated_word": "record", "speaker": 0, "speaker_confidence": 0.95214844, "start": 120.07, "word": "record" }, { "confidence": 0.9980469, "end": 120.63, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.95214844, "start": 120.47, "word": "of" }, { "confidence": 1, "end": 120.79, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.95214844, "start": 120.63, "word": "not" }, { "confidence": 0.9921875, "end": 121.11, "punctuated_word": "caring", "speaker": 0, "speaker_confidence": 0.95214844, "start": 120.79, "word": "caring" }, { "confidence": 0.99902344, "end": 121.35, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.95214844, "start": 121.11, "word": "about" }, { "confidence": 0.99902344, "end": 121.59, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.95214844, "start": 121.35, "word": "your" }, { "confidence": 0.95092773, "end": 121.99, "punctuated_word": "speech,", "speaker": 0, "speaker_confidence": 0.95214844, "start": 121.59, "word": "speech" }, { "confidence": 0.84399414, "end": 122.47, "punctuated_word": "privacy,", "speaker": 0, "speaker_confidence": 0.95214844, "start": 121.99, "word": "privacy" }, { "confidence": 0.9951172, "end": 122.549995, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.95214844, "start": 122.47, "word": "or" }, { "confidence": 0.9916992, "end": 123.03, "punctuated_word": "freedom.", "speaker": 0, "speaker_confidence": 0.95214844, "start": 122.549995, "word": "freedom" }, { "confidence": 0.8979492, "end": 123.35, "punctuated_word": "You're", "speaker": 0, "speaker_confidence": 0, "start": 123.03, "word": "you're" }, { "confidence": 0.9863281, "end": 123.43, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0, "start": 123.35, "word": "a" }, { "confidence": 0.97802734, "end": 123.75, "punctuated_word": "big", "speaker": 0, "speaker_confidence": 0, "start": 123.43, "word": "big" }, { "confidence": 0.84814453, "end": 124.095, "punctuated_word": "fat", "speaker": 0, "speaker_confidence": 0, "start": 123.75, "word": "fat" }, { "confidence": 0.26367188, "end": 124.135, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0, "start": 124.095, "word": "then" }, { "confidence": 0.5581868, "end": 124.675, "punctuated_word": "Foti.", "speaker": 0, "speaker_confidence": 0, "start": 124.175, "word": "foti" }, { "confidence": 0.92578125, "end": 125.055, "punctuated_word": "Like,", "speaker": 0, "speaker_confidence": 0.7548828, "start": 124.735, "word": "like" }, { "confidence": 0.9863281, "end": 125.135, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7548828, "start": 125.055, "word": "you" }, { "confidence": 1, "end": 125.375, "punctuated_word": "wouldn't", "speaker": 0, "speaker_confidence": 0.7548828, "start": 125.135, "word": "wouldn't" }, { "confidence": 0.9941406, "end": 125.535, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.7548828, "start": 125.375, "word": "want" }, { "confidence": 0.9951172, "end": 125.855, "punctuated_word": "Mark", "speaker": 0, "speaker_confidence": 0.7548828, "start": 125.535, "word": "mark" }, { "confidence": 0.9902344, "end": 126.355, "punctuated_word": "Zuckerberg", "speaker": 0, "speaker_confidence": 0.7548828, "start": 125.855, "word": "zuckerberg" }, { "confidence": 0.99902344, "end": 126.575005, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7548828, "start": 126.415, "word": "to" }, { "confidence": 0.99902344, "end": 126.655, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.7548828, "start": 126.575005, "word": "be" }, { "confidence": 0.9873047, "end": 126.815, "punctuated_word": "king", "speaker": 0, "speaker_confidence": 0.7548828, "start": 126.655, "word": "king" }, { "confidence": 1, "end": 126.895004, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7548828, "start": 126.815, "word": "of" }, { "confidence": 0.99902344, "end": 127.055, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7548828, "start": 126.895004, "word": "the" }, { "confidence": 0.9607747, "end": 127.555, "punctuated_word": "metaverse.", "speaker": 0, "speaker_confidence": 0.7548828, "start": 127.055, "word": "metaverse" }, { "confidence": 0.9980469, "end": 127.775, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 1, "start": 127.615, "word": "in" }, { "confidence": 1, "end": 127.935, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 127.775, "word": "the" }, { "confidence": 1, "end": 128.095, "punctuated_word": "same", "speaker": 0, "speaker_confidence": 1, "start": 127.935, "word": "same" }, { "confidence": 0.9980469, "end": 128.335, "punctuated_word": "way,", "speaker": 0, "speaker_confidence": 1, "start": 128.095, "word": "way" }, { "confidence": 1, "end": 128.495, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 128.335, "word": "you" }, { "confidence": 0.99902344, "end": 128.895, "punctuated_word": "definitely", "speaker": 0, "speaker_confidence": 1, "start": 128.495, "word": "definitely" }, { "confidence": 1, "end": 129.05501, "punctuated_word": "don't", "speaker": 0, "speaker_confidence": 1, "start": 128.895, "word": "don't" }, { "confidence": 0.9941406, "end": 129.295, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 1, "start": 129.05501, "word": "want" }, { "confidence": 0.99902344, "end": 129.535, "punctuated_word": "Jack", "speaker": 0, "speaker_confidence": 1, "start": 129.295, "word": "jack" }, { "confidence": 0.9995117, "end": 129.935, "punctuated_word": "Dorsey", "speaker": 0, "speaker_confidence": 1, "start": 129.535, "word": "dorsey" }, { "confidence": 0.99902344, "end": 130.015, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 129.935, "word": "to" }, { "confidence": 1, "end": 130.175, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 1, "start": 130.015, "word": "be" }, { "confidence": 0.9941406, "end": 130.41501, "punctuated_word": "king", "speaker": 0, "speaker_confidence": 1, "start": 130.175, "word": "king" }, { "confidence": 1, "end": 130.575, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 130.41501, "word": "of" }, { "confidence": 0.80078125, "end": 130.895, "punctuated_word": "Web", "speaker": 0, "speaker_confidence": 1, "start": 130.575, "word": "web" }, { "confidence": 0.98706055, "end": 131.215, "punctuated_word": "5.", "speaker": 0, "speaker_confidence": 1, "start": 130.895, "word": "5" }, { "confidence": 0.99658203, "end": 131.695, "punctuated_word": "Personally,", "speaker": 0, "speaker_confidence": 1, "start": 131.215, "word": "personally" }, { "confidence": 0.9995117, "end": 131.855, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 1, "start": 131.695, "word": "i'm" }, { "confidence": 1, "end": 132.19, "punctuated_word": "putting", "speaker": 0, "speaker_confidence": 1, "start": 131.855, "word": "putting" }, { "confidence": 0.5878906, "end": 132.42732, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 1, "start": 132.19, "word": "all" }, { "confidence": 0.9902344, "end": 132.66464, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 1, "start": 132.42732, "word": "my" }, { "confidence": 0.9838867, "end": 132.90195, "punctuated_word": "bets", "speaker": 0, "speaker_confidence": 1, "start": 132.66464, "word": "bets" }, { "confidence": 0.9902344, "end": 133.13927, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 1, "start": 132.90195, "word": "on" }, { "confidence": 0.5498047, "end": 133.37659, "punctuated_word": "Web", "speaker": 0, "speaker_confidence": 1, "start": 133.13927, "word": "web" }, { "confidence": 0.92626953, "end": 133.61389, "punctuated_word": "6,", "speaker": 0, "speaker_confidence": 1, "start": 133.37659, "word": "6" }, { "confidence": 0.99902344, "end": 133.85121, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 1, "start": 133.61389, "word": "which" }, { "confidence": 0.9951172, "end": 134.08853, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 133.85121, "word": "is" }, { "confidence": 0.99902344, "end": 134.32585, "punctuated_word": "already", "speaker": 0, "speaker_confidence": 1, "start": 134.08853, "word": "already" }, { "confidence": 1, "end": 134.56317, "punctuated_word": "under", "speaker": 0, "speaker_confidence": 1, "start": 134.32585, "word": "under" }, { "confidence": 0.9902344, "end": 134.80048, "punctuated_word": "development", "speaker": 0, "speaker_confidence": 1, "start": 134.56317, "word": "development" }, { "confidence": 1, "end": 135.0378, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 1, "start": 134.80048, "word": "by" }, { "confidence": 0.9975586, "end": 135.27512, "punctuated_word": "Snoop", "speaker": 0, "speaker_confidence": 1, "start": 135.0378, "word": "snoop" }, { "confidence": 0.991862, "end": 135.51242, "punctuated_word": "Dogg.", "speaker": 0, "speaker_confidence": 1, "start": 135.27512, "word": "dogg" }, { "confidence": 0.99902344, "end": 135.74974, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 1, "start": 135.51242, "word": "this" }, { "confidence": 0.9980469, "end": 135.98706, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 1, "start": 135.74974, "word": "has" }, { "confidence": 1, "end": 136.22438, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 1, "start": 135.98706, "word": "been" }, { "confidence": 0.95947266, "end": 136.4617, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 136.22438, "word": "the" }, { "confidence": 0.5654297, "end": 136.699, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 1, "start": 136.4617, "word": "code" }, { "confidence": 0.96875, "end": 136.93633, "punctuated_word": "report.", "speaker": 0, "speaker_confidence": 1, "start": 136.699, "word": "report" }, { "confidence": 0.9980469, "end": 137.17365, "punctuated_word": "Thanks", "speaker": 0, "speaker_confidence": 1, "start": 136.93633, "word": "thanks" }, { "confidence": 0.99902344, "end": 137.41095, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 137.17365, "word": "for" }, { "confidence": 0.9621582, "end": 137.64827, "punctuated_word": "watching,", "speaker": 0, "speaker_confidence": 1, "start": 137.41095, "word": "watching" }, { "confidence": 0.9980469, "end": 137.88559, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 137.64827, "word": "and" }, { "confidence": 1, "end": 138.12291, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 1, "start": 137.88559, "word": "i" }, { "confidence": 0.9970703, "end": 138.36023, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 1, "start": 138.12291, "word": "will" }, { "confidence": 0.98535156, "end": 138.59753, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 1, "start": 138.36023, "word": "see" }, { "confidence": 0.99609375, "end": 138.83485, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.27294922, "start": 138.59753, "word": "you" }, { "confidence": 0.9970703, "end": 139.07217, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.27294922, "start": 138.83485, "word": "in" }, { "confidence": 0.98291016, "end": 139.30948, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.27294922, "start": 139.07217, "word": "the" }, { "confidence": 1, "end": 139.5468, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.27294922, "start": 139.30948, "word": "next" }, { "confidence": 0.9885254, "end": 139.78412, "punctuated_word": "one.", "speaker": 0, "speaker_confidence": 0.27294922, "start": 139.5468, "word": "one" } ] } ], "detected_language": "", "language_confidence": 0, "search": null } ], "summary": { "result": "success", "short": "In a news report, Speaker 0 discusses the impact of the World gateway on various cryptocurrencies, including Bitcoin and Ethereum. Speaker 0 also talks about the development of a decentralized web platform called Bit MAC, which is owned by some developers and is being funded by venture capitalists. Speaker 0 mentions that decentralization is not a threat, but rather a way to access cryptocurrency without leaving privacy and freedom of use." }, "utterances": null } }
downloads\Web5_The_Web3_Killer.wav
https://www.youtube.com/watch?v=HDZWWFSZUF0
Web5... The Web3 Killer?
486,416
Fireship
126
WebGL makes it possible to render GPU-accelerated 3D graphics on the web. Learn the basics of 3D theory and rendering pipelines for complex graphics and animations https://fireship.io #webdev #3d #100SecondsOfCode 🔗 Resources WebGL https://developer.mozilla.org/en-US/docs/Web/API/WebGL_API Rendering Pipeline https://duriansoftware.com/joe/an-intro-to-modern-opengl.-chapter-1:-the-graphics-pipeline Three.js https://threejs.org/ Spline https://spline.design 🤓 Install the quiz app iOS https://itunes.apple.com/us/app/fireship/id1462592372?mt=8 Android https://play.google.com/store/apps/details?id=io.fireship.quizapp 🔥 Watch more with Fireship PRO Upgrade to Fireship PRO at https://fireship.io/pro Use code lORhwXd2 for 25% off your first payment. 🎨 My Editor Settings - Atom One Dark - vscode-icons - Fira Code Font
{ "metadata": { "channels": 1, "created": "2024-02-04T05:52:33.964Z", "duration": 126.40944, "model_info": { "30089e05-99d1-4376-b32e-c263170674af": { "arch": "nova-2", "name": "2-general-nova", "version": "2024-01-09.29447" } }, "models": [ "30089e05-99d1-4376-b32e-c263170674af" ], "request_id": "1f1b5456-7a78-4389-9f63-51bac8c8cd3c", "sha256": "3fd2bf86a063b4f53b43fd194c69f2f7f8f43e940ebfc89fd4c995e8f8d693fa", "summary_info": { "input_tokens": 480, "model_uuid": "67875a7f-c9c4-48a0-aa55-5bdb8a91c34a", "output_tokens": 91 }, "transaction_key": "deprecated", "warnings": null }, "results": { "channels": [ { "alternatives": [ { "confidence": 0.99902344, "entities": null, "paragraphs": { "paragraphs": [ { "end": 34.255, "num_words": 103, "sentences": [ { "end": 7.2, "start": 0.32, "text": "WebGraphics Library is a JavaScript API for implementing interactive 2 d and 3 d vector graphics in the browser." }, { "end": 15.395, "start": 7.2, "text": "It allows developers to run hardware accelerated graphics with the client's GPU directly inside an HTML canvas without the need for external plug ins." }, { "end": 22.619999, "start": 15.395, "text": "It opens the door to 3 d web design, interactive games, data vis, physics simulations, and most importantly, beautiful artwork." }, { "end": 28.895, "start": 22.759998, "text": "WebGL is used to render graphics in everyday tools like Google Maps, and by the Unity engine to make web based games." }, { "end": 34.255, "start": 29.115002, "text": "To understand how it works, it helps to first understand basic 3 d theory and the rendering pipeline." } ], "speaker": 0, "start": 0.32 }, { "end": 73.229996, "num_words": 129, "sentences": [ { "end": 39.35, "start": 34.395, "text": "In a 3 d scene, every point is a vertex identified by its x, y, and z coordinates." }, { "end": 49.265, "start": 39.57, "text": "The vertices are then connected together to form a bunch of little triangles known as primitives, then a light source bounces off of them to create the appearance of shadows and depth perception." }, { "end": 58.98, "start": 49.324997, "text": "They're then rasterized to convert a 3 d vector graphic into a projection of a 2 d pixel, which tricks our brains into seeing a 3 d object on a 2 dimensional computer screen." }, { "end": 65.424995, "start": 58.98, "text": "This pipeline can be customized by writing shaders, which are just functions that tell the computer how to draw pixels on the screen." }, { "end": 73.229996, "start": 65.485, "text": "Shading requires the computer to perform a ton of linear algebra or matrix multiplication to render graphics smoothly at 60 FPS." } ], "speaker": 0, "start": 34.395 }, { "end": 99.495, "num_words": 88, "sentences": [ { "end": 79.515, "start": 73.369995, "text": "It's often too much for the CPU to handle by itself, which is why we have GPUs to distribute the calculations more efficiently." }, { "end": 79.755, "start": 79.515, "text": "It." }, { "end": 86.895, "start": 79.755, "text": "WebGL allows us to process graphics on the GPU and is based on a library that's been around since 1992 called Open GL." }, { "end": 93.299995, "start": 86.955, "text": "To get started, you just need to grab an HTML canvas in the DOM, then get its WebGL contacts to start drawing." }, { "end": 99.495, "start": 93.36, "text": "The main program code is written in JavaScript, but shaders are written in the Open GL ES shading language." } ], "speaker": 0, "start": 73.369995 }, { "end": 123.055, "num_words": 84, "sentences": [ { "end": 107.39, "start": 99.555, "text": "A shader will take information about a vertex or fragment and use the GPU to calculate the data required to render it as a pixel on the screen." }, { "end": 111.95, "start": 107.45, "text": "Luckily, you don't need to write shaders by hand to start adding 3 d graphics to your website." }, { "end": 119.155, "start": 112.01, "text": "You can use libraries like 3 JS or tools like Spline too quickly designed 3 d experiences without much underlying knowledge of WebGL." }, { "end": 121.695, "start": 119.455, "text": "Stay tuned for a full 3 JS tutorial." }, { "end": 123.055, "start": 121.695, "text": "Make sure to hit the like button." } ], "speaker": 0, "start": 99.555 }, { "end": 125.984436, "num_words": 12, "sentences": [ { "end": 125.984436, "start": 123.055, "text": "Thanks for watching, and I will see you in the next one." } ], "speaker": 0, "start": 123.055 } ], "transcript": "\nSpeaker 0: WebGraphics Library is a JavaScript API for implementing interactive 2 d and 3 d vector graphics in the browser. It allows developers to run hardware accelerated graphics with the client's GPU directly inside an HTML canvas without the need for external plug ins. It opens the door to 3 d web design, interactive games, data vis, physics simulations, and most importantly, beautiful artwork. WebGL is used to render graphics in everyday tools like Google Maps, and by the Unity engine to make web based games. To understand how it works, it helps to first understand basic 3 d theory and the rendering pipeline.\n\nIn a 3 d scene, every point is a vertex identified by its x, y, and z coordinates. The vertices are then connected together to form a bunch of little triangles known as primitives, then a light source bounces off of them to create the appearance of shadows and depth perception. They're then rasterized to convert a 3 d vector graphic into a projection of a 2 d pixel, which tricks our brains into seeing a 3 d object on a 2 dimensional computer screen. This pipeline can be customized by writing shaders, which are just functions that tell the computer how to draw pixels on the screen. Shading requires the computer to perform a ton of linear algebra or matrix multiplication to render graphics smoothly at 60 FPS.\n\nIt's often too much for the CPU to handle by itself, which is why we have GPUs to distribute the calculations more efficiently. It. WebGL allows us to process graphics on the GPU and is based on a library that's been around since 1992 called Open GL. To get started, you just need to grab an HTML canvas in the DOM, then get its WebGL contacts to start drawing. The main program code is written in JavaScript, but shaders are written in the Open GL ES shading language.\n\nA shader will take information about a vertex or fragment and use the GPU to calculate the data required to render it as a pixel on the screen. Luckily, you don't need to write shaders by hand to start adding 3 d graphics to your website. You can use libraries like 3 JS or tools like Spline too quickly designed 3 d experiences without much underlying knowledge of WebGL. Stay tuned for a full 3 JS tutorial. Make sure to hit the like button.\n\nThanks for watching, and I will see you in the next one." }, "summaries": null, "topics": [ { "end_word": 211, "start_word": 0, "text": "WebGraphics Library is a JavaScript API for implementing interactive 2 d and 3 d vector graphics in the browser. It allows developers to run hardware accelerated graphics with the client's GPU directly inside an HTML canvas without the need for external plug ins. It opens the door to 3 d web design, interactive games, data vis, physics simulations, and most importantly, beautiful artwork. WebGL is used to render graphics in everyday tools like Google Maps, and by the Unity engine to make web based games. To understand how it works, it helps to first understand basic 3 d theory and the rendering pipeline. In a 3 d scene, every point is a vertex identified by its x, y, and z coordinates. The vertices are then connected together to form a bunch of little triangles known as primitives, then a light source bounces off of them to create the appearance of shadows and depth perception. They're then rasterized to convert a 3 d vector graphic into a projection of a 2 d pixel, which tricks our brains into seeing a 3 d object on a 2 dimensional computer screen. This pipeline can be customized by writing shaders, which are just functions that tell the computer how to draw pixels on the screen.", "topics": [ { "confidence": 0.9836215, "topic": "graphic design" }, { "confidence": 0.97459745, "topic": "geometry" }, { "confidence": 0.85897076, "topic": "visualization" }, { "confidence": 0.40148845, "topic": "youtube" }, { "confidence": 0.32783237, "topic": "multimedia" }, { "confidence": 0.24743779, "topic": "neural networks" }, { "confidence": 0.2352295, "topic": "animation" }, { "confidence": 0.053156383, "topic": "video gaming" }, { "confidence": 0.006405781, "topic": "mathematics" } ] }, { "end_word": 320, "start_word": 211, "text": "Shading requires the computer to perform a ton of linear algebra or matrix multiplication to render graphics smoothly at 60 FPS. It's often too much for the CPU to handle by itself, which is why we have GPUs to distribute the calculations more efficiently. It. WebGL allows us to process graphics on the GPU and is based on a library that's been around since 1992 called Open GL. To get started, you just need to grab an HTML canvas in the DOM, then get its WebGL contacts to start drawing. The main program code is written in JavaScript, but shaders are written in the Open GL ES shading language.", "topics": [] }, { "end_word": 404, "start_word": 320, "text": "A shader will take information about a vertex or fragment and use the GPU to calculate the data required to render it as a pixel on the screen. Luckily, you don't need to write shaders by hand to start adding 3 d graphics to your website. You can use libraries like 3 JS or tools like Spline too quickly designed 3 d experiences without much underlying knowledge of WebGL. Stay tuned for a full 3 JS tutorial. Make sure to hit the like button.", "topics": [ { "confidence": 0.043177728, "topic": "graphic design" } ] }, { "end_word": 416, "start_word": 404, "text": "Thanks for watching, and I will see you in the next one.", "topics": [] } ], "transcript": "WebGraphics Library is a JavaScript API for implementing interactive 2 d and 3 d vector graphics in the browser. It allows developers to run hardware accelerated graphics with the client's GPU directly inside an HTML canvas without the need for external plug ins. It opens the door to 3 d web design, interactive games, data vis, physics simulations, and most importantly, beautiful artwork. WebGL is used to render graphics in everyday tools like Google Maps, and by the Unity engine to make web based games. To understand how it works, it helps to first understand basic 3 d theory and the rendering pipeline. In a 3 d scene, every point is a vertex identified by its x, y, and z coordinates. The vertices are then connected together to form a bunch of little triangles known as primitives, then a light source bounces off of them to create the appearance of shadows and depth perception. They're then rasterized to convert a 3 d vector graphic into a projection of a 2 d pixel, which tricks our brains into seeing a 3 d object on a 2 dimensional computer screen. This pipeline can be customized by writing shaders, which are just functions that tell the computer how to draw pixels on the screen. Shading requires the computer to perform a ton of linear algebra or matrix multiplication to render graphics smoothly at 60 FPS. It's often too much for the CPU to handle by itself, which is why we have GPUs to distribute the calculations more efficiently. It. WebGL allows us to process graphics on the GPU and is based on a library that's been around since 1992 called Open GL. To get started, you just need to grab an HTML canvas in the DOM, then get its WebGL contacts to start drawing. The main program code is written in JavaScript, but shaders are written in the Open GL ES shading language. A shader will take information about a vertex or fragment and use the GPU to calculate the data required to render it as a pixel on the screen. Luckily, you don't need to write shaders by hand to start adding 3 d graphics to your website. You can use libraries like 3 JS or tools like Spline too quickly designed 3 d experiences without much underlying knowledge of WebGL. Stay tuned for a full 3 JS tutorial. Make sure to hit the like button. Thanks for watching, and I will see you in the next one.", "translations": null, "words": [ { "confidence": 0.8701172, "end": 0.82, "punctuated_word": "WebGraphics", "speaker": 0, "speaker_confidence": 1, "start": 0.32, "word": "webgraphics" }, { "confidence": 0.87060547, "end": 1.54, "punctuated_word": "Library", "speaker": 0, "speaker_confidence": 1, "start": 1.04, "word": "library" }, { "confidence": 0.97509766, "end": 1.8399999, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 1.5999999, "word": "is" }, { "confidence": 0.99902344, "end": 2, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 1.8399999, "word": "a" }, { "confidence": 0.98291016, "end": 2.5, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 1, "start": 2, "word": "javascript" }, { "confidence": 0.9980469, "end": 3.06, "punctuated_word": "API", "speaker": 0, "speaker_confidence": 1, "start": 2.56, "word": "api" }, { "confidence": 0.9970703, "end": 3.36, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 3.12, "word": "for" }, { "confidence": 0.99902344, "end": 3.86, "punctuated_word": "implementing", "speaker": 0, "speaker_confidence": 1, "start": 3.36, "word": "implementing" }, { "confidence": 0.9941406, "end": 4.66, "punctuated_word": "interactive", "speaker": 0, "speaker_confidence": 1, "start": 4.16, "word": "interactive" }, { "confidence": 0.8574219, "end": 4.96, "punctuated_word": "2", "speaker": 0, "speaker_confidence": 1, "start": 4.7999997, "word": "2" }, { "confidence": 0.7871094, "end": 5.12, "punctuated_word": "d", "speaker": 0, "speaker_confidence": 1, "start": 4.96, "word": "d" }, { "confidence": 0.94384766, "end": 5.2799997, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 5.12, "word": "and" }, { "confidence": 0.6904297, "end": 5.44, "punctuated_word": "3", "speaker": 0, "speaker_confidence": 1, "start": 5.2799997, "word": "3" }, { "confidence": 0.99609375, "end": 5.68, "punctuated_word": "d", "speaker": 0, "speaker_confidence": 1, "start": 5.44, "word": "d" }, { "confidence": 0.9707031, "end": 5.92, "punctuated_word": "vector", "speaker": 0, "speaker_confidence": 1, "start": 5.68, "word": "vector" }, { "confidence": 0.99902344, "end": 6.3999996, "punctuated_word": "graphics", "speaker": 0, "speaker_confidence": 1, "start": 5.92, "word": "graphics" }, { "confidence": 1, "end": 6.56, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 6.3999996, "word": "in" }, { "confidence": 1, "end": 6.72, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 6.56, "word": "the" }, { "confidence": 0.9995117, "end": 7.2, "punctuated_word": "browser.", "speaker": 0, "speaker_confidence": 1, "start": 6.72, "word": "browser" }, { "confidence": 0.99902344, "end": 7.44, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 1, "start": 7.2, "word": "it" }, { "confidence": 1, "end": 7.7599998, "punctuated_word": "allows", "speaker": 0, "speaker_confidence": 1, "start": 7.44, "word": "allows" }, { "confidence": 1, "end": 8.26, "punctuated_word": "developers", "speaker": 0, "speaker_confidence": 1, "start": 7.7599998, "word": "developers" }, { "confidence": 1, "end": 8.48, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 8.32, "word": "to" }, { "confidence": 1, "end": 8.755, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 1, "start": 8.48, "word": "run" }, { "confidence": 0.99902344, "end": 9.235, "punctuated_word": "hardware", "speaker": 0, "speaker_confidence": 1, "start": 8.835, "word": "hardware" }, { "confidence": 0.99902344, "end": 9.635, "punctuated_word": "accelerated", "speaker": 0, "speaker_confidence": 1, "start": 9.235, "word": "accelerated" }, { "confidence": 1, "end": 10.115, "punctuated_word": "graphics", "speaker": 0, "speaker_confidence": 1, "start": 9.635, "word": "graphics" }, { "confidence": 0.9941406, "end": 10.275, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 10.115, "word": "with" }, { "confidence": 0.99316406, "end": 10.435, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 10.275, "word": "the" }, { "confidence": 0.9641113, "end": 10.835, "punctuated_word": "client's", "speaker": 0, "speaker_confidence": 1, "start": 10.435, "word": "client's" }, { "confidence": 0.9980469, "end": 11.335, "punctuated_word": "GPU", "speaker": 0, "speaker_confidence": 1, "start": 10.835, "word": "gpu" }, { "confidence": 0.87353516, "end": 11.955, "punctuated_word": "directly", "speaker": 0, "speaker_confidence": 1, "start": 11.555, "word": "directly" }, { "confidence": 1, "end": 12.275, "punctuated_word": "inside", "speaker": 0, "speaker_confidence": 1, "start": 11.955, "word": "inside" }, { "confidence": 0.9790039, "end": 12.515, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 12.275, "word": "an" }, { "confidence": 0.9838867, "end": 13.015, "punctuated_word": "HTML", "speaker": 0, "speaker_confidence": 1, "start": 12.515, "word": "html" }, { "confidence": 0.9506836, "end": 13.475, "punctuated_word": "canvas", "speaker": 0, "speaker_confidence": 1, "start": 13.075, "word": "canvas" }, { "confidence": 0.9448242, "end": 13.795, "punctuated_word": "without", "speaker": 0, "speaker_confidence": 1, "start": 13.475, "word": "without" }, { "confidence": 1, "end": 13.875, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 13.795, "word": "the" }, { "confidence": 1, "end": 14.115, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 1, "start": 13.875, "word": "need" }, { "confidence": 1, "end": 14.434999, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 14.115, "word": "for" }, { "confidence": 1, "end": 14.835, "punctuated_word": "external", "speaker": 0, "speaker_confidence": 1, "start": 14.434999, "word": "external" }, { "confidence": 0.5258789, "end": 15.075, "punctuated_word": "plug", "speaker": 0, "speaker_confidence": 1, "start": 14.835, "word": "plug" }, { "confidence": 0.9995117, "end": 15.395, "punctuated_word": "ins.", "speaker": 0, "speaker_confidence": 1, "start": 15.075, "word": "ins" }, { "confidence": 0.9980469, "end": 15.555, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 1, "start": 15.395, "word": "it" }, { "confidence": 1, "end": 15.795, "punctuated_word": "opens", "speaker": 0, "speaker_confidence": 1, "start": 15.555, "word": "opens" }, { "confidence": 0.9980469, "end": 15.955, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 15.795, "word": "the" }, { "confidence": 0.9980469, "end": 16.195, "punctuated_word": "door", "speaker": 0, "speaker_confidence": 1, "start": 15.955, "word": "door" }, { "confidence": 0.9970703, "end": 16.435, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 16.195, "word": "to" }, { "confidence": 0.9091797, "end": 16.675, "punctuated_word": "3", "speaker": 0, "speaker_confidence": 1, "start": 16.435, "word": "3" }, { "confidence": 0.91748047, "end": 16.835, "punctuated_word": "d", "speaker": 0, "speaker_confidence": 1, "start": 16.675, "word": "d" }, { "confidence": 0.97509766, "end": 16.994999, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 1, "start": 16.835, "word": "web" }, { "confidence": 0.98413086, "end": 17.475, "punctuated_word": "design,", "speaker": 0, "speaker_confidence": 1, "start": 16.994999, "word": "design" }, { "confidence": 0.97265625, "end": 17.96, "punctuated_word": "interactive", "speaker": 0, "speaker_confidence": 1, "start": 17.475, "word": "interactive" }, { "confidence": 0.9177246, "end": 18.539999, "punctuated_word": "games,", "speaker": 0, "speaker_confidence": 1, "start": 18.039999, "word": "games" }, { "confidence": 0.58251953, "end": 18.919998, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 1, "start": 18.599998, "word": "data" }, { "confidence": 0.77490234, "end": 19.4, "punctuated_word": "vis,", "speaker": 0, "speaker_confidence": 1, "start": 18.919998, "word": "vis" }, { "confidence": 0.98535156, "end": 19.8, "punctuated_word": "physics", "speaker": 0, "speaker_confidence": 1, "start": 19.4, "word": "physics" }, { "confidence": 0.9824219, "end": 20.3, "punctuated_word": "simulations,", "speaker": 0, "speaker_confidence": 1, "start": 19.8, "word": "simulations" }, { "confidence": 1, "end": 20.759998, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 20.519999, "word": "and" }, { "confidence": 0.7036133, "end": 21.079998, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 1, "start": 20.759998, "word": "most" }, { "confidence": 0.9621582, "end": 21.579998, "punctuated_word": "importantly,", "speaker": 0, "speaker_confidence": 1, "start": 21.079998, "word": "importantly" }, { "confidence": 1, "end": 22.119999, "punctuated_word": "beautiful", "speaker": 0, "speaker_confidence": 1, "start": 21.72, "word": "beautiful" }, { "confidence": 0.9980469, "end": 22.619999, "punctuated_word": "artwork.", "speaker": 0, "speaker_confidence": 1, "start": 22.119999, "word": "artwork" }, { "confidence": 0.9921875, "end": 23.259998, "punctuated_word": "WebGL", "speaker": 0, "speaker_confidence": 1, "start": 22.759998, "word": "webgl" }, { "confidence": 0.9980469, "end": 23.48, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 23.32, "word": "is" }, { "confidence": 1, "end": 23.72, "punctuated_word": "used", "speaker": 0, "speaker_confidence": 1, "start": 23.48, "word": "used" }, { "confidence": 1, "end": 23.8, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 23.72, "word": "to" }, { "confidence": 1, "end": 24.119999, "punctuated_word": "render", "speaker": 0, "speaker_confidence": 1, "start": 23.8, "word": "render" }, { "confidence": 1, "end": 24.519999, "punctuated_word": "graphics", "speaker": 0, "speaker_confidence": 1, "start": 24.119999, "word": "graphics" }, { "confidence": 0.97802734, "end": 24.759998, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 24.519999, "word": "in" }, { "confidence": 0.97998047, "end": 25.16, "punctuated_word": "everyday", "speaker": 0, "speaker_confidence": 1, "start": 24.759998, "word": "everyday" }, { "confidence": 1, "end": 25.48, "punctuated_word": "tools", "speaker": 0, "speaker_confidence": 1, "start": 25.16, "word": "tools" }, { "confidence": 0.79541016, "end": 25.64, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 25.48, "word": "like" }, { "confidence": 0.99609375, "end": 25.96, "punctuated_word": "Google", "speaker": 0, "speaker_confidence": 1, "start": 25.64, "word": "google" }, { "confidence": 0.80371094, "end": 26.359999, "punctuated_word": "Maps,", "speaker": 0, "speaker_confidence": 1, "start": 25.96, "word": "maps" }, { "confidence": 1, "end": 26.519999, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 26.359999, "word": "and" }, { "confidence": 0.9790039, "end": 26.68, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 1, "start": 26.519999, "word": "by" }, { "confidence": 0.99902344, "end": 26.84, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 26.68, "word": "the" }, { "confidence": 0.98828125, "end": 27.16, "punctuated_word": "Unity", "speaker": 0, "speaker_confidence": 1, "start": 26.84, "word": "unity" }, { "confidence": 0.8071289, "end": 27.48, "punctuated_word": "engine", "speaker": 0, "speaker_confidence": 1, "start": 27.16, "word": "engine" }, { "confidence": 0.76660156, "end": 27.64, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 27.48, "word": "to" }, { "confidence": 1, "end": 27.915, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 1, "start": 27.64, "word": "make" }, { "confidence": 0.9970703, "end": 28.155, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 1, "start": 27.995, "word": "web" }, { "confidence": 0.9980469, "end": 28.395, "punctuated_word": "based", "speaker": 0, "speaker_confidence": 1, "start": 28.155, "word": "based" }, { "confidence": 0.9995117, "end": 28.895, "punctuated_word": "games.", "speaker": 0, "speaker_confidence": 1, "start": 28.395, "word": "games" }, { "confidence": 1, "end": 29.355001, "punctuated_word": "To", "speaker": 0, "speaker_confidence": 1, "start": 29.115002, "word": "to" }, { "confidence": 1, "end": 29.755001, "punctuated_word": "understand", "speaker": 0, "speaker_confidence": 1, "start": 29.355001, "word": "understand" }, { "confidence": 1, "end": 29.915, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 1, "start": 29.755001, "word": "how" }, { "confidence": 1, "end": 29.995, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 29.915, "word": "it" }, { "confidence": 0.99658203, "end": 30.395, "punctuated_word": "works,", "speaker": 0, "speaker_confidence": 1, "start": 29.995, "word": "works" }, { "confidence": 0.9980469, "end": 30.635, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 30.395, "word": "it" }, { "confidence": 1, "end": 30.875, "punctuated_word": "helps", "speaker": 0, "speaker_confidence": 1, "start": 30.635, "word": "helps" }, { "confidence": 0.99609375, "end": 31.035, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 30.875, "word": "to" }, { "confidence": 0.94384766, "end": 31.355001, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 1, "start": 31.035, "word": "first" }, { "confidence": 0.9970703, "end": 31.855001, "punctuated_word": "understand", "speaker": 0, "speaker_confidence": 1, "start": 31.355001, "word": "understand" }, { "confidence": 0.99902344, "end": 32.235, "punctuated_word": "basic", "speaker": 0, "speaker_confidence": 1, "start": 31.915, "word": "basic" }, { "confidence": 0.5834961, "end": 32.395, "punctuated_word": "3", "speaker": 0, "speaker_confidence": 1, "start": 32.235, "word": "3" }, { "confidence": 0.9277344, "end": 32.635002, "punctuated_word": "d", "speaker": 0, "speaker_confidence": 1, "start": 32.395, "word": "d" }, { "confidence": 0.99316406, "end": 32.955, "punctuated_word": "theory", "speaker": 0, "speaker_confidence": 1, "start": 32.635002, "word": "theory" }, { "confidence": 0.9790039, "end": 33.195, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 32.955, "word": "and" }, { "confidence": 0.99902344, "end": 33.355, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 33.195, "word": "the" }, { "confidence": 1, "end": 33.755, "punctuated_word": "rendering", "speaker": 0, "speaker_confidence": 1, "start": 33.355, "word": "rendering" }, { "confidence": 1, "end": 34.255, "punctuated_word": "pipeline.", "speaker": 0, "speaker_confidence": 1, "start": 33.755, "word": "pipeline" }, { "confidence": 0.99902344, "end": 34.555, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 1, "start": 34.395, "word": "in" }, { "confidence": 0.9980469, "end": 34.715, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 34.555, "word": "a" }, { "confidence": 0.7944336, "end": 34.875, "punctuated_word": "3", "speaker": 0, "speaker_confidence": 1, "start": 34.715, "word": "3" }, { "confidence": 0.97802734, "end": 35.035, "punctuated_word": "d", "speaker": 0, "speaker_confidence": 1, "start": 34.875, "word": "d" }, { "confidence": 0.9951172, "end": 35.435, "punctuated_word": "scene,", "speaker": 0, "speaker_confidence": 1, "start": 35.035, "word": "scene" }, { "confidence": 0.99902344, "end": 35.675, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 1, "start": 35.435, "word": "every" }, { "confidence": 0.99902344, "end": 35.995003, "punctuated_word": "point", "speaker": 0, "speaker_confidence": 1, "start": 35.675, "word": "point" }, { "confidence": 1, "end": 36.155, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 35.995003, "word": "is" }, { "confidence": 0.99902344, "end": 36.37, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 36.155, "word": "a" }, { "confidence": 0.6176758, "end": 37.01, "punctuated_word": "vertex", "speaker": 0, "speaker_confidence": 1, "start": 36.53, "word": "vertex" }, { "confidence": 0.78759766, "end": 37.51, "punctuated_word": "identified", "speaker": 0, "speaker_confidence": 1, "start": 37.01, "word": "identified" }, { "confidence": 1, "end": 37.809998, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 1, "start": 37.57, "word": "by" }, { "confidence": 0.94384766, "end": 38.05, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 1, "start": 37.809998, "word": "its" }, { "confidence": 0.87597656, "end": 38.289997, "punctuated_word": "x,", "speaker": 0, "speaker_confidence": 1, "start": 38.05, "word": "x" }, { "confidence": 0.94970703, "end": 38.449997, "punctuated_word": "y,", "speaker": 0, "speaker_confidence": 1, "start": 38.289997, "word": "y" }, { "confidence": 0.9980469, "end": 38.61, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 38.449997, "word": "and" }, { "confidence": 0.99902344, "end": 38.85, "punctuated_word": "z", "speaker": 0, "speaker_confidence": 1, "start": 38.61, "word": "z" }, { "confidence": 0.984375, "end": 39.35, "punctuated_word": "coordinates.", "speaker": 0, "speaker_confidence": 1, "start": 38.85, "word": "coordinates" }, { "confidence": 0.99902344, "end": 39.809998, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 1, "start": 39.57, "word": "the" }, { "confidence": 0.99853516, "end": 40.289997, "punctuated_word": "vertices", "speaker": 0, "speaker_confidence": 1, "start": 39.809998, "word": "vertices" }, { "confidence": 1, "end": 40.449997, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 1, "start": 40.289997, "word": "are" }, { "confidence": 0.99609375, "end": 40.61, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 1, "start": 40.449997, "word": "then" }, { "confidence": 1, "end": 41.01, "punctuated_word": "connected", "speaker": 0, "speaker_confidence": 1, "start": 40.61, "word": "connected" }, { "confidence": 0.99902344, "end": 41.489998, "punctuated_word": "together", "speaker": 0, "speaker_confidence": 1, "start": 41.01, "word": "together" }, { "confidence": 1, "end": 41.649998, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 41.489998, "word": "to" }, { "confidence": 1, "end": 41.89, "punctuated_word": "form", "speaker": 0, "speaker_confidence": 1, "start": 41.649998, "word": "form" }, { "confidence": 1, "end": 42.05, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 41.89, "word": "a" }, { "confidence": 1, "end": 42.21, "punctuated_word": "bunch", "speaker": 0, "speaker_confidence": 1, "start": 42.05, "word": "bunch" }, { "confidence": 1, "end": 42.37, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 42.21, "word": "of" }, { "confidence": 1, "end": 42.69, "punctuated_word": "little", "speaker": 0, "speaker_confidence": 1, "start": 42.37, "word": "little" }, { "confidence": 1, "end": 43.19, "punctuated_word": "triangles", "speaker": 0, "speaker_confidence": 1, "start": 42.69, "word": "triangles" }, { "confidence": 0.9760742, "end": 43.565, "punctuated_word": "known", "speaker": 0, "speaker_confidence": 1, "start": 43.25, "word": "known" }, { "confidence": 1, "end": 43.725, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 1, "start": 43.645, "word": "as" }, { "confidence": 0.86539716, "end": 44.225, "punctuated_word": "primitives,", "speaker": 0, "speaker_confidence": 1, "start": 43.725, "word": "primitives" }, { "confidence": 0.9970703, "end": 44.765, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 1, "start": 44.524998, "word": "then" }, { "confidence": 0.9970703, "end": 44.844997, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.57910156, "start": 44.765, "word": "a" }, { "confidence": 0.99902344, "end": 45.085, "punctuated_word": "light", "speaker": 0, "speaker_confidence": 0.57910156, "start": 44.844997, "word": "light" }, { "confidence": 0.9980469, "end": 45.405, "punctuated_word": "source", "speaker": 0, "speaker_confidence": 0.57910156, "start": 45.085, "word": "source" }, { "confidence": 1, "end": 45.885, "punctuated_word": "bounces", "speaker": 0, "speaker_confidence": 0.57910156, "start": 45.405, "word": "bounces" }, { "confidence": 0.99902344, "end": 46.045, "punctuated_word": "off", "speaker": 0, "speaker_confidence": 0.57910156, "start": 45.885, "word": "off" }, { "confidence": 0.9970703, "end": 46.125, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 46.045, "word": "of" }, { "confidence": 1, "end": 46.524998, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 1, "start": 46.125, "word": "them" }, { "confidence": 0.9980469, "end": 46.684998, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 46.524998, "word": "to" }, { "confidence": 1, "end": 46.925, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 1, "start": 46.684998, "word": "create" }, { "confidence": 0.99902344, "end": 47.085, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 46.925, "word": "the" }, { "confidence": 1, "end": 47.484997, "punctuated_word": "appearance", "speaker": 0, "speaker_confidence": 1, "start": 47.085, "word": "appearance" }, { "confidence": 1, "end": 47.725, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 47.484997, "word": "of" }, { "confidence": 1, "end": 48.204998, "punctuated_word": "shadows", "speaker": 0, "speaker_confidence": 1, "start": 47.725, "word": "shadows" }, { "confidence": 0.99902344, "end": 48.445, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 48.204998, "word": "and" }, { "confidence": 0.99902344, "end": 48.765, "punctuated_word": "depth", "speaker": 0, "speaker_confidence": 1, "start": 48.445, "word": "depth" }, { "confidence": 0.9838867, "end": 49.265, "punctuated_word": "perception.", "speaker": 0, "speaker_confidence": 1, "start": 48.765, "word": "perception" }, { "confidence": 0.99121094, "end": 49.485, "punctuated_word": "They're", "speaker": 0, "speaker_confidence": 1, "start": 49.324997, "word": "they're" }, { "confidence": 0.9970703, "end": 49.725, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 1, "start": 49.485, "word": "then" }, { "confidence": 0.9900716, "end": 50.225, "punctuated_word": "rasterized", "speaker": 0, "speaker_confidence": 1, "start": 49.725, "word": "rasterized" }, { "confidence": 1, "end": 50.445, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 50.285, "word": "to" }, { "confidence": 1, "end": 50.844997, "punctuated_word": "convert", "speaker": 0, "speaker_confidence": 1, "start": 50.445, "word": "convert" }, { "confidence": 0.9902344, "end": 51.004997, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 50.844997, "word": "a" }, { "confidence": 0.9116211, "end": 51.164997, "punctuated_word": "3", "speaker": 0, "speaker_confidence": 1, "start": 51.004997, "word": "3" }, { "confidence": 0.9614258, "end": 51.405, "punctuated_word": "d", "speaker": 0, "speaker_confidence": 1, "start": 51.164997, "word": "d" }, { "confidence": 0.9970703, "end": 51.78, "punctuated_word": "vector", "speaker": 0, "speaker_confidence": 1, "start": 51.405, "word": "vector" }, { "confidence": 0.9873047, "end": 52.26, "punctuated_word": "graphic", "speaker": 0, "speaker_confidence": 1, "start": 51.86, "word": "graphic" }, { "confidence": 0.99902344, "end": 52.5, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 1, "start": 52.26, "word": "into" }, { "confidence": 1, "end": 52.739998, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 52.5, "word": "a" }, { "confidence": 1, "end": 53.219997, "punctuated_word": "projection", "speaker": 0, "speaker_confidence": 1, "start": 52.739998, "word": "projection" }, { "confidence": 1, "end": 53.379997, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 53.219997, "word": "of" }, { "confidence": 0.99902344, "end": 53.62, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 53.379997, "word": "a" }, { "confidence": 0.82958984, "end": 53.78, "punctuated_word": "2", "speaker": 0, "speaker_confidence": 1, "start": 53.62, "word": "2" }, { "confidence": 0.94140625, "end": 53.94, "punctuated_word": "d", "speaker": 0, "speaker_confidence": 1, "start": 53.78, "word": "d" }, { "confidence": 0.9440918, "end": 54.44, "punctuated_word": "pixel,", "speaker": 0, "speaker_confidence": 1, "start": 53.94, "word": "pixel" }, { "confidence": 1, "end": 54.739998, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 1, "start": 54.579998, "word": "which" }, { "confidence": 0.99902344, "end": 55.059998, "punctuated_word": "tricks", "speaker": 0, "speaker_confidence": 1, "start": 54.739998, "word": "tricks" }, { "confidence": 1, "end": 55.219997, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 1, "start": 55.059998, "word": "our" }, { "confidence": 1, "end": 55.539997, "punctuated_word": "brains", "speaker": 0, "speaker_confidence": 1, "start": 55.219997, "word": "brains" }, { "confidence": 0.98828125, "end": 55.78, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 1, "start": 55.539997, "word": "into" }, { "confidence": 0.9970703, "end": 56.019997, "punctuated_word": "seeing", "speaker": 0, "speaker_confidence": 1, "start": 55.78, "word": "seeing" }, { "confidence": 1, "end": 56.26, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 56.019997, "word": "a" }, { "confidence": 0.91845703, "end": 56.5, "punctuated_word": "3", "speaker": 0, "speaker_confidence": 1, "start": 56.26, "word": "3" }, { "confidence": 0.9716797, "end": 56.66, "punctuated_word": "d", "speaker": 0, "speaker_confidence": 1, "start": 56.5, "word": "d" }, { "confidence": 1, "end": 57.14, "punctuated_word": "object", "speaker": 0, "speaker_confidence": 1, "start": 56.66, "word": "object" }, { "confidence": 1, "end": 57.3, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 1, "start": 57.14, "word": "on" }, { "confidence": 1, "end": 57.46, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 57.3, "word": "a" }, { "confidence": 0.6982422, "end": 57.62, "punctuated_word": "2", "speaker": 0, "speaker_confidence": 1, "start": 57.46, "word": "2" }, { "confidence": 0.9980469, "end": 58.1, "punctuated_word": "dimensional", "speaker": 0, "speaker_confidence": 1, "start": 57.62, "word": "dimensional" }, { "confidence": 1, "end": 58.5, "punctuated_word": "computer", "speaker": 0, "speaker_confidence": 1, "start": 58.1, "word": "computer" }, { "confidence": 1, "end": 58.98, "punctuated_word": "screen.", "speaker": 0, "speaker_confidence": 1, "start": 58.5, "word": "screen" }, { "confidence": 1, "end": 59.219997, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 1, "start": 58.98, "word": "this" }, { "confidence": 1, "end": 59.62, "punctuated_word": "pipeline", "speaker": 0, "speaker_confidence": 1, "start": 59.219997, "word": "pipeline" }, { "confidence": 1, "end": 59.699997, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 59.62, "word": "can" }, { "confidence": 1, "end": 59.94, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 1, "start": 59.699997, "word": "be" }, { "confidence": 0.99902344, "end": 60.42, "punctuated_word": "customized", "speaker": 0, "speaker_confidence": 1, "start": 59.94, "word": "customized" }, { "confidence": 1, "end": 60.579998, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 1, "start": 60.42, "word": "by" }, { "confidence": 0.99902344, "end": 60.899998, "punctuated_word": "writing", "speaker": 0, "speaker_confidence": 1, "start": 60.579998, "word": "writing" }, { "confidence": 0.97998047, "end": 61.399998, "punctuated_word": "shaders,", "speaker": 0, "speaker_confidence": 1, "start": 60.899998, "word": "shaders" }, { "confidence": 1, "end": 61.725, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 1, "start": 61.485, "word": "which" }, { "confidence": 1, "end": 61.805, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 1, "start": 61.725, "word": "are" }, { "confidence": 0.99902344, "end": 62.045, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 1, "start": 61.805, "word": "just" }, { "confidence": 1, "end": 62.524998, "punctuated_word": "functions", "speaker": 0, "speaker_confidence": 1, "start": 62.045, "word": "functions" }, { "confidence": 1, "end": 62.765, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 62.524998, "word": "that" }, { "confidence": 0.99902344, "end": 62.925, "punctuated_word": "tell", "speaker": 0, "speaker_confidence": 1, "start": 62.765, "word": "tell" }, { "confidence": 0.99902344, "end": 63.085, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 62.925, "word": "the" }, { "confidence": 1, "end": 63.565, "punctuated_word": "computer", "speaker": 0, "speaker_confidence": 1, "start": 63.085, "word": "computer" }, { "confidence": 1, "end": 63.805, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 1, "start": 63.565, "word": "how" }, { "confidence": 1, "end": 63.965, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 63.805, "word": "to" }, { "confidence": 0.99902344, "end": 64.284996, "punctuated_word": "draw", "speaker": 0, "speaker_confidence": 1, "start": 63.965, "word": "draw" }, { "confidence": 1, "end": 64.685, "punctuated_word": "pixels", "speaker": 0, "speaker_confidence": 1, "start": 64.284996, "word": "pixels" }, { "confidence": 1, "end": 64.765, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.98535156, "start": 64.685, "word": "on" }, { "confidence": 1, "end": 64.924995, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.98535156, "start": 64.765, "word": "the" }, { "confidence": 1, "end": 65.424995, "punctuated_word": "screen.", "speaker": 0, "speaker_confidence": 0.98535156, "start": 64.924995, "word": "screen" }, { "confidence": 0.99902344, "end": 65.885, "punctuated_word": "Shading", "speaker": 0, "speaker_confidence": 0.98535156, "start": 65.485, "word": "shading" }, { "confidence": 0.99902344, "end": 66.284996, "punctuated_word": "requires", "speaker": 0, "speaker_confidence": 0.98535156, "start": 65.885, "word": "requires" }, { "confidence": 0.99902344, "end": 66.445, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.98535156, "start": 66.284996, "word": "the" }, { "confidence": 1, "end": 66.945, "punctuated_word": "computer", "speaker": 0, "speaker_confidence": 0.98535156, "start": 66.445, "word": "computer" }, { "confidence": 1, "end": 67.165, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.98535156, "start": 67.005, "word": "to" }, { "confidence": 1, "end": 67.485, "punctuated_word": "perform", "speaker": 0, "speaker_confidence": 0.98535156, "start": 67.165, "word": "perform" }, { "confidence": 1, "end": 67.565, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.98535156, "start": 67.485, "word": "a" }, { "confidence": 1, "end": 67.805, "punctuated_word": "ton", "speaker": 0, "speaker_confidence": 0.98535156, "start": 67.565, "word": "ton" }, { "confidence": 1, "end": 67.965, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.98535156, "start": 67.805, "word": "of" }, { "confidence": 0.98828125, "end": 68.445, "punctuated_word": "linear", "speaker": 0, "speaker_confidence": 0.98535156, "start": 67.965, "word": "linear" }, { "confidence": 0.9980469, "end": 68.924995, "punctuated_word": "algebra", "speaker": 0, "speaker_confidence": 0.98535156, "start": 68.445, "word": "algebra" }, { "confidence": 0.9716797, "end": 69.165, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.98535156, "start": 68.924995, "word": "or" }, { "confidence": 0.9770508, "end": 69.645, "punctuated_word": "matrix", "speaker": 0, "speaker_confidence": 0.98535156, "start": 69.165, "word": "matrix" }, { "confidence": 0.9980469, "end": 70.145, "punctuated_word": "multiplication", "speaker": 0, "speaker_confidence": 0.98535156, "start": 69.645, "word": "multiplication" }, { "confidence": 0.88671875, "end": 70.729996, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.98535156, "start": 70.49, "word": "to" }, { "confidence": 0.99902344, "end": 71.049995, "punctuated_word": "render", "speaker": 0, "speaker_confidence": 0.98535156, "start": 70.729996, "word": "render" }, { "confidence": 0.9863281, "end": 71.53, "punctuated_word": "graphics", "speaker": 0, "speaker_confidence": 0.98535156, "start": 71.049995, "word": "graphics" }, { "confidence": 1, "end": 72.03, "punctuated_word": "smoothly", "speaker": 0, "speaker_confidence": 0.98535156, "start": 71.53, "word": "smoothly" }, { "confidence": 0.9951172, "end": 72.329994, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.98535156, "start": 72.09, "word": "at" }, { "confidence": 0.9873047, "end": 72.729996, "punctuated_word": "60", "speaker": 0, "speaker_confidence": 0.98535156, "start": 72.329994, "word": "60" }, { "confidence": 0.85546875, "end": 73.229996, "punctuated_word": "FPS.", "speaker": 0, "speaker_confidence": 0.98535156, "start": 72.729996, "word": "fps" }, { "confidence": 0.9995117, "end": 73.61, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.98535156, "start": 73.369995, "word": "it's" }, { "confidence": 1, "end": 73.85, "punctuated_word": "often", "speaker": 0, "speaker_confidence": 0.98535156, "start": 73.61, "word": "often" }, { "confidence": 1, "end": 74.009995, "punctuated_word": "too", "speaker": 0, "speaker_confidence": 0.98535156, "start": 73.85, "word": "too" }, { "confidence": 1, "end": 74.329994, "punctuated_word": "much", "speaker": 0, "speaker_confidence": 0.98535156, "start": 74.009995, "word": "much" }, { "confidence": 1, "end": 74.49, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.98535156, "start": 74.329994, "word": "for" }, { "confidence": 1, "end": 74.57, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 74.49, "word": "the" }, { "confidence": 0.99902344, "end": 74.97, "punctuated_word": "CPU", "speaker": 0, "speaker_confidence": 1, "start": 74.57, "word": "cpu" }, { "confidence": 0.9970703, "end": 75.049995, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 74.97, "word": "to" }, { "confidence": 1, "end": 75.369995, "punctuated_word": "handle", "speaker": 0, "speaker_confidence": 1, "start": 75.049995, "word": "handle" }, { "confidence": 1, "end": 75.61, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 1, "start": 75.369995, "word": "by" }, { "confidence": 0.96850586, "end": 76.009995, "punctuated_word": "itself,", "speaker": 0, "speaker_confidence": 1, "start": 75.61, "word": "itself" }, { "confidence": 1, "end": 76.17, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 1, "start": 76.009995, "word": "which" }, { "confidence": 1, "end": 76.329994, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 76.17, "word": "is" }, { "confidence": 1, "end": 76.49, "punctuated_word": "why", "speaker": 0, "speaker_confidence": 1, "start": 76.329994, "word": "why" }, { "confidence": 1, "end": 76.649994, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 1, "start": 76.49, "word": "we" }, { "confidence": 0.99902344, "end": 76.89, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 1, "start": 76.649994, "word": "have" }, { "confidence": 0.51464844, "end": 77.39, "punctuated_word": "GPUs", "speaker": 0, "speaker_confidence": 1, "start": 76.89, "word": "gpus" }, { "confidence": 0.9760742, "end": 77.689995, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 77.45, "word": "to" }, { "confidence": 0.99902344, "end": 78.09, "punctuated_word": "distribute", "speaker": 0, "speaker_confidence": 1, "start": 77.689995, "word": "distribute" }, { "confidence": 1, "end": 78.25, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 78.09, "word": "the" }, { "confidence": 0.99902344, "end": 78.75, "punctuated_word": "calculations", "speaker": 0, "speaker_confidence": 1, "start": 78.25, "word": "calculations" }, { "confidence": 1, "end": 79.049995, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 1, "start": 78.81, "word": "more" }, { "confidence": 0.9975586, "end": 79.515, "punctuated_word": "efficiently.", "speaker": 0, "speaker_confidence": 1, "start": 79.049995, "word": "efficiently" }, { "confidence": 0.8132324, "end": 79.755, "punctuated_word": "It.", "speaker": 0, "speaker_confidence": 1, "start": 79.515, "word": "it" }, { "confidence": 0.9851074, "end": 80.255, "punctuated_word": "WebGL", "speaker": 0, "speaker_confidence": 1, "start": 79.755, "word": "webgl" }, { "confidence": 0.99609375, "end": 80.635, "punctuated_word": "allows", "speaker": 0, "speaker_confidence": 1, "start": 80.315, "word": "allows" }, { "confidence": 0.99902344, "end": 80.875, "punctuated_word": "us", "speaker": 0, "speaker_confidence": 1, "start": 80.635, "word": "us" }, { "confidence": 0.99902344, "end": 81.034996, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 80.875, "word": "to" }, { "confidence": 1, "end": 81.435, "punctuated_word": "process", "speaker": 0, "speaker_confidence": 1, "start": 81.034996, "word": "process" }, { "confidence": 1, "end": 81.835, "punctuated_word": "graphics", "speaker": 0, "speaker_confidence": 1, "start": 81.435, "word": "graphics" }, { "confidence": 1, "end": 81.995, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 1, "start": 81.835, "word": "on" }, { "confidence": 0.93847656, "end": 82.155, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 81.995, "word": "the" }, { "confidence": 0.9980469, "end": 82.655, "punctuated_word": "GPU", "speaker": 0, "speaker_confidence": 1, "start": 82.155, "word": "gpu" }, { "confidence": 0.86621094, "end": 83.034996, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 82.795, "word": "and" }, { "confidence": 0.97998047, "end": 83.195, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 83.034996, "word": "is" }, { "confidence": 1, "end": 83.354996, "punctuated_word": "based", "speaker": 0, "speaker_confidence": 1, "start": 83.195, "word": "based" }, { "confidence": 1, "end": 83.515, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 1, "start": 83.354996, "word": "on" }, { "confidence": 0.9716797, "end": 83.595, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 83.515, "word": "a" }, { "confidence": 1, "end": 83.915, "punctuated_word": "library", "speaker": 0, "speaker_confidence": 1, "start": 83.595, "word": "library" }, { "confidence": 0.99853516, "end": 84.155, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 1, "start": 83.915, "word": "that's" }, { "confidence": 1, "end": 84.315, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 1, "start": 84.155, "word": "been" }, { "confidence": 1, "end": 84.635, "punctuated_word": "around", "speaker": 0, "speaker_confidence": 1, "start": 84.315, "word": "around" }, { "confidence": 1, "end": 85.115, "punctuated_word": "since", "speaker": 0, "speaker_confidence": 1, "start": 84.635, "word": "since" }, { "confidence": 0.921875, "end": 85.615, "punctuated_word": "1992", "speaker": 0, "speaker_confidence": 1, "start": 85.115, "word": "1992" }, { "confidence": 0.9370117, "end": 86.075, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 1, "start": 85.755, "word": "called" }, { "confidence": 0.67626953, "end": 86.395, "punctuated_word": "Open", "speaker": 0, "speaker_confidence": 1, "start": 86.075, "word": "open" }, { "confidence": 0.9279785, "end": 86.895, "punctuated_word": "GL.", "speaker": 0, "speaker_confidence": 1, "start": 86.395, "word": "gl" }, { "confidence": 1, "end": 87.034996, "punctuated_word": "To", "speaker": 0, "speaker_confidence": 1, "start": 86.955, "word": "to" }, { "confidence": 1, "end": 87.275, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 1, "start": 87.034996, "word": "get" }, { "confidence": 0.9970703, "end": 87.755, "punctuated_word": "started,", "speaker": 0, "speaker_confidence": 1, "start": 87.275, "word": "started" }, { "confidence": 1, "end": 87.835, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 87.755, "word": "you" }, { "confidence": 0.9980469, "end": 88.075, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 1, "start": 87.835, "word": "just" }, { "confidence": 0.99902344, "end": 88.24, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 1, "start": 88.075, "word": "need" }, { "confidence": 0.9140625, "end": 88.479996, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 88.24, "word": "to" }, { "confidence": 0.9604492, "end": 88.64, "punctuated_word": "grab", "speaker": 0, "speaker_confidence": 1, "start": 88.479996, "word": "grab" }, { "confidence": 0.9902344, "end": 88.88, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 88.64, "word": "an" }, { "confidence": 0.9526367, "end": 89.38, "punctuated_word": "HTML", "speaker": 0, "speaker_confidence": 1, "start": 88.88, "word": "html" }, { "confidence": 0.96972656, "end": 89.92, "punctuated_word": "canvas", "speaker": 0, "speaker_confidence": 1, "start": 89.52, "word": "canvas" }, { "confidence": 0.99316406, "end": 90.079994, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 89.92, "word": "in" }, { "confidence": 0.9980469, "end": 90.159996, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 90.079994, "word": "the" }, { "confidence": 0.85595703, "end": 90.659996, "punctuated_word": "DOM,", "speaker": 0, "speaker_confidence": 1, "start": 90.159996, "word": "dom" }, { "confidence": 0.9980469, "end": 90.96, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 1, "start": 90.72, "word": "then" }, { "confidence": 0.9980469, "end": 91.119995, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 1, "start": 90.96, "word": "get" }, { "confidence": 0.9550781, "end": 91.28, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 1, "start": 91.119995, "word": "its" }, { "confidence": 0.9724121, "end": 91.78, "punctuated_word": "WebGL", "speaker": 0, "speaker_confidence": 1, "start": 91.28, "word": "webgl" }, { "confidence": 0.7001953, "end": 92.32, "punctuated_word": "contacts", "speaker": 0, "speaker_confidence": 1, "start": 91.84, "word": "contacts" }, { "confidence": 1, "end": 92.479996, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 92.32, "word": "to" }, { "confidence": 1, "end": 92.799995, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 1, "start": 92.479996, "word": "start" }, { "confidence": 1, "end": 93.299995, "punctuated_word": "drawing.", "speaker": 0, "speaker_confidence": 1, "start": 92.799995, "word": "drawing" }, { "confidence": 1, "end": 93.52, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 1, "start": 93.36, "word": "the" }, { "confidence": 1, "end": 93.84, "punctuated_word": "main", "speaker": 0, "speaker_confidence": 1, "start": 93.52, "word": "main" }, { "confidence": 1, "end": 94.159996, "punctuated_word": "program", "speaker": 0, "speaker_confidence": 1, "start": 93.84, "word": "program" }, { "confidence": 0.99902344, "end": 94.399994, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 1, "start": 94.159996, "word": "code" }, { "confidence": 1, "end": 94.64, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 94.399994, "word": "is" }, { "confidence": 1, "end": 94.88, "punctuated_word": "written", "speaker": 0, "speaker_confidence": 1, "start": 94.64, "word": "written" }, { "confidence": 0.99609375, "end": 95.04, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 94.88, "word": "in" }, { "confidence": 0.92578125, "end": 95.54, "punctuated_word": "JavaScript,", "speaker": 0, "speaker_confidence": 1, "start": 95.04, "word": "javascript" }, { "confidence": 1, "end": 96.159996, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 1, "start": 95.84, "word": "but" }, { "confidence": 0.9975586, "end": 96.56, "punctuated_word": "shaders", "speaker": 0, "speaker_confidence": 1, "start": 96.159996, "word": "shaders" }, { "confidence": 1, "end": 96.799995, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 1, "start": 96.56, "word": "are" }, { "confidence": 1, "end": 97.119995, "punctuated_word": "written", "speaker": 0, "speaker_confidence": 1, "start": 96.799995, "word": "written" }, { "confidence": 1, "end": 97.28, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 97.119995, "word": "in" }, { "confidence": 0.99902344, "end": 97.439995, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 97.28, "word": "the" }, { "confidence": 0.46972656, "end": 97.759995, "punctuated_word": "Open", "speaker": 0, "speaker_confidence": 1, "start": 97.439995, "word": "open" }, { "confidence": 0.91015625, "end": 98.195, "punctuated_word": "GL", "speaker": 0, "speaker_confidence": 1, "start": 97.759995, "word": "gl" }, { "confidence": 0.8701172, "end": 98.675, "punctuated_word": "ES", "speaker": 0, "speaker_confidence": 1, "start": 98.275, "word": "es" }, { "confidence": 0.8305664, "end": 98.995, "punctuated_word": "shading", "speaker": 0, "speaker_confidence": 1, "start": 98.675, "word": "shading" }, { "confidence": 0.98583984, "end": 99.495, "punctuated_word": "language.", "speaker": 0, "speaker_confidence": 1, "start": 98.995, "word": "language" }, { "confidence": 0.9970703, "end": 99.795, "punctuated_word": "A", "speaker": 0, "speaker_confidence": 1, "start": 99.555, "word": "a" }, { "confidence": 0.9394531, "end": 100.115, "punctuated_word": "shader", "speaker": 0, "speaker_confidence": 1, "start": 99.795, "word": "shader" }, { "confidence": 1, "end": 100.195, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 1, "start": 100.115, "word": "will" }, { "confidence": 1, "end": 100.515, "punctuated_word": "take", "speaker": 0, "speaker_confidence": 1, "start": 100.195, "word": "take" }, { "confidence": 0.99316406, "end": 100.915, "punctuated_word": "information", "speaker": 0, "speaker_confidence": 1, "start": 100.515, "word": "information" }, { "confidence": 1, "end": 101.155, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 1, "start": 100.915, "word": "about" }, { "confidence": 0.99902344, "end": 101.235, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 101.155, "word": "a" }, { "confidence": 0.99902344, "end": 101.715, "punctuated_word": "vertex", "speaker": 0, "speaker_confidence": 1, "start": 101.235, "word": "vertex" }, { "confidence": 0.99316406, "end": 101.955, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 1, "start": 101.715, "word": "or" }, { "confidence": 0.71972656, "end": 102.455, "punctuated_word": "fragment", "speaker": 0, "speaker_confidence": 1, "start": 101.955, "word": "fragment" }, { "confidence": 0.77441406, "end": 102.675, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 102.515, "word": "and" }, { "confidence": 0.99902344, "end": 102.915, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 1, "start": 102.675, "word": "use" }, { "confidence": 1, "end": 102.995, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 102.915, "word": "the" }, { "confidence": 0.9902344, "end": 103.495, "punctuated_word": "GPU", "speaker": 0, "speaker_confidence": 1, "start": 102.995, "word": "gpu" }, { "confidence": 1, "end": 103.875, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 103.555, "word": "to" }, { "confidence": 1, "end": 104.275, "punctuated_word": "calculate", "speaker": 0, "speaker_confidence": 1, "start": 103.875, "word": "calculate" }, { "confidence": 1, "end": 104.435, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 104.275, "word": "the" }, { "confidence": 1, "end": 104.675, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 1, "start": 104.435, "word": "data" }, { "confidence": 1, "end": 105.175, "punctuated_word": "required", "speaker": 0, "speaker_confidence": 1, "start": 104.675, "word": "required" }, { "confidence": 0.99609375, "end": 105.37, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 105.21, "word": "to" }, { "confidence": 0.99902344, "end": 105.53, "punctuated_word": "render", "speaker": 0, "speaker_confidence": 1, "start": 105.37, "word": "render" }, { "confidence": 0.89501953, "end": 105.69, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 105.53, "word": "it" }, { "confidence": 1, "end": 106.01, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 1, "start": 105.69, "word": "as" }, { "confidence": 0.99609375, "end": 106.17, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 106.01, "word": "a" }, { "confidence": 1, "end": 106.57, "punctuated_word": "pixel", "speaker": 0, "speaker_confidence": 1, "start": 106.17, "word": "pixel" }, { "confidence": 1, "end": 106.729996, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 1, "start": 106.57, "word": "on" }, { "confidence": 0.98535156, "end": 106.89, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 106.729996, "word": "the" }, { "confidence": 1, "end": 107.39, "punctuated_word": "screen.", "speaker": 0, "speaker_confidence": 1, "start": 106.89, "word": "screen" }, { "confidence": 0.99853516, "end": 107.93, "punctuated_word": "Luckily,", "speaker": 0, "speaker_confidence": 1, "start": 107.45, "word": "luckily" }, { "confidence": 1, "end": 108.09, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 107.93, "word": "you" }, { "confidence": 1, "end": 108.25, "punctuated_word": "don't", "speaker": 0, "speaker_confidence": 1, "start": 108.09, "word": "don't" }, { "confidence": 1, "end": 108.409996, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 1, "start": 108.25, "word": "need" }, { "confidence": 1, "end": 108.49, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 108.409996, "word": "to" }, { "confidence": 1, "end": 108.729996, "punctuated_word": "write", "speaker": 0, "speaker_confidence": 1, "start": 108.49, "word": "write" }, { "confidence": 0.9995117, "end": 109.049995, "punctuated_word": "shaders", "speaker": 0, "speaker_confidence": 1, "start": 108.729996, "word": "shaders" }, { "confidence": 1, "end": 109.29, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 1, "start": 109.049995, "word": "by" }, { "confidence": 1, "end": 109.61, "punctuated_word": "hand", "speaker": 0, "speaker_confidence": 1, "start": 109.29, "word": "hand" }, { "confidence": 0.95410156, "end": 109.77, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 109.61, "word": "to" }, { "confidence": 0.99609375, "end": 110.09, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 1, "start": 109.77, "word": "start" }, { "confidence": 1, "end": 110.33, "punctuated_word": "adding", "speaker": 0, "speaker_confidence": 1, "start": 110.09, "word": "adding" }, { "confidence": 0.90527344, "end": 110.57, "punctuated_word": "3", "speaker": 0, "speaker_confidence": 1, "start": 110.33, "word": "3" }, { "confidence": 0.95947266, "end": 110.81, "punctuated_word": "d", "speaker": 0, "speaker_confidence": 1, "start": 110.57, "word": "d" }, { "confidence": 1, "end": 111.21, "punctuated_word": "graphics", "speaker": 0, "speaker_confidence": 1, "start": 110.81, "word": "graphics" }, { "confidence": 0.99902344, "end": 111.29, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 111.21, "word": "to" }, { "confidence": 1, "end": 111.45, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 1, "start": 111.29, "word": "your" }, { "confidence": 0.9995117, "end": 111.95, "punctuated_word": "website.", "speaker": 0, "speaker_confidence": 1, "start": 111.45, "word": "website" }, { "confidence": 1, "end": 112.17, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 1, "start": 112.01, "word": "you" }, { "confidence": 1, "end": 112.25, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 112.17, "word": "can" }, { "confidence": 1, "end": 112.49, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 1, "start": 112.25, "word": "use" }, { "confidence": 0.99902344, "end": 112.89, "punctuated_word": "libraries", "speaker": 0, "speaker_confidence": 1, "start": 112.49, "word": "libraries" }, { "confidence": 0.9716797, "end": 113.13, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 112.89, "word": "like" }, { "confidence": 0.92822266, "end": 113.45, "punctuated_word": "3", "speaker": 0, "speaker_confidence": 1, "start": 113.13, "word": "3" }, { "confidence": 0.5527344, "end": 113.77, "punctuated_word": "JS", "speaker": 0, "speaker_confidence": 1, "start": 113.45, "word": "js" }, { "confidence": 0.8911133, "end": 114.01, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 1, "start": 113.77, "word": "or" }, { "confidence": 0.98828125, "end": 114.33, "punctuated_word": "tools", "speaker": 0, "speaker_confidence": 1, "start": 114.01, "word": "tools" }, { "confidence": 0.99609375, "end": 114.57, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 114.33, "word": "like" }, { "confidence": 0.967041, "end": 115.07, "punctuated_word": "Spline", "speaker": 0, "speaker_confidence": 1, "start": 114.57, "word": "spline" }, { "confidence": 0.5566406, "end": 115.375, "punctuated_word": "too", "speaker": 0, "speaker_confidence": 1, "start": 115.135, "word": "too" }, { "confidence": 1, "end": 115.615005, "punctuated_word": "quickly", "speaker": 0, "speaker_confidence": 1, "start": 115.375, "word": "quickly" }, { "confidence": 0.77685547, "end": 116.015, "punctuated_word": "designed", "speaker": 0, "speaker_confidence": 1, "start": 115.615005, "word": "designed" }, { "confidence": 0.66259766, "end": 116.255005, "punctuated_word": "3", "speaker": 0, "speaker_confidence": 1, "start": 116.015, "word": "3" }, { "confidence": 0.9614258, "end": 116.415, "punctuated_word": "d", "speaker": 0, "speaker_confidence": 1, "start": 116.255005, "word": "d" }, { "confidence": 0.99902344, "end": 116.915, "punctuated_word": "experiences", "speaker": 0, "speaker_confidence": 1, "start": 116.415, "word": "experiences" }, { "confidence": 0.9980469, "end": 117.455, "punctuated_word": "without", "speaker": 0, "speaker_confidence": 1, "start": 117.055, "word": "without" }, { "confidence": 1, "end": 117.695, "punctuated_word": "much", "speaker": 0, "speaker_confidence": 1, "start": 117.455, "word": "much" }, { "confidence": 0.9970703, "end": 118.175, "punctuated_word": "underlying", "speaker": 0, "speaker_confidence": 1, "start": 117.695, "word": "underlying" }, { "confidence": 1, "end": 118.495, "punctuated_word": "knowledge", "speaker": 0, "speaker_confidence": 1, "start": 118.175, "word": "knowledge" }, { "confidence": 1, "end": 118.655, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 118.495, "word": "of" }, { "confidence": 0.9737956, "end": 119.155, "punctuated_word": "WebGL.", "speaker": 0, "speaker_confidence": 1, "start": 118.655, "word": "webgl" }, { "confidence": 0.9980469, "end": 119.775, "punctuated_word": "Stay", "speaker": 0, "speaker_confidence": 1, "start": 119.455, "word": "stay" }, { "confidence": 0.99902344, "end": 120.095, "punctuated_word": "tuned", "speaker": 0, "speaker_confidence": 1, "start": 119.775, "word": "tuned" }, { "confidence": 1, "end": 120.255005, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 120.095, "word": "for" }, { "confidence": 1, "end": 120.415, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 120.255005, "word": "a" }, { "confidence": 0.9970703, "end": 120.655, "punctuated_word": "full", "speaker": 0, "speaker_confidence": 1, "start": 120.415, "word": "full" }, { "confidence": 0.79003906, "end": 120.815, "punctuated_word": "3", "speaker": 0, "speaker_confidence": 1, "start": 120.655, "word": "3" }, { "confidence": 0.6748047, "end": 121.215004, "punctuated_word": "JS", "speaker": 0, "speaker_confidence": 1, "start": 120.815, "word": "js" }, { "confidence": 0.935791, "end": 121.695, "punctuated_word": "tutorial.", "speaker": 0, "speaker_confidence": 1, "start": 121.215004, "word": "tutorial" }, { "confidence": 0.99902344, "end": 121.855, "punctuated_word": "Make", "speaker": 0, "speaker_confidence": 1, "start": 121.695, "word": "make" }, { "confidence": 1, "end": 122.015, "punctuated_word": "sure", "speaker": 0, "speaker_confidence": 1, "start": 121.855, "word": "sure" }, { "confidence": 1, "end": 122.175, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 122.015, "word": "to" }, { "confidence": 1, "end": 122.335, "punctuated_word": "hit", "speaker": 0, "speaker_confidence": 1, "start": 122.175, "word": "hit" }, { "confidence": 1, "end": 122.415, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 122.335, "word": "the" }, { "confidence": 0.9873047, "end": 122.655, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 122.415, "word": "like" }, { "confidence": 0.90478516, "end": 123.055, "punctuated_word": "button.", "speaker": 0, "speaker_confidence": 1, "start": 122.655, "word": "button" }, { "confidence": 0.99902344, "end": 123.375, "punctuated_word": "Thanks", "speaker": 0, "speaker_confidence": 1, "start": 123.055, "word": "thanks" }, { "confidence": 1, "end": 123.535, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 123.375, "word": "for" }, { "confidence": 0.8618164, "end": 124.015, "punctuated_word": "watching,", "speaker": 0, "speaker_confidence": 1, "start": 123.535, "word": "watching" }, { "confidence": 1, "end": 124.255005, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 124.015, "word": "and" }, { "confidence": 0.99902344, "end": 124.415, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 1, "start": 124.255005, "word": "i" }, { "confidence": 1, "end": 124.575005, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 1, "start": 124.415, "word": "will" }, { "confidence": 0.99902344, "end": 124.764435, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 1, "start": 124.575005, "word": "see" }, { "confidence": 0.59375, "end": 124.92444, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 124.84444, "word": "you" }, { "confidence": 0.8276367, "end": 125.16444, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 124.92444, "word": "in" }, { "confidence": 1, "end": 125.24444, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 125.16444, "word": "the" }, { "confidence": 1, "end": 125.484436, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 1, "start": 125.24444, "word": "next" }, { "confidence": 0.9890137, "end": 125.984436, "punctuated_word": "one.", "speaker": 0, "speaker_confidence": 1, "start": 125.484436, "word": "one" } ] } ], "detected_language": "", "language_confidence": 0, "search": null } ], "summary": { "result": "success", "short": "The speaker explains that Web-half Library is a JavaScript API for implementing interactive 2-d and 3-d vector graphics in the browser. The process involves creating a pipeline that connects everything to create a 2-d image, and the creation of a 3-d image requires linear algebra and matrix multiplication. Web-half Library allows developers to use shaders and libraries like Open GL to create a 3 JS or Spline, and a tutorial on creating a 3 JS experience is provided." }, "utterances": null } }
downloads\WebGL_3D_Graphics_Explained_in_100_Seconds.wav
https://www.youtube.com/watch?v=f-9LEoYYvE4
WebGL 3D Graphics Explained in 100 Seconds
309,041
Fireship
678
Want to build your own peer-to-peer video chat app? WebRTC is a technology that creates a realtime connection between browsers where users can exchange audio/video streams https://fireship.io/lessons/webrtc-firebase-video-chat/ 00:00 WebRTC Explained 02:01 Build your own Video Chat 3:37 Code setup 04:34 Peer Connection & Webcam 06:49 Offer Signaling 09:45 Answer Signaling Source Code https://github.com/fireship-io/webrtc-firebase-demo Useful Resources WebRTC Docs https://webrtc.org/ Codelab https://webrtc.org/getting-started/firebase-rtc-codelab Signaling https://developer.mozilla.org/en-US/docs/Web/API/WebRTC_API/Signaling_and_video_calling #webdev #js #100SecondsOfCode Install the quiz app 🤓 iOS https://itunes.apple.com/us/app/fireship/id1462592372?mt=8 Android https://play.google.com/store/apps/details?id=io.fireship.quizapp Upgrade to Fireship PRO at https://fireship.io/pro Use code lORhwXd2 for 25% off your first payment. My VS Code Theme - Atom One Dark - vscode-icons - Fira Code Font
{ "metadata": { "channels": 1, "created": "2024-02-04T14:15:03.802Z", "duration": 678.30133, "model_info": { "30089e05-99d1-4376-b32e-c263170674af": { "arch": "nova-2", "name": "2-general-nova", "version": "2024-01-09.29447" } }, "models": [ "30089e05-99d1-4376-b32e-c263170674af" ], "request_id": "50800cdc-965a-4731-94a6-6d87a46046e4", "sha256": "94477b5d489c64b0a56e2db5505af7c8eb5df521d0cd5d0fffa0113e91c17b1a", "summary_info": { "input_tokens": 2581, "model_uuid": "67875a7f-c9c4-48a0-aa55-5bdb8a91c34a", "output_tokens": 126 }, "transaction_key": "deprecated", "warnings": null }, "results": { "channels": [ { "alternatives": [ { "confidence": 0.99902344, "entities": null, "paragraphs": { "paragraphs": [ { "end": 26.435001, "num_words": 87, "sentences": [ { "end": 0.82, "start": 0.32, "text": "WebRTC." }, { "end": 6.08, "start": 1.68, "text": "Exchange real time audio video streams with your friends entirely in the browser." }, { "end": 6.7999997, "start": 6.08, "text": "I'm here live." }, { "end": 8.405, "start": 6.7999997, "text": "It's not I'm not a cat." }, { "end": 26.435001, "start": 8.405, "text": "If you wanna build your own video conferencing app to capitalize on the work from home boom, then WebRTC is the API you're looking for Because it allows you to establish a peer to peer connection between 2 or more browsers where they can exchange audio video media directly Without the need for a third party server or native app, it works like this." } ], "speaker": 0, "start": 0.32 }, { "end": 61.755, "num_words": 114, "sentences": [ { "end": 30.895, "start": 26.575, "text": "The first peer will create an offer asking for another peer to connect to them." }, { "end": 40.56, "start": 30.895, "text": "This will in an SDP object or session description protocol, which contains information describing the peer to peer connection, like the video codec, timing, and so on." }, { "end": 49.825, "start": 40.56, "text": "The Data will then be saved in a server where it can then be read by another peer to answer the call, which is achieved by creating an STP answer and writing that to the server." }, { "end": 53.969997, "start": 49.965, "text": "This process Is known as signaling, and it's handled by a third party server." }, { "end": 61.755, "start": 54.03, "text": "The signaling server allows the 2 parties to securely exchange connection data, never touches the media that's actually transmitted between the peers." } ], "speaker": 0, "start": 26.575 }, { "end": 91.84, "num_words": 86, "sentences": [ { "end": 63.275, "start": 61.815, "text": "But here's where things get tricky." }, { "end": 69.87, "start": 63.335, "text": "Most devices in the real world sit behind firewalls and IP addresses constantly change thanks to network address translation." }, { "end": 73.47, "start": 70.17, "text": "This makes peer to peer connection complicated from a networking standpoint." }, { "end": 82.995, "start": 73.69, "text": "But luckily, there's a standard called Active Connectivity Establishment or ICE, which helps clients coordinate the discovery of their public facing IP addresses." }, { "end": 91.84, "start": 83.375, "text": "Now both peers We'll generate a list of ICE candidates, which contain an IP address and port that peer 1 can use to connect to peer 2." } ], "speaker": 0, "start": 61.815 }, { "end": 118.64, "num_words": 94, "sentences": [ { "end": 97.015, "start": 91.9, "text": "In the background, WebRTC will do this By making a series of requests to a stun server." }, { "end": 103.549995, "start": 97.075, "text": "A stun server is not something you need to set up on your own because there are many free options out there from reliable sources like Google." }, { "end": 108.43, "start": 103.77, "text": "Each peer will save their ICE candidates in the database where they can then be read by the other peer." }, { "end": 115.815, "start": 108.675, "text": "The algorithm will then automatically determine which candidate is best, at which point real time media can begin flowing between the two peers." }, { "end": 118.64, "start": 115.98, "text": "This has been WebRTC in 100 seconds." } ], "speaker": 0, "start": 91.9 }, { "end": 152.7, "num_words": 128, "sentences": [ { "end": 126.135, "start": 118.78, "text": "If you wanna see more short videos like this, make sure to hit the like button, then stay tuned because now we're going to build our own Video chat app from scratch." }, { "end": 132.075, "start": 126.135, "text": "That may sound pretty complicated, but the WebRTC API allows all this stuff to magically happen in the background." }, { "end": 140.17, "start": 132.135, "text": "Over the few minutes, you'll build a peer to peer video calling app from scratch using nothing but vanilla JavaScript and Firebase as the signaling server." }, { "end": 147.19499, "start": 140.23, "text": "By the end of this tutorial, You'll know how to implement real time features that cater to the needs of the new work from home paradigm that we live in." }, { "end": 152.7, "start": 147.19499, "text": "In addition to this video, you can also reference the Full article on Fireship IO and the source code on GitHub." } ], "speaker": 0, "start": 118.78 }, { "end": 175.25, "num_words": 79, "sentences": [ { "end": 154.38, "start": 152.7, "text": "Let's start by taking a look at the demo." }, { "end": 158.995, "start": 154.38, "text": "We have the local user's video feed on the left side and the Remote video on the right side." }, { "end": 163.015, "start": 158.995, "text": "The local user will first grant permission for the app to access the webcam." }, { "end": 168.29001, "start": 163.155, "text": "That user can then create a call, which will write a document to Firestore with the offer details." }, { "end": 175.25, "start": 168.75, "text": "At the same time, we'll create a peer connection instance in the browser, which handles the WebRTC negotiation process." } ], "speaker": 0, "start": 152.7 }, { "end": 207.05, "num_words": 111, "sentences": [ { "end": 180.725, "start": 175.505, "text": "The offer will have a unique ID that can then be accessed by another user somewhere else in the world." }, { "end": 188.37999, "start": 180.785, "text": "That user will then join the call with the unique ID, Then establish their own peer connection and write the answer details to the same document." }, { "end": 195.845, "start": 188.68, "text": "Then both peers will write their ICE candidates To the database, we have one sub collection for offer candidates and another for answer candidates." }, { "end": 199.925, "start": 196.225, "text": "This data model will allow signaling to take place between the two peers." }, { "end": 207.05, "start": 200.15001, "text": "The data itself looks like a bunch of nonsense, but what it contains is an IP address port pair that allows the 2 peers to establish a connection." } ], "speaker": 0, "start": 175.505 }, { "end": 237.635, "num_words": 102, "sentences": [ { "end": 216.60501, "start": 207.27, "text": "Now both users can listen to this data in real time Then use the WebRTC API in the browser to establish the connection, giving us a one to one video chat feature." }, { "end": 219.02, "start": 216.905, "text": "And now we're ready to jump into our JavaScript code." }, { "end": 226.46, "start": 219.18001, "text": "I started by creating a vanilla JavaScript project using a tool called Vite, which is a very simple build tool developed by the Vue JS guy." }, { "end": 232.19499, "start": 226.46, "text": "We can initialize a new project by running npm initvjs/app from the command line." }, { "end": 237.635, "start": 232.415, "text": "Basically, it gives us a web project where we can install dependencies without having to worry about things like webpack." } ], "speaker": 0, "start": 207.27 }, { "end": 268.065, "num_words": 100, "sentences": [ { "end": 240.46, "start": 237.8, "text": "After initializing the project, we need to install Firebase." }, { "end": 245.295, "start": 240.76, "text": "Firebase contains the Firestore database, which we can use as our back end server." }, { "end": 251.375, "start": 245.295, "text": "Firebase is an exceptional choice for a signaling server because it's easy to listen to updates to the database in real time." }, { "end": 259.82, "start": 251.375, "text": "If we were working with a traditional database, we'd likely have to implement something like WebSockets to make that possible and this video would be a crazy 20 minutes long or something." }, { "end": 268.065, "start": 259.82, "text": "From the Firebase console, initialize Firestore in test mode, then create a web project from the settings panel and grab your project credentials." } ], "speaker": 0, "start": 237.8 }, { "end": 291.6, "num_words": 77, "sentences": [ { "end": 274.05, "start": 268.285, "text": "We can then go into the main JS file, import Firebase, And initialize the app with our Firebase config." }, { "end": 278.535, "start": 274.11, "text": "Now that we have Firebase set up, we're going to initialize 3 pieces of global state." }, { "end": 284.95502, "start": 278.695, "text": "These are values you would likely want to share between multiple components if you're using a UI framework like React or Angular." }, { "end": 288.96002, "start": 285.255, "text": "The first and most important Value is the rtc pure connection." }, { "end": 291.6, "start": 289.34, "text": "This object is where all of the action happens." } ], "speaker": 0, "start": 268.285 }, { "end": 319.63, "num_words": 104, "sentences": [ { "end": 298.13498, "start": 291.66, "text": "It emits a bunch of different events that we Listen to to update the database and to add media streams to the connection itself." }, { "end": 304.96, "start": 298.195, "text": "One very important thing it does is generate the ICE candidates, But in order to do that, it needs to know which STUN servers to use." }, { "end": 308.9, "start": 304.96, "text": "There are many different options out there, but we're just going to use the free ones from Google." }, { "end": 315.595, "start": 309.095, "text": "From there, we have values for local stream and remote stream, which are the video streams from the webcams of each user." }, { "end": 319.63, "start": 315.655, "text": "Now because we're working with vanilla JS, we need to use Imperative Dom APIs." } ], "speaker": 0, "start": 291.66 }, { "end": 349.79498, "num_words": 97, "sentences": [ { "end": 330.845, "start": 319.69, "text": "We're using document get element by ID to grab a bunch of elements from the HTML, like video elements to Show the actual video feeds along with buttons that provide different interaction in the UI." }, { "end": 334.92502, "start": 330.90503, "text": "The first thing the user will do is click a button to open up their webcam." }, { "end": 339.36002, "start": 335.14502, "text": "We'll We'll go ahead and register an event handler for the click event on the webcam button." }, { "end": 342.54, "start": 339.58002, "text": "Obtaining a stream from the user's webcam is very easy." }, { "end": 349.79498, "start": 342.54, "text": "We just await the navigator mediatevices Is get user media method and will set video and audio to true." } ], "speaker": 0, "start": 319.69 }, { "end": 378.885, "num_words": 104, "sentences": [ { "end": 354.675, "start": 349.855, "text": "That'll bring up a dialogue in the browser asking the user for permission to access the webcam." }, { "end": 358.41, "start": 355.03, "text": "That's complete, the promise will resolve to a media stream object." }, { "end": 365.88498, "start": 358.63, "text": "Once we have access to the webcam, we can also go ahead and set up the remote stream here, which itself will just be an empty media stream." }, { "end": 373.3, "start": 366.10498, "text": "Now from here, we need to take our 2 streams and make them available on the peer connection and show them on Video elements in the DOM." }, { "end": 378.885, "start": 373.36, "text": "The local stream is already running here in the browser, so we can get its tracks and then loop over them." } ], "speaker": 0, "start": 349.855 }, { "end": 409.19, "num_words": 108, "sentences": [ { "end": 384.405, "start": 379.125, "text": "And for each track, we'll call peer connection add track with that track in the local stream." }, { "end": 388.96, "start": 384.405, "text": "Now the remote stream is currently empty and it will be updated by the Pure connection itself." }, { "end": 398.875, "start": 389.1, "text": "So what we can do is listen to the on track event on the Pure connection, then get the tracks from the stream, Loop over them and add them to the remote stream when they come in." }, { "end": 403.49, "start": 398.875, "text": "Now, the final step for managing our streams is to apply them To video elements in the DOM." }, { "end": 409.19, "start": 403.49, "text": "We can do that by simply calling the video element source object and setting it equal to the stream." } ], "speaker": 0, "start": 379.125 }, { "end": 429.71503, "num_words": 80, "sentences": [ { "end": 413.535, "start": 409.41, "text": "At this point, we have a way to manage a local and remote stream through the peer connection." }, { "end": 417.05502, "start": 413.67502, "text": "But in order to make that happen, we need to do some signaling with Firestore." }, { "end": 420.35, "start": 417.435, "text": "The user who starts a call is the one who makes an offer." }, { "end": 425.25, "start": 420.35, "text": "We have a call button in the DOM to handle that functionality inside this async function here." }, { "end": 429.71503, "start": 425.375, "text": "We have a call document, which is used to manage the answer and offer from both users." } ], "speaker": 0, "start": 409.41 }, { "end": 463.215, "num_words": 110, "sentences": [ { "end": 438.05, "start": 430.17502, "text": "Then we have offer candidates and answer candidates, which are subcollections under that document that contain all the candidates for each of those users." }, { "end": 444.065, "start": 438.59, "text": "When we reference a document without an ID, Firebase will automatically generate a random ID for us." }, { "end": 453.20502, "start": 444.145, "text": "So we'll go ahead and use that to populate an input in the UI, which can then be used in another browser tab or by another user somewhere else in the world to answer the call." }, { "end": 456.22998, "start": 453.40997, "text": "Now we're ready to create an offer and save it to the database." }, { "end": 463.215, "start": 456.53, "text": "The first thing we'll do is await the peer connection create offer method, which will return with an offer description." } ], "speaker": 0, "start": 430.17502 }, { "end": 499.395, "num_words": 115, "sentences": [ { "end": 466.335, "start": 463.435, "text": "We'll then set it as the local description on the Pure connection." }, { "end": 472.13, "start": 466.555, "text": "Most importantly, this object contains an SDP value, Which stands for Session Description Protocol." }, { "end": 483.17502, "start": 472.51, "text": "That's the value we want to save to the database, so we'll go ahead and convert it to a plain JavaScript object, Then write it to the database by calling await call document set with that data." }, { "end": 491.63998, "start": 483.395, "text": "Now what's inside the SDP object isn't really important, but it contains information about the Video codec along with a bunch of other stuff to negotiate the connection." }, { "end": 499.395, "start": 492.09998, "text": "Now one really important thing to point out here is that when we called set local description, it automatically started generating the ICE candidates." } ], "speaker": 0, "start": 463.435 }, { "end": 536.115, "num_words": 130, "sentences": [ { "end": 506.675, "start": 499.695, "text": "An ICE candidate contains a potential IP address and port pair that can be used to establish the actual peer to peer connection." }, { "end": 515.035, "start": 507.1, "text": "Need to be listening to the ICE candidates, so it's important that we have a listener established before we make that call that listens to the on ICE candidate event." }, { "end": 521.935, "start": 515.27496, "text": "When the event is fired, we'll make sure that a candidate exists, then write the data as JSON to the offer candidate's collection." }, { "end": 531.92004, "start": 522.15497, "text": "So at this point, as the caller making the offer, We are saving all of our data to the database, but now we need to also be listening for the answer from the user on the other end." }, { "end": 536.115, "start": 531.98004, "text": "The way we do that is by listening to changes to the called document in Firestore." } ], "speaker": 0, "start": 499.695 }, { "end": 567.38, "num_words": 99, "sentences": [ { "end": 541.235, "start": 536.41504, "text": "The on snapshot method will fire a callback anytime the document in the database changes." }, { "end": 551.27997, "start": 541.375, "text": "If our peer connection doesn't have a remote description and the data has an answer, then we'll go ahead and set an answer description on our peer connection here locally." }, { "end": 557.745, "start": 551.72504, "text": "In other words, we're listening to our database for an answer and when that answer is received, we update it on our peer connection." }, { "end": 563.7, "start": 558.205, "text": "That negotiates the initial connection, But we also need to listen for ICE candidates from the answering user." }, { "end": 567.38, "start": 563.76, "text": "We do that by listening to updates to the answer candidates collection." } ], "speaker": 0, "start": 536.41504 }, { "end": 602.59, "num_words": 124, "sentences": [ { "end": 576.225, "start": 567.645, "text": "Firestore has a cool little feature where you can listen to only the documents that have been added to the collection, which is handled with the doc changes method on the query." }, { "end": 585.885, "start": 576.46, "text": "So every time we have a new document added, we can then create a new ICE candidate with the document data and then add that candidate to our peer connection." }, { "end": 592.945, "start": 585.885, "text": "At this point, we're listening to updates from the answer side, but we still need to give the answering user a way to actually answer the call." }, { "end": 595.87, "start": 593.005, "text": "Answering a call is very similar to initiating a call." }, { "end": 602.59, "start": 595.87, "text": "The main difference is that we're going to listen to a document in Firestore with the same document ID that was created by the caller." } ], "speaker": 0, "start": 567.645 }, { "end": 640.865, "num_words": 126, "sentences": [ { "end": 614.98, "start": 602.59, "text": "We'll make a reference to that document as well as the answer candidate's collection, then listen to the ICE candidate event on the peer connection to update the answer The candidate's collection whenever a new candidate is generated." }, { "end": 619.46, "start": 615.44, "text": "From there, we can fetch the call document from the database and grab its data." }, { "end": 625.28503, "start": 619.60004, "text": "It contains the offer data, Which we can use to set a remote description on the peer connection." }, { "end": 630.88, "start": 625.66504, "text": "After that, we can then generate an answer locally, then set the local description as the answer." }, { "end": 640.865, "start": 631.10004, "text": "Now just like we did with the offer in the previous function, we'll set it up as a plain object and then update it on the call document so that the other user can listen to the answer." } ], "speaker": 0, "start": 602.59 }, { "end": 668.15, "num_words": 94, "sentences": [ { "end": 651.27997, "start": 641.085, "text": "In addition, we'll set up a listener on the offer candidates collection, and whenever a new ICE candidate is added to that collection, then we'll go ahead and create an ICE candidate here locally." }, { "end": 659.005, "start": 651.42, "text": "And that's all it takes to build a video chat feature With WebRTC, the vast majority of the work is just signaling data between the two users." }, { "end": 664.45, "start": 659.305, "text": "WebRTC handles all the complicated peer to peer networking and media streaming under the hood." }, { "end": 666.05, "start": 664.45, "text": "I'm gonna go ahead and wrap things up there." }, { "end": 668.15, "start": 666.05, "text": "If this video helped you, please like and subscribe." } ], "speaker": 0, "start": 641.085 }, { "end": 677.32495, "num_words": 32, "sentences": [ { "end": 674.425, "start": 668.21, "text": "And if you wanna learn more advanced concepts about the web and Firebase, consider becoming a pro member atfireship io." }, { "end": 677.32495, "start": 674.425, "text": "Thanks for watching, and I will see you in the next one." } ], "speaker": 0, "start": 668.21 } ], "transcript": "\nSpeaker 0: WebRTC. Exchange real time audio video streams with your friends entirely in the browser. I'm here live. It's not I'm not a cat. If you wanna build your own video conferencing app to capitalize on the work from home boom, then WebRTC is the API you're looking for Because it allows you to establish a peer to peer connection between 2 or more browsers where they can exchange audio video media directly Without the need for a third party server or native app, it works like this.\n\nThe first peer will create an offer asking for another peer to connect to them. This will in an SDP object or session description protocol, which contains information describing the peer to peer connection, like the video codec, timing, and so on. The Data will then be saved in a server where it can then be read by another peer to answer the call, which is achieved by creating an STP answer and writing that to the server. This process Is known as signaling, and it's handled by a third party server. The signaling server allows the 2 parties to securely exchange connection data, never touches the media that's actually transmitted between the peers.\n\nBut here's where things get tricky. Most devices in the real world sit behind firewalls and IP addresses constantly change thanks to network address translation. This makes peer to peer connection complicated from a networking standpoint. But luckily, there's a standard called Active Connectivity Establishment or ICE, which helps clients coordinate the discovery of their public facing IP addresses. Now both peers We'll generate a list of ICE candidates, which contain an IP address and port that peer 1 can use to connect to peer 2.\n\nIn the background, WebRTC will do this By making a series of requests to a stun server. A stun server is not something you need to set up on your own because there are many free options out there from reliable sources like Google. Each peer will save their ICE candidates in the database where they can then be read by the other peer. The algorithm will then automatically determine which candidate is best, at which point real time media can begin flowing between the two peers. This has been WebRTC in 100 seconds.\n\nIf you wanna see more short videos like this, make sure to hit the like button, then stay tuned because now we're going to build our own Video chat app from scratch. That may sound pretty complicated, but the WebRTC API allows all this stuff to magically happen in the background. Over the few minutes, you'll build a peer to peer video calling app from scratch using nothing but vanilla JavaScript and Firebase as the signaling server. By the end of this tutorial, You'll know how to implement real time features that cater to the needs of the new work from home paradigm that we live in. In addition to this video, you can also reference the Full article on Fireship IO and the source code on GitHub.\n\nLet's start by taking a look at the demo. We have the local user's video feed on the left side and the Remote video on the right side. The local user will first grant permission for the app to access the webcam. That user can then create a call, which will write a document to Firestore with the offer details. At the same time, we'll create a peer connection instance in the browser, which handles the WebRTC negotiation process.\n\nThe offer will have a unique ID that can then be accessed by another user somewhere else in the world. That user will then join the call with the unique ID, Then establish their own peer connection and write the answer details to the same document. Then both peers will write their ICE candidates To the database, we have one sub collection for offer candidates and another for answer candidates. This data model will allow signaling to take place between the two peers. The data itself looks like a bunch of nonsense, but what it contains is an IP address port pair that allows the 2 peers to establish a connection.\n\nNow both users can listen to this data in real time Then use the WebRTC API in the browser to establish the connection, giving us a one to one video chat feature. And now we're ready to jump into our JavaScript code. I started by creating a vanilla JavaScript project using a tool called Vite, which is a very simple build tool developed by the Vue JS guy. We can initialize a new project by running npm initvjs/app from the command line. Basically, it gives us a web project where we can install dependencies without having to worry about things like webpack.\n\nAfter initializing the project, we need to install Firebase. Firebase contains the Firestore database, which we can use as our back end server. Firebase is an exceptional choice for a signaling server because it's easy to listen to updates to the database in real time. If we were working with a traditional database, we'd likely have to implement something like WebSockets to make that possible and this video would be a crazy 20 minutes long or something. From the Firebase console, initialize Firestore in test mode, then create a web project from the settings panel and grab your project credentials.\n\nWe can then go into the main JS file, import Firebase, And initialize the app with our Firebase config. Now that we have Firebase set up, we're going to initialize 3 pieces of global state. These are values you would likely want to share between multiple components if you're using a UI framework like React or Angular. The first and most important Value is the rtc pure connection. This object is where all of the action happens.\n\nIt emits a bunch of different events that we Listen to to update the database and to add media streams to the connection itself. One very important thing it does is generate the ICE candidates, But in order to do that, it needs to know which STUN servers to use. There are many different options out there, but we're just going to use the free ones from Google. From there, we have values for local stream and remote stream, which are the video streams from the webcams of each user. Now because we're working with vanilla JS, we need to use Imperative Dom APIs.\n\nWe're using document get element by ID to grab a bunch of elements from the HTML, like video elements to Show the actual video feeds along with buttons that provide different interaction in the UI. The first thing the user will do is click a button to open up their webcam. We'll We'll go ahead and register an event handler for the click event on the webcam button. Obtaining a stream from the user's webcam is very easy. We just await the navigator mediatevices Is get user media method and will set video and audio to true.\n\nThat'll bring up a dialogue in the browser asking the user for permission to access the webcam. That's complete, the promise will resolve to a media stream object. Once we have access to the webcam, we can also go ahead and set up the remote stream here, which itself will just be an empty media stream. Now from here, we need to take our 2 streams and make them available on the peer connection and show them on Video elements in the DOM. The local stream is already running here in the browser, so we can get its tracks and then loop over them.\n\nAnd for each track, we'll call peer connection add track with that track in the local stream. Now the remote stream is currently empty and it will be updated by the Pure connection itself. So what we can do is listen to the on track event on the Pure connection, then get the tracks from the stream, Loop over them and add them to the remote stream when they come in. Now, the final step for managing our streams is to apply them To video elements in the DOM. We can do that by simply calling the video element source object and setting it equal to the stream.\n\nAt this point, we have a way to manage a local and remote stream through the peer connection. But in order to make that happen, we need to do some signaling with Firestore. The user who starts a call is the one who makes an offer. We have a call button in the DOM to handle that functionality inside this async function here. We have a call document, which is used to manage the answer and offer from both users.\n\nThen we have offer candidates and answer candidates, which are subcollections under that document that contain all the candidates for each of those users. When we reference a document without an ID, Firebase will automatically generate a random ID for us. So we'll go ahead and use that to populate an input in the UI, which can then be used in another browser tab or by another user somewhere else in the world to answer the call. Now we're ready to create an offer and save it to the database. The first thing we'll do is await the peer connection create offer method, which will return with an offer description.\n\nWe'll then set it as the local description on the Pure connection. Most importantly, this object contains an SDP value, Which stands for Session Description Protocol. That's the value we want to save to the database, so we'll go ahead and convert it to a plain JavaScript object, Then write it to the database by calling await call document set with that data. Now what's inside the SDP object isn't really important, but it contains information about the Video codec along with a bunch of other stuff to negotiate the connection. Now one really important thing to point out here is that when we called set local description, it automatically started generating the ICE candidates.\n\nAn ICE candidate contains a potential IP address and port pair that can be used to establish the actual peer to peer connection. Need to be listening to the ICE candidates, so it's important that we have a listener established before we make that call that listens to the on ICE candidate event. When the event is fired, we'll make sure that a candidate exists, then write the data as JSON to the offer candidate's collection. So at this point, as the caller making the offer, We are saving all of our data to the database, but now we need to also be listening for the answer from the user on the other end. The way we do that is by listening to changes to the called document in Firestore.\n\nThe on snapshot method will fire a callback anytime the document in the database changes. If our peer connection doesn't have a remote description and the data has an answer, then we'll go ahead and set an answer description on our peer connection here locally. In other words, we're listening to our database for an answer and when that answer is received, we update it on our peer connection. That negotiates the initial connection, But we also need to listen for ICE candidates from the answering user. We do that by listening to updates to the answer candidates collection.\n\nFirestore has a cool little feature where you can listen to only the documents that have been added to the collection, which is handled with the doc changes method on the query. So every time we have a new document added, we can then create a new ICE candidate with the document data and then add that candidate to our peer connection. At this point, we're listening to updates from the answer side, but we still need to give the answering user a way to actually answer the call. Answering a call is very similar to initiating a call. The main difference is that we're going to listen to a document in Firestore with the same document ID that was created by the caller.\n\nWe'll make a reference to that document as well as the answer candidate's collection, then listen to the ICE candidate event on the peer connection to update the answer The candidate's collection whenever a new candidate is generated. From there, we can fetch the call document from the database and grab its data. It contains the offer data, Which we can use to set a remote description on the peer connection. After that, we can then generate an answer locally, then set the local description as the answer. Now just like we did with the offer in the previous function, we'll set it up as a plain object and then update it on the call document so that the other user can listen to the answer.\n\nIn addition, we'll set up a listener on the offer candidates collection, and whenever a new ICE candidate is added to that collection, then we'll go ahead and create an ICE candidate here locally. And that's all it takes to build a video chat feature With WebRTC, the vast majority of the work is just signaling data between the two users. WebRTC handles all the complicated peer to peer networking and media streaming under the hood. I'm gonna go ahead and wrap things up there. If this video helped you, please like and subscribe.\n\nAnd if you wanna learn more advanced concepts about the web and Firebase, consider becoming a pro member atfireship io. Thanks for watching, and I will see you in the next one." }, "summaries": null, "topics": [ { "end_word": 165, "start_word": 0, "text": "WebRTC. Exchange real time audio video streams with your friends entirely in the browser. I'm here live. It's not I'm not a cat. If you wanna build your own video conferencing app to capitalize on the work from home boom, then WebRTC is the API you're looking for Because it allows you to establish a peer to peer connection between 2 or more browsers where they can exchange audio video media directly Without the need for a third party server or native app, it works like this. The first peer will create an offer asking for another peer to connect to them. This will in an SDP object or session description protocol, which contains information describing the peer to peer connection, like the video codec, timing, and so on. The Data will then be saved in a server where it can then be read by another peer to answer the call, which is achieved by creating an STP answer and writing that to the server.", "topics": [ { "confidence": 0.9865056, "topic": "video gaming" }, { "confidence": 0.98625, "topic": "multimedia" }, { "confidence": 0.9062556, "topic": "streaming" }, { "confidence": 0.8081186, "topic": "networking" }, { "confidence": 0.42734045, "topic": "youtube" }, { "confidence": 0.032244656, "topic": "internet" } ] }, { "end_word": 287, "start_word": 165, "text": "This process Is known as signaling, and it's handled by a third party server. The signaling server allows the 2 parties to securely exchange connection data, never touches the media that's actually transmitted between the peers. But here's where things get tricky. Most devices in the real world sit behind firewalls and IP addresses constantly change thanks to network address translation. This makes peer to peer connection complicated from a networking standpoint. But luckily, there's a standard called Active Connectivity Establishment or ICE, which helps clients coordinate the discovery of their public facing IP addresses. Now both peers We'll generate a list of ICE candidates, which contain an IP address and port that peer 1 can use to connect to peer 2.", "topics": [ { "confidence": 0.99825245, "topic": "networking" }, { "confidence": 0.8061792, "topic": "internet" }, { "confidence": 0.76162255, "topic": "telecommunications" }, { "confidence": 0.016056765, "topic": "social media" }, { "confidence": 0.013488018, "topic": "infrastructure" }, { "confidence": 0.0075147115, "topic": "phones" } ] }, { "end_word": 331, "start_word": 287, "text": "In the background, WebRTC will do this By making a series of requests to a stun server. A stun server is not something you need to set up on your own because there are many free options out there from reliable sources like Google.", "topics": [] }, { "end_word": 569, "start_word": 331, "text": "Each peer will save their ICE candidates in the database where they can then be read by the other peer. The algorithm will then automatically determine which candidate is best, at which point real time media can begin flowing between the two peers. This has been WebRTC in 100 seconds. If you wanna see more short videos like this, make sure to hit the like button, then stay tuned because now we're going to build our own Video chat app from scratch. That may sound pretty complicated, but the WebRTC API allows all this stuff to magically happen in the background. Over the few minutes, you'll build a peer to peer video calling app from scratch using nothing but vanilla JavaScript and Firebase as the signaling server. By the end of this tutorial, You'll know how to implement real time features that cater to the needs of the new work from home paradigm that we live in. In addition to this video, you can also reference the Full article on Fireship IO and the source code on GitHub. Let's start by taking a look at the demo. We have the local user's video feed on the left side and the Remote video on the right side. The local user will first grant permission for the app to access the webcam. That user can then create a call, which will write a document to Firestore with the offer details.", "topics": [ { "confidence": 0.7408305, "topic": "home improvement" }, { "confidence": 0.58981717, "topic": "youtube" }, { "confidence": 0.40378028, "topic": "streaming" }, { "confidence": 0.06752431, "topic": "documentary" }, { "confidence": 0.03588821, "topic": "video gaming" }, { "confidence": 0.03155208, "topic": "data" }, { "confidence": 0.029720545, "topic": "multimedia" }, { "confidence": 0.012368703, "topic": "media" }, { "confidence": 0.0086279595, "topic": "databases" }, { "confidence": 0.00837896, "topic": "customer support" }, { "confidence": 0.0058829044, "topic": "social media" } ] }, { "end_word": 634, "start_word": 569, "text": "At the same time, we'll create a peer connection instance in the browser, which handles the WebRTC negotiation process. The offer will have a unique ID that can then be accessed by another user somewhere else in the world. That user will then join the call with the unique ID, Then establish their own peer connection and write the answer details to the same document.", "topics": [] }, { "end_word": 767, "start_word": 634, "text": "Then both peers will write their ICE candidates To the database, we have one sub collection for offer candidates and another for answer candidates. This data model will allow signaling to take place between the two peers. The data itself looks like a bunch of nonsense, but what it contains is an IP address port pair that allows the 2 peers to establish a connection. Now both users can listen to this data in real time Then use the WebRTC API in the browser to establish the connection, giving us a one to one video chat feature. And now we're ready to jump into our JavaScript code. I started by creating a vanilla JavaScript project using a tool called Vite, which is a very simple build tool developed by the Vue JS guy.", "topics": [ { "confidence": 0.99535245, "topic": "data" }, { "confidence": 0.9568976, "topic": "databases" }, { "confidence": 0.48475143, "topic": "networking" }, { "confidence": 0.41503683, "topic": "data analysis" }, { "confidence": 0.2154664, "topic": "data management" }, { "confidence": 0.13080072, "topic": "video gaming" }, { "confidence": 0.074703336, "topic": "internet" }, { "confidence": 0.026793597, "topic": "telecommunications" } ] }, { "end_word": 846, "start_word": 767, "text": "We can initialize a new project by running npm initvjs/app from the command line. Basically, it gives us a web project where we can install dependencies without having to worry about things like webpack. After initializing the project, we need to install Firebase. Firebase contains the Firestore database, which we can use as our back end server. Firebase is an exceptional choice for a signaling server because it's easy to listen to updates to the database in real time.", "topics": [] }, { "end_word": 901, "start_word": 846, "text": "If we were working with a traditional database, we'd likely have to implement something like WebSockets to make that possible and this video would be a crazy 20 minutes long or something. From the Firebase console, initialize Firestore in test mode, then create a web project from the settings panel and grab your project credentials.", "topics": [ { "confidence": 0.008029702, "topic": "video gaming" } ] }, { "end_word": 958, "start_word": 901, "text": "We can then go into the main JS file, import Firebase, And initialize the app with our Firebase config. Now that we have Firebase set up, we're going to initialize 3 pieces of global state. These are values you would likely want to share between multiple components if you're using a UI framework like React or Angular.", "topics": [] }, { "end_word": 1028, "start_word": 958, "text": "The first and most important Value is the rtc pure connection. This object is where all of the action happens. It emits a bunch of different events that we Listen to to update the database and to add media streams to the connection itself. One very important thing it does is generate the ICE candidates, But in order to do that, it needs to know which STUN servers to use.", "topics": [ { "confidence": 0.20929778, "topic": "data" }, { "confidence": 0.18572903, "topic": "networking" }, { "confidence": 0.027884547, "topic": "internet" }, { "confidence": 0.018177543, "topic": "telecommunications" } ] }, { "end_word": 1082, "start_word": 1028, "text": "There are many different options out there, but we're just going to use the free ones from Google. From there, we have values for local stream and remote stream, which are the video streams from the webcams of each user. Now because we're working with vanilla JS, we need to use Imperative Dom APIs.", "topics": [ { "confidence": 0.025785804, "topic": "streaming" }, { "confidence": 0.0075410595, "topic": "youtube" } ] }, { "end_word": 1150, "start_word": 1082, "text": "We're using document get element by ID to grab a bunch of elements from the HTML, like video elements to Show the actual video feeds along with buttons that provide different interaction in the UI. The first thing the user will do is click a button to open up their webcam. We'll We'll go ahead and register an event handler for the click event on the webcam button.", "topics": [] }, { "end_word": 1409, "start_word": 1150, "text": "Obtaining a stream from the user's webcam is very easy. We just await the navigator mediatevices Is get user media method and will set video and audio to true. That'll bring up a dialogue in the browser asking the user for permission to access the webcam. That's complete, the promise will resolve to a media stream object. Once we have access to the webcam, we can also go ahead and set up the remote stream here, which itself will just be an empty media stream. Now from here, we need to take our 2 streams and make them available on the peer connection and show them on Video elements in the DOM. The local stream is already running here in the browser, so we can get its tracks and then loop over them. And for each track, we'll call peer connection add track with that track in the local stream. Now the remote stream is currently empty and it will be updated by the Pure connection itself. So what we can do is listen to the on track event on the Pure connection, then get the tracks from the stream, Loop over them and add them to the remote stream when they come in. Now, the final step for managing our streams is to apply them To video elements in the DOM. We can do that by simply calling the video element source object and setting it equal to the stream. At this point, we have a way to manage a local and remote stream through the peer connection.", "topics": [ { "confidence": 0.8842185, "topic": "streaming" }, { "confidence": 0.042890258, "topic": "multimedia" }, { "confidence": 0.025284952, "topic": "youtube" }, { "confidence": 0.0076647457, "topic": "video gaming" } ] }, { "end_word": 1548, "start_word": 1409, "text": "But in order to make that happen, we need to do some signaling with Firestore. The user who starts a call is the one who makes an offer. We have a call button in the DOM to handle that functionality inside this async function here. We have a call document, which is used to manage the answer and offer from both users. Then we have offer candidates and answer candidates, which are subcollections under that document that contain all the candidates for each of those users. When we reference a document without an ID, Firebase will automatically generate a random ID for us. So we'll go ahead and use that to populate an input in the UI, which can then be used in another browser tab or by another user somewhere else in the world to answer the call.", "topics": [] }, { "end_word": 1607, "start_word": 1548, "text": "Now we're ready to create an offer and save it to the database. The first thing we'll do is await the peer connection create offer method, which will return with an offer description. We'll then set it as the local description on the Pure connection. Most importantly, this object contains an SDP value, Which stands for Session Description Protocol.", "topics": [ { "confidence": 0.08240696, "topic": "networking" }, { "confidence": 0.012019463, "topic": "customer support" }, { "confidence": 0.0059955223, "topic": "databases" } ] }, { "end_word": 1672, "start_word": 1607, "text": "That's the value we want to save to the database, so we'll go ahead and convert it to a plain JavaScript object, Then write it to the database by calling await call document set with that data. Now what's inside the SDP object isn't really important, but it contains information about the Video codec along with a bunch of other stuff to negotiate the connection.", "topics": [ { "confidence": 0.07977452, "topic": "databases" }, { "confidence": 0.029424153, "topic": "data management" } ] }, { "end_word": 1749, "start_word": 1672, "text": "Now one really important thing to point out here is that when we called set local description, it automatically started generating the ICE candidates. An ICE candidate contains a potential IP address and port pair that can be used to establish the actual peer to peer connection. Need to be listening to the ICE candidates, so it's important that we have a listener established before we make that call that listens to the on ICE candidate event.", "topics": [] }, { "end_word": 1810, "start_word": 1749, "text": "When the event is fired, we'll make sure that a candidate exists, then write the data as JSON to the offer candidate's collection. So at this point, as the caller making the offer, We are saving all of our data to the database, but now we need to also be listening for the answer from the user on the other end.", "topics": [ { "confidence": 0.022626344, "topic": "data" }, { "confidence": 0.0141407, "topic": "databases" }, { "confidence": 0.006433684, "topic": "data management" } ] }, { "end_word": 1841, "start_word": 1810, "text": "The way we do that is by listening to changes to the called document in Firestore. The on snapshot method will fire a callback anytime the document in the database changes.", "topics": [] }, { "end_word": 1987, "start_word": 1841, "text": "If our peer connection doesn't have a remote description and the data has an answer, then we'll go ahead and set an answer description on our peer connection here locally. In other words, we're listening to our database for an answer and when that answer is received, we update it on our peer connection. That negotiates the initial connection, But we also need to listen for ICE candidates from the answering user. We do that by listening to updates to the answer candidates collection. Firestore has a cool little feature where you can listen to only the documents that have been added to the collection, which is handled with the doc changes method on the query. So every time we have a new document added, we can then create a new ICE candidate with the document data and then add that candidate to our peer connection.", "topics": [ { "confidence": 0.55185497, "topic": "networking" }, { "confidence": 0.054292455, "topic": "databases" }, { "confidence": 0.0052989847, "topic": "publishing" } ] }, { "end_word": 2049, "start_word": 1987, "text": "At this point, we're listening to updates from the answer side, but we still need to give the answering user a way to actually answer the call. Answering a call is very similar to initiating a call. The main difference is that we're going to listen to a document in Firestore with the same document ID that was created by the caller.", "topics": [] }, { "end_word": 2175, "start_word": 2049, "text": "We'll make a reference to that document as well as the answer candidate's collection, then listen to the ICE candidate event on the peer connection to update the answer The candidate's collection whenever a new candidate is generated. From there, we can fetch the call document from the database and grab its data. It contains the offer data, Which we can use to set a remote description on the peer connection. After that, we can then generate an answer locally, then set the local description as the answer. Now just like we did with the offer in the previous function, we'll set it up as a plain object and then update it on the call document so that the other user can listen to the answer.", "topics": [ { "confidence": 0.048657846, "topic": "databases" }, { "confidence": 0.038520347, "topic": "programming" }, { "confidence": 0.025753498, "topic": "data" }, { "confidence": 0.019264456, "topic": "elections" }, { "confidence": 0.012186623, "topic": "voting" } ] }, { "end_word": 2209, "start_word": 2175, "text": "In addition, we'll set up a listener on the offer candidates collection, and whenever a new ICE candidate is added to that collection, then we'll go ahead and create an ICE candidate here locally.", "topics": [] }, { "end_word": 2289, "start_word": 2209, "text": "And that's all it takes to build a video chat feature With WebRTC, the vast majority of the work is just signaling data between the two users. WebRTC handles all the complicated peer to peer networking and media streaming under the hood. I'm gonna go ahead and wrap things up there. If this video helped you, please like and subscribe. And if you wanna learn more advanced concepts about the web and Firebase, consider becoming a pro member atfireship io.", "topics": [ { "confidence": 0.25241947, "topic": "streaming" }, { "confidence": 0.07159629, "topic": "networking" }, { "confidence": 0.054283522, "topic": "social media" }, { "confidence": 0.025313886, "topic": "internet" }, { "confidence": 0.022555606, "topic": "websites" } ] }, { "end_word": 2301, "start_word": 2289, "text": "Thanks for watching, and I will see you in the next one.", "topics": [] } ], "transcript": "WebRTC. Exchange real time audio video streams with your friends entirely in the browser. I'm here live. It's not I'm not a cat. If you wanna build your own video conferencing app to capitalize on the work from home boom, then WebRTC is the API you're looking for Because it allows you to establish a peer to peer connection between 2 or more browsers where they can exchange audio video media directly Without the need for a third party server or native app, it works like this. The first peer will create an offer asking for another peer to connect to them. This will in an SDP object or session description protocol, which contains information describing the peer to peer connection, like the video codec, timing, and so on. The Data will then be saved in a server where it can then be read by another peer to answer the call, which is achieved by creating an STP answer and writing that to the server. This process Is known as signaling, and it's handled by a third party server. The signaling server allows the 2 parties to securely exchange connection data, never touches the media that's actually transmitted between the peers. But here's where things get tricky. Most devices in the real world sit behind firewalls and IP addresses constantly change thanks to network address translation. This makes peer to peer connection complicated from a networking standpoint. But luckily, there's a standard called Active Connectivity Establishment or ICE, which helps clients coordinate the discovery of their public facing IP addresses. Now both peers We'll generate a list of ICE candidates, which contain an IP address and port that peer 1 can use to connect to peer 2. In the background, WebRTC will do this By making a series of requests to a stun server. A stun server is not something you need to set up on your own because there are many free options out there from reliable sources like Google. Each peer will save their ICE candidates in the database where they can then be read by the other peer. The algorithm will then automatically determine which candidate is best, at which point real time media can begin flowing between the two peers. This has been WebRTC in 100 seconds. If you wanna see more short videos like this, make sure to hit the like button, then stay tuned because now we're going to build our own Video chat app from scratch. That may sound pretty complicated, but the WebRTC API allows all this stuff to magically happen in the background. Over the few minutes, you'll build a peer to peer video calling app from scratch using nothing but vanilla JavaScript and Firebase as the signaling server. By the end of this tutorial, You'll know how to implement real time features that cater to the needs of the new work from home paradigm that we live in. In addition to this video, you can also reference the Full article on Fireship IO and the source code on GitHub. Let's start by taking a look at the demo. We have the local user's video feed on the left side and the Remote video on the right side. The local user will first grant permission for the app to access the webcam. That user can then create a call, which will write a document to Firestore with the offer details. At the same time, we'll create a peer connection instance in the browser, which handles the WebRTC negotiation process. The offer will have a unique ID that can then be accessed by another user somewhere else in the world. That user will then join the call with the unique ID, Then establish their own peer connection and write the answer details to the same document. Then both peers will write their ICE candidates To the database, we have one sub collection for offer candidates and another for answer candidates. This data model will allow signaling to take place between the two peers. The data itself looks like a bunch of nonsense, but what it contains is an IP address port pair that allows the 2 peers to establish a connection. Now both users can listen to this data in real time Then use the WebRTC API in the browser to establish the connection, giving us a one to one video chat feature. And now we're ready to jump into our JavaScript code. I started by creating a vanilla JavaScript project using a tool called Vite, which is a very simple build tool developed by the Vue JS guy. We can initialize a new project by running npm initvjs/app from the command line. Basically, it gives us a web project where we can install dependencies without having to worry about things like webpack. After initializing the project, we need to install Firebase. Firebase contains the Firestore database, which we can use as our back end server. Firebase is an exceptional choice for a signaling server because it's easy to listen to updates to the database in real time. If we were working with a traditional database, we'd likely have to implement something like WebSockets to make that possible and this video would be a crazy 20 minutes long or something. From the Firebase console, initialize Firestore in test mode, then create a web project from the settings panel and grab your project credentials. We can then go into the main JS file, import Firebase, And initialize the app with our Firebase config. Now that we have Firebase set up, we're going to initialize 3 pieces of global state. These are values you would likely want to share between multiple components if you're using a UI framework like React or Angular. The first and most important Value is the rtc pure connection. This object is where all of the action happens. It emits a bunch of different events that we Listen to to update the database and to add media streams to the connection itself. One very important thing it does is generate the ICE candidates, But in order to do that, it needs to know which STUN servers to use. There are many different options out there, but we're just going to use the free ones from Google. From there, we have values for local stream and remote stream, which are the video streams from the webcams of each user. Now because we're working with vanilla JS, we need to use Imperative Dom APIs. We're using document get element by ID to grab a bunch of elements from the HTML, like video elements to Show the actual video feeds along with buttons that provide different interaction in the UI. The first thing the user will do is click a button to open up their webcam. We'll We'll go ahead and register an event handler for the click event on the webcam button. Obtaining a stream from the user's webcam is very easy. We just await the navigator mediatevices Is get user media method and will set video and audio to true. That'll bring up a dialogue in the browser asking the user for permission to access the webcam. That's complete, the promise will resolve to a media stream object. Once we have access to the webcam, we can also go ahead and set up the remote stream here, which itself will just be an empty media stream. Now from here, we need to take our 2 streams and make them available on the peer connection and show them on Video elements in the DOM. The local stream is already running here in the browser, so we can get its tracks and then loop over them. And for each track, we'll call peer connection add track with that track in the local stream. Now the remote stream is currently empty and it will be updated by the Pure connection itself. So what we can do is listen to the on track event on the Pure connection, then get the tracks from the stream, Loop over them and add them to the remote stream when they come in. Now, the final step for managing our streams is to apply them To video elements in the DOM. We can do that by simply calling the video element source object and setting it equal to the stream. At this point, we have a way to manage a local and remote stream through the peer connection. But in order to make that happen, we need to do some signaling with Firestore. The user who starts a call is the one who makes an offer. We have a call button in the DOM to handle that functionality inside this async function here. We have a call document, which is used to manage the answer and offer from both users. Then we have offer candidates and answer candidates, which are subcollections under that document that contain all the candidates for each of those users. When we reference a document without an ID, Firebase will automatically generate a random ID for us. So we'll go ahead and use that to populate an input in the UI, which can then be used in another browser tab or by another user somewhere else in the world to answer the call. Now we're ready to create an offer and save it to the database. The first thing we'll do is await the peer connection create offer method, which will return with an offer description. We'll then set it as the local description on the Pure connection. Most importantly, this object contains an SDP value, Which stands for Session Description Protocol. That's the value we want to save to the database, so we'll go ahead and convert it to a plain JavaScript object, Then write it to the database by calling await call document set with that data. Now what's inside the SDP object isn't really important, but it contains information about the Video codec along with a bunch of other stuff to negotiate the connection. Now one really important thing to point out here is that when we called set local description, it automatically started generating the ICE candidates. An ICE candidate contains a potential IP address and port pair that can be used to establish the actual peer to peer connection. Need to be listening to the ICE candidates, so it's important that we have a listener established before we make that call that listens to the on ICE candidate event. When the event is fired, we'll make sure that a candidate exists, then write the data as JSON to the offer candidate's collection. So at this point, as the caller making the offer, We are saving all of our data to the database, but now we need to also be listening for the answer from the user on the other end. The way we do that is by listening to changes to the called document in Firestore. The on snapshot method will fire a callback anytime the document in the database changes. If our peer connection doesn't have a remote description and the data has an answer, then we'll go ahead and set an answer description on our peer connection here locally. In other words, we're listening to our database for an answer and when that answer is received, we update it on our peer connection. That negotiates the initial connection, But we also need to listen for ICE candidates from the answering user. We do that by listening to updates to the answer candidates collection. Firestore has a cool little feature where you can listen to only the documents that have been added to the collection, which is handled with the doc changes method on the query. So every time we have a new document added, we can then create a new ICE candidate with the document data and then add that candidate to our peer connection. At this point, we're listening to updates from the answer side, but we still need to give the answering user a way to actually answer the call. Answering a call is very similar to initiating a call. The main difference is that we're going to listen to a document in Firestore with the same document ID that was created by the caller. We'll make a reference to that document as well as the answer candidate's collection, then listen to the ICE candidate event on the peer connection to update the answer The candidate's collection whenever a new candidate is generated. From there, we can fetch the call document from the database and grab its data. It contains the offer data, Which we can use to set a remote description on the peer connection. After that, we can then generate an answer locally, then set the local description as the answer. Now just like we did with the offer in the previous function, we'll set it up as a plain object and then update it on the call document so that the other user can listen to the answer. In addition, we'll set up a listener on the offer candidates collection, and whenever a new ICE candidate is added to that collection, then we'll go ahead and create an ICE candidate here locally. And that's all it takes to build a video chat feature With WebRTC, the vast majority of the work is just signaling data between the two users. WebRTC handles all the complicated peer to peer networking and media streaming under the hood. I'm gonna go ahead and wrap things up there. If this video helped you, please like and subscribe. And if you wanna learn more advanced concepts about the web and Firebase, consider becoming a pro member atfireship io. Thanks for watching, and I will see you in the next one.", "translations": null, "words": [ { "confidence": 0.92419434, "end": 0.82, "punctuated_word": "WebRTC.", "speaker": 0, "speaker_confidence": 0.80810547, "start": 0.32, "word": "webrtc" }, { "confidence": 0.9921875, "end": 2.1599998, "punctuated_word": "Exchange", "speaker": 0, "speaker_confidence": 0.80810547, "start": 1.68, "word": "exchange" }, { "confidence": 0.98828125, "end": 2.3999999, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 0.80810547, "start": 2.1599998, "word": "real" }, { "confidence": 0.9921875, "end": 2.8, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.80810547, "start": 2.3999999, "word": "time" }, { "confidence": 0.9482422, "end": 3.1999998, "punctuated_word": "audio", "speaker": 0, "speaker_confidence": 0.80810547, "start": 2.8, "word": "audio" }, { "confidence": 0.98828125, "end": 3.52, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.80810547, "start": 3.1999998, "word": "video" }, { "confidence": 1, "end": 3.84, "punctuated_word": "streams", "speaker": 0, "speaker_confidence": 0.80810547, "start": 3.52, "word": "streams" }, { "confidence": 1, "end": 4.08, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.80810547, "start": 3.84, "word": "with" }, { "confidence": 1, "end": 4.24, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.80810547, "start": 4.08, "word": "your" }, { "confidence": 1, "end": 4.72, "punctuated_word": "friends", "speaker": 0, "speaker_confidence": 0.80810547, "start": 4.24, "word": "friends" }, { "confidence": 0.9970703, "end": 5.22, "punctuated_word": "entirely", "speaker": 0, "speaker_confidence": 0.80810547, "start": 4.72, "word": "entirely" }, { "confidence": 1, "end": 5.44, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.80810547, "start": 5.2799997, "word": "in" }, { "confidence": 0.99902344, "end": 5.6, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.80810547, "start": 5.44, "word": "the" }, { "confidence": 0.9980469, "end": 6.08, "punctuated_word": "browser.", "speaker": 0, "speaker_confidence": 0.80810547, "start": 5.6, "word": "browser" }, { "confidence": 0.97314453, "end": 6.24, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0, "start": 6.08, "word": "i'm" }, { "confidence": 1, "end": 6.48, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0, "start": 6.24, "word": "here" }, { "confidence": 0.9440918, "end": 6.7999997, "punctuated_word": "live.", "speaker": 0, "speaker_confidence": 0, "start": 6.48, "word": "live" }, { "confidence": 0.8676758, "end": 7.045, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0, "start": 6.7999997, "word": "it's" }, { "confidence": 0.8286133, "end": 7.285, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0, "start": 7.125, "word": "not" }, { "confidence": 0.99853516, "end": 7.525, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0, "start": 7.445, "word": "i'm" }, { "confidence": 1, "end": 7.765, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0, "start": 7.525, "word": "not" }, { "confidence": 1, "end": 7.925, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0, "start": 7.765, "word": "a" }, { "confidence": 0.9970703, "end": 8.405, "punctuated_word": "cat.", "speaker": 0, "speaker_confidence": 0, "start": 7.925, "word": "cat" }, { "confidence": 0.99902344, "end": 8.565001, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.7783203, "start": 8.405, "word": "if" }, { "confidence": 1, "end": 8.645, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7783203, "start": 8.565001, "word": "you" }, { "confidence": 0.91845703, "end": 8.885, "punctuated_word": "wanna", "speaker": 0, "speaker_confidence": 0.7783203, "start": 8.645, "word": "wanna" }, { "confidence": 0.9951172, "end": 9.125, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.7783203, "start": 8.885, "word": "build" }, { "confidence": 1, "end": 9.365, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.7783203, "start": 9.125, "word": "your" }, { "confidence": 1, "end": 9.605, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 0.7783203, "start": 9.365, "word": "own" }, { "confidence": 0.9921875, "end": 9.845, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.7783203, "start": 9.605, "word": "video" }, { "confidence": 1, "end": 10.345, "punctuated_word": "conferencing", "speaker": 0, "speaker_confidence": 0.7783203, "start": 9.845, "word": "conferencing" }, { "confidence": 1, "end": 10.645, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.7783203, "start": 10.405, "word": "app" }, { "confidence": 1, "end": 10.885, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7783203, "start": 10.645, "word": "to" }, { "confidence": 0.99902344, "end": 11.385, "punctuated_word": "capitalize", "speaker": 0, "speaker_confidence": 0.7783203, "start": 10.885, "word": "capitalize" }, { "confidence": 1, "end": 11.605, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.7783203, "start": 11.445, "word": "on" }, { "confidence": 0.9980469, "end": 11.764999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7783203, "start": 11.605, "word": "the" }, { "confidence": 1, "end": 11.925, "punctuated_word": "work", "speaker": 0, "speaker_confidence": 0.7783203, "start": 11.764999, "word": "work" }, { "confidence": 1, "end": 12.165, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.7783203, "start": 11.925, "word": "from" }, { "confidence": 1, "end": 12.325, "punctuated_word": "home", "speaker": 0, "speaker_confidence": 0.7783203, "start": 12.165, "word": "home" }, { "confidence": 0.99316406, "end": 12.805, "punctuated_word": "boom,", "speaker": 0, "speaker_confidence": 0.7373047, "start": 12.325, "word": "boom" }, { "confidence": 1, "end": 12.965, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.7373047, "start": 12.805, "word": "then" }, { "confidence": 0.9944661, "end": 13.465, "punctuated_word": "WebRTC", "speaker": 0, "speaker_confidence": 0.7373047, "start": 12.965, "word": "webrtc" }, { "confidence": 1, "end": 14.005, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7373047, "start": 13.844999, "word": "is" }, { "confidence": 1, "end": 14.165, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7373047, "start": 14.005, "word": "the" }, { "confidence": 1, "end": 14.565001, "punctuated_word": "API", "speaker": 0, "speaker_confidence": 0.7373047, "start": 14.165, "word": "api" }, { "confidence": 0.9995117, "end": 14.805, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.7373047, "start": 14.565001, "word": "you're" }, { "confidence": 1, "end": 14.965, "punctuated_word": "looking", "speaker": 0, "speaker_confidence": 0.7373047, "start": 14.805, "word": "looking" }, { "confidence": 1, "end": 15.38, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.7373047, "start": 14.965, "word": "for" }, { "confidence": 0.9970703, "end": 15.78, "punctuated_word": "Because", "speaker": 0, "speaker_confidence": 0.7373047, "start": 15.62, "word": "because" }, { "confidence": 0.9980469, "end": 15.86, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8671875, "start": 15.78, "word": "it" }, { "confidence": 1, "end": 16.26, "punctuated_word": "allows", "speaker": 0, "speaker_confidence": 0.8671875, "start": 15.86, "word": "allows" }, { "confidence": 1, "end": 16.42, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.8671875, "start": 16.26, "word": "you" }, { "confidence": 0.9980469, "end": 16.66, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8671875, "start": 16.42, "word": "to" }, { "confidence": 1, "end": 17.14, "punctuated_word": "establish", "speaker": 0, "speaker_confidence": 0.8671875, "start": 16.66, "word": "establish" }, { "confidence": 1, "end": 17.380001, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8671875, "start": 17.14, "word": "a" }, { "confidence": 0.9980469, "end": 17.62, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 0.8671875, "start": 17.380001, "word": "peer" }, { "confidence": 0.9980469, "end": 17.7, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8671875, "start": 17.62, "word": "to" }, { "confidence": 0.99902344, "end": 17.94, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 0.8671875, "start": 17.7, "word": "peer" }, { "confidence": 1, "end": 18.44, "punctuated_word": "connection", "speaker": 0, "speaker_confidence": 0.8671875, "start": 17.94, "word": "connection" }, { "confidence": 0.99902344, "end": 18.82, "punctuated_word": "between", "speaker": 0, "speaker_confidence": 0.8671875, "start": 18.5, "word": "between" }, { "confidence": 0.99121094, "end": 19.06, "punctuated_word": "2", "speaker": 0, "speaker_confidence": 0.8671875, "start": 18.82, "word": "2" }, { "confidence": 0.99902344, "end": 19.22, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.8671875, "start": 19.06, "word": "or" }, { "confidence": 1, "end": 19.46, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.8671875, "start": 19.22, "word": "more" }, { "confidence": 0.99902344, "end": 19.96, "punctuated_word": "browsers", "speaker": 0, "speaker_confidence": 0.8671875, "start": 19.46, "word": "browsers" }, { "confidence": 0.60302734, "end": 20.26, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.8671875, "start": 20.02, "word": "where" }, { "confidence": 1, "end": 20.34, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.8671875, "start": 20.26, "word": "they" }, { "confidence": 1, "end": 20.58, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.8671875, "start": 20.34, "word": "can" }, { "confidence": 0.99902344, "end": 21.06, "punctuated_word": "exchange", "speaker": 0, "speaker_confidence": 0.8671875, "start": 20.58, "word": "exchange" }, { "confidence": 0.96240234, "end": 21.46, "punctuated_word": "audio", "speaker": 0, "speaker_confidence": 0.8671875, "start": 21.06, "word": "audio" }, { "confidence": 0.9902344, "end": 21.779999, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.8671875, "start": 21.46, "word": "video" }, { "confidence": 0.9980469, "end": 22.1, "punctuated_word": "media", "speaker": 0, "speaker_confidence": 0.8671875, "start": 21.779999, "word": "media" }, { "confidence": 0.98828125, "end": 22.575, "punctuated_word": "directly", "speaker": 0, "speaker_confidence": 0.8671875, "start": 22.1, "word": "directly" }, { "confidence": 0.99121094, "end": 22.935001, "punctuated_word": "Without", "speaker": 0, "speaker_confidence": 0.9091797, "start": 22.815, "word": "without" }, { "confidence": 1, "end": 23.055, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9091797, "start": 22.935001, "word": "the" }, { "confidence": 1, "end": 23.455, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.9091797, "start": 23.055, "word": "need" }, { "confidence": 1, "end": 23.615002, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.9091797, "start": 23.455, "word": "for" }, { "confidence": 1, "end": 23.775002, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9091797, "start": 23.615002, "word": "a" }, { "confidence": 0.6923828, "end": 23.935001, "punctuated_word": "third", "speaker": 0, "speaker_confidence": 0.9091797, "start": 23.775002, "word": "third" }, { "confidence": 1, "end": 24.255001, "punctuated_word": "party", "speaker": 0, "speaker_confidence": 0.9091797, "start": 23.935001, "word": "party" }, { "confidence": 1, "end": 24.575, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 0.9091797, "start": 24.255001, "word": "server" }, { "confidence": 0.99902344, "end": 24.815, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.9091797, "start": 24.575, "word": "or" }, { "confidence": 0.7314453, "end": 25.135, "punctuated_word": "native", "speaker": 0, "speaker_confidence": 0.9091797, "start": 24.815, "word": "native" }, { "confidence": 0.9885254, "end": 25.455, "punctuated_word": "app,", "speaker": 0, "speaker_confidence": 0.9091797, "start": 25.135, "word": "app" }, { "confidence": 0.9980469, "end": 25.615002, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.9091797, "start": 25.455, "word": "it" }, { "confidence": 1, "end": 25.775002, "punctuated_word": "works", "speaker": 0, "speaker_confidence": 0.9091797, "start": 25.615002, "word": "works" }, { "confidence": 1, "end": 25.935001, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.9091797, "start": 25.775002, "word": "like" }, { "confidence": 0.9980469, "end": 26.435001, "punctuated_word": "this.", "speaker": 0, "speaker_confidence": 0.9091797, "start": 25.935001, "word": "this" }, { "confidence": 0.99902344, "end": 26.735, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.9091797, "start": 26.575, "word": "the" }, { "confidence": 0.6611328, "end": 26.975, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 0.9091797, "start": 26.735, "word": "first" }, { "confidence": 0.99609375, "end": 27.375, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 0.9091797, "start": 26.975, "word": "peer" }, { "confidence": 0.99902344, "end": 27.615002, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.9091797, "start": 27.375, "word": "will" }, { "confidence": 1, "end": 27.855, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.9091797, "start": 27.615002, "word": "create" }, { "confidence": 1, "end": 28.015001, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.9091797, "start": 27.855, "word": "an" }, { "confidence": 1, "end": 28.515001, "punctuated_word": "offer", "speaker": 0, "speaker_confidence": 0.9091797, "start": 28.015001, "word": "offer" }, { "confidence": 0.8852539, "end": 28.975, "punctuated_word": "asking", "speaker": 0, "speaker_confidence": 0.9091797, "start": 28.655, "word": "asking" }, { "confidence": 0.99902344, "end": 29.215, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.9091797, "start": 28.975, "word": "for" }, { "confidence": 1, "end": 29.535, "punctuated_word": "another", "speaker": 0, "speaker_confidence": 0.9091797, "start": 29.215, "word": "another" }, { "confidence": 1, "end": 29.855, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 0.9091797, "start": 29.535, "word": "peer" }, { "confidence": 0.99902344, "end": 30.015001, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9091797, "start": 29.855, "word": "to" }, { "confidence": 0.99902344, "end": 30.255001, "punctuated_word": "connect", "speaker": 0, "speaker_confidence": 0.9091797, "start": 30.015001, "word": "connect" }, { "confidence": 0.9951172, "end": 30.415, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9091797, "start": 30.255001, "word": "to" }, { "confidence": 0.9758301, "end": 30.895, "punctuated_word": "them.", "speaker": 0, "speaker_confidence": 0.9091797, "start": 30.415, "word": "them" }, { "confidence": 0.9716797, "end": 31.055, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.9091797, "start": 30.895, "word": "this" }, { "confidence": 0.9667969, "end": 31.36, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.9091797, "start": 31.055, "word": "will" }, { "confidence": 0.7939453, "end": 31.92, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9091797, "start": 31.84, "word": "in" }, { "confidence": 0.9970703, "end": 32.16, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.9091797, "start": 31.92, "word": "an" }, { "confidence": 0.7854004, "end": 32.66, "punctuated_word": "SDP", "speaker": 0, "speaker_confidence": 0.9091797, "start": 32.16, "word": "sdp" }, { "confidence": 0.9902344, "end": 33.2, "punctuated_word": "object", "speaker": 0, "speaker_confidence": 0.9091797, "start": 32.72, "word": "object" }, { "confidence": 0.97802734, "end": 33.52, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.9091797, "start": 33.2, "word": "or" }, { "confidence": 0.5600586, "end": 33.920002, "punctuated_word": "session", "speaker": 0, "speaker_confidence": 0.9091797, "start": 33.52, "word": "session" }, { "confidence": 1, "end": 34.420002, "punctuated_word": "description", "speaker": 0, "speaker_confidence": 0.9091797, "start": 33.920002, "word": "description" }, { "confidence": 0.9567871, "end": 34.98, "punctuated_word": "protocol,", "speaker": 0, "speaker_confidence": 0.9091797, "start": 34.48, "word": "protocol" }, { "confidence": 1, "end": 35.36, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.9091797, "start": 35.12, "word": "which" }, { "confidence": 1, "end": 35.84, "punctuated_word": "contains", "speaker": 0, "speaker_confidence": 0.9091797, "start": 35.36, "word": "contains" }, { "confidence": 1, "end": 36.34, "punctuated_word": "information", "speaker": 0, "speaker_confidence": 0.9091797, "start": 35.84, "word": "information" }, { "confidence": 1, "end": 36.88, "punctuated_word": "describing", "speaker": 0, "speaker_confidence": 0.9091797, "start": 36.4, "word": "describing" }, { "confidence": 0.83447266, "end": 36.96, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9091797, "start": 36.88, "word": "the" }, { "confidence": 0.9980469, "end": 37.28, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 0.9091797, "start": 36.96, "word": "peer" }, { "confidence": 0.9970703, "end": 37.36, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.67333984, "start": 37.28, "word": "to" }, { "confidence": 1, "end": 37.6, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 0.67333984, "start": 37.36, "word": "peer" }, { "confidence": 0.78564453, "end": 38.1, "punctuated_word": "connection,", "speaker": 0, "speaker_confidence": 0.67333984, "start": 37.6, "word": "connection" }, { "confidence": 1, "end": 38.4, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.67333984, "start": 38.16, "word": "like" }, { "confidence": 0.9506836, "end": 38.48, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.67333984, "start": 38.4, "word": "the" }, { "confidence": 1, "end": 38.88, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.67333984, "start": 38.48, "word": "video" }, { "confidence": 0.96118164, "end": 39.36, "punctuated_word": "codec,", "speaker": 0, "speaker_confidence": 0.67333984, "start": 38.88, "word": "codec" }, { "confidence": 0.99316406, "end": 39.84, "punctuated_word": "timing,", "speaker": 0, "speaker_confidence": 0.67333984, "start": 39.36, "word": "timing" }, { "confidence": 1, "end": 40, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.67333984, "start": 39.84, "word": "and" }, { "confidence": 1, "end": 40.16, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.67333984, "start": 40, "word": "so" }, { "confidence": 0.9995117, "end": 40.56, "punctuated_word": "on.", "speaker": 0, "speaker_confidence": 0.67333984, "start": 40.16, "word": "on" }, { "confidence": 0.99902344, "end": 40.685, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.703125, "start": 40.56, "word": "the" }, { "confidence": 0.96777344, "end": 41.005, "punctuated_word": "Data", "speaker": 0, "speaker_confidence": 0.703125, "start": 40.765003, "word": "data" }, { "confidence": 0.9970703, "end": 41.165, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.703125, "start": 41.005, "word": "will" }, { "confidence": 0.9980469, "end": 41.405003, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.703125, "start": 41.165, "word": "then" }, { "confidence": 0.99902344, "end": 41.565002, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.703125, "start": 41.405003, "word": "be" }, { "confidence": 1, "end": 41.805, "punctuated_word": "saved", "speaker": 0, "speaker_confidence": 0.703125, "start": 41.565002, "word": "saved" }, { "confidence": 1, "end": 41.965, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.703125, "start": 41.805, "word": "in" }, { "confidence": 1, "end": 42.045002, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.703125, "start": 41.965, "word": "a" }, { "confidence": 1, "end": 42.545002, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 0.703125, "start": 42.045002, "word": "server" }, { "confidence": 0.56152344, "end": 42.845, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.703125, "start": 42.605, "word": "where" }, { "confidence": 0.9980469, "end": 42.925003, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.703125, "start": 42.845, "word": "it" }, { "confidence": 1, "end": 43.005, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 42.925003, "word": "can" }, { "confidence": 0.99609375, "end": 43.245003, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 1, "start": 43.005, "word": "then" }, { "confidence": 1, "end": 43.405003, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 1, "start": 43.245003, "word": "be" }, { "confidence": 0.9980469, "end": 43.645, "punctuated_word": "read", "speaker": 0, "speaker_confidence": 1, "start": 43.405003, "word": "read" }, { "confidence": 1, "end": 43.885002, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 1, "start": 43.645, "word": "by" }, { "confidence": 0.9970703, "end": 44.285, "punctuated_word": "another", "speaker": 0, "speaker_confidence": 1, "start": 43.885002, "word": "another" }, { "confidence": 0.99902344, "end": 44.605, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 1, "start": 44.285, "word": "peer" }, { "confidence": 1, "end": 44.925003, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 44.605, "word": "to" }, { "confidence": 1, "end": 45.165, "punctuated_word": "answer", "speaker": 0, "speaker_confidence": 1, "start": 44.925003, "word": "answer" }, { "confidence": 1, "end": 45.325, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 45.165, "word": "the" }, { "confidence": 0.9707031, "end": 45.725002, "punctuated_word": "call,", "speaker": 0, "speaker_confidence": 1, "start": 45.325, "word": "call" }, { "confidence": 1, "end": 45.965, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 1, "start": 45.725002, "word": "which" }, { "confidence": 1, "end": 46.125, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 45.965, "word": "is" }, { "confidence": 1, "end": 46.525, "punctuated_word": "achieved", "speaker": 0, "speaker_confidence": 1, "start": 46.125, "word": "achieved" }, { "confidence": 1, "end": 46.685, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 1, "start": 46.525, "word": "by" }, { "confidence": 1, "end": 47.005, "punctuated_word": "creating", "speaker": 0, "speaker_confidence": 1, "start": 46.685, "word": "creating" }, { "confidence": 1, "end": 47.245003, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 47.005, "word": "an" }, { "confidence": 0.7233887, "end": 47.725002, "punctuated_word": "STP", "speaker": 0, "speaker_confidence": 1, "start": 47.245003, "word": "stp" }, { "confidence": 0.9980469, "end": 48.225002, "punctuated_word": "answer", "speaker": 0, "speaker_confidence": 1, "start": 47.725002, "word": "answer" }, { "confidence": 0.9941406, "end": 48.525, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 48.365, "word": "and" }, { "confidence": 1, "end": 48.925003, "punctuated_word": "writing", "speaker": 0, "speaker_confidence": 1, "start": 48.525, "word": "writing" }, { "confidence": 1, "end": 49.085, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 48.925003, "word": "that" }, { "confidence": 1, "end": 49.245003, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 49.085, "word": "to" }, { "confidence": 1, "end": 49.325, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 49.245003, "word": "the" }, { "confidence": 0.99853516, "end": 49.825, "punctuated_word": "server.", "speaker": 0, "speaker_confidence": 1, "start": 49.325, "word": "server" }, { "confidence": 0.96435547, "end": 50.205, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 1, "start": 49.965, "word": "this" }, { "confidence": 1, "end": 50.67, "punctuated_word": "process", "speaker": 0, "speaker_confidence": 1, "start": 50.205, "word": "process" }, { "confidence": 0.8017578, "end": 50.91, "punctuated_word": "Is", "speaker": 0, "speaker_confidence": 1, "start": 50.75, "word": "is" }, { "confidence": 0.99902344, "end": 51.07, "punctuated_word": "known", "speaker": 0, "speaker_confidence": 1, "start": 50.91, "word": "known" }, { "confidence": 0.99902344, "end": 51.309998, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 1, "start": 51.07, "word": "as" }, { "confidence": 0.7434082, "end": 51.809998, "punctuated_word": "signaling,", "speaker": 0, "speaker_confidence": 1, "start": 51.309998, "word": "signaling" }, { "confidence": 1, "end": 52.109997, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 51.87, "word": "and" }, { "confidence": 0.99902344, "end": 52.269997, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 1, "start": 52.109997, "word": "it's" }, { "confidence": 1, "end": 52.589996, "punctuated_word": "handled", "speaker": 0, "speaker_confidence": 1, "start": 52.269997, "word": "handled" }, { "confidence": 1, "end": 52.829998, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 1, "start": 52.589996, "word": "by" }, { "confidence": 0.9970703, "end": 52.989998, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 52.829998, "word": "a" }, { "confidence": 0.61816406, "end": 53.23, "punctuated_word": "third", "speaker": 0, "speaker_confidence": 1, "start": 52.989998, "word": "third" }, { "confidence": 1, "end": 53.469997, "punctuated_word": "party", "speaker": 0, "speaker_confidence": 1, "start": 53.23, "word": "party" }, { "confidence": 1, "end": 53.969997, "punctuated_word": "server.", "speaker": 0, "speaker_confidence": 1, "start": 53.469997, "word": "server" }, { "confidence": 0.9951172, "end": 54.19, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 1, "start": 54.03, "word": "the" }, { "confidence": 0.9980469, "end": 54.67, "punctuated_word": "signaling", "speaker": 0, "speaker_confidence": 1, "start": 54.19, "word": "signaling" }, { "confidence": 1, "end": 55.07, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 1, "start": 54.67, "word": "server" }, { "confidence": 0.99902344, "end": 55.39, "punctuated_word": "allows", "speaker": 0, "speaker_confidence": 1, "start": 55.07, "word": "allows" }, { "confidence": 1, "end": 55.469997, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 55.39, "word": "the" }, { "confidence": 0.8100586, "end": 55.71, "punctuated_word": "2", "speaker": 0, "speaker_confidence": 1, "start": 55.469997, "word": "2" }, { "confidence": 1, "end": 56.19, "punctuated_word": "parties", "speaker": 0, "speaker_confidence": 1, "start": 55.71, "word": "parties" }, { "confidence": 1, "end": 56.35, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 56.19, "word": "to" }, { "confidence": 1, "end": 56.85, "punctuated_word": "securely", "speaker": 0, "speaker_confidence": 1, "start": 56.35, "word": "securely" }, { "confidence": 1, "end": 57.39, "punctuated_word": "exchange", "speaker": 0, "speaker_confidence": 1, "start": 56.909996, "word": "exchange" }, { "confidence": 1, "end": 57.71, "punctuated_word": "connection", "speaker": 0, "speaker_confidence": 1, "start": 57.39, "word": "connection" }, { "confidence": 0.8605957, "end": 58.21, "punctuated_word": "data,", "speaker": 0, "speaker_confidence": 1, "start": 57.71, "word": "data" }, { "confidence": 0.9633789, "end": 58.855, "punctuated_word": "never", "speaker": 0, "speaker_confidence": 1, "start": 58.615, "word": "never" }, { "confidence": 1, "end": 59.175, "punctuated_word": "touches", "speaker": 0, "speaker_confidence": 1, "start": 58.855, "word": "touches" }, { "confidence": 0.99609375, "end": 59.335, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 59.175, "word": "the" }, { "confidence": 1, "end": 59.655, "punctuated_word": "media", "speaker": 0, "speaker_confidence": 1, "start": 59.335, "word": "media" }, { "confidence": 0.99902344, "end": 59.895, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 1, "start": 59.655, "word": "that's" }, { "confidence": 0.9970703, "end": 60.295, "punctuated_word": "actually", "speaker": 0, "speaker_confidence": 1, "start": 59.895, "word": "actually" }, { "confidence": 1, "end": 60.795, "punctuated_word": "transmitted", "speaker": 0, "speaker_confidence": 1, "start": 60.295, "word": "transmitted" }, { "confidence": 1, "end": 61.175, "punctuated_word": "between", "speaker": 0, "speaker_confidence": 1, "start": 60.855, "word": "between" }, { "confidence": 0.9980469, "end": 61.255, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 61.175, "word": "the" }, { "confidence": 0.96875, "end": 61.755, "punctuated_word": "peers.", "speaker": 0, "speaker_confidence": 1, "start": 61.255, "word": "peers" }, { "confidence": 0.9980469, "end": 61.975, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 1, "start": 61.815, "word": "but" }, { "confidence": 0.9926758, "end": 62.215, "punctuated_word": "here's", "speaker": 0, "speaker_confidence": 1, "start": 61.975, "word": "here's" }, { "confidence": 0.99902344, "end": 62.375, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 1, "start": 62.215, "word": "where" }, { "confidence": 0.99902344, "end": 62.614998, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 1, "start": 62.375, "word": "things" }, { "confidence": 1, "end": 62.775, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 1, "start": 62.614998, "word": "get" }, { "confidence": 0.97094727, "end": 63.275, "punctuated_word": "tricky.", "speaker": 0, "speaker_confidence": 1, "start": 62.775, "word": "tricky" }, { "confidence": 0.99902344, "end": 63.655, "punctuated_word": "Most", "speaker": 0, "speaker_confidence": 1, "start": 63.335, "word": "most" }, { "confidence": 0.99902344, "end": 64.055, "punctuated_word": "devices", "speaker": 0, "speaker_confidence": 1, "start": 63.655, "word": "devices" }, { "confidence": 0.9980469, "end": 64.135, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 64.055, "word": "in" }, { "confidence": 1, "end": 64.295, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 64.135, "word": "the" }, { "confidence": 1, "end": 64.535, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 1, "start": 64.295, "word": "real" }, { "confidence": 1, "end": 64.855, "punctuated_word": "world", "speaker": 0, "speaker_confidence": 1, "start": 64.535, "word": "world" }, { "confidence": 0.9970703, "end": 65.095, "punctuated_word": "sit", "speaker": 0, "speaker_confidence": 1, "start": 64.855, "word": "sit" }, { "confidence": 1, "end": 65.415, "punctuated_word": "behind", "speaker": 0, "speaker_confidence": 1, "start": 65.095, "word": "behind" }, { "confidence": 0.9996745, "end": 65.915, "punctuated_word": "firewalls", "speaker": 0, "speaker_confidence": 1, "start": 65.415, "word": "firewalls" }, { "confidence": 0.60595703, "end": 66.375, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 66.135, "word": "and" }, { "confidence": 0.9951172, "end": 66.695, "punctuated_word": "IP", "speaker": 0, "speaker_confidence": 1, "start": 66.375, "word": "ip" }, { "confidence": 0.99609375, "end": 67.175, "punctuated_word": "addresses", "speaker": 0, "speaker_confidence": 1, "start": 66.695, "word": "addresses" }, { "confidence": 1, "end": 67.675, "punctuated_word": "constantly", "speaker": 0, "speaker_confidence": 1, "start": 67.175, "word": "constantly" }, { "confidence": 0.9892578, "end": 68.055, "punctuated_word": "change", "speaker": 0, "speaker_confidence": 1, "start": 67.735, "word": "change" }, { "confidence": 0.52978516, "end": 68.33, "punctuated_word": "thanks", "speaker": 0, "speaker_confidence": 1, "start": 68.055, "word": "thanks" }, { "confidence": 0.8964844, "end": 68.65, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 68.57, "word": "to" }, { "confidence": 0.9951172, "end": 69.05, "punctuated_word": "network", "speaker": 0, "speaker_confidence": 1, "start": 68.65, "word": "network" }, { "confidence": 0.9970703, "end": 69.37, "punctuated_word": "address", "speaker": 0, "speaker_confidence": 1, "start": 69.05, "word": "address" }, { "confidence": 0.9921875, "end": 69.87, "punctuated_word": "translation.", "speaker": 0, "speaker_confidence": 1, "start": 69.37, "word": "translation" }, { "confidence": 1, "end": 70.33, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 1, "start": 70.17, "word": "this" }, { "confidence": 0.9980469, "end": 70.57, "punctuated_word": "makes", "speaker": 0, "speaker_confidence": 1, "start": 70.33, "word": "makes" }, { "confidence": 0.9902344, "end": 70.810005, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 1, "start": 70.57, "word": "peer" }, { "confidence": 0.9941406, "end": 70.89, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 70.810005, "word": "to" }, { "confidence": 0.9980469, "end": 71.130005, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 1, "start": 70.89, "word": "peer" }, { "confidence": 0.99609375, "end": 71.61, "punctuated_word": "connection", "speaker": 0, "speaker_confidence": 1, "start": 71.130005, "word": "connection" }, { "confidence": 1, "end": 72.11, "punctuated_word": "complicated", "speaker": 0, "speaker_confidence": 1, "start": 71.61, "word": "complicated" }, { "confidence": 0.9970703, "end": 72.33, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 1, "start": 72.17, "word": "from" }, { "confidence": 0.97998047, "end": 72.490005, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 72.33, "word": "a" }, { "confidence": 0.9980469, "end": 72.97, "punctuated_word": "networking", "speaker": 0, "speaker_confidence": 1, "start": 72.490005, "word": "networking" }, { "confidence": 0.84765625, "end": 73.47, "punctuated_word": "standpoint.", "speaker": 0, "speaker_confidence": 1, "start": 72.97, "word": "standpoint" }, { "confidence": 0.98291016, "end": 73.93, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 1, "start": 73.69, "word": "but" }, { "confidence": 0.8239746, "end": 74.41, "punctuated_word": "luckily,", "speaker": 0, "speaker_confidence": 1, "start": 73.93, "word": "luckily" }, { "confidence": 0.98046875, "end": 74.65, "punctuated_word": "there's", "speaker": 0, "speaker_confidence": 1, "start": 74.41, "word": "there's" }, { "confidence": 0.7973633, "end": 74.810005, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 74.65, "word": "a" }, { "confidence": 0.9863281, "end": 75.310005, "punctuated_word": "standard", "speaker": 0, "speaker_confidence": 1, "start": 74.810005, "word": "standard" }, { "confidence": 0.9038086, "end": 75.87, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 1, "start": 75.37, "word": "called" }, { "confidence": 0.4050293, "end": 76.495, "punctuated_word": "Active", "speaker": 0, "speaker_confidence": 1, "start": 76.175, "word": "active" }, { "confidence": 0.8088379, "end": 76.995, "punctuated_word": "Connectivity", "speaker": 0, "speaker_confidence": 1, "start": 76.495, "word": "connectivity" }, { "confidence": 0.9526367, "end": 77.715004, "punctuated_word": "Establishment", "speaker": 0, "speaker_confidence": 1, "start": 77.215004, "word": "establishment" }, { "confidence": 0.67871094, "end": 78.255005, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 1, "start": 78.015, "word": "or" }, { "confidence": 0.86938477, "end": 78.755005, "punctuated_word": "ICE,", "speaker": 0, "speaker_confidence": 1, "start": 78.255005, "word": "ice" }, { "confidence": 0.99902344, "end": 79.055, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 1, "start": 78.895004, "word": "which" }, { "confidence": 0.9980469, "end": 79.295, "punctuated_word": "helps", "speaker": 0, "speaker_confidence": 1, "start": 79.055, "word": "helps" }, { "confidence": 0.9951172, "end": 79.775, "punctuated_word": "clients", "speaker": 0, "speaker_confidence": 1, "start": 79.295, "word": "clients" }, { "confidence": 1, "end": 80.255005, "punctuated_word": "coordinate", "speaker": 0, "speaker_confidence": 1, "start": 79.775, "word": "coordinate" }, { "confidence": 0.9980469, "end": 80.335, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 80.255005, "word": "the" }, { "confidence": 1, "end": 80.835, "punctuated_word": "discovery", "speaker": 0, "speaker_confidence": 1, "start": 80.335, "word": "discovery" }, { "confidence": 0.9970703, "end": 81.135, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 80.975, "word": "of" }, { "confidence": 0.9980469, "end": 81.455, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 1, "start": 81.135, "word": "their" }, { "confidence": 0.9980469, "end": 81.775, "punctuated_word": "public", "speaker": 0, "speaker_confidence": 1, "start": 81.455, "word": "public" }, { "confidence": 0.9970703, "end": 82.255005, "punctuated_word": "facing", "speaker": 0, "speaker_confidence": 1, "start": 81.775, "word": "facing" }, { "confidence": 0.9941406, "end": 82.495, "punctuated_word": "IP", "speaker": 0, "speaker_confidence": 1, "start": 82.255005, "word": "ip" }, { "confidence": 0.9951172, "end": 82.995, "punctuated_word": "addresses.", "speaker": 0, "speaker_confidence": 1, "start": 82.495, "word": "addresses" }, { "confidence": 0.9970703, "end": 83.615, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 1, "start": 83.375, "word": "now" }, { "confidence": 0.7363281, "end": 83.935, "punctuated_word": "both", "speaker": 0, "speaker_confidence": 1, "start": 83.615, "word": "both" }, { "confidence": 0.9970703, "end": 84.435, "punctuated_word": "peers", "speaker": 0, "speaker_confidence": 1, "start": 83.935, "word": "peers" }, { "confidence": 0.7294922, "end": 84.7, "punctuated_word": "We'll", "speaker": 0, "speaker_confidence": 1, "start": 84.46, "word": "we'll" }, { "confidence": 1, "end": 85.02, "punctuated_word": "generate", "speaker": 0, "speaker_confidence": 1, "start": 84.7, "word": "generate" }, { "confidence": 0.99902344, "end": 85.18, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 85.02, "word": "a" }, { "confidence": 1, "end": 85.5, "punctuated_word": "list", "speaker": 0, "speaker_confidence": 1, "start": 85.18, "word": "list" }, { "confidence": 1, "end": 85.659996, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 85.5, "word": "of" }, { "confidence": 0.9394531, "end": 85.979996, "punctuated_word": "ICE", "speaker": 0, "speaker_confidence": 1, "start": 85.659996, "word": "ice" }, { "confidence": 0.9008789, "end": 86.479996, "punctuated_word": "candidates,", "speaker": 0, "speaker_confidence": 1, "start": 85.979996, "word": "candidates" }, { "confidence": 1, "end": 86.94, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 1, "start": 86.7, "word": "which" }, { "confidence": 0.96777344, "end": 87.18, "punctuated_word": "contain", "speaker": 0, "speaker_confidence": 1, "start": 86.94, "word": "contain" }, { "confidence": 0.9980469, "end": 87.42, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 87.18, "word": "an" }, { "confidence": 1, "end": 87.659996, "punctuated_word": "IP", "speaker": 0, "speaker_confidence": 1, "start": 87.42, "word": "ip" }, { "confidence": 0.9980469, "end": 88.06, "punctuated_word": "address", "speaker": 0, "speaker_confidence": 1, "start": 87.659996, "word": "address" }, { "confidence": 1, "end": 88.299995, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 88.06, "word": "and" }, { "confidence": 0.99902344, "end": 88.799995, "punctuated_word": "port", "speaker": 0, "speaker_confidence": 1, "start": 88.299995, "word": "port" }, { "confidence": 0.9980469, "end": 89.1, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 88.86, "word": "that" }, { "confidence": 0.78027344, "end": 89.42, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 1, "start": 89.1, "word": "peer" }, { "confidence": 0.7416992, "end": 89.74, "punctuated_word": "1", "speaker": 0, "speaker_confidence": 1, "start": 89.42, "word": "1" }, { "confidence": 0.9970703, "end": 89.979996, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 89.74, "word": "can" }, { "confidence": 1, "end": 90.299995, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 1, "start": 89.979996, "word": "use" }, { "confidence": 0.99902344, "end": 90.46, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 90.299995, "word": "to" }, { "confidence": 1, "end": 90.86, "punctuated_word": "connect", "speaker": 0, "speaker_confidence": 1, "start": 90.46, "word": "connect" }, { "confidence": 0.99902344, "end": 91.02, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 90.86, "word": "to" }, { "confidence": 1, "end": 91.34, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 1, "start": 91.02, "word": "peer" }, { "confidence": 0.9980469, "end": 91.84, "punctuated_word": "2.", "speaker": 0, "speaker_confidence": 1, "start": 91.34, "word": "2" }, { "confidence": 0.99902344, "end": 92.06, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 1, "start": 91.9, "word": "in" }, { "confidence": 1, "end": 92.14, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 92.06, "word": "the" }, { "confidence": 0.99902344, "end": 92.64, "punctuated_word": "background,", "speaker": 0, "speaker_confidence": 1, "start": 92.14, "word": "background" }, { "confidence": 0.9895833, "end": 93.2, "punctuated_word": "WebRTC", "speaker": 0, "speaker_confidence": 1, "start": 92.7, "word": "webrtc" }, { "confidence": 0.9980469, "end": 93.659996, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 1, "start": 93.42, "word": "will" }, { "confidence": 1, "end": 93.82, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 1, "start": 93.659996, "word": "do" }, { "confidence": 1, "end": 94.115, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 1, "start": 93.82, "word": "this" }, { "confidence": 0.96435547, "end": 94.275, "punctuated_word": "By", "speaker": 0, "speaker_confidence": 1, "start": 94.195, "word": "by" }, { "confidence": 1, "end": 94.595, "punctuated_word": "making", "speaker": 0, "speaker_confidence": 1, "start": 94.275, "word": "making" }, { "confidence": 1, "end": 94.755, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 94.595, "word": "a" }, { "confidence": 1, "end": 95.075, "punctuated_word": "series", "speaker": 0, "speaker_confidence": 1, "start": 94.755, "word": "series" }, { "confidence": 1, "end": 95.314995, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 95.075, "word": "of" }, { "confidence": 0.9604492, "end": 95.795, "punctuated_word": "requests", "speaker": 0, "speaker_confidence": 1, "start": 95.314995, "word": "requests" }, { "confidence": 1, "end": 95.954994, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 95.795, "word": "to" }, { "confidence": 1, "end": 96.195, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 95.954994, "word": "a" }, { "confidence": 0.8959961, "end": 96.515, "punctuated_word": "stun", "speaker": 0, "speaker_confidence": 1, "start": 96.195, "word": "stun" }, { "confidence": 0.9946289, "end": 97.015, "punctuated_word": "server.", "speaker": 0, "speaker_confidence": 1, "start": 96.515, "word": "server" }, { "confidence": 0.9970703, "end": 97.235, "punctuated_word": "A", "speaker": 0, "speaker_confidence": 1, "start": 97.075, "word": "a" }, { "confidence": 0.98095703, "end": 97.555, "punctuated_word": "stun", "speaker": 0, "speaker_confidence": 1, "start": 97.235, "word": "stun" }, { "confidence": 0.99902344, "end": 97.795, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 1, "start": 97.555, "word": "server" }, { "confidence": 1, "end": 97.954994, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 97.795, "word": "is" }, { "confidence": 1, "end": 98.115, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 1, "start": 97.954994, "word": "not" }, { "confidence": 1, "end": 98.354996, "punctuated_word": "something", "speaker": 0, "speaker_confidence": 1, "start": 98.115, "word": "something" }, { "confidence": 1, "end": 98.515, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 98.354996, "word": "you" }, { "confidence": 1, "end": 98.595, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.6425781, "start": 98.515, "word": "need" }, { "confidence": 1, "end": 98.674995, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6425781, "start": 98.595, "word": "to" }, { "confidence": 0.99121094, "end": 98.915, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.6425781, "start": 98.674995, "word": "set" }, { "confidence": 1, "end": 99.075, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.6425781, "start": 98.915, "word": "up" }, { "confidence": 1, "end": 99.235, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.6425781, "start": 99.075, "word": "on" }, { "confidence": 1, "end": 99.395, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.6425781, "start": 99.235, "word": "your" }, { "confidence": 1, "end": 99.634995, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 0.6425781, "start": 99.395, "word": "own" }, { "confidence": 0.69873047, "end": 100.034996, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.6425781, "start": 99.634995, "word": "because" }, { "confidence": 0.99902344, "end": 100.195, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.6425781, "start": 100.034996, "word": "there" }, { "confidence": 1, "end": 100.274994, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.9589844, "start": 100.195, "word": "are" }, { "confidence": 1, "end": 100.595, "punctuated_word": "many", "speaker": 0, "speaker_confidence": 0.9589844, "start": 100.274994, "word": "many" }, { "confidence": 0.99902344, "end": 100.755, "punctuated_word": "free", "speaker": 0, "speaker_confidence": 0.9589844, "start": 100.595, "word": "free" }, { "confidence": 0.9951172, "end": 101.13, "punctuated_word": "options", "speaker": 0, "speaker_confidence": 0.9589844, "start": 100.755, "word": "options" }, { "confidence": 0.9892578, "end": 101.369995, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.9589844, "start": 101.21, "word": "out" }, { "confidence": 0.99902344, "end": 101.61, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.9589844, "start": 101.369995, "word": "there" }, { "confidence": 0.9863281, "end": 101.93, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.9589844, "start": 101.61, "word": "from" }, { "confidence": 0.9941406, "end": 102.409996, "punctuated_word": "reliable", "speaker": 0, "speaker_confidence": 0.9589844, "start": 101.93, "word": "reliable" }, { "confidence": 1, "end": 102.89, "punctuated_word": "sources", "speaker": 0, "speaker_confidence": 0.9589844, "start": 102.409996, "word": "sources" }, { "confidence": 0.9453125, "end": 103.049995, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.9589844, "start": 102.89, "word": "like" }, { "confidence": 0.99902344, "end": 103.549995, "punctuated_word": "Google.", "speaker": 0, "speaker_confidence": 0.9589844, "start": 103.049995, "word": "google" }, { "confidence": 1, "end": 104.009995, "punctuated_word": "Each", "speaker": 0, "speaker_confidence": 0.9589844, "start": 103.77, "word": "each" }, { "confidence": 0.9980469, "end": 104.329994, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 0.9589844, "start": 104.009995, "word": "peer" }, { "confidence": 1, "end": 104.49, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.9589844, "start": 104.329994, "word": "will" }, { "confidence": 1, "end": 104.729996, "punctuated_word": "save", "speaker": 0, "speaker_confidence": 0.9589844, "start": 104.49, "word": "save" }, { "confidence": 0.99902344, "end": 104.89, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 0.9589844, "start": 104.729996, "word": "their" }, { "confidence": 0.93115234, "end": 105.13, "punctuated_word": "ICE", "speaker": 0, "speaker_confidence": 0.9589844, "start": 104.89, "word": "ice" }, { "confidence": 0.99902344, "end": 105.61, "punctuated_word": "candidates", "speaker": 0, "speaker_confidence": 0.9589844, "start": 105.13, "word": "candidates" }, { "confidence": 1, "end": 105.77, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9589844, "start": 105.61, "word": "in" }, { "confidence": 1, "end": 105.93, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9589844, "start": 105.77, "word": "the" }, { "confidence": 1, "end": 106.409996, "punctuated_word": "database", "speaker": 0, "speaker_confidence": 0.9589844, "start": 105.93, "word": "database" }, { "confidence": 0.8432617, "end": 106.57, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.9589844, "start": 106.409996, "word": "where" }, { "confidence": 1, "end": 106.649994, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.9589844, "start": 106.57, "word": "they" }, { "confidence": 0.67089844, "end": 106.89, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9589844, "start": 106.649994, "word": "can" }, { "confidence": 0.9980469, "end": 107.049995, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.9589844, "start": 106.89, "word": "then" }, { "confidence": 0.99902344, "end": 107.21, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.9589844, "start": 107.049995, "word": "be" }, { "confidence": 0.9980469, "end": 107.369995, "punctuated_word": "read", "speaker": 0, "speaker_confidence": 0.9589844, "start": 107.21, "word": "read" }, { "confidence": 1, "end": 107.53, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.9589844, "start": 107.369995, "word": "by" }, { "confidence": 1, "end": 107.689995, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9589844, "start": 107.53, "word": "the" }, { "confidence": 1, "end": 107.93, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.9589844, "start": 107.689995, "word": "other" }, { "confidence": 1, "end": 108.43, "punctuated_word": "peer.", "speaker": 0, "speaker_confidence": 0.9589844, "start": 107.93, "word": "peer" }, { "confidence": 1, "end": 108.915, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.9589844, "start": 108.675, "word": "the" }, { "confidence": 1, "end": 109.395004, "punctuated_word": "algorithm", "speaker": 0, "speaker_confidence": 0.9589844, "start": 108.915, "word": "algorithm" }, { "confidence": 0.9980469, "end": 109.555, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.9589844, "start": 109.395004, "word": "will" }, { "confidence": 0.99902344, "end": 109.795, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.9589844, "start": 109.555, "word": "then" }, { "confidence": 1, "end": 110.295, "punctuated_word": "automatically", "speaker": 0, "speaker_confidence": 0.9589844, "start": 109.795, "word": "automatically" }, { "confidence": 0.99902344, "end": 110.835, "punctuated_word": "determine", "speaker": 0, "speaker_confidence": 0.9589844, "start": 110.355, "word": "determine" }, { "confidence": 0.99902344, "end": 111.075005, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.9589844, "start": 110.835, "word": "which" }, { "confidence": 1, "end": 111.555, "punctuated_word": "candidate", "speaker": 0, "speaker_confidence": 0.9589844, "start": 111.075005, "word": "candidate" }, { "confidence": 1, "end": 111.795, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9589844, "start": 111.555, "word": "is" }, { "confidence": 0.892334, "end": 112.295, "punctuated_word": "best,", "speaker": 0, "speaker_confidence": 0.9589844, "start": 111.795, "word": "best" }, { "confidence": 1, "end": 112.515, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.9589844, "start": 112.355, "word": "at" }, { "confidence": 1, "end": 112.755005, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.9589844, "start": 112.515, "word": "which" }, { "confidence": 1, "end": 113.075005, "punctuated_word": "point", "speaker": 0, "speaker_confidence": 0.9589844, "start": 112.755005, "word": "point" }, { "confidence": 0.5761719, "end": 113.315, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 0.9589844, "start": 113.075005, "word": "real" }, { "confidence": 0.99121094, "end": 113.555, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.9589844, "start": 113.315, "word": "time" }, { "confidence": 1, "end": 113.955, "punctuated_word": "media", "speaker": 0, "speaker_confidence": 0.9589844, "start": 113.555, "word": "media" }, { "confidence": 1, "end": 114.115, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9589844, "start": 113.955, "word": "can" }, { "confidence": 0.99902344, "end": 114.435, "punctuated_word": "begin", "speaker": 0, "speaker_confidence": 0.9589844, "start": 114.115, "word": "begin" }, { "confidence": 1, "end": 114.755005, "punctuated_word": "flowing", "speaker": 0, "speaker_confidence": 0.9589844, "start": 114.435, "word": "flowing" }, { "confidence": 1, "end": 114.995, "punctuated_word": "between", "speaker": 0, "speaker_confidence": 0.9589844, "start": 114.755005, "word": "between" }, { "confidence": 1, "end": 115.155, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9589844, "start": 114.995, "word": "the" }, { "confidence": 0.66845703, "end": 115.315, "punctuated_word": "two", "speaker": 0, "speaker_confidence": 0.9589844, "start": 115.155, "word": "two" }, { "confidence": 0.9995117, "end": 115.815, "punctuated_word": "peers.", "speaker": 0, "speaker_confidence": 0.9589844, "start": 115.315, "word": "peers" }, { "confidence": 0.9980469, "end": 116.22, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.9589844, "start": 115.98, "word": "this" }, { "confidence": 0.9951172, "end": 116.3, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.9589844, "start": 116.22, "word": "has" }, { "confidence": 1, "end": 116.54, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.9589844, "start": 116.3, "word": "been" }, { "confidence": 0.9941406, "end": 117.04, "punctuated_word": "WebRTC", "speaker": 0, "speaker_confidence": 0.9589844, "start": 116.54, "word": "webrtc" }, { "confidence": 0.93408203, "end": 117.74, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9589844, "start": 117.42, "word": "in" }, { "confidence": 0.9370117, "end": 118.14, "punctuated_word": "100", "speaker": 0, "speaker_confidence": 0.9589844, "start": 117.74, "word": "100" }, { "confidence": 0.9885254, "end": 118.64, "punctuated_word": "seconds.", "speaker": 0, "speaker_confidence": 0.9589844, "start": 118.14, "word": "seconds" }, { "confidence": 0.99902344, "end": 118.86, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.9589844, "start": 118.78, "word": "if" }, { "confidence": 1, "end": 119.02, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.9589844, "start": 118.86, "word": "you" }, { "confidence": 0.78515625, "end": 119.18, "punctuated_word": "wanna", "speaker": 0, "speaker_confidence": 0.9589844, "start": 119.02, "word": "wanna" }, { "confidence": 0.9970703, "end": 119.34, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.9589844, "start": 119.18, "word": "see" }, { "confidence": 1, "end": 119.58, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.9589844, "start": 119.34, "word": "more" }, { "confidence": 1, "end": 119.82, "punctuated_word": "short", "speaker": 0, "speaker_confidence": 0.9589844, "start": 119.58, "word": "short" }, { "confidence": 1, "end": 120.14, "punctuated_word": "videos", "speaker": 0, "speaker_confidence": 0.9589844, "start": 119.82, "word": "videos" }, { "confidence": 1, "end": 120.3, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.9589844, "start": 120.14, "word": "like" }, { "confidence": 0.99560547, "end": 120.54, "punctuated_word": "this,", "speaker": 0, "speaker_confidence": 0.9589844, "start": 120.3, "word": "this" }, { "confidence": 1, "end": 120.7, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.9589844, "start": 120.54, "word": "make" }, { "confidence": 1, "end": 120.94, "punctuated_word": "sure", "speaker": 0, "speaker_confidence": 0.9589844, "start": 120.7, "word": "sure" }, { "confidence": 0.9970703, "end": 121.1, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9589844, "start": 120.94, "word": "to" }, { "confidence": 0.99902344, "end": 121.18, "punctuated_word": "hit", "speaker": 0, "speaker_confidence": 0.84375, "start": 121.1, "word": "hit" }, { "confidence": 1, "end": 121.34, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.84375, "start": 121.18, "word": "the" }, { "confidence": 0.9873047, "end": 121.58, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.84375, "start": 121.34, "word": "like" }, { "confidence": 0.8508301, "end": 122.06, "punctuated_word": "button,", "speaker": 0, "speaker_confidence": 0.84375, "start": 121.58, "word": "button" }, { "confidence": 0.9970703, "end": 122.3, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.84375, "start": 122.06, "word": "then" }, { "confidence": 0.9980469, "end": 122.54, "punctuated_word": "stay", "speaker": 0, "speaker_confidence": 0.84375, "start": 122.3, "word": "stay" }, { "confidence": 1, "end": 122.86, "punctuated_word": "tuned", "speaker": 0, "speaker_confidence": 0.84375, "start": 122.54, "word": "tuned" }, { "confidence": 0.81640625, "end": 123.18, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.84375, "start": 122.86, "word": "because" }, { "confidence": 0.97314453, "end": 123.34, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 0.84375, "start": 123.18, "word": "now" }, { "confidence": 0.9807129, "end": 123.5, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.84375, "start": 123.34, "word": "we're" }, { "confidence": 0.99902344, "end": 123.74, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.84375, "start": 123.5, "word": "going" }, { "confidence": 0.99902344, "end": 123.82, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.84375, "start": 123.74, "word": "to" }, { "confidence": 1, "end": 124.14, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.84375, "start": 123.82, "word": "build" }, { "confidence": 1, "end": 124.22, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.84375, "start": 124.14, "word": "our" }, { "confidence": 1, "end": 124.455, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 0.84375, "start": 124.22, "word": "own" }, { "confidence": 0.9472656, "end": 124.935005, "punctuated_word": "Video", "speaker": 0, "speaker_confidence": 0.84375, "start": 124.535, "word": "video" }, { "confidence": 0.9741211, "end": 125.175, "punctuated_word": "chat", "speaker": 0, "speaker_confidence": 0.84375, "start": 124.935005, "word": "chat" }, { "confidence": 0.9951172, "end": 125.415, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.84375, "start": 125.175, "word": "app" }, { "confidence": 0.99902344, "end": 125.655, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.84375, "start": 125.415, "word": "from" }, { "confidence": 0.99658203, "end": 126.135, "punctuated_word": "scratch.", "speaker": 0, "speaker_confidence": 0.84375, "start": 125.655, "word": "scratch" }, { "confidence": 1, "end": 126.375, "punctuated_word": "That", "speaker": 0, "speaker_confidence": 0.84375, "start": 126.135, "word": "that" }, { "confidence": 1, "end": 126.535, "punctuated_word": "may", "speaker": 0, "speaker_confidence": 0.84375, "start": 126.375, "word": "may" }, { "confidence": 1, "end": 126.775, "punctuated_word": "sound", "speaker": 0, "speaker_confidence": 0.84375, "start": 126.535, "word": "sound" }, { "confidence": 1, "end": 127.015, "punctuated_word": "pretty", "speaker": 0, "speaker_confidence": 0.84375, "start": 126.775, "word": "pretty" }, { "confidence": 0.967041, "end": 127.515, "punctuated_word": "complicated,", "speaker": 0, "speaker_confidence": 0.84375, "start": 127.015, "word": "complicated" }, { "confidence": 0.99902344, "end": 127.895004, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.84375, "start": 127.735, "word": "but" }, { "confidence": 0.9980469, "end": 127.975, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7871094, "start": 127.895004, "word": "the" }, { "confidence": 0.9744466, "end": 128.475, "punctuated_word": "WebRTC", "speaker": 0, "speaker_confidence": 0.7871094, "start": 127.975, "word": "webrtc" }, { "confidence": 0.9941406, "end": 129.275, "punctuated_word": "API", "speaker": 0, "speaker_confidence": 0.7871094, "start": 128.775, "word": "api" }, { "confidence": 0.9951172, "end": 129.815, "punctuated_word": "allows", "speaker": 0, "speaker_confidence": 0.7871094, "start": 129.495, "word": "allows" }, { "confidence": 1, "end": 129.975, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.7871094, "start": 129.815, "word": "all" }, { "confidence": 0.6821289, "end": 130.135, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.7871094, "start": 129.975, "word": "this" }, { "confidence": 0.99902344, "end": 130.375, "punctuated_word": "stuff", "speaker": 0, "speaker_confidence": 0.7871094, "start": 130.135, "word": "stuff" }, { "confidence": 1, "end": 130.535, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7871094, "start": 130.375, "word": "to" }, { "confidence": 1, "end": 131.015, "punctuated_word": "magically", "speaker": 0, "speaker_confidence": 0.7871094, "start": 130.535, "word": "magically" }, { "confidence": 0.99902344, "end": 131.335, "punctuated_word": "happen", "speaker": 0, "speaker_confidence": 0.7871094, "start": 131.015, "word": "happen" }, { "confidence": 0.99902344, "end": 131.495, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7871094, "start": 131.335, "word": "in" }, { "confidence": 0.9980469, "end": 131.575, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7871094, "start": 131.495, "word": "the" }, { "confidence": 0.99902344, "end": 132.075, "punctuated_word": "background.", "speaker": 0, "speaker_confidence": 0.7871094, "start": 131.575, "word": "background" }, { "confidence": 0.9941406, "end": 132.295, "punctuated_word": "Over", "speaker": 0, "speaker_confidence": 0.7871094, "start": 132.135, "word": "over" }, { "confidence": 0.9838867, "end": 132.55, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7871094, "start": 132.295, "word": "the" }, { "confidence": 0.8378906, "end": 132.79001, "punctuated_word": "few", "speaker": 0, "speaker_confidence": 0.7871094, "start": 132.71, "word": "few" }, { "confidence": 0.97094727, "end": 133.03, "punctuated_word": "minutes,", "speaker": 0, "speaker_confidence": 0.91064453, "start": 132.79001, "word": "minutes" }, { "confidence": 0.99853516, "end": 133.27, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 0.91064453, "start": 133.03, "word": "you'll" }, { "confidence": 1, "end": 133.59, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.91064453, "start": 133.27, "word": "build" }, { "confidence": 0.99902344, "end": 133.75, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.91064453, "start": 133.59, "word": "a" }, { "confidence": 0.9980469, "end": 133.99, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 0.91064453, "start": 133.75, "word": "peer" }, { "confidence": 0.9980469, "end": 134.15001, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.91064453, "start": 133.99, "word": "to" }, { "confidence": 1, "end": 134.47, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 0.91064453, "start": 134.15001, "word": "peer" }, { "confidence": 1, "end": 134.79001, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.91064453, "start": 134.47, "word": "video" }, { "confidence": 0.99902344, "end": 135.19, "punctuated_word": "calling", "speaker": 0, "speaker_confidence": 0.91064453, "start": 134.79001, "word": "calling" }, { "confidence": 0.99609375, "end": 135.35, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.91064453, "start": 135.19, "word": "app" }, { "confidence": 1, "end": 135.59, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.91064453, "start": 135.35, "word": "from" }, { "confidence": 1, "end": 136.09, "punctuated_word": "scratch", "speaker": 0, "speaker_confidence": 0.91064453, "start": 135.59, "word": "scratch" }, { "confidence": 0.8959961, "end": 136.39, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.91064453, "start": 136.15001, "word": "using" }, { "confidence": 0.99902344, "end": 136.71, "punctuated_word": "nothing", "speaker": 0, "speaker_confidence": 0.91064453, "start": 136.39, "word": "nothing" }, { "confidence": 0.9580078, "end": 136.87, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.91064453, "start": 136.71, "word": "but" }, { "confidence": 0.94970703, "end": 137.27, "punctuated_word": "vanilla", "speaker": 0, "speaker_confidence": 0.91064453, "start": 136.87, "word": "vanilla" }, { "confidence": 0.9223633, "end": 137.77, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.91064453, "start": 137.27, "word": "javascript" }, { "confidence": 0.98828125, "end": 138.23, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.91064453, "start": 138.07, "word": "and" }, { "confidence": 0.98706055, "end": 138.73, "punctuated_word": "Firebase", "speaker": 0, "speaker_confidence": 0.91064453, "start": 138.23, "word": "firebase" }, { "confidence": 0.99902344, "end": 139.03, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.91064453, "start": 138.79001, "word": "as" }, { "confidence": 1, "end": 139.19, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.91064453, "start": 139.03, "word": "the" }, { "confidence": 0.9941406, "end": 139.67, "punctuated_word": "signaling", "speaker": 0, "speaker_confidence": 0.91064453, "start": 139.19, "word": "signaling" }, { "confidence": 1, "end": 140.17, "punctuated_word": "server.", "speaker": 0, "speaker_confidence": 0.91064453, "start": 139.67, "word": "server" }, { "confidence": 0.9980469, "end": 140.39, "punctuated_word": "By", "speaker": 0, "speaker_confidence": 0.91064453, "start": 140.23, "word": "by" }, { "confidence": 1, "end": 140.47, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.91064453, "start": 140.39, "word": "the" }, { "confidence": 1, "end": 140.63, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.63671875, "start": 140.47, "word": "end" }, { "confidence": 1, "end": 140.79001, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.63671875, "start": 140.63, "word": "of" }, { "confidence": 1, "end": 140.95, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.63671875, "start": 140.79001, "word": "this" }, { "confidence": 0.9995117, "end": 141.45, "punctuated_word": "tutorial,", "speaker": 0, "speaker_confidence": 0.63671875, "start": 140.95, "word": "tutorial" }, { "confidence": 0.99902344, "end": 141.755, "punctuated_word": "You'll", "speaker": 0, "speaker_confidence": 0.63671875, "start": 141.595, "word": "you'll" }, { "confidence": 1, "end": 141.915, "punctuated_word": "know", "speaker": 0, "speaker_confidence": 0.63671875, "start": 141.755, "word": "know" }, { "confidence": 1, "end": 141.995, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.7109375, "start": 141.915, "word": "how" }, { "confidence": 1, "end": 142.315, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7109375, "start": 141.995, "word": "to" }, { "confidence": 1, "end": 142.795, "punctuated_word": "implement", "speaker": 0, "speaker_confidence": 0.7109375, "start": 142.315, "word": "implement" }, { "confidence": 0.99902344, "end": 143.035, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 0.7109375, "start": 142.795, "word": "real" }, { "confidence": 0.9970703, "end": 143.275, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.7109375, "start": 143.035, "word": "time" }, { "confidence": 1, "end": 143.755, "punctuated_word": "features", "speaker": 0, "speaker_confidence": 0.7109375, "start": 143.275, "word": "features" }, { "confidence": 1, "end": 143.995, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7109375, "start": 143.755, "word": "that" }, { "confidence": 1, "end": 144.235, "punctuated_word": "cater", "speaker": 0, "speaker_confidence": 0.7109375, "start": 143.995, "word": "cater" }, { "confidence": 1, "end": 144.395, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7109375, "start": 144.235, "word": "to" }, { "confidence": 1, "end": 144.475, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7109375, "start": 144.395, "word": "the" }, { "confidence": 1, "end": 144.875, "punctuated_word": "needs", "speaker": 0, "speaker_confidence": 0.7109375, "start": 144.475, "word": "needs" }, { "confidence": 0.99609375, "end": 144.955, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.59228516, "start": 144.875, "word": "of" }, { "confidence": 0.9760742, "end": 145.115, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.59228516, "start": 144.955, "word": "the" }, { "confidence": 1, "end": 145.355, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.59228516, "start": 145.115, "word": "new" }, { "confidence": 1, "end": 145.515, "punctuated_word": "work", "speaker": 0, "speaker_confidence": 0.59228516, "start": 145.355, "word": "work" }, { "confidence": 1, "end": 145.675, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.59228516, "start": 145.515, "word": "from" }, { "confidence": 1, "end": 145.915, "punctuated_word": "home", "speaker": 0, "speaker_confidence": 0.59228516, "start": 145.675, "word": "home" }, { "confidence": 1, "end": 146.315, "punctuated_word": "paradigm", "speaker": 0, "speaker_confidence": 0.59228516, "start": 145.915, "word": "paradigm" }, { "confidence": 1, "end": 146.475, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.59228516, "start": 146.315, "word": "that" }, { "confidence": 1, "end": 146.635, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.59228516, "start": 146.475, "word": "we" }, { "confidence": 1, "end": 146.715, "punctuated_word": "live", "speaker": 0, "speaker_confidence": 0.59228516, "start": 146.635, "word": "live" }, { "confidence": 1, "end": 147.19499, "punctuated_word": "in.", "speaker": 0, "speaker_confidence": 0.59228516, "start": 146.715, "word": "in" }, { "confidence": 0.9980469, "end": 147.355, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.59228516, "start": 147.19499, "word": "in" }, { "confidence": 1, "end": 147.595, "punctuated_word": "addition", "speaker": 0, "speaker_confidence": 0.59228516, "start": 147.355, "word": "addition" }, { "confidence": 1, "end": 147.675, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8959961, "start": 147.595, "word": "to" }, { "confidence": 1, "end": 147.915, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.8959961, "start": 147.675, "word": "this" }, { "confidence": 1, "end": 148.315, "punctuated_word": "video,", "speaker": 0, "speaker_confidence": 0.8959961, "start": 147.915, "word": "video" }, { "confidence": 0.9980469, "end": 148.475, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.8959961, "start": 148.315, "word": "you" }, { "confidence": 1, "end": 148.635, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.8959961, "start": 148.475, "word": "can" }, { "confidence": 0.99902344, "end": 148.955, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.8959961, "start": 148.635, "word": "also" }, { "confidence": 0.9980469, "end": 149.275, "punctuated_word": "reference", "speaker": 0, "speaker_confidence": 0.8959961, "start": 148.955, "word": "reference" }, { "confidence": 0.94921875, "end": 149.58, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8959961, "start": 149.275, "word": "the" }, { "confidence": 0.39526367, "end": 149.74, "punctuated_word": "Full", "speaker": 0, "speaker_confidence": 0.8959961, "start": 149.66, "word": "full" }, { "confidence": 0.99609375, "end": 150.06, "punctuated_word": "article", "speaker": 0, "speaker_confidence": 0.8959961, "start": 149.74, "word": "article" }, { "confidence": 0.99902344, "end": 150.22, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8959961, "start": 150.06, "word": "on" }, { "confidence": 0.7775879, "end": 150.72, "punctuated_word": "Fireship", "speaker": 0, "speaker_confidence": 0.8959961, "start": 150.22, "word": "fireship" }, { "confidence": 0.9003906, "end": 151.18001, "punctuated_word": "IO", "speaker": 0, "speaker_confidence": 0.8959961, "start": 150.78, "word": "io" }, { "confidence": 0.9472656, "end": 151.42, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8959961, "start": 151.18001, "word": "and" }, { "confidence": 0.99902344, "end": 151.5, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8959961, "start": 151.42, "word": "the" }, { "confidence": 1, "end": 151.82, "punctuated_word": "source", "speaker": 0, "speaker_confidence": 0.8959961, "start": 151.5, "word": "source" }, { "confidence": 1, "end": 152.06, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.8959961, "start": 151.82, "word": "code" }, { "confidence": 1, "end": 152.22, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8959961, "start": 152.06, "word": "on" }, { "confidence": 0.98168945, "end": 152.7, "punctuated_word": "GitHub.", "speaker": 0, "speaker_confidence": 0.8959961, "start": 152.22, "word": "github" }, { "confidence": 1, "end": 152.94, "punctuated_word": "Let's", "speaker": 0, "speaker_confidence": 0.8959961, "start": 152.7, "word": "let's" }, { "confidence": 1, "end": 153.18001, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 0.8959961, "start": 152.94, "word": "start" }, { "confidence": 1, "end": 153.34, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.8959961, "start": 153.18001, "word": "by" }, { "confidence": 1, "end": 153.45999, "punctuated_word": "taking", "speaker": 0, "speaker_confidence": 0.8959961, "start": 153.34, "word": "taking" }, { "confidence": 1, "end": 153.58, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8959961, "start": 153.45999, "word": "a" }, { "confidence": 1, "end": 153.74, "punctuated_word": "look", "speaker": 0, "speaker_confidence": 0.8959961, "start": 153.58, "word": "look" }, { "confidence": 1, "end": 153.82, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.8959961, "start": 153.74, "word": "at" }, { "confidence": 1, "end": 153.98, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8959961, "start": 153.82, "word": "the" }, { "confidence": 1, "end": 154.38, "punctuated_word": "demo.", "speaker": 0, "speaker_confidence": 0.8959961, "start": 153.98, "word": "demo" }, { "confidence": 1, "end": 154.54001, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.8959961, "start": 154.38, "word": "we" }, { "confidence": 0.7709961, "end": 154.7, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.8959961, "start": 154.54001, "word": "have" }, { "confidence": 0.99902344, "end": 154.78, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8959961, "start": 154.7, "word": "the" }, { "confidence": 1, "end": 155.1, "punctuated_word": "local", "speaker": 0, "speaker_confidence": 0.8959961, "start": 154.78, "word": "local" }, { "confidence": 0.8659668, "end": 155.5, "punctuated_word": "user's", "speaker": 0, "speaker_confidence": 0.8959961, "start": 155.1, "word": "user's" }, { "confidence": 0.99902344, "end": 155.82, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.8959961, "start": 155.5, "word": "video" }, { "confidence": 1, "end": 156.06, "punctuated_word": "feed", "speaker": 0, "speaker_confidence": 0.8959961, "start": 155.82, "word": "feed" }, { "confidence": 0.99609375, "end": 156.22, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8959961, "start": 156.06, "word": "on" }, { "confidence": 0.9980469, "end": 156.3, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8959961, "start": 156.22, "word": "the" }, { "confidence": 0.99902344, "end": 156.62, "punctuated_word": "left", "speaker": 0, "speaker_confidence": 0.8959961, "start": 156.3, "word": "left" }, { "confidence": 0.9970703, "end": 156.94, "punctuated_word": "side", "speaker": 0, "speaker_confidence": 0.8959961, "start": 156.62, "word": "side" }, { "confidence": 0.95166016, "end": 157.18001, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8959961, "start": 156.94, "word": "and" }, { "confidence": 0.82177734, "end": 157.315, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8959961, "start": 157.18001, "word": "the" }, { "confidence": 0.8276367, "end": 157.795, "punctuated_word": "Remote", "speaker": 0, "speaker_confidence": 0.8959961, "start": 157.395, "word": "remote" }, { "confidence": 0.90527344, "end": 158.115, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.8959961, "start": 157.795, "word": "video" }, { "confidence": 1, "end": 158.27501, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8959961, "start": 158.115, "word": "on" }, { "confidence": 1, "end": 158.355, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8959961, "start": 158.27501, "word": "the" }, { "confidence": 1, "end": 158.595, "punctuated_word": "right", "speaker": 0, "speaker_confidence": 0.8959961, "start": 158.355, "word": "right" }, { "confidence": 0.99609375, "end": 158.995, "punctuated_word": "side.", "speaker": 0, "speaker_confidence": 0.8959961, "start": 158.595, "word": "side" }, { "confidence": 1, "end": 159.155, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.8959961, "start": 158.995, "word": "the" }, { "confidence": 1, "end": 159.475, "punctuated_word": "local", "speaker": 0, "speaker_confidence": 0.8959961, "start": 159.155, "word": "local" }, { "confidence": 1, "end": 159.875, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 0.8959961, "start": 159.475, "word": "user" }, { "confidence": 1, "end": 160.035, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.8959961, "start": 159.875, "word": "will" }, { "confidence": 0.95703125, "end": 160.27501, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 0.8959961, "start": 160.035, "word": "first" }, { "confidence": 1, "end": 160.515, "punctuated_word": "grant", "speaker": 0, "speaker_confidence": 0.8959961, "start": 160.27501, "word": "grant" }, { "confidence": 1, "end": 161.015, "punctuated_word": "permission", "speaker": 0, "speaker_confidence": 0.8959961, "start": 160.515, "word": "permission" }, { "confidence": 1, "end": 161.395, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.8959961, "start": 161.155, "word": "for" }, { "confidence": 1, "end": 161.55501, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8959961, "start": 161.395, "word": "the" }, { "confidence": 1, "end": 161.795, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.8959961, "start": 161.55501, "word": "app" }, { "confidence": 0.99902344, "end": 162.035, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8959961, "start": 161.795, "word": "to" }, { "confidence": 1, "end": 162.355, "punctuated_word": "access", "speaker": 0, "speaker_confidence": 0.8959961, "start": 162.035, "word": "access" }, { "confidence": 1, "end": 162.515, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8959961, "start": 162.355, "word": "the" }, { "confidence": 0.9914551, "end": 163.015, "punctuated_word": "webcam.", "speaker": 0, "speaker_confidence": 0.8959961, "start": 162.515, "word": "webcam" }, { "confidence": 0.99902344, "end": 163.315, "punctuated_word": "That", "speaker": 0, "speaker_confidence": 0.8959961, "start": 163.155, "word": "that" }, { "confidence": 1, "end": 163.63501, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 0.8959961, "start": 163.315, "word": "user" }, { "confidence": 1, "end": 163.795, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.8959961, "start": 163.63501, "word": "can" }, { "confidence": 1, "end": 163.955, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.8959961, "start": 163.795, "word": "then" }, { "confidence": 1, "end": 164.195, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.8959961, "start": 163.955, "word": "create" }, { "confidence": 1, "end": 164.27501, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7446289, "start": 164.195, "word": "a" }, { "confidence": 0.8964844, "end": 164.595, "punctuated_word": "call,", "speaker": 0, "speaker_confidence": 0.7446289, "start": 164.27501, "word": "call" }, { "confidence": 1, "end": 164.835, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.7446289, "start": 164.595, "word": "which" }, { "confidence": 0.99902344, "end": 165.075, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.7446289, "start": 164.835, "word": "will" }, { "confidence": 1, "end": 165.235, "punctuated_word": "write", "speaker": 0, "speaker_confidence": 0.7446289, "start": 165.075, "word": "write" }, { "confidence": 1, "end": 165.47, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7446289, "start": 165.235, "word": "a" }, { "confidence": 0.99316406, "end": 166.11, "punctuated_word": "document", "speaker": 0, "speaker_confidence": 0.7446289, "start": 165.71, "word": "document" }, { "confidence": 1, "end": 166.43001, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7446289, "start": 166.11, "word": "to" }, { "confidence": 0.9890137, "end": 166.93001, "punctuated_word": "Firestore", "speaker": 0, "speaker_confidence": 0.7446289, "start": 166.43001, "word": "firestore" }, { "confidence": 0.9980469, "end": 167.31, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.7446289, "start": 167.07, "word": "with" }, { "confidence": 1, "end": 167.47, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7446289, "start": 167.31, "word": "the" }, { "confidence": 0.99902344, "end": 167.79001, "punctuated_word": "offer", "speaker": 0, "speaker_confidence": 0.7446289, "start": 167.47, "word": "offer" }, { "confidence": 0.9995117, "end": 168.29001, "punctuated_word": "details.", "speaker": 0, "speaker_confidence": 0.7446289, "start": 167.79001, "word": "details" }, { "confidence": 0.99902344, "end": 168.91, "punctuated_word": "At", "speaker": 0, "speaker_confidence": 0.7446289, "start": 168.75, "word": "at" }, { "confidence": 1, "end": 168.99, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7446289, "start": 168.91, "word": "the" }, { "confidence": 1, "end": 169.23, "punctuated_word": "same", "speaker": 0, "speaker_confidence": 0.7553711, "start": 168.99, "word": "same" }, { "confidence": 1, "end": 169.55, "punctuated_word": "time,", "speaker": 0, "speaker_confidence": 0.7553711, "start": 169.23, "word": "time" }, { "confidence": 0.99902344, "end": 169.79001, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.7553711, "start": 169.55, "word": "we'll" }, { "confidence": 1, "end": 170.11, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.7553711, "start": 169.79001, "word": "create" }, { "confidence": 1, "end": 170.35, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7553711, "start": 170.11, "word": "a" }, { "confidence": 0.42871094, "end": 170.67, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 0.7553711, "start": 170.35, "word": "peer" }, { "confidence": 0.9970703, "end": 171.15, "punctuated_word": "connection", "speaker": 0, "speaker_confidence": 0.7553711, "start": 170.67, "word": "connection" }, { "confidence": 0.99902344, "end": 171.55, "punctuated_word": "instance", "speaker": 0, "speaker_confidence": 0.7553711, "start": 171.15, "word": "instance" }, { "confidence": 1, "end": 171.63, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8066406, "start": 171.55, "word": "in" }, { "confidence": 1, "end": 171.79001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8066406, "start": 171.63, "word": "the" }, { "confidence": 0.9343262, "end": 172.29001, "punctuated_word": "browser,", "speaker": 0, "speaker_confidence": 0.8066406, "start": 171.79001, "word": "browser" }, { "confidence": 1, "end": 172.75, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.8066406, "start": 172.51, "word": "which" }, { "confidence": 1, "end": 173.07, "punctuated_word": "handles", "speaker": 0, "speaker_confidence": 0.8066406, "start": 172.75, "word": "handles" }, { "confidence": 0.99902344, "end": 173.31, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8066406, "start": 173.07, "word": "the" }, { "confidence": 0.98828125, "end": 173.81, "punctuated_word": "WebRTC", "speaker": 0, "speaker_confidence": 0.8066406, "start": 173.31, "word": "webrtc" }, { "confidence": 0.96240234, "end": 174.61, "punctuated_word": "negotiation", "speaker": 0, "speaker_confidence": 0.8066406, "start": 174.11, "word": "negotiation" }, { "confidence": 1, "end": 175.25, "punctuated_word": "process.", "speaker": 0, "speaker_confidence": 0.8066406, "start": 174.75, "word": "process" }, { "confidence": 1, "end": 175.74501, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.8066406, "start": 175.505, "word": "the" }, { "confidence": 1, "end": 175.905, "punctuated_word": "offer", "speaker": 0, "speaker_confidence": 0.8066406, "start": 175.74501, "word": "offer" }, { "confidence": 1, "end": 176.145, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.8066406, "start": 175.905, "word": "will" }, { "confidence": 1, "end": 176.30501, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.8066406, "start": 176.145, "word": "have" }, { "confidence": 0.99902344, "end": 176.465, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8066406, "start": 176.30501, "word": "a" }, { "confidence": 1, "end": 176.785, "punctuated_word": "unique", "speaker": 0, "speaker_confidence": 0.8066406, "start": 176.465, "word": "unique" }, { "confidence": 1, "end": 177.105, "punctuated_word": "ID", "speaker": 0, "speaker_confidence": 0.8066406, "start": 176.785, "word": "id" }, { "confidence": 0.9526367, "end": 177.345, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8066406, "start": 177.105, "word": "that" }, { "confidence": 1, "end": 177.505, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.8066406, "start": 177.345, "word": "can" }, { "confidence": 0.99902344, "end": 177.74501, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.8066406, "start": 177.505, "word": "then" }, { "confidence": 1, "end": 177.985, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.8066406, "start": 177.74501, "word": "be" }, { "confidence": 1, "end": 178.38501, "punctuated_word": "accessed", "speaker": 0, "speaker_confidence": 0.8066406, "start": 177.985, "word": "accessed" }, { "confidence": 1, "end": 178.625, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.8066406, "start": 178.38501, "word": "by" }, { "confidence": 0.98095703, "end": 179.02501, "punctuated_word": "another", "speaker": 0, "speaker_confidence": 0.8066406, "start": 178.625, "word": "another" }, { "confidence": 1, "end": 179.425, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 0.8066406, "start": 179.02501, "word": "user" }, { "confidence": 0.98828125, "end": 179.745, "punctuated_word": "somewhere", "speaker": 0, "speaker_confidence": 0.8066406, "start": 179.425, "word": "somewhere" }, { "confidence": 1, "end": 179.985, "punctuated_word": "else", "speaker": 0, "speaker_confidence": 0.8066406, "start": 179.745, "word": "else" }, { "confidence": 1, "end": 180.065, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8066406, "start": 179.985, "word": "in" }, { "confidence": 1, "end": 180.225, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8066406, "start": 180.065, "word": "the" }, { "confidence": 0.99853516, "end": 180.725, "punctuated_word": "world.", "speaker": 0, "speaker_confidence": 0.8066406, "start": 180.225, "word": "world" }, { "confidence": 1, "end": 180.945, "punctuated_word": "That", "speaker": 0, "speaker_confidence": 0.85546875, "start": 180.785, "word": "that" }, { "confidence": 1, "end": 181.185, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 0.85546875, "start": 180.945, "word": "user" }, { "confidence": 1, "end": 181.345, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.85546875, "start": 181.185, "word": "will" }, { "confidence": 1, "end": 181.505, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.85546875, "start": 181.345, "word": "then" }, { "confidence": 1, "end": 181.745, "punctuated_word": "join", "speaker": 0, "speaker_confidence": 0.85546875, "start": 181.505, "word": "join" }, { "confidence": 1, "end": 181.905, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.85546875, "start": 181.745, "word": "the" }, { "confidence": 1, "end": 182.145, "punctuated_word": "call", "speaker": 0, "speaker_confidence": 0.85546875, "start": 181.905, "word": "call" }, { "confidence": 1, "end": 182.30501, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.85546875, "start": 182.145, "word": "with" }, { "confidence": 0.96533203, "end": 182.465, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.85546875, "start": 182.30501, "word": "the" }, { "confidence": 1, "end": 182.785, "punctuated_word": "unique", "speaker": 0, "speaker_confidence": 0.85546875, "start": 182.465, "word": "unique" }, { "confidence": 0.9592285, "end": 183.285, "punctuated_word": "ID,", "speaker": 0, "speaker_confidence": 0.85546875, "start": 182.785, "word": "id" }, { "confidence": 0.98828125, "end": 183.79999, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.85546875, "start": 183.64, "word": "then" }, { "confidence": 0.9941406, "end": 184.28, "punctuated_word": "establish", "speaker": 0, "speaker_confidence": 0.85546875, "start": 183.79999, "word": "establish" }, { "confidence": 1, "end": 184.51999, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 0.85546875, "start": 184.28, "word": "their" }, { "confidence": 0.9980469, "end": 184.68, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 0.85546875, "start": 184.51999, "word": "own" }, { "confidence": 0.99609375, "end": 185, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 0.85546875, "start": 184.68, "word": "peer" }, { "confidence": 1, "end": 185.5, "punctuated_word": "connection", "speaker": 0, "speaker_confidence": 0.85546875, "start": 185, "word": "connection" }, { "confidence": 0.9370117, "end": 185.95999, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.85546875, "start": 185.72, "word": "and" }, { "confidence": 1, "end": 186.12, "punctuated_word": "write", "speaker": 0, "speaker_confidence": 0.85546875, "start": 185.95999, "word": "write" }, { "confidence": 1, "end": 186.36, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.85546875, "start": 186.12, "word": "the" }, { "confidence": 1, "end": 186.76, "punctuated_word": "answer", "speaker": 0, "speaker_confidence": 0.85546875, "start": 186.36, "word": "answer" }, { "confidence": 1, "end": 187.26, "punctuated_word": "details", "speaker": 0, "speaker_confidence": 0.85546875, "start": 186.76, "word": "details" }, { "confidence": 1, "end": 187.48, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.85546875, "start": 187.31999, "word": "to" }, { "confidence": 1, "end": 187.64, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.85546875, "start": 187.48, "word": "the" }, { "confidence": 1, "end": 187.87999, "punctuated_word": "same", "speaker": 0, "speaker_confidence": 0.85546875, "start": 187.64, "word": "same" }, { "confidence": 0.923584, "end": 188.37999, "punctuated_word": "document.", "speaker": 0, "speaker_confidence": 0.85546875, "start": 187.87999, "word": "document" }, { "confidence": 0.99902344, "end": 188.92, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.85546875, "start": 188.68, "word": "then" }, { "confidence": 0.98291016, "end": 189.15999, "punctuated_word": "both", "speaker": 0, "speaker_confidence": 0.85546875, "start": 188.92, "word": "both" }, { "confidence": 1, "end": 189.48, "punctuated_word": "peers", "speaker": 0, "speaker_confidence": 0.85546875, "start": 189.15999, "word": "peers" }, { "confidence": 1, "end": 189.72, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.85546875, "start": 189.48, "word": "will" }, { "confidence": 1, "end": 189.87999, "punctuated_word": "write", "speaker": 0, "speaker_confidence": 0.85546875, "start": 189.72, "word": "write" }, { "confidence": 0.9980469, "end": 190.12, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 0.85546875, "start": 189.87999, "word": "their" }, { "confidence": 0.9589844, "end": 190.36, "punctuated_word": "ICE", "speaker": 0, "speaker_confidence": 0.85546875, "start": 190.12, "word": "ice" }, { "confidence": 0.9980469, "end": 190.86, "punctuated_word": "candidates", "speaker": 0, "speaker_confidence": 0.85546875, "start": 190.36, "word": "candidates" }, { "confidence": 0.9160156, "end": 191.02501, "punctuated_word": "To", "speaker": 0, "speaker_confidence": 0.85546875, "start": 190.945, "word": "to" }, { "confidence": 1, "end": 191.265, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.85546875, "start": 191.02501, "word": "the" }, { "confidence": 0.90771484, "end": 191.74501, "punctuated_word": "database,", "speaker": 0, "speaker_confidence": 0.85546875, "start": 191.265, "word": "database" }, { "confidence": 0.99902344, "end": 191.82501, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.8574219, "start": 191.74501, "word": "we" }, { "confidence": 1, "end": 192.065, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.8574219, "start": 191.82501, "word": "have" }, { "confidence": 0.7109375, "end": 192.225, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.8574219, "start": 192.065, "word": "one" }, { "confidence": 0.99902344, "end": 192.545, "punctuated_word": "sub", "speaker": 0, "speaker_confidence": 0.8574219, "start": 192.225, "word": "sub" }, { "confidence": 0.77246094, "end": 192.865, "punctuated_word": "collection", "speaker": 0, "speaker_confidence": 0.8574219, "start": 192.545, "word": "collection" }, { "confidence": 0.99902344, "end": 193.18501, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.8574219, "start": 192.865, "word": "for" }, { "confidence": 0.9951172, "end": 193.505, "punctuated_word": "offer", "speaker": 0, "speaker_confidence": 0.8574219, "start": 193.18501, "word": "offer" }, { "confidence": 0.99902344, "end": 194.005, "punctuated_word": "candidates", "speaker": 0, "speaker_confidence": 0.8574219, "start": 193.505, "word": "candidates" }, { "confidence": 0.95947266, "end": 194.30501, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8574219, "start": 194.065, "word": "and" }, { "confidence": 1, "end": 194.625, "punctuated_word": "another", "speaker": 0, "speaker_confidence": 0.8574219, "start": 194.30501, "word": "another" }, { "confidence": 0.9980469, "end": 195.02501, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.8574219, "start": 194.625, "word": "for" }, { "confidence": 1, "end": 195.345, "punctuated_word": "answer", "speaker": 0, "speaker_confidence": 0.8574219, "start": 195.02501, "word": "answer" }, { "confidence": 1, "end": 195.845, "punctuated_word": "candidates.", "speaker": 0, "speaker_confidence": 0.8574219, "start": 195.345, "word": "candidates" }, { "confidence": 0.99902344, "end": 196.46501, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.8574219, "start": 196.225, "word": "this" }, { "confidence": 1, "end": 196.705, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.8574219, "start": 196.46501, "word": "data" }, { "confidence": 1, "end": 197.02501, "punctuated_word": "model", "speaker": 0, "speaker_confidence": 0.8574219, "start": 196.705, "word": "model" }, { "confidence": 0.99902344, "end": 197.265, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.8574219, "start": 197.02501, "word": "will" }, { "confidence": 1, "end": 197.585, "punctuated_word": "allow", "speaker": 0, "speaker_confidence": 0.8574219, "start": 197.265, "word": "allow" }, { "confidence": 0.984375, "end": 198.065, "punctuated_word": "signaling", "speaker": 0, "speaker_confidence": 0.8574219, "start": 197.585, "word": "signaling" }, { "confidence": 1, "end": 198.225, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8574219, "start": 198.065, "word": "to" }, { "confidence": 0.99902344, "end": 198.38501, "punctuated_word": "take", "speaker": 0, "speaker_confidence": 0.8574219, "start": 198.225, "word": "take" }, { "confidence": 1, "end": 198.785, "punctuated_word": "place", "speaker": 0, "speaker_confidence": 0.8574219, "start": 198.38501, "word": "place" }, { "confidence": 1, "end": 199.185, "punctuated_word": "between", "speaker": 0, "speaker_confidence": 0.8574219, "start": 198.785, "word": "between" }, { "confidence": 0.99902344, "end": 199.265, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8574219, "start": 199.185, "word": "the" }, { "confidence": 0.6040039, "end": 199.425, "punctuated_word": "two", "speaker": 0, "speaker_confidence": 0.8574219, "start": 199.265, "word": "two" }, { "confidence": 1, "end": 199.925, "punctuated_word": "peers.", "speaker": 0, "speaker_confidence": 0.8574219, "start": 199.425, "word": "peers" }, { "confidence": 1, "end": 200.23001, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.8574219, "start": 200.15001, "word": "the" }, { "confidence": 1, "end": 200.47, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.8574219, "start": 200.23001, "word": "data" }, { "confidence": 0.99902344, "end": 200.79001, "punctuated_word": "itself", "speaker": 0, "speaker_confidence": 0.8574219, "start": 200.47, "word": "itself" }, { "confidence": 0.9980469, "end": 201.03001, "punctuated_word": "looks", "speaker": 0, "speaker_confidence": 0.8574219, "start": 200.79001, "word": "looks" }, { "confidence": 0.99902344, "end": 201.19, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.8574219, "start": 201.03001, "word": "like" }, { "confidence": 1, "end": 201.27, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.95996094, "start": 201.19, "word": "a" }, { "confidence": 1, "end": 201.43001, "punctuated_word": "bunch", "speaker": 0, "speaker_confidence": 0.95996094, "start": 201.27, "word": "bunch" }, { "confidence": 1, "end": 201.59001, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.95996094, "start": 201.43001, "word": "of" }, { "confidence": 0.9628906, "end": 202.09001, "punctuated_word": "nonsense,", "speaker": 0, "speaker_confidence": 0.95996094, "start": 201.59001, "word": "nonsense" }, { "confidence": 1, "end": 202.39001, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.95996094, "start": 202.15001, "word": "but" }, { "confidence": 1, "end": 202.55, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.95996094, "start": 202.39001, "word": "what" }, { "confidence": 1, "end": 202.63, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.95996094, "start": 202.55, "word": "it" }, { "confidence": 1, "end": 203.11, "punctuated_word": "contains", "speaker": 0, "speaker_confidence": 0.95996094, "start": 202.63, "word": "contains" }, { "confidence": 1, "end": 203.27, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.95996094, "start": 203.11, "word": "is" }, { "confidence": 1, "end": 203.51001, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.95996094, "start": 203.27, "word": "an" }, { "confidence": 1, "end": 203.83, "punctuated_word": "IP", "speaker": 0, "speaker_confidence": 0.95996094, "start": 203.51001, "word": "ip" }, { "confidence": 0.9941406, "end": 204.15001, "punctuated_word": "address", "speaker": 0, "speaker_confidence": 0.95996094, "start": 203.83, "word": "address" }, { "confidence": 0.9921875, "end": 204.39001, "punctuated_word": "port", "speaker": 0, "speaker_confidence": 0.95996094, "start": 204.15001, "word": "port" }, { "confidence": 0.98828125, "end": 204.63, "punctuated_word": "pair", "speaker": 0, "speaker_confidence": 0.95996094, "start": 204.39001, "word": "pair" }, { "confidence": 0.9970703, "end": 204.87001, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.95996094, "start": 204.63, "word": "that" }, { "confidence": 1, "end": 205.11, "punctuated_word": "allows", "speaker": 0, "speaker_confidence": 0.95996094, "start": 204.87001, "word": "allows" }, { "confidence": 1, "end": 205.27, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.95996094, "start": 205.11, "word": "the" }, { "confidence": 0.70751953, "end": 205.43001, "punctuated_word": "2", "speaker": 0, "speaker_confidence": 0.95996094, "start": 205.27, "word": "2" }, { "confidence": 0.9980469, "end": 205.75, "punctuated_word": "peers", "speaker": 0, "speaker_confidence": 0.95996094, "start": 205.43001, "word": "peers" }, { "confidence": 1, "end": 205.99, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.95996094, "start": 205.75, "word": "to" }, { "confidence": 1, "end": 206.39001, "punctuated_word": "establish", "speaker": 0, "speaker_confidence": 0.95996094, "start": 205.99, "word": "establish" }, { "confidence": 0.99902344, "end": 206.55, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.95996094, "start": 206.39001, "word": "a" }, { "confidence": 1, "end": 207.05, "punctuated_word": "connection.", "speaker": 0, "speaker_confidence": 0.95996094, "start": 206.55, "word": "connection" }, { "confidence": 1, "end": 207.51001, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.95996094, "start": 207.27, "word": "now" }, { "confidence": 0.8378906, "end": 207.75, "punctuated_word": "both", "speaker": 0, "speaker_confidence": 0.95996094, "start": 207.51001, "word": "both" }, { "confidence": 0.9980469, "end": 208.07, "punctuated_word": "users", "speaker": 0, "speaker_confidence": 0.95996094, "start": 207.75, "word": "users" }, { "confidence": 1, "end": 208.31001, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.95996094, "start": 208.07, "word": "can" }, { "confidence": 0.99902344, "end": 208.55, "punctuated_word": "listen", "speaker": 0, "speaker_confidence": 0.95996094, "start": 208.31001, "word": "listen" }, { "confidence": 0.99902344, "end": 208.71, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.95996094, "start": 208.55, "word": "to" }, { "confidence": 0.9863281, "end": 208.87001, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.95996094, "start": 208.71, "word": "this" }, { "confidence": 0.99902344, "end": 209.19, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.95996094, "start": 208.87001, "word": "data" }, { "confidence": 0.9951172, "end": 209.35, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.95996094, "start": 209.19, "word": "in" }, { "confidence": 0.9941406, "end": 209.51001, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 0.95996094, "start": 209.35, "word": "real" }, { "confidence": 0.9716797, "end": 209.785, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.95996094, "start": 209.51001, "word": "time" }, { "confidence": 0.8378906, "end": 210.265, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.95996094, "start": 209.945, "word": "then" }, { "confidence": 0.9375, "end": 210.425, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.95996094, "start": 210.265, "word": "use" }, { "confidence": 0.99902344, "end": 210.66501, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.95996094, "start": 210.425, "word": "the" }, { "confidence": 0.9842122, "end": 211.16501, "punctuated_word": "WebRTC", "speaker": 0, "speaker_confidence": 0.95996094, "start": 210.66501, "word": "webrtc" }, { "confidence": 0.9741211, "end": 211.945, "punctuated_word": "API", "speaker": 0, "speaker_confidence": 0.95996094, "start": 211.545, "word": "api" }, { "confidence": 0.9980469, "end": 212.10501, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.95996094, "start": 211.945, "word": "in" }, { "confidence": 1, "end": 212.265, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.95996094, "start": 212.10501, "word": "the" }, { "confidence": 0.99902344, "end": 212.74501, "punctuated_word": "browser", "speaker": 0, "speaker_confidence": 0.95996094, "start": 212.265, "word": "browser" }, { "confidence": 1, "end": 212.985, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.95996094, "start": 212.74501, "word": "to" }, { "confidence": 1, "end": 213.465, "punctuated_word": "establish", "speaker": 0, "speaker_confidence": 0.95996094, "start": 212.985, "word": "establish" }, { "confidence": 0.9980469, "end": 213.625, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.95996094, "start": 213.465, "word": "the" }, { "confidence": 0.9550781, "end": 214.125, "punctuated_word": "connection,", "speaker": 0, "speaker_confidence": 0.95996094, "start": 213.625, "word": "connection" }, { "confidence": 0.9980469, "end": 214.505, "punctuated_word": "giving", "speaker": 0, "speaker_confidence": 0.95996094, "start": 214.185, "word": "giving" }, { "confidence": 1, "end": 214.66501, "punctuated_word": "us", "speaker": 0, "speaker_confidence": 0.95996094, "start": 214.505, "word": "us" }, { "confidence": 1, "end": 214.825, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.95996094, "start": 214.66501, "word": "a" }, { "confidence": 0.73583984, "end": 215.065, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.95996094, "start": 214.825, "word": "one" }, { "confidence": 0.9941406, "end": 215.145, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.95996094, "start": 215.065, "word": "to" }, { "confidence": 0.6123047, "end": 215.545, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.95996094, "start": 215.145, "word": "one" }, { "confidence": 0.99902344, "end": 215.945, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.95996094, "start": 215.545, "word": "video" }, { "confidence": 1, "end": 216.10501, "punctuated_word": "chat", "speaker": 0, "speaker_confidence": 0.95996094, "start": 215.945, "word": "chat" }, { "confidence": 0.9848633, "end": 216.60501, "punctuated_word": "feature.", "speaker": 0, "speaker_confidence": 0.95996094, "start": 216.10501, "word": "feature" }, { "confidence": 0.9980469, "end": 217.065, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.95996094, "start": 216.905, "word": "and" }, { "confidence": 0.9243164, "end": 217.225, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 0.95996094, "start": 217.065, "word": "now" }, { "confidence": 0.76538086, "end": 217.38501, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.95996094, "start": 217.225, "word": "we're" }, { "confidence": 1, "end": 217.625, "punctuated_word": "ready", "speaker": 0, "speaker_confidence": 0.95996094, "start": 217.38501, "word": "ready" }, { "confidence": 1, "end": 217.785, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.95996094, "start": 217.625, "word": "to" }, { "confidence": 1, "end": 217.945, "punctuated_word": "jump", "speaker": 0, "speaker_confidence": 0.95996094, "start": 217.785, "word": "jump" }, { "confidence": 0.9980469, "end": 218.185, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.95996094, "start": 217.945, "word": "into" }, { "confidence": 0.9980469, "end": 218.345, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.95996094, "start": 218.185, "word": "our" }, { "confidence": 0.9838867, "end": 218.825, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.95996094, "start": 218.345, "word": "javascript" }, { "confidence": 0.9699707, "end": 219.02, "punctuated_word": "code.", "speaker": 0, "speaker_confidence": 0.95996094, "start": 218.825, "word": "code" }, { "confidence": 0.99902344, "end": 219.34001, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.95996094, "start": 219.18001, "word": "i" }, { "confidence": 0.99902344, "end": 219.66, "punctuated_word": "started", "speaker": 0, "speaker_confidence": 0.95996094, "start": 219.34001, "word": "started" }, { "confidence": 0.9941406, "end": 219.90001, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.95996094, "start": 219.66, "word": "by" }, { "confidence": 1, "end": 220.14, "punctuated_word": "creating", "speaker": 0, "speaker_confidence": 0.95996094, "start": 219.90001, "word": "creating" }, { "confidence": 0.99902344, "end": 220.3, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.95996094, "start": 220.14, "word": "a" }, { "confidence": 0.88427734, "end": 220.78, "punctuated_word": "vanilla", "speaker": 0, "speaker_confidence": 0.95996094, "start": 220.3, "word": "vanilla" }, { "confidence": 0.72021484, "end": 221.28, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.95996094, "start": 220.78, "word": "javascript" }, { "confidence": 0.9980469, "end": 221.74, "punctuated_word": "project", "speaker": 0, "speaker_confidence": 0.95996094, "start": 221.34001, "word": "project" }, { "confidence": 0.9863281, "end": 222.06, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.95996094, "start": 221.74, "word": "using" }, { "confidence": 0.9951172, "end": 222.22, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.95996094, "start": 222.06, "word": "a" }, { "confidence": 0.99902344, "end": 222.54001, "punctuated_word": "tool", "speaker": 0, "speaker_confidence": 0.95996094, "start": 222.22, "word": "tool" }, { "confidence": 0.99902344, "end": 222.78, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 0.95996094, "start": 222.54001, "word": "called" }, { "confidence": 0.9866536, "end": 223.28, "punctuated_word": "Vite,", "speaker": 0, "speaker_confidence": 0.95996094, "start": 222.78, "word": "vite" }, { "confidence": 0.9980469, "end": 223.58, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.95996094, "start": 223.34, "word": "which" }, { "confidence": 0.99902344, "end": 223.74, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.95996094, "start": 223.58, "word": "is" }, { "confidence": 0.99609375, "end": 223.82, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.95996094, "start": 223.74, "word": "a" }, { "confidence": 0.99902344, "end": 224.06, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 0.95996094, "start": 223.82, "word": "very" }, { "confidence": 1, "end": 224.38, "punctuated_word": "simple", "speaker": 0, "speaker_confidence": 0.95996094, "start": 224.06, "word": "simple" }, { "confidence": 0.9970703, "end": 224.62001, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.95996094, "start": 224.38, "word": "build" }, { "confidence": 0.99902344, "end": 224.86, "punctuated_word": "tool", "speaker": 0, "speaker_confidence": 0.95996094, "start": 224.62001, "word": "tool" }, { "confidence": 0.99316406, "end": 225.18001, "punctuated_word": "developed", "speaker": 0, "speaker_confidence": 0.95996094, "start": 224.86, "word": "developed" }, { "confidence": 0.9760742, "end": 225.34, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.95996094, "start": 225.18001, "word": "by" }, { "confidence": 0.98828125, "end": 225.5, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.95996094, "start": 225.34, "word": "the" }, { "confidence": 0.9213867, "end": 225.82, "punctuated_word": "Vue", "speaker": 0, "speaker_confidence": 0.95996094, "start": 225.5, "word": "vue" }, { "confidence": 0.64746094, "end": 226.06, "punctuated_word": "JS", "speaker": 0, "speaker_confidence": 0.95996094, "start": 225.82, "word": "js" }, { "confidence": 0.9926758, "end": 226.46, "punctuated_word": "guy.", "speaker": 0, "speaker_confidence": 0.95996094, "start": 226.06, "word": "guy" }, { "confidence": 0.97998047, "end": 226.54001, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.79541016, "start": 226.46, "word": "we" }, { "confidence": 0.9404297, "end": 226.78, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.79541016, "start": 226.54001, "word": "can" }, { "confidence": 0.99121094, "end": 227.26001, "punctuated_word": "initialize", "speaker": 0, "speaker_confidence": 0.79541016, "start": 226.78, "word": "initialize" }, { "confidence": 0.75634766, "end": 227.34, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.79541016, "start": 227.26001, "word": "a" }, { "confidence": 0.9667969, "end": 227.5, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.79541016, "start": 227.34, "word": "new" }, { "confidence": 0.7397461, "end": 227.775, "punctuated_word": "project", "speaker": 0, "speaker_confidence": 0.79541016, "start": 227.5, "word": "project" }, { "confidence": 0.95703125, "end": 228.17499, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.79541016, "start": 228.015, "word": "by" }, { "confidence": 0.9951172, "end": 228.495, "punctuated_word": "running", "speaker": 0, "speaker_confidence": 0.79541016, "start": 228.17499, "word": "running" }, { "confidence": 0.92089844, "end": 228.97499, "punctuated_word": "npm", "speaker": 0, "speaker_confidence": 0.79541016, "start": 228.495, "word": "npm" }, { "confidence": 0.71713865, "end": 229.47499, "punctuated_word": "initvjs/app", "speaker": 0, "speaker_confidence": 0.79541016, "start": 228.97499, "word": "initvjs/app" }, { "confidence": 0.96875, "end": 231.215, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.79541016, "start": 231.055, "word": "from" }, { "confidence": 0.99902344, "end": 231.375, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.79541016, "start": 231.215, "word": "the" }, { "confidence": 0.9980469, "end": 231.69499, "punctuated_word": "command", "speaker": 0, "speaker_confidence": 0.79541016, "start": 231.375, "word": "command" }, { "confidence": 1, "end": 232.19499, "punctuated_word": "line.", "speaker": 0, "speaker_confidence": 0.79541016, "start": 231.69499, "word": "line" }, { "confidence": 0.99902344, "end": 232.81499, "punctuated_word": "Basically,", "speaker": 0, "speaker_confidence": 0.9482422, "start": 232.415, "word": "basically" }, { "confidence": 1, "end": 232.89499, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.9482422, "start": 232.81499, "word": "it" }, { "confidence": 0.99902344, "end": 233.135, "punctuated_word": "gives", "speaker": 0, "speaker_confidence": 0.9482422, "start": 232.89499, "word": "gives" }, { "confidence": 0.99902344, "end": 233.295, "punctuated_word": "us", "speaker": 0, "speaker_confidence": 0.9482422, "start": 233.135, "word": "us" }, { "confidence": 1, "end": 233.45499, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9482422, "start": 233.295, "word": "a" }, { "confidence": 0.98535156, "end": 233.69499, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.9482422, "start": 233.45499, "word": "web" }, { "confidence": 0.9951172, "end": 234.095, "punctuated_word": "project", "speaker": 0, "speaker_confidence": 0.9482422, "start": 233.69499, "word": "project" }, { "confidence": 0.9667969, "end": 234.25499, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.9482422, "start": 234.095, "word": "where" }, { "confidence": 1, "end": 234.33499, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.9482422, "start": 234.25499, "word": "we" }, { "confidence": 1, "end": 234.575, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9482422, "start": 234.33499, "word": "can" }, { "confidence": 1, "end": 234.89499, "punctuated_word": "install", "speaker": 0, "speaker_confidence": 0.9482422, "start": 234.575, "word": "install" }, { "confidence": 0.9902344, "end": 235.39499, "punctuated_word": "dependencies", "speaker": 0, "speaker_confidence": 0.9482422, "start": 234.89499, "word": "dependencies" }, { "confidence": 0.98828125, "end": 235.935, "punctuated_word": "without", "speaker": 0, "speaker_confidence": 0.9482422, "start": 235.61499, "word": "without" }, { "confidence": 1, "end": 236.095, "punctuated_word": "having", "speaker": 0, "speaker_confidence": 0.9482422, "start": 235.935, "word": "having" }, { "confidence": 0.99902344, "end": 236.25499, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9482422, "start": 236.095, "word": "to" }, { "confidence": 1, "end": 236.495, "punctuated_word": "worry", "speaker": 0, "speaker_confidence": 0.9482422, "start": 236.25499, "word": "worry" }, { "confidence": 1, "end": 236.655, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.9482422, "start": 236.495, "word": "about" }, { "confidence": 1, "end": 236.89499, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 0.9482422, "start": 236.655, "word": "things" }, { "confidence": 0.9873047, "end": 237.135, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.9482422, "start": 236.89499, "word": "like" }, { "confidence": 0.9243164, "end": 237.635, "punctuated_word": "webpack.", "speaker": 0, "speaker_confidence": 0.9482422, "start": 237.135, "word": "webpack" }, { "confidence": 0.9980469, "end": 238.04, "punctuated_word": "After", "speaker": 0, "speaker_confidence": 0.9482422, "start": 237.8, "word": "after" }, { "confidence": 0.99853516, "end": 238.52, "punctuated_word": "initializing", "speaker": 0, "speaker_confidence": 0.9482422, "start": 238.04, "word": "initializing" }, { "confidence": 0.9980469, "end": 238.68, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9482422, "start": 238.52, "word": "the" }, { "confidence": 0.99902344, "end": 239.16, "punctuated_word": "project,", "speaker": 0, "speaker_confidence": 0.9482422, "start": 238.68, "word": "project" }, { "confidence": 0.9970703, "end": 239.31999, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.9482422, "start": 239.16, "word": "we" }, { "confidence": 0.9980469, "end": 239.48, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.9482422, "start": 239.31999, "word": "need" }, { "confidence": 0.99902344, "end": 239.64, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9482422, "start": 239.48, "word": "to" }, { "confidence": 0.99902344, "end": 239.96, "punctuated_word": "install", "speaker": 0, "speaker_confidence": 0.9482422, "start": 239.64, "word": "install" }, { "confidence": 0.9951172, "end": 240.46, "punctuated_word": "Firebase.", "speaker": 0, "speaker_confidence": 0.9482422, "start": 239.96, "word": "firebase" }, { "confidence": 0.9970703, "end": 241.24, "punctuated_word": "Firebase", "speaker": 0, "speaker_confidence": 0.9482422, "start": 240.76, "word": "firebase" }, { "confidence": 0.99609375, "end": 241.56, "punctuated_word": "contains", "speaker": 0, "speaker_confidence": 0.9482422, "start": 241.24, "word": "contains" }, { "confidence": 0.9741211, "end": 241.72, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9482422, "start": 241.56, "word": "the" }, { "confidence": 0.9831543, "end": 242.2, "punctuated_word": "Firestore", "speaker": 0, "speaker_confidence": 0.9482422, "start": 241.72, "word": "firestore" }, { "confidence": 0.9108887, "end": 242.7, "punctuated_word": "database,", "speaker": 0, "speaker_confidence": 0.9482422, "start": 242.2, "word": "database" }, { "confidence": 0.97314453, "end": 242.92, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.9482422, "start": 242.76, "word": "which" }, { "confidence": 0.94970703, "end": 243.08, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.9482422, "start": 242.92, "word": "we" }, { "confidence": 0.9394531, "end": 243.31999, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9482422, "start": 243.08, "word": "can" }, { "confidence": 0.9428711, "end": 243.56, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.9482422, "start": 243.31999, "word": "use" }, { "confidence": 0.8540039, "end": 243.8, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.9482422, "start": 243.56, "word": "as" }, { "confidence": 0.8803711, "end": 243.95999, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.9482422, "start": 243.8, "word": "our" }, { "confidence": 0.7011719, "end": 244.2, "punctuated_word": "back", "speaker": 0, "speaker_confidence": 0.9482422, "start": 243.95999, "word": "back" }, { "confidence": 0.88183594, "end": 244.655, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.9482422, "start": 244.2, "word": "end" }, { "confidence": 0.7663574, "end": 245.295, "punctuated_word": "server.", "speaker": 0, "speaker_confidence": 0.9482422, "start": 244.895, "word": "server" }, { "confidence": 0.9995117, "end": 245.775, "punctuated_word": "Firebase", "speaker": 0, "speaker_confidence": 0.9482422, "start": 245.295, "word": "firebase" }, { "confidence": 0.99902344, "end": 245.935, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9482422, "start": 245.775, "word": "is" }, { "confidence": 1, "end": 246.175, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.9482422, "start": 245.935, "word": "an" }, { "confidence": 0.99902344, "end": 246.575, "punctuated_word": "exceptional", "speaker": 0, "speaker_confidence": 0.9482422, "start": 246.175, "word": "exceptional" }, { "confidence": 1, "end": 246.895, "punctuated_word": "choice", "speaker": 0, "speaker_confidence": 0.9482422, "start": 246.575, "word": "choice" }, { "confidence": 1, "end": 247.055, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.9482422, "start": 246.895, "word": "for" }, { "confidence": 1, "end": 247.215, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9482422, "start": 247.055, "word": "a" }, { "confidence": 0.98291016, "end": 247.615, "punctuated_word": "signaling", "speaker": 0, "speaker_confidence": 0.9482422, "start": 247.215, "word": "signaling" }, { "confidence": 0.99902344, "end": 248.095, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 0.9482422, "start": 247.615, "word": "server" }, { "confidence": 0.90722656, "end": 248.33499, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.9482422, "start": 248.095, "word": "because" }, { "confidence": 1, "end": 248.495, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.9482422, "start": 248.33499, "word": "it's" }, { "confidence": 1, "end": 248.815, "punctuated_word": "easy", "speaker": 0, "speaker_confidence": 0.9482422, "start": 248.495, "word": "easy" }, { "confidence": 0.99902344, "end": 248.975, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9482422, "start": 248.815, "word": "to" }, { "confidence": 1, "end": 249.295, "punctuated_word": "listen", "speaker": 0, "speaker_confidence": 0.9482422, "start": 248.975, "word": "listen" }, { "confidence": 1, "end": 249.455, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9482422, "start": 249.295, "word": "to" }, { "confidence": 1, "end": 249.775, "punctuated_word": "updates", "speaker": 0, "speaker_confidence": 0.9482422, "start": 249.455, "word": "updates" }, { "confidence": 1, "end": 249.935, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9482422, "start": 249.775, "word": "to" }, { "confidence": 1, "end": 250.095, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9482422, "start": 249.935, "word": "the" }, { "confidence": 1, "end": 250.575, "punctuated_word": "database", "speaker": 0, "speaker_confidence": 0.9482422, "start": 250.095, "word": "database" }, { "confidence": 1, "end": 250.735, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9482422, "start": 250.575, "word": "in" }, { "confidence": 1, "end": 250.975, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 0.9482422, "start": 250.735, "word": "real" }, { "confidence": 0.99902344, "end": 251.375, "punctuated_word": "time.", "speaker": 0, "speaker_confidence": 0.9482422, "start": 250.975, "word": "time" }, { "confidence": 0.99902344, "end": 251.455, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.81152344, "start": 251.375, "word": "if" }, { "confidence": 1, "end": 251.615, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.81152344, "start": 251.455, "word": "we" }, { "confidence": 0.9770508, "end": 251.775, "punctuated_word": "were", "speaker": 0, "speaker_confidence": 0.81152344, "start": 251.615, "word": "were" }, { "confidence": 1, "end": 252.015, "punctuated_word": "working", "speaker": 0, "speaker_confidence": 0.81152344, "start": 251.775, "word": "working" }, { "confidence": 1, "end": 252.175, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.81152344, "start": 252.015, "word": "with" }, { "confidence": 1, "end": 252.255, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.81152344, "start": 252.175, "word": "a" }, { "confidence": 1, "end": 252.655, "punctuated_word": "traditional", "speaker": 0, "speaker_confidence": 0.81152344, "start": 252.255, "word": "traditional" }, { "confidence": 0.9995117, "end": 253.055, "punctuated_word": "database,", "speaker": 0, "speaker_confidence": 0.81152344, "start": 252.655, "word": "database" }, { "confidence": 0.9267578, "end": 253.295, "punctuated_word": "we'd", "speaker": 0, "speaker_confidence": 0.81152344, "start": 253.055, "word": "we'd" }, { "confidence": 0.99902344, "end": 253.615, "punctuated_word": "likely", "speaker": 0, "speaker_confidence": 0.81152344, "start": 253.295, "word": "likely" }, { "confidence": 0.99902344, "end": 253.775, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.81152344, "start": 253.615, "word": "have" }, { "confidence": 0.9980469, "end": 253.98, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.81152344, "start": 253.775, "word": "to" }, { "confidence": 1, "end": 254.45999, "punctuated_word": "implement", "speaker": 0, "speaker_confidence": 0.81152344, "start": 254.14, "word": "implement" }, { "confidence": 1, "end": 254.78, "punctuated_word": "something", "speaker": 0, "speaker_confidence": 0.81152344, "start": 254.45999, "word": "something" }, { "confidence": 0.9819336, "end": 254.94, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.81152344, "start": 254.78, "word": "like" }, { "confidence": 0.9012044, "end": 255.44, "punctuated_word": "WebSockets", "speaker": 0, "speaker_confidence": 0.81152344, "start": 254.94, "word": "websockets" }, { "confidence": 0.99902344, "end": 255.73999, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.81152344, "start": 255.58, "word": "to" }, { "confidence": 1, "end": 255.98, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.81152344, "start": 255.73999, "word": "make" }, { "confidence": 1, "end": 256.13998, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.81152344, "start": 255.98, "word": "that" }, { "confidence": 1, "end": 256.62, "punctuated_word": "possible", "speaker": 0, "speaker_confidence": 0.81152344, "start": 256.13998, "word": "possible" }, { "confidence": 0.3798828, "end": 256.94, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.81152344, "start": 256.62, "word": "and" }, { "confidence": 1, "end": 257.1, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.81152344, "start": 256.94, "word": "this" }, { "confidence": 1, "end": 257.41998, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.81152344, "start": 257.1, "word": "video" }, { "confidence": 1, "end": 257.58, "punctuated_word": "would", "speaker": 0, "speaker_confidence": 0.81152344, "start": 257.41998, "word": "would" }, { "confidence": 1, "end": 257.9, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.81152344, "start": 257.58, "word": "be" }, { "confidence": 0.99902344, "end": 257.97998, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.81152344, "start": 257.9, "word": "a" }, { "confidence": 1, "end": 258.38, "punctuated_word": "crazy", "speaker": 0, "speaker_confidence": 0.81152344, "start": 257.97998, "word": "crazy" }, { "confidence": 0.87158203, "end": 258.62, "punctuated_word": "20", "speaker": 0, "speaker_confidence": 0.81152344, "start": 258.38, "word": "20" }, { "confidence": 0.9980469, "end": 258.94, "punctuated_word": "minutes", "speaker": 0, "speaker_confidence": 0.81152344, "start": 258.62, "word": "minutes" }, { "confidence": 0.83447266, "end": 259.18, "punctuated_word": "long", "speaker": 0, "speaker_confidence": 0.81152344, "start": 258.94, "word": "long" }, { "confidence": 0.99902344, "end": 259.34, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.81152344, "start": 259.18, "word": "or" }, { "confidence": 0.9995117, "end": 259.82, "punctuated_word": "something.", "speaker": 0, "speaker_confidence": 0.81152344, "start": 259.34, "word": "something" }, { "confidence": 0.99902344, "end": 260.06, "punctuated_word": "From", "speaker": 0, "speaker_confidence": 1, "start": 259.82, "word": "from" }, { "confidence": 1, "end": 260.13998, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 260.06, "word": "the" }, { "confidence": 0.99658203, "end": 260.54, "punctuated_word": "Firebase", "speaker": 0, "speaker_confidence": 1, "start": 260.13998, "word": "firebase" }, { "confidence": 0.9555664, "end": 261.04, "punctuated_word": "console,", "speaker": 0, "speaker_confidence": 1, "start": 260.54, "word": "console" }, { "confidence": 0.9980469, "end": 261.68, "punctuated_word": "initialize", "speaker": 0, "speaker_confidence": 1, "start": 261.18, "word": "initialize" }, { "confidence": 0.9851074, "end": 262.285, "punctuated_word": "Firestore", "speaker": 0, "speaker_confidence": 1, "start": 261.88498, "word": "firestore" }, { "confidence": 0.82177734, "end": 262.60498, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 262.285, "word": "in" }, { "confidence": 0.9819336, "end": 262.845, "punctuated_word": "test", "speaker": 0, "speaker_confidence": 1, "start": 262.60498, "word": "test" }, { "confidence": 0.9523926, "end": 263.345, "punctuated_word": "mode,", "speaker": 0, "speaker_confidence": 1, "start": 262.845, "word": "mode" }, { "confidence": 1, "end": 263.805, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 1, "start": 263.645, "word": "then" }, { "confidence": 1, "end": 264.125, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 1, "start": 263.805, "word": "create" }, { "confidence": 1, "end": 264.285, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 264.125, "word": "a" }, { "confidence": 0.9614258, "end": 264.525, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 1, "start": 264.285, "word": "web" }, { "confidence": 0.99609375, "end": 265.025, "punctuated_word": "project", "speaker": 0, "speaker_confidence": 1, "start": 264.525, "word": "project" }, { "confidence": 1, "end": 265.245, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 1, "start": 265.085, "word": "from" }, { "confidence": 1, "end": 265.485, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 265.245, "word": "the" }, { "confidence": 0.99121094, "end": 265.805, "punctuated_word": "settings", "speaker": 0, "speaker_confidence": 1, "start": 265.485, "word": "settings" }, { "confidence": 1, "end": 266.305, "punctuated_word": "panel", "speaker": 0, "speaker_confidence": 1, "start": 265.805, "word": "panel" }, { "confidence": 0.80566406, "end": 266.685, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 266.445, "word": "and" }, { "confidence": 1, "end": 266.925, "punctuated_word": "grab", "speaker": 0, "speaker_confidence": 1, "start": 266.685, "word": "grab" }, { "confidence": 1, "end": 267.16498, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 1, "start": 266.925, "word": "your" }, { "confidence": 1, "end": 267.565, "punctuated_word": "project", "speaker": 0, "speaker_confidence": 1, "start": 267.16498, "word": "project" }, { "confidence": 1, "end": 268.065, "punctuated_word": "credentials.", "speaker": 0, "speaker_confidence": 1, "start": 267.565, "word": "credentials" }, { "confidence": 1, "end": 268.445, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 1, "start": 268.285, "word": "we" }, { "confidence": 1, "end": 268.60498, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 268.445, "word": "can" }, { "confidence": 1, "end": 268.76498, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 1, "start": 268.60498, "word": "then" }, { "confidence": 1, "end": 268.925, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 1, "start": 268.76498, "word": "go" }, { "confidence": 0.9980469, "end": 269.085, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 1, "start": 268.925, "word": "into" }, { "confidence": 1, "end": 269.245, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 269.085, "word": "the" }, { "confidence": 0.9902344, "end": 269.485, "punctuated_word": "main", "speaker": 0, "speaker_confidence": 1, "start": 269.245, "word": "main" }, { "confidence": 0.60302734, "end": 269.88498, "punctuated_word": "JS", "speaker": 0, "speaker_confidence": 1, "start": 269.485, "word": "js" }, { "confidence": 0.9980469, "end": 270.38498, "punctuated_word": "file,", "speaker": 0, "speaker_confidence": 1, "start": 269.88498, "word": "file" }, { "confidence": 0.9980469, "end": 270.845, "punctuated_word": "import", "speaker": 0, "speaker_confidence": 1, "start": 270.445, "word": "import" }, { "confidence": 0.98095703, "end": 271.31, "punctuated_word": "Firebase,", "speaker": 0, "speaker_confidence": 1, "start": 270.845, "word": "firebase" }, { "confidence": 0.93359375, "end": 271.79, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 1, "start": 271.55, "word": "and" }, { "confidence": 0.9951172, "end": 272.27, "punctuated_word": "initialize", "speaker": 0, "speaker_confidence": 1, "start": 271.79, "word": "initialize" }, { "confidence": 1, "end": 272.43, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 272.27, "word": "the" }, { "confidence": 1, "end": 272.66998, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 1, "start": 272.43, "word": "app" }, { "confidence": 1, "end": 272.83, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 272.66998, "word": "with" }, { "confidence": 1, "end": 273.07, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 1, "start": 272.83, "word": "our" }, { "confidence": 0.9562988, "end": 273.55, "punctuated_word": "Firebase", "speaker": 0, "speaker_confidence": 1, "start": 273.07, "word": "firebase" }, { "confidence": 0.9946289, "end": 274.05, "punctuated_word": "config.", "speaker": 0, "speaker_confidence": 1, "start": 273.55, "word": "config" }, { "confidence": 1, "end": 274.27, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 1, "start": 274.11, "word": "now" }, { "confidence": 0.99316406, "end": 274.35, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 274.27, "word": "that" }, { "confidence": 1, "end": 274.51, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 1, "start": 274.35, "word": "we" }, { "confidence": 1, "end": 274.66998, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 1, "start": 274.51, "word": "have" }, { "confidence": 0.9946289, "end": 275.07, "punctuated_word": "Firebase", "speaker": 0, "speaker_confidence": 1, "start": 274.66998, "word": "firebase" }, { "confidence": 0.7128906, "end": 275.23, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 1, "start": 275.07, "word": "set" }, { "confidence": 0.99902344, "end": 275.47, "punctuated_word": "up,", "speaker": 0, "speaker_confidence": 1, "start": 275.23, "word": "up" }, { "confidence": 1, "end": 275.71, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 1, "start": 275.47, "word": "we're" }, { "confidence": 1, "end": 275.95, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 1, "start": 275.71, "word": "going" }, { "confidence": 1, "end": 276.11, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 275.95, "word": "to" }, { "confidence": 1, "end": 276.61, "punctuated_word": "initialize", "speaker": 0, "speaker_confidence": 1, "start": 276.11, "word": "initialize" }, { "confidence": 0.83740234, "end": 276.99, "punctuated_word": "3", "speaker": 0, "speaker_confidence": 1, "start": 276.83, "word": "3" }, { "confidence": 0.99902344, "end": 277.47, "punctuated_word": "pieces", "speaker": 0, "speaker_confidence": 1, "start": 276.99, "word": "pieces" }, { "confidence": 1, "end": 277.79, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 277.47, "word": "of" }, { "confidence": 0.9819336, "end": 278.19, "punctuated_word": "global", "speaker": 0, "speaker_confidence": 1, "start": 277.79, "word": "global" }, { "confidence": 0.9892578, "end": 278.535, "punctuated_word": "state.", "speaker": 0, "speaker_confidence": 1, "start": 278.19, "word": "state" }, { "confidence": 0.99902344, "end": 278.935, "punctuated_word": "These", "speaker": 0, "speaker_confidence": 1, "start": 278.695, "word": "these" }, { "confidence": 1, "end": 279.015, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 1, "start": 278.935, "word": "are" }, { "confidence": 1, "end": 279.415, "punctuated_word": "values", "speaker": 0, "speaker_confidence": 1, "start": 279.015, "word": "values" }, { "confidence": 0.99902344, "end": 279.495, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 279.415, "word": "you" }, { "confidence": 0.9970703, "end": 279.575, "punctuated_word": "would", "speaker": 0, "speaker_confidence": 1, "start": 279.495, "word": "would" }, { "confidence": 0.9980469, "end": 279.895, "punctuated_word": "likely", "speaker": 0, "speaker_confidence": 1, "start": 279.575, "word": "likely" }, { "confidence": 0.99902344, "end": 280.215, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 1, "start": 279.895, "word": "want" }, { "confidence": 0.99902344, "end": 280.375, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 280.215, "word": "to" }, { "confidence": 1, "end": 280.615, "punctuated_word": "share", "speaker": 0, "speaker_confidence": 1, "start": 280.375, "word": "share" }, { "confidence": 1, "end": 280.935, "punctuated_word": "between", "speaker": 0, "speaker_confidence": 1, "start": 280.615, "word": "between" }, { "confidence": 1, "end": 281.415, "punctuated_word": "multiple", "speaker": 0, "speaker_confidence": 1, "start": 280.935, "word": "multiple" }, { "confidence": 1, "end": 281.895, "punctuated_word": "components", "speaker": 0, "speaker_confidence": 1, "start": 281.415, "word": "components" }, { "confidence": 0.91259766, "end": 282.055, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 1, "start": 281.895, "word": "if" }, { "confidence": 0.99902344, "end": 282.215, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 1, "start": 282.055, "word": "you're" }, { "confidence": 1, "end": 282.535, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 1, "start": 282.215, "word": "using" }, { "confidence": 0.9980469, "end": 282.695, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 282.535, "word": "a" }, { "confidence": 0.9863281, "end": 283.095, "punctuated_word": "UI", "speaker": 0, "speaker_confidence": 1, "start": 282.695, "word": "ui" }, { "confidence": 0.99609375, "end": 283.495, "punctuated_word": "framework", "speaker": 0, "speaker_confidence": 1, "start": 283.095, "word": "framework" }, { "confidence": 0.89208984, "end": 283.815, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 283.495, "word": "like" }, { "confidence": 0.9716797, "end": 284.215, "punctuated_word": "React", "speaker": 0, "speaker_confidence": 1, "start": 283.815, "word": "react" }, { "confidence": 0.96435547, "end": 284.45502, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 1, "start": 284.215, "word": "or" }, { "confidence": 0.9995117, "end": 284.95502, "punctuated_word": "Angular.", "speaker": 0, "speaker_confidence": 1, "start": 284.45502, "word": "angular" }, { "confidence": 0.99902344, "end": 285.415, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 1, "start": 285.255, "word": "the" }, { "confidence": 0.9707031, "end": 285.73502, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 1, "start": 285.415, "word": "first" }, { "confidence": 0.97998047, "end": 285.895, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 285.73502, "word": "and" }, { "confidence": 0.9980469, "end": 286.135, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 1, "start": 285.895, "word": "most" }, { "confidence": 0.9941406, "end": 286.54, "punctuated_word": "important", "speaker": 0, "speaker_confidence": 1, "start": 286.135, "word": "important" }, { "confidence": 0.72802734, "end": 287.02002, "punctuated_word": "Value", "speaker": 0, "speaker_confidence": 1, "start": 286.62, "word": "value" }, { "confidence": 0.9970703, "end": 287.34, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 287.02002, "word": "is" }, { "confidence": 1, "end": 287.5, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 287.34, "word": "the" }, { "confidence": 0.6555176, "end": 288, "punctuated_word": "rtc", "speaker": 0, "speaker_confidence": 1, "start": 287.5, "word": "rtc" }, { "confidence": 0.43603516, "end": 288.46002, "punctuated_word": "pure", "speaker": 0, "speaker_confidence": 1, "start": 288.22, "word": "pure" }, { "confidence": 0.9790039, "end": 288.96002, "punctuated_word": "connection.", "speaker": 0, "speaker_confidence": 1, "start": 288.46002, "word": "connection" }, { "confidence": 1, "end": 289.58002, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 1, "start": 289.34, "word": "this" }, { "confidence": 1, "end": 289.98, "punctuated_word": "object", "speaker": 0, "speaker_confidence": 1, "start": 289.58002, "word": "object" }, { "confidence": 1, "end": 290.14, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 289.98, "word": "is" }, { "confidence": 1, "end": 290.38, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 1, "start": 290.14, "word": "where" }, { "confidence": 0.99902344, "end": 290.54, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 1, "start": 290.38, "word": "all" }, { "confidence": 0.5385742, "end": 290.62, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9951172, "start": 290.54, "word": "of" }, { "confidence": 0.99902344, "end": 290.78, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9951172, "start": 290.62, "word": "the" }, { "confidence": 0.99902344, "end": 291.1, "punctuated_word": "action", "speaker": 0, "speaker_confidence": 0.9951172, "start": 290.78, "word": "action" }, { "confidence": 0.9951172, "end": 291.6, "punctuated_word": "happens.", "speaker": 0, "speaker_confidence": 0.9951172, "start": 291.1, "word": "happens" }, { "confidence": 0.9980469, "end": 291.9, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.9951172, "start": 291.66, "word": "it" }, { "confidence": 0.99609375, "end": 292.14, "punctuated_word": "emits", "speaker": 0, "speaker_confidence": 0.9951172, "start": 291.9, "word": "emits" }, { "confidence": 0.99902344, "end": 292.22, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9951172, "start": 292.14, "word": "a" }, { "confidence": 1, "end": 292.46002, "punctuated_word": "bunch", "speaker": 0, "speaker_confidence": 0.9951172, "start": 292.22, "word": "bunch" }, { "confidence": 0.99902344, "end": 292.54, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9951172, "start": 292.46002, "word": "of" }, { "confidence": 0.99902344, "end": 292.86002, "punctuated_word": "different", "speaker": 0, "speaker_confidence": 0.9951172, "start": 292.54, "word": "different" }, { "confidence": 0.9980469, "end": 293.18002, "punctuated_word": "events", "speaker": 0, "speaker_confidence": 0.9951172, "start": 292.86002, "word": "events" }, { "confidence": 0.98535156, "end": 293.34, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9951172, "start": 293.18002, "word": "that" }, { "confidence": 0.96972656, "end": 293.555, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.9951172, "start": 293.34, "word": "we" }, { "confidence": 0.921875, "end": 294.035, "punctuated_word": "Listen", "speaker": 0, "speaker_confidence": 0.9951172, "start": 293.63498, "word": "listen" }, { "confidence": 0.984375, "end": 294.275, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9951172, "start": 294.035, "word": "to" }, { "confidence": 0.87353516, "end": 294.51498, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9951172, "start": 294.275, "word": "to" }, { "confidence": 0.99902344, "end": 294.835, "punctuated_word": "update", "speaker": 0, "speaker_confidence": 0.9951172, "start": 294.51498, "word": "update" }, { "confidence": 1, "end": 294.91498, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9951172, "start": 294.835, "word": "the" }, { "confidence": 0.99902344, "end": 295.41498, "punctuated_word": "database", "speaker": 0, "speaker_confidence": 0.9951172, "start": 294.91498, "word": "database" }, { "confidence": 0.9291992, "end": 295.79498, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9951172, "start": 295.63498, "word": "and" }, { "confidence": 1, "end": 295.955, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9951172, "start": 295.79498, "word": "to" }, { "confidence": 1, "end": 296.115, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.9951172, "start": 295.955, "word": "add" }, { "confidence": 0.99902344, "end": 296.51498, "punctuated_word": "media", "speaker": 0, "speaker_confidence": 0.9951172, "start": 296.115, "word": "media" }, { "confidence": 1, "end": 296.835, "punctuated_word": "streams", "speaker": 0, "speaker_confidence": 0.9951172, "start": 296.51498, "word": "streams" }, { "confidence": 1, "end": 296.995, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9951172, "start": 296.835, "word": "to" }, { "confidence": 1, "end": 297.155, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9951172, "start": 296.995, "word": "the" }, { "confidence": 1, "end": 297.63498, "punctuated_word": "connection", "speaker": 0, "speaker_confidence": 0.9951172, "start": 297.155, "word": "connection" }, { "confidence": 0.9995117, "end": 298.13498, "punctuated_word": "itself.", "speaker": 0, "speaker_confidence": 0.9951172, "start": 297.63498, "word": "itself" }, { "confidence": 0.9873047, "end": 298.435, "punctuated_word": "One", "speaker": 0, "speaker_confidence": 0.9951172, "start": 298.195, "word": "one" }, { "confidence": 1, "end": 298.675, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 0.9951172, "start": 298.435, "word": "very" }, { "confidence": 1, "end": 298.995, "punctuated_word": "important", "speaker": 0, "speaker_confidence": 0.9951172, "start": 298.675, "word": "important" }, { "confidence": 1, "end": 299.155, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.9951172, "start": 298.995, "word": "thing" }, { "confidence": 1, "end": 299.315, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.9951172, "start": 299.155, "word": "it" }, { "confidence": 1, "end": 299.715, "punctuated_word": "does", "speaker": 0, "speaker_confidence": 0.9951172, "start": 299.315, "word": "does" }, { "confidence": 0.99902344, "end": 299.875, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9951172, "start": 299.715, "word": "is" }, { "confidence": 1, "end": 300.275, "punctuated_word": "generate", "speaker": 0, "speaker_confidence": 0.9951172, "start": 299.875, "word": "generate" }, { "confidence": 1, "end": 300.51498, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9951172, "start": 300.275, "word": "the" }, { "confidence": 0.9243164, "end": 300.755, "punctuated_word": "ICE", "speaker": 0, "speaker_confidence": 0.9951172, "start": 300.51498, "word": "ice" }, { "confidence": 0.75512695, "end": 301.255, "punctuated_word": "candidates,", "speaker": 0, "speaker_confidence": 0.9951172, "start": 300.755, "word": "candidates" }, { "confidence": 1, "end": 301.68, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.9951172, "start": 301.52, "word": "but" }, { "confidence": 0.9941406, "end": 301.84, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9951172, "start": 301.68, "word": "in" }, { "confidence": 1, "end": 302.08002, "punctuated_word": "order", "speaker": 0, "speaker_confidence": 0.9951172, "start": 301.84, "word": "order" }, { "confidence": 1, "end": 302.16, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9951172, "start": 302.08002, "word": "to" }, { "confidence": 1, "end": 302.32, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.9951172, "start": 302.16, "word": "do" }, { "confidence": 0.99853516, "end": 302.64, "punctuated_word": "that,", "speaker": 0, "speaker_confidence": 0.9951172, "start": 302.32, "word": "that" }, { "confidence": 0.9980469, "end": 302.8, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.9951172, "start": 302.64, "word": "it" }, { "confidence": 1, "end": 303.04, "punctuated_word": "needs", "speaker": 0, "speaker_confidence": 0.9951172, "start": 302.8, "word": "needs" }, { "confidence": 1, "end": 303.12, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9951172, "start": 303.04, "word": "to" }, { "confidence": 1, "end": 303.36002, "punctuated_word": "know", "speaker": 0, "speaker_confidence": 0.9951172, "start": 303.12, "word": "know" }, { "confidence": 1, "end": 303.6, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.9951172, "start": 303.36002, "word": "which" }, { "confidence": 0.74194336, "end": 304, "punctuated_word": "STUN", "speaker": 0, "speaker_confidence": 0.9951172, "start": 303.6, "word": "stun" }, { "confidence": 0.9291992, "end": 304.32, "punctuated_word": "servers", "speaker": 0, "speaker_confidence": 0.9951172, "start": 304, "word": "servers" }, { "confidence": 1, "end": 304.56, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9951172, "start": 304.32, "word": "to" }, { "confidence": 1, "end": 304.96, "punctuated_word": "use.", "speaker": 0, "speaker_confidence": 0.9951172, "start": 304.56, "word": "use" }, { "confidence": 1, "end": 305.12, "punctuated_word": "There", "speaker": 0, "speaker_confidence": 0.9951172, "start": 304.96, "word": "there" }, { "confidence": 0.9980469, "end": 305.28, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.9951172, "start": 305.12, "word": "are" }, { "confidence": 1, "end": 305.44, "punctuated_word": "many", "speaker": 0, "speaker_confidence": 0.9951172, "start": 305.28, "word": "many" }, { "confidence": 1, "end": 305.76, "punctuated_word": "different", "speaker": 0, "speaker_confidence": 0.9951172, "start": 305.44, "word": "different" }, { "confidence": 1, "end": 306.08002, "punctuated_word": "options", "speaker": 0, "speaker_confidence": 0.9951172, "start": 305.76, "word": "options" }, { "confidence": 1, "end": 306.24, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.9951172, "start": 306.08002, "word": "out" }, { "confidence": 0.9975586, "end": 306.56, "punctuated_word": "there,", "speaker": 0, "speaker_confidence": 0.9951172, "start": 306.24, "word": "there" }, { "confidence": 1, "end": 306.72, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.9951172, "start": 306.56, "word": "but" }, { "confidence": 1, "end": 306.88, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.9951172, "start": 306.72, "word": "we're" }, { "confidence": 1, "end": 307.04, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.9951172, "start": 306.88, "word": "just" }, { "confidence": 1, "end": 307.28, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.9951172, "start": 307.04, "word": "going" }, { "confidence": 1, "end": 307.36002, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9951172, "start": 307.28, "word": "to" }, { "confidence": 1, "end": 307.6, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.9951172, "start": 307.36002, "word": "use" }, { "confidence": 0.99316406, "end": 307.76, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9951172, "start": 307.6, "word": "the" }, { "confidence": 1, "end": 308, "punctuated_word": "free", "speaker": 0, "speaker_confidence": 0.9951172, "start": 307.76, "word": "free" }, { "confidence": 1, "end": 308.24, "punctuated_word": "ones", "speaker": 0, "speaker_confidence": 0.9951172, "start": 308, "word": "ones" }, { "confidence": 1, "end": 308.4, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.9951172, "start": 308.24, "word": "from" }, { "confidence": 0.99902344, "end": 308.9, "punctuated_word": "Google.", "speaker": 0, "speaker_confidence": 0.9951172, "start": 308.4, "word": "google" }, { "confidence": 0.99902344, "end": 309.255, "punctuated_word": "From", "speaker": 0, "speaker_confidence": 0.9951172, "start": 309.095, "word": "from" }, { "confidence": 0.8991699, "end": 309.33502, "punctuated_word": "there,", "speaker": 0, "speaker_confidence": 0.9951172, "start": 309.255, "word": "there" }, { "confidence": 1, "end": 309.415, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.93310547, "start": 309.33502, "word": "we" }, { "confidence": 0.9951172, "end": 309.735, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.93310547, "start": 309.415, "word": "have" }, { "confidence": 0.99902344, "end": 310.135, "punctuated_word": "values", "speaker": 0, "speaker_confidence": 0.93310547, "start": 309.735, "word": "values" }, { "confidence": 1, "end": 310.375, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.93310547, "start": 310.135, "word": "for" }, { "confidence": 0.9716797, "end": 310.775, "punctuated_word": "local", "speaker": 0, "speaker_confidence": 0.93310547, "start": 310.375, "word": "local" }, { "confidence": 0.984375, "end": 311.175, "punctuated_word": "stream", "speaker": 0, "speaker_confidence": 0.93310547, "start": 310.775, "word": "stream" }, { "confidence": 0.9980469, "end": 311.415, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.93310547, "start": 311.175, "word": "and" }, { "confidence": 0.99902344, "end": 311.815, "punctuated_word": "remote", "speaker": 0, "speaker_confidence": 0.93310547, "start": 311.415, "word": "remote" }, { "confidence": 0.9230957, "end": 312.29498, "punctuated_word": "stream,", "speaker": 0, "speaker_confidence": 0.93310547, "start": 311.815, "word": "stream" }, { "confidence": 1, "end": 312.455, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.93310547, "start": 312.29498, "word": "which" }, { "confidence": 1, "end": 312.695, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.93310547, "start": 312.455, "word": "are" }, { "confidence": 1, "end": 312.855, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.93310547, "start": 312.695, "word": "the" }, { "confidence": 0.99902344, "end": 313.175, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.93310547, "start": 312.855, "word": "video" }, { "confidence": 1, "end": 313.655, "punctuated_word": "streams", "speaker": 0, "speaker_confidence": 0.93310547, "start": 313.175, "word": "streams" }, { "confidence": 1, "end": 313.895, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.93310547, "start": 313.655, "word": "from" }, { "confidence": 0.99902344, "end": 314.055, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.93310547, "start": 313.895, "word": "the" }, { "confidence": 0.99397784, "end": 314.555, "punctuated_word": "webcams", "speaker": 0, "speaker_confidence": 0.93310547, "start": 314.055, "word": "webcams" }, { "confidence": 1, "end": 314.855, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.93310547, "start": 314.695, "word": "of" }, { "confidence": 1, "end": 315.095, "punctuated_word": "each", "speaker": 0, "speaker_confidence": 0.93310547, "start": 314.855, "word": "each" }, { "confidence": 1, "end": 315.595, "punctuated_word": "user.", "speaker": 0, "speaker_confidence": 0.93310547, "start": 315.095, "word": "user" }, { "confidence": 1, "end": 315.895, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.93310547, "start": 315.655, "word": "now" }, { "confidence": 0.6586914, "end": 316.135, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.93310547, "start": 315.895, "word": "because" }, { "confidence": 1, "end": 316.29498, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.93310547, "start": 316.135, "word": "we're" }, { "confidence": 1, "end": 316.535, "punctuated_word": "working", "speaker": 0, "speaker_confidence": 0.93310547, "start": 316.29498, "word": "working" }, { "confidence": 0.9980469, "end": 316.695, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.93310547, "start": 316.535, "word": "with" }, { "confidence": 0.7714844, "end": 317.095, "punctuated_word": "vanilla", "speaker": 0, "speaker_confidence": 0.93310547, "start": 316.695, "word": "vanilla" }, { "confidence": 0.8547363, "end": 317.415, "punctuated_word": "JS,", "speaker": 0, "speaker_confidence": 0.93310547, "start": 317.095, "word": "js" }, { "confidence": 1, "end": 317.655, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.93310547, "start": 317.415, "word": "we" }, { "confidence": 1, "end": 317.735, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.93310547, "start": 317.655, "word": "need" }, { "confidence": 0.99902344, "end": 317.895, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 317.735, "word": "to" }, { "confidence": 1, "end": 318.17, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 1, "start": 317.895, "word": "use" }, { "confidence": 0.9753418, "end": 318.65002, "punctuated_word": "Imperative", "speaker": 0, "speaker_confidence": 1, "start": 318.25, "word": "imperative" }, { "confidence": 0.4885254, "end": 319.13, "punctuated_word": "Dom", "speaker": 0, "speaker_confidence": 1, "start": 318.65002, "word": "dom" }, { "confidence": 0.6915283, "end": 319.63, "punctuated_word": "APIs.", "speaker": 0, "speaker_confidence": 1, "start": 319.13, "word": "apis" }, { "confidence": 0.9904785, "end": 319.85, "punctuated_word": "We're", "speaker": 0, "speaker_confidence": 1, "start": 319.69, "word": "we're" }, { "confidence": 0.99902344, "end": 320.25, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 1, "start": 319.85, "word": "using" }, { "confidence": 0.9790039, "end": 320.75, "punctuated_word": "document", "speaker": 0, "speaker_confidence": 1, "start": 320.25, "word": "document" }, { "confidence": 0.6826172, "end": 321.05002, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 1, "start": 320.81003, "word": "get" }, { "confidence": 0.9243164, "end": 321.45, "punctuated_word": "element", "speaker": 0, "speaker_confidence": 1, "start": 321.05002, "word": "element" }, { "confidence": 0.99609375, "end": 321.77002, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 1, "start": 321.45, "word": "by" }, { "confidence": 0.9790039, "end": 322.25, "punctuated_word": "ID", "speaker": 0, "speaker_confidence": 1, "start": 321.77002, "word": "id" }, { "confidence": 0.9970703, "end": 322.49002, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 322.25, "word": "to" }, { "confidence": 1, "end": 322.73, "punctuated_word": "grab", "speaker": 0, "speaker_confidence": 1, "start": 322.49002, "word": "grab" }, { "confidence": 1, "end": 322.81003, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 322.73, "word": "a" }, { "confidence": 1, "end": 322.97, "punctuated_word": "bunch", "speaker": 0, "speaker_confidence": 1, "start": 322.81003, "word": "bunch" }, { "confidence": 1, "end": 323.21002, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 322.97, "word": "of" }, { "confidence": 0.99902344, "end": 323.53, "punctuated_word": "elements", "speaker": 0, "speaker_confidence": 1, "start": 323.21002, "word": "elements" }, { "confidence": 1, "end": 323.69, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 1, "start": 323.53, "word": "from" }, { "confidence": 0.9951172, "end": 323.85, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 323.69, "word": "the" }, { "confidence": 0.78515625, "end": 324.35, "punctuated_word": "HTML,", "speaker": 0, "speaker_confidence": 1, "start": 323.85, "word": "html" }, { "confidence": 1, "end": 325.13, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 324.81003, "word": "like" }, { "confidence": 0.9604492, "end": 325.53, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 1, "start": 325.13, "word": "video" }, { "confidence": 0.9951172, "end": 325.93002, "punctuated_word": "elements", "speaker": 0, "speaker_confidence": 1, "start": 325.53, "word": "elements" }, { "confidence": 0.99902344, "end": 326.265, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 325.93002, "word": "to" }, { "confidence": 0.9589844, "end": 326.505, "punctuated_word": "Show", "speaker": 0, "speaker_confidence": 1, "start": 326.345, "word": "show" }, { "confidence": 0.9980469, "end": 326.665, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 326.505, "word": "the" }, { "confidence": 1, "end": 327.14502, "punctuated_word": "actual", "speaker": 0, "speaker_confidence": 1, "start": 326.665, "word": "actual" }, { "confidence": 1, "end": 327.46503, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 1, "start": 327.14502, "word": "video" }, { "confidence": 1, "end": 327.945, "punctuated_word": "feeds", "speaker": 0, "speaker_confidence": 1, "start": 327.46503, "word": "feeds" }, { "confidence": 0.8588867, "end": 328.18503, "punctuated_word": "along", "speaker": 0, "speaker_confidence": 1, "start": 327.945, "word": "along" }, { "confidence": 1, "end": 328.345, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 328.18503, "word": "with" }, { "confidence": 0.9980469, "end": 328.665, "punctuated_word": "buttons", "speaker": 0, "speaker_confidence": 1, "start": 328.345, "word": "buttons" }, { "confidence": 1, "end": 328.825, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 328.665, "word": "that" }, { "confidence": 1, "end": 329.14502, "punctuated_word": "provide", "speaker": 0, "speaker_confidence": 1, "start": 328.825, "word": "provide" }, { "confidence": 0.99902344, "end": 329.46503, "punctuated_word": "different", "speaker": 0, "speaker_confidence": 1, "start": 329.14502, "word": "different" }, { "confidence": 0.9980469, "end": 329.96503, "punctuated_word": "interaction", "speaker": 0, "speaker_confidence": 1, "start": 329.46503, "word": "interaction" }, { "confidence": 0.99902344, "end": 330.105, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 330.02502, "word": "in" }, { "confidence": 0.99902344, "end": 330.345, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 330.105, "word": "the" }, { "confidence": 0.9975586, "end": 330.845, "punctuated_word": "UI.", "speaker": 0, "speaker_confidence": 1, "start": 330.345, "word": "ui" }, { "confidence": 1, "end": 331.065, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 1, "start": 330.90503, "word": "the" }, { "confidence": 0.9980469, "end": 331.14502, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 1, "start": 331.065, "word": "first" }, { "confidence": 1, "end": 331.385, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 1, "start": 331.14502, "word": "thing" }, { "confidence": 0.8671875, "end": 331.46503, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 331.385, "word": "the" }, { "confidence": 1, "end": 331.70502, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 1, "start": 331.46503, "word": "user" }, { "confidence": 1, "end": 331.945, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 1, "start": 331.70502, "word": "will" }, { "confidence": 1, "end": 332.265, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 1, "start": 331.945, "word": "do" }, { "confidence": 0.99902344, "end": 332.42502, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 332.265, "word": "is" }, { "confidence": 1, "end": 332.665, "punctuated_word": "click", "speaker": 0, "speaker_confidence": 1, "start": 332.42502, "word": "click" }, { "confidence": 1, "end": 332.825, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 332.665, "word": "a" }, { "confidence": 1, "end": 333.325, "punctuated_word": "button", "speaker": 0, "speaker_confidence": 1, "start": 332.825, "word": "button" }, { "confidence": 1, "end": 333.785, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 333.46503, "word": "to" }, { "confidence": 1, "end": 334.105, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 1, "start": 333.785, "word": "open" }, { "confidence": 1, "end": 334.18503, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 1, "start": 334.105, "word": "up" }, { "confidence": 0.99902344, "end": 334.42502, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 1, "start": 334.18503, "word": "their" }, { "confidence": 0.9995117, "end": 334.92502, "punctuated_word": "webcam.", "speaker": 0, "speaker_confidence": 1, "start": 334.42502, "word": "webcam" }, { "confidence": 0.9182129, "end": 335.26, "punctuated_word": "We'll", "speaker": 0, "speaker_confidence": 1, "start": 335.14502, "word": "we'll" }, { "confidence": 0.9797363, "end": 335.42, "punctuated_word": "We'll", "speaker": 0, "speaker_confidence": 1, "start": 335.34, "word": "we'll" }, { "confidence": 1, "end": 335.5, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 1, "start": 335.42, "word": "go" }, { "confidence": 1, "end": 335.66, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 1, "start": 335.5, "word": "ahead" }, { "confidence": 0.9980469, "end": 335.74002, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 335.66, "word": "and" }, { "confidence": 1, "end": 336.22, "punctuated_word": "register", "speaker": 0, "speaker_confidence": 1, "start": 335.74002, "word": "register" }, { "confidence": 0.9902344, "end": 336.38, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 336.22, "word": "an" }, { "confidence": 0.99902344, "end": 336.78, "punctuated_word": "event", "speaker": 0, "speaker_confidence": 1, "start": 336.38, "word": "event" }, { "confidence": 1, "end": 337.1, "punctuated_word": "handler", "speaker": 0, "speaker_confidence": 1, "start": 336.78, "word": "handler" }, { "confidence": 1, "end": 337.34, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 337.1, "word": "for" }, { "confidence": 1, "end": 337.5, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 337.34, "word": "the" }, { "confidence": 0.9921875, "end": 337.74002, "punctuated_word": "click", "speaker": 0, "speaker_confidence": 1, "start": 337.5, "word": "click" }, { "confidence": 0.99902344, "end": 338.06, "punctuated_word": "event", "speaker": 0, "speaker_confidence": 1, "start": 337.74002, "word": "event" }, { "confidence": 1, "end": 338.22, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 1, "start": 338.06, "word": "on" }, { "confidence": 1, "end": 338.46002, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 338.22, "word": "the" }, { "confidence": 0.9980469, "end": 338.86002, "punctuated_word": "webcam", "speaker": 0, "speaker_confidence": 1, "start": 338.46002, "word": "webcam" }, { "confidence": 1, "end": 339.36002, "punctuated_word": "button.", "speaker": 0, "speaker_confidence": 1, "start": 338.86002, "word": "button" }, { "confidence": 0.9995117, "end": 340.06, "punctuated_word": "Obtaining", "speaker": 0, "speaker_confidence": 1, "start": 339.58002, "word": "obtaining" }, { "confidence": 1, "end": 340.22, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 340.06, "word": "a" }, { "confidence": 1, "end": 340.46002, "punctuated_word": "stream", "speaker": 0, "speaker_confidence": 1, "start": 340.22, "word": "stream" }, { "confidence": 1, "end": 340.62, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 1, "start": 340.46002, "word": "from" }, { "confidence": 1, "end": 340.78, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 340.62, "word": "the" }, { "confidence": 0.98217773, "end": 341.1, "punctuated_word": "user's", "speaker": 0, "speaker_confidence": 1, "start": 340.78, "word": "user's" }, { "confidence": 0.99902344, "end": 341.58002, "punctuated_word": "webcam", "speaker": 0, "speaker_confidence": 1, "start": 341.1, "word": "webcam" }, { "confidence": 1, "end": 341.82, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 341.58002, "word": "is" }, { "confidence": 1, "end": 342.14, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 1, "start": 341.82, "word": "very" }, { "confidence": 0.98583984, "end": 342.54, "punctuated_word": "easy.", "speaker": 0, "speaker_confidence": 1, "start": 342.14, "word": "easy" }, { "confidence": 0.99902344, "end": 342.78, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 1, "start": 342.54, "word": "we" }, { "confidence": 0.98828125, "end": 343.02002, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 1, "start": 342.78, "word": "just" }, { "confidence": 0.9980469, "end": 343.5, "punctuated_word": "await", "speaker": 0, "speaker_confidence": 1, "start": 343.02002, "word": "await" }, { "confidence": 0.98535156, "end": 343.82, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 343.5, "word": "the" }, { "confidence": 0.9970703, "end": 344.32, "punctuated_word": "navigator", "speaker": 0, "speaker_confidence": 1, "start": 343.82, "word": "navigator" }, { "confidence": 0.53338623, "end": 345.04, "punctuated_word": "mediatevices", "speaker": 0, "speaker_confidence": 1, "start": 344.54, "word": "mediatevices" }, { "confidence": 0.25830078, "end": 345.695, "punctuated_word": "Is", "speaker": 0, "speaker_confidence": 1, "start": 345.455, "word": "is" }, { "confidence": 0.9482422, "end": 346.095, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 1, "start": 345.695, "word": "get" }, { "confidence": 0.89990234, "end": 346.335, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 1, "start": 346.095, "word": "user" }, { "confidence": 0.9667969, "end": 346.655, "punctuated_word": "media", "speaker": 0, "speaker_confidence": 1, "start": 346.335, "word": "media" }, { "confidence": 0.99902344, "end": 347.155, "punctuated_word": "method", "speaker": 0, "speaker_confidence": 1, "start": 346.655, "word": "method" }, { "confidence": 0.5371094, "end": 347.615, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 347.375, "word": "and" }, { "confidence": 0.6699219, "end": 347.775, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 1, "start": 347.615, "word": "will" }, { "confidence": 0.99902344, "end": 348.01498, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 1, "start": 347.775, "word": "set" }, { "confidence": 0.9970703, "end": 348.415, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 1, "start": 348.01498, "word": "video" }, { "confidence": 0.9970703, "end": 348.735, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 348.415, "word": "and" }, { "confidence": 0.99902344, "end": 349.135, "punctuated_word": "audio", "speaker": 0, "speaker_confidence": 1, "start": 348.735, "word": "audio" }, { "confidence": 1, "end": 349.29498, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 349.135, "word": "to" }, { "confidence": 0.9926758, "end": 349.79498, "punctuated_word": "true.", "speaker": 0, "speaker_confidence": 1, "start": 349.29498, "word": "true" }, { "confidence": 0.93237305, "end": 350.095, "punctuated_word": "That'll", "speaker": 0, "speaker_confidence": 1, "start": 349.855, "word": "that'll" }, { "confidence": 0.99902344, "end": 350.255, "punctuated_word": "bring", "speaker": 0, "speaker_confidence": 1, "start": 350.095, "word": "bring" }, { "confidence": 1, "end": 350.415, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 1, "start": 350.255, "word": "up" }, { "confidence": 1, "end": 350.57498, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 350.415, "word": "a" }, { "confidence": 0.73339844, "end": 350.975, "punctuated_word": "dialogue", "speaker": 0, "speaker_confidence": 1, "start": 350.57498, "word": "dialogue" }, { "confidence": 0.9980469, "end": 351.135, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 350.975, "word": "in" }, { "confidence": 0.97802734, "end": 351.29498, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 351.135, "word": "the" }, { "confidence": 1, "end": 351.775, "punctuated_word": "browser", "speaker": 0, "speaker_confidence": 1, "start": 351.29498, "word": "browser" }, { "confidence": 0.921875, "end": 352.175, "punctuated_word": "asking", "speaker": 0, "speaker_confidence": 1, "start": 351.775, "word": "asking" }, { "confidence": 0.9760742, "end": 352.335, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 352.175, "word": "the" }, { "confidence": 1, "end": 352.655, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 1, "start": 352.335, "word": "user" }, { "confidence": 0.99902344, "end": 352.895, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 352.655, "word": "for" }, { "confidence": 0.99902344, "end": 353.395, "punctuated_word": "permission", "speaker": 0, "speaker_confidence": 1, "start": 352.895, "word": "permission" }, { "confidence": 1, "end": 353.615, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 353.455, "word": "to" }, { "confidence": 0.99902344, "end": 354.01498, "punctuated_word": "access", "speaker": 0, "speaker_confidence": 1, "start": 353.615, "word": "access" }, { "confidence": 0.9970703, "end": 354.175, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 354.01498, "word": "the" }, { "confidence": 0.99853516, "end": 354.675, "punctuated_word": "webcam.", "speaker": 0, "speaker_confidence": 1, "start": 354.175, "word": "webcam" }, { "confidence": 0.99902344, "end": 355.27, "punctuated_word": "That's", "speaker": 0, "speaker_confidence": 1, "start": 355.03, "word": "that's" }, { "confidence": 0.9995117, "end": 355.59, "punctuated_word": "complete,", "speaker": 0, "speaker_confidence": 1, "start": 355.27, "word": "complete" }, { "confidence": 1, "end": 355.83, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 355.59, "word": "the" }, { "confidence": 0.8828125, "end": 356.15, "punctuated_word": "promise", "speaker": 0, "speaker_confidence": 1, "start": 355.83, "word": "promise" }, { "confidence": 0.9980469, "end": 356.38998, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 1, "start": 356.15, "word": "will" }, { "confidence": 0.9980469, "end": 356.79, "punctuated_word": "resolve", "speaker": 0, "speaker_confidence": 1, "start": 356.38998, "word": "resolve" }, { "confidence": 0.99902344, "end": 356.94998, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 356.79, "word": "to" }, { "confidence": 0.99902344, "end": 357.11, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 356.94998, "word": "a" }, { "confidence": 0.8618164, "end": 357.59, "punctuated_word": "media", "speaker": 0, "speaker_confidence": 1, "start": 357.11, "word": "media" }, { "confidence": 0.9980469, "end": 357.91, "punctuated_word": "stream", "speaker": 0, "speaker_confidence": 1, "start": 357.59, "word": "stream" }, { "confidence": 1, "end": 358.41, "punctuated_word": "object.", "speaker": 0, "speaker_confidence": 1, "start": 357.91, "word": "object" }, { "confidence": 1, "end": 358.79, "punctuated_word": "Once", "speaker": 0, "speaker_confidence": 1, "start": 358.63, "word": "once" }, { "confidence": 1, "end": 358.94998, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 1, "start": 358.79, "word": "we" }, { "confidence": 1, "end": 359.11, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 1, "start": 358.94998, "word": "have" }, { "confidence": 1, "end": 359.43, "punctuated_word": "access", "speaker": 0, "speaker_confidence": 1, "start": 359.11, "word": "access" }, { "confidence": 0.99902344, "end": 359.51, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.71484375, "start": 359.43, "word": "to" }, { "confidence": 0.99902344, "end": 359.66998, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.71484375, "start": 359.51, "word": "the" }, { "confidence": 0.9995117, "end": 360.16998, "punctuated_word": "webcam,", "speaker": 0, "speaker_confidence": 0.71484375, "start": 359.66998, "word": "webcam" }, { "confidence": 0.9980469, "end": 360.38998, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.71484375, "start": 360.22998, "word": "we" }, { "confidence": 0.9980469, "end": 360.55, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.71484375, "start": 360.38998, "word": "can" }, { "confidence": 0.9980469, "end": 360.87, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.71484375, "start": 360.55, "word": "also" }, { "confidence": 0.9970703, "end": 360.94998, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.71484375, "start": 360.87, "word": "go" }, { "confidence": 0.9921875, "end": 361.27, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 0.71484375, "start": 360.94998, "word": "ahead" }, { "confidence": 0.9941406, "end": 361.51, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.71484375, "start": 361.27, "word": "and" }, { "confidence": 0.9902344, "end": 361.66998, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.71484375, "start": 361.51, "word": "set" }, { "confidence": 0.9951172, "end": 361.75, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.8652344, "start": 361.66998, "word": "up" }, { "confidence": 0.9790039, "end": 361.91, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8652344, "start": 361.75, "word": "the" }, { "confidence": 0.9980469, "end": 362.41, "punctuated_word": "remote", "speaker": 0, "speaker_confidence": 0.8652344, "start": 361.91, "word": "remote" }, { "confidence": 0.8989258, "end": 362.66498, "punctuated_word": "stream", "speaker": 0, "speaker_confidence": 0.8652344, "start": 362.425, "word": "stream" }, { "confidence": 0.92944336, "end": 363.16498, "punctuated_word": "here,", "speaker": 0, "speaker_confidence": 0.8652344, "start": 362.66498, "word": "here" }, { "confidence": 1, "end": 363.705, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.8652344, "start": 363.38498, "word": "which" }, { "confidence": 0.9921875, "end": 364.025, "punctuated_word": "itself", "speaker": 0, "speaker_confidence": 0.8652344, "start": 363.705, "word": "itself" }, { "confidence": 0.97802734, "end": 364.185, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.8652344, "start": 364.025, "word": "will" }, { "confidence": 0.99902344, "end": 364.345, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.8652344, "start": 364.185, "word": "just" }, { "confidence": 1, "end": 364.50497, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.8652344, "start": 364.345, "word": "be" }, { "confidence": 0.99902344, "end": 364.66498, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.8652344, "start": 364.50497, "word": "an" }, { "confidence": 1, "end": 365.065, "punctuated_word": "empty", "speaker": 0, "speaker_confidence": 0.8652344, "start": 364.66498, "word": "empty" }, { "confidence": 0.99609375, "end": 365.38498, "punctuated_word": "media", "speaker": 0, "speaker_confidence": 0.8652344, "start": 365.065, "word": "media" }, { "confidence": 1, "end": 365.88498, "punctuated_word": "stream.", "speaker": 0, "speaker_confidence": 0.8652344, "start": 365.38498, "word": "stream" }, { "confidence": 1, "end": 366.345, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.8652344, "start": 366.10498, "word": "now" }, { "confidence": 0.93847656, "end": 366.50497, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.8652344, "start": 366.345, "word": "from" }, { "confidence": 0.9980469, "end": 366.745, "punctuated_word": "here,", "speaker": 0, "speaker_confidence": 0.8652344, "start": 366.50497, "word": "here" }, { "confidence": 1, "end": 366.985, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.8652344, "start": 366.745, "word": "we" }, { "confidence": 1, "end": 367.22498, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.8652344, "start": 366.985, "word": "need" }, { "confidence": 1, "end": 367.305, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8652344, "start": 367.22498, "word": "to" }, { "confidence": 1, "end": 367.54498, "punctuated_word": "take", "speaker": 0, "speaker_confidence": 0.8652344, "start": 367.305, "word": "take" }, { "confidence": 1, "end": 367.705, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.8652344, "start": 367.54498, "word": "our" }, { "confidence": 0.79003906, "end": 367.94498, "punctuated_word": "2", "speaker": 0, "speaker_confidence": 0.8652344, "start": 367.705, "word": "2" }, { "confidence": 1, "end": 368.44498, "punctuated_word": "streams", "speaker": 0, "speaker_confidence": 0.8652344, "start": 367.94498, "word": "streams" }, { "confidence": 0.97998047, "end": 368.585, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8652344, "start": 368.50497, "word": "and" }, { "confidence": 1, "end": 368.82498, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.8652344, "start": 368.585, "word": "make" }, { "confidence": 1, "end": 368.985, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.8652344, "start": 368.82498, "word": "them" }, { "confidence": 1, "end": 369.485, "punctuated_word": "available", "speaker": 0, "speaker_confidence": 0.8652344, "start": 368.985, "word": "available" }, { "confidence": 1, "end": 369.625, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8652344, "start": 369.54498, "word": "on" }, { "confidence": 0.9941406, "end": 369.78497, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.94628906, "start": 369.625, "word": "the" }, { "confidence": 0.37841797, "end": 370.025, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 0.94628906, "start": 369.78497, "word": "peer" }, { "confidence": 0.99902344, "end": 370.525, "punctuated_word": "connection", "speaker": 0, "speaker_confidence": 0.94628906, "start": 370.025, "word": "connection" }, { "confidence": 0.9580078, "end": 371.065, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.94628906, "start": 370.82498, "word": "and" }, { "confidence": 1, "end": 371.305, "punctuated_word": "show", "speaker": 0, "speaker_confidence": 0.94628906, "start": 371.065, "word": "show" }, { "confidence": 1, "end": 371.54498, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.94628906, "start": 371.305, "word": "them" }, { "confidence": 1, "end": 371.84, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.94628906, "start": 371.54498, "word": "on" }, { "confidence": 0.9716797, "end": 372.24, "punctuated_word": "Video", "speaker": 0, "speaker_confidence": 0.94628906, "start": 371.91998, "word": "video" }, { "confidence": 0.9970703, "end": 372.56, "punctuated_word": "elements", "speaker": 0, "speaker_confidence": 0.94628906, "start": 372.24, "word": "elements" }, { "confidence": 0.9980469, "end": 372.72, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.94628906, "start": 372.56, "word": "in" }, { "confidence": 0.99902344, "end": 372.8, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.94628906, "start": 372.72, "word": "the" }, { "confidence": 0.95751953, "end": 373.3, "punctuated_word": "DOM.", "speaker": 0, "speaker_confidence": 0.94628906, "start": 372.8, "word": "dom" }, { "confidence": 1, "end": 373.6, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.94628906, "start": 373.36, "word": "the" }, { "confidence": 0.9980469, "end": 373.91998, "punctuated_word": "local", "speaker": 0, "speaker_confidence": 0.94628906, "start": 373.6, "word": "local" }, { "confidence": 1, "end": 374.24, "punctuated_word": "stream", "speaker": 0, "speaker_confidence": 0.94628906, "start": 373.91998, "word": "stream" }, { "confidence": 1, "end": 374.48, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.94628906, "start": 374.24, "word": "is" }, { "confidence": 1, "end": 374.8, "punctuated_word": "already", "speaker": 0, "speaker_confidence": 0.94628906, "start": 374.48, "word": "already" }, { "confidence": 1, "end": 375.12, "punctuated_word": "running", "speaker": 0, "speaker_confidence": 0.94628906, "start": 374.8, "word": "running" }, { "confidence": 0.9980469, "end": 375.36, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0.94628906, "start": 375.12, "word": "here" }, { "confidence": 0.9980469, "end": 375.44, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.94628906, "start": 375.36, "word": "in" }, { "confidence": 0.99902344, "end": 375.6, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.94628906, "start": 375.44, "word": "the" }, { "confidence": 0.90722656, "end": 376.1, "punctuated_word": "browser,", "speaker": 0, "speaker_confidence": 0.94628906, "start": 375.6, "word": "browser" }, { "confidence": 1, "end": 376.32, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.94628906, "start": 376.16, "word": "so" }, { "confidence": 0.99902344, "end": 376.48, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.94628906, "start": 376.32, "word": "we" }, { "confidence": 1, "end": 376.63998, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.94628906, "start": 376.48, "word": "can" }, { "confidence": 1, "end": 376.8, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.94628906, "start": 376.63998, "word": "get" }, { "confidence": 0.9892578, "end": 376.96, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.94628906, "start": 376.8, "word": "its" }, { "confidence": 0.99902344, "end": 377.46, "punctuated_word": "tracks", "speaker": 0, "speaker_confidence": 0.94628906, "start": 376.96, "word": "tracks" }, { "confidence": 0.8911133, "end": 377.76, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.94628906, "start": 377.6, "word": "and" }, { "confidence": 0.99902344, "end": 377.91998, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.94628906, "start": 377.76, "word": "then" }, { "confidence": 1, "end": 378.24, "punctuated_word": "loop", "speaker": 0, "speaker_confidence": 0.94628906, "start": 377.91998, "word": "loop" }, { "confidence": 1, "end": 378.4, "punctuated_word": "over", "speaker": 0, "speaker_confidence": 0.94628906, "start": 378.24, "word": "over" }, { "confidence": 0.7717285, "end": 378.885, "punctuated_word": "them.", "speaker": 0, "speaker_confidence": 0.94628906, "start": 378.4, "word": "them" }, { "confidence": 0.99902344, "end": 379.36502, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.94628906, "start": 379.125, "word": "and" }, { "confidence": 0.96435547, "end": 379.445, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.94628906, "start": 379.36502, "word": "for" }, { "confidence": 0.99902344, "end": 379.765, "punctuated_word": "each", "speaker": 0, "speaker_confidence": 0.94628906, "start": 379.445, "word": "each" }, { "confidence": 0.9909668, "end": 380.265, "punctuated_word": "track,", "speaker": 0, "speaker_confidence": 0.94628906, "start": 379.765, "word": "track" }, { "confidence": 0.99609375, "end": 380.48502, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.94628906, "start": 380.325, "word": "we'll" }, { "confidence": 0.99902344, "end": 380.725, "punctuated_word": "call", "speaker": 0, "speaker_confidence": 0.94628906, "start": 380.48502, "word": "call" }, { "confidence": 0.54833984, "end": 380.965, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 0.94628906, "start": 380.725, "word": "peer" }, { "confidence": 0.99316406, "end": 381.465, "punctuated_word": "connection", "speaker": 0, "speaker_confidence": 0.94628906, "start": 380.965, "word": "connection" }, { "confidence": 0.7397461, "end": 381.845, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.94628906, "start": 381.52502, "word": "add" }, { "confidence": 0.96972656, "end": 382.345, "punctuated_word": "track", "speaker": 0, "speaker_confidence": 0.94628906, "start": 381.845, "word": "track" }, { "confidence": 0.90234375, "end": 382.80502, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.94628906, "start": 382.565, "word": "with" }, { "confidence": 0.9980469, "end": 383.045, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.94628906, "start": 382.80502, "word": "that" }, { "confidence": 0.9970703, "end": 383.285, "punctuated_word": "track", "speaker": 0, "speaker_confidence": 0.94628906, "start": 383.045, "word": "track" }, { "confidence": 0.52978516, "end": 383.445, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.94628906, "start": 383.285, "word": "in" }, { "confidence": 0.9873047, "end": 383.605, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.94628906, "start": 383.445, "word": "the" }, { "confidence": 1, "end": 383.92502, "punctuated_word": "local", "speaker": 0, "speaker_confidence": 0.94628906, "start": 383.605, "word": "local" }, { "confidence": 1, "end": 384.405, "punctuated_word": "stream.", "speaker": 0, "speaker_confidence": 0.94628906, "start": 383.92502, "word": "stream" }, { "confidence": 0.9951172, "end": 384.64502, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.94628906, "start": 384.405, "word": "now" }, { "confidence": 0.50341797, "end": 384.80502, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.94628906, "start": 384.64502, "word": "the" }, { "confidence": 1, "end": 385.125, "punctuated_word": "remote", "speaker": 0, "speaker_confidence": 0.94628906, "start": 384.80502, "word": "remote" }, { "confidence": 0.99902344, "end": 385.445, "punctuated_word": "stream", "speaker": 0, "speaker_confidence": 0.94628906, "start": 385.125, "word": "stream" }, { "confidence": 0.9760742, "end": 385.605, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.94628906, "start": 385.445, "word": "is" }, { "confidence": 0.8388672, "end": 385.9, "punctuated_word": "currently", "speaker": 0, "speaker_confidence": 0.94628906, "start": 385.605, "word": "currently" }, { "confidence": 0.99316406, "end": 386.38, "punctuated_word": "empty", "speaker": 0, "speaker_confidence": 0.94628906, "start": 386.13998, "word": "empty" }, { "confidence": 0.72558594, "end": 386.69998, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.94628906, "start": 386.38, "word": "and" }, { "confidence": 0.9951172, "end": 386.78, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.94628906, "start": 386.69998, "word": "it" }, { "confidence": 0.99902344, "end": 386.94, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.94628906, "start": 386.78, "word": "will" }, { "confidence": 0.99902344, "end": 387.1, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.94628906, "start": 386.94, "word": "be" }, { "confidence": 1, "end": 387.58, "punctuated_word": "updated", "speaker": 0, "speaker_confidence": 0.94628906, "start": 387.1, "word": "updated" }, { "confidence": 1, "end": 387.74, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.94628906, "start": 387.58, "word": "by" }, { "confidence": 1, "end": 387.82, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6328125, "start": 387.74, "word": "the" }, { "confidence": 0.9838867, "end": 388.06, "punctuated_word": "Pure", "speaker": 0, "speaker_confidence": 0.6328125, "start": 387.82, "word": "pure" }, { "confidence": 0.7578125, "end": 388.46, "punctuated_word": "connection", "speaker": 0, "speaker_confidence": 0.6328125, "start": 388.06, "word": "connection" }, { "confidence": 0.9880371, "end": 388.96, "punctuated_word": "itself.", "speaker": 0, "speaker_confidence": 0.6328125, "start": 388.46, "word": "itself" }, { "confidence": 1, "end": 389.34, "punctuated_word": "So", "speaker": 0, "speaker_confidence": 0.6328125, "start": 389.1, "word": "so" }, { "confidence": 0.99316406, "end": 389.5, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.6328125, "start": 389.34, "word": "what" }, { "confidence": 1, "end": 389.58, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.7763672, "start": 389.5, "word": "we" }, { "confidence": 1, "end": 389.74, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7763672, "start": 389.58, "word": "can" }, { "confidence": 1, "end": 390.13998, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.7763672, "start": 389.74, "word": "do" }, { "confidence": 0.9970703, "end": 390.38, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7763672, "start": 390.13998, "word": "is" }, { "confidence": 1, "end": 390.69998, "punctuated_word": "listen", "speaker": 0, "speaker_confidence": 0.7763672, "start": 390.38, "word": "listen" }, { "confidence": 1, "end": 390.86, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7763672, "start": 390.69998, "word": "to" }, { "confidence": 1, "end": 391.02, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7763672, "start": 390.86, "word": "the" }, { "confidence": 0.97265625, "end": 391.25998, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.7763672, "start": 391.02, "word": "on" }, { "confidence": 0.9980469, "end": 391.58, "punctuated_word": "track", "speaker": 0, "speaker_confidence": 0.7763672, "start": 391.25998, "word": "track" }, { "confidence": 0.99902344, "end": 391.97998, "punctuated_word": "event", "speaker": 0, "speaker_confidence": 0.7763672, "start": 391.58, "word": "event" }, { "confidence": 1, "end": 392.06, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.7714844, "start": 391.97998, "word": "on" }, { "confidence": 1, "end": 392.3, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7714844, "start": 392.06, "word": "the" }, { "confidence": 0.99121094, "end": 392.54, "punctuated_word": "Pure", "speaker": 0, "speaker_confidence": 0.7714844, "start": 392.3, "word": "pure" }, { "confidence": 0.9213867, "end": 393.04, "punctuated_word": "connection,", "speaker": 0, "speaker_confidence": 0.7714844, "start": 392.54, "word": "connection" }, { "confidence": 0.99902344, "end": 393.41998, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.7714844, "start": 393.18, "word": "then" }, { "confidence": 0.99902344, "end": 393.58, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.7714844, "start": 393.41998, "word": "get" }, { "confidence": 1, "end": 393.74, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7714844, "start": 393.58, "word": "the" }, { "confidence": 1, "end": 394.06, "punctuated_word": "tracks", "speaker": 0, "speaker_confidence": 0.7714844, "start": 393.74, "word": "tracks" }, { "confidence": 1, "end": 394.3, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.7714844, "start": 394.06, "word": "from" }, { "confidence": 1, "end": 394.46, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7714844, "start": 394.3, "word": "the" }, { "confidence": 0.99560547, "end": 394.955, "punctuated_word": "stream,", "speaker": 0, "speaker_confidence": 0.7714844, "start": 394.46, "word": "stream" }, { "confidence": 0.9873047, "end": 395.35498, "punctuated_word": "Loop", "speaker": 0, "speaker_confidence": 0.7714844, "start": 395.03497, "word": "loop" }, { "confidence": 0.99902344, "end": 395.85498, "punctuated_word": "over", "speaker": 0, "speaker_confidence": 0.7714844, "start": 395.35498, "word": "over" }, { "confidence": 0.9980469, "end": 396.155, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.66796875, "start": 396.07498, "word": "them" }, { "confidence": 0.96240234, "end": 396.395, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.66796875, "start": 396.155, "word": "and" }, { "confidence": 1, "end": 396.555, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.66796875, "start": 396.395, "word": "add" }, { "confidence": 1, "end": 396.875, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.66796875, "start": 396.555, "word": "them" }, { "confidence": 1, "end": 397.03497, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.66796875, "start": 396.875, "word": "to" }, { "confidence": 1, "end": 397.275, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.66796875, "start": 397.03497, "word": "the" }, { "confidence": 1, "end": 397.595, "punctuated_word": "remote", "speaker": 0, "speaker_confidence": 0.66796875, "start": 397.275, "word": "remote" }, { "confidence": 1, "end": 397.91498, "punctuated_word": "stream", "speaker": 0, "speaker_confidence": 0.66796875, "start": 397.595, "word": "stream" }, { "confidence": 1, "end": 398.07498, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.66796875, "start": 397.91498, "word": "when" }, { "confidence": 1, "end": 398.155, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.96972656, "start": 398.07498, "word": "they" }, { "confidence": 1, "end": 398.395, "punctuated_word": "come", "speaker": 0, "speaker_confidence": 0.96972656, "start": 398.155, "word": "come" }, { "confidence": 1, "end": 398.875, "punctuated_word": "in.", "speaker": 0, "speaker_confidence": 0.96972656, "start": 398.395, "word": "in" }, { "confidence": 0.87768555, "end": 399.03497, "punctuated_word": "Now,", "speaker": 0, "speaker_confidence": 0.96972656, "start": 398.875, "word": "now" }, { "confidence": 1, "end": 399.19498, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.96972656, "start": 399.03497, "word": "the" }, { "confidence": 1, "end": 399.435, "punctuated_word": "final", "speaker": 0, "speaker_confidence": 0.96972656, "start": 399.19498, "word": "final" }, { "confidence": 1, "end": 399.675, "punctuated_word": "step", "speaker": 0, "speaker_confidence": 0.96972656, "start": 399.435, "word": "step" }, { "confidence": 0.99902344, "end": 399.91498, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.96972656, "start": 399.675, "word": "for" }, { "confidence": 0.99902344, "end": 400.31497, "punctuated_word": "managing", "speaker": 0, "speaker_confidence": 0.96972656, "start": 399.91498, "word": "managing" }, { "confidence": 1, "end": 400.47498, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.96972656, "start": 400.31497, "word": "our" }, { "confidence": 1, "end": 400.97498, "punctuated_word": "streams", "speaker": 0, "speaker_confidence": 0.96972656, "start": 400.47498, "word": "streams" }, { "confidence": 0.9980469, "end": 401.275, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.96972656, "start": 401.03497, "word": "is" }, { "confidence": 1, "end": 401.435, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.96972656, "start": 401.275, "word": "to" }, { "confidence": 1, "end": 401.675, "punctuated_word": "apply", "speaker": 0, "speaker_confidence": 0.96972656, "start": 401.435, "word": "apply" }, { "confidence": 1, "end": 401.97, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.96972656, "start": 401.675, "word": "them" }, { "confidence": 0.95166016, "end": 402.21, "punctuated_word": "To", "speaker": 0, "speaker_confidence": 0.96972656, "start": 402.05, "word": "to" }, { "confidence": 0.99902344, "end": 402.45, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.96972656, "start": 402.21, "word": "video" }, { "confidence": 0.99902344, "end": 402.85, "punctuated_word": "elements", "speaker": 0, "speaker_confidence": 0.96972656, "start": 402.45, "word": "elements" }, { "confidence": 0.9980469, "end": 403.01, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.96972656, "start": 402.85, "word": "in" }, { "confidence": 0.9921875, "end": 403.09, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.96972656, "start": 403.01, "word": "the" }, { "confidence": 0.7319336, "end": 403.49, "punctuated_word": "DOM.", "speaker": 0, "speaker_confidence": 0.96972656, "start": 403.09, "word": "dom" }, { "confidence": 1, "end": 403.65, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.96972656, "start": 403.49, "word": "we" }, { "confidence": 1, "end": 403.81, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.96972656, "start": 403.65, "word": "can" }, { "confidence": 1, "end": 403.89, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.96972656, "start": 403.81, "word": "do" }, { "confidence": 1, "end": 404.13, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.96972656, "start": 403.89, "word": "that" }, { "confidence": 1, "end": 404.29, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.96972656, "start": 404.13, "word": "by" }, { "confidence": 1, "end": 404.69, "punctuated_word": "simply", "speaker": 0, "speaker_confidence": 0.96972656, "start": 404.29, "word": "simply" }, { "confidence": 1, "end": 405.09, "punctuated_word": "calling", "speaker": 0, "speaker_confidence": 0.96972656, "start": 404.69, "word": "calling" }, { "confidence": 1, "end": 405.33, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.96972656, "start": 405.09, "word": "the" }, { "confidence": 0.9980469, "end": 405.73, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.96972656, "start": 405.33, "word": "video" }, { "confidence": 0.9902344, "end": 406.13, "punctuated_word": "element", "speaker": 0, "speaker_confidence": 0.96972656, "start": 405.73, "word": "element" }, { "confidence": 0.9921875, "end": 406.45, "punctuated_word": "source", "speaker": 0, "speaker_confidence": 0.96972656, "start": 406.13, "word": "source" }, { "confidence": 1, "end": 406.95, "punctuated_word": "object", "speaker": 0, "speaker_confidence": 0.96972656, "start": 406.45, "word": "object" }, { "confidence": 0.98828125, "end": 407.17, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.96972656, "start": 407.01, "word": "and" }, { "confidence": 0.99902344, "end": 407.49, "punctuated_word": "setting", "speaker": 0, "speaker_confidence": 0.96972656, "start": 407.17, "word": "setting" }, { "confidence": 0.99609375, "end": 407.73, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.96972656, "start": 407.49, "word": "it" }, { "confidence": 1, "end": 408.23, "punctuated_word": "equal", "speaker": 0, "speaker_confidence": 0.96972656, "start": 407.73, "word": "equal" }, { "confidence": 1, "end": 408.45, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.96972656, "start": 408.29, "word": "to" }, { "confidence": 0.9902344, "end": 408.69, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.96972656, "start": 408.45, "word": "the" }, { "confidence": 0.9995117, "end": 409.19, "punctuated_word": "stream.", "speaker": 0, "speaker_confidence": 0.96972656, "start": 408.69, "word": "stream" }, { "confidence": 0.99902344, "end": 409.57, "punctuated_word": "At", "speaker": 0, "speaker_confidence": 0.96972656, "start": 409.41, "word": "at" }, { "confidence": 1, "end": 409.73, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.96972656, "start": 409.57, "word": "this" }, { "confidence": 0.99902344, "end": 409.97, "punctuated_word": "point,", "speaker": 0, "speaker_confidence": 0.96972656, "start": 409.73, "word": "point" }, { "confidence": 0.9980469, "end": 410.13, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.96972656, "start": 409.97, "word": "we" }, { "confidence": 0.99609375, "end": 410.29, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.96972656, "start": 410.13, "word": "have" }, { "confidence": 0.9892578, "end": 410.37, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.96972656, "start": 410.29, "word": "a" }, { "confidence": 0.99609375, "end": 410.635, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 0.96972656, "start": 410.37, "word": "way" }, { "confidence": 0.58496094, "end": 410.795, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.96972656, "start": 410.715, "word": "to" }, { "confidence": 0.99902344, "end": 410.95502, "punctuated_word": "manage", "speaker": 0, "speaker_confidence": 0.8173828, "start": 410.795, "word": "manage" }, { "confidence": 0.9951172, "end": 411.11502, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8173828, "start": 410.95502, "word": "a" }, { "confidence": 1, "end": 411.595, "punctuated_word": "local", "speaker": 0, "speaker_confidence": 0.8173828, "start": 411.11502, "word": "local" }, { "confidence": 1, "end": 411.83502, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8173828, "start": 411.595, "word": "and" }, { "confidence": 1, "end": 412.23502, "punctuated_word": "remote", "speaker": 0, "speaker_confidence": 0.8173828, "start": 411.83502, "word": "remote" }, { "confidence": 1, "end": 412.475, "punctuated_word": "stream", "speaker": 0, "speaker_confidence": 0.8173828, "start": 412.23502, "word": "stream" }, { "confidence": 0.99902344, "end": 412.635, "punctuated_word": "through", "speaker": 0, "speaker_confidence": 0.8173828, "start": 412.475, "word": "through" }, { "confidence": 0.9941406, "end": 412.795, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8173828, "start": 412.635, "word": "the" }, { "confidence": 0.8041992, "end": 413.035, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 0.8173828, "start": 412.795, "word": "peer" }, { "confidence": 0.9399414, "end": 413.535, "punctuated_word": "connection.", "speaker": 0, "speaker_confidence": 0.8173828, "start": 413.035, "word": "connection" }, { "confidence": 0.99609375, "end": 413.83502, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.8173828, "start": 413.67502, "word": "but" }, { "confidence": 0.9941406, "end": 413.995, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8173828, "start": 413.83502, "word": "in" }, { "confidence": 1, "end": 414.23502, "punctuated_word": "order", "speaker": 0, "speaker_confidence": 0.8173828, "start": 413.995, "word": "order" }, { "confidence": 0.9970703, "end": 414.39502, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8173828, "start": 414.23502, "word": "to" }, { "confidence": 0.99902344, "end": 414.55502, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.8173828, "start": 414.39502, "word": "make" }, { "confidence": 0.99902344, "end": 414.715, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8173828, "start": 414.55502, "word": "that" }, { "confidence": 0.9995117, "end": 415.11502, "punctuated_word": "happen,", "speaker": 0, "speaker_confidence": 0.8173828, "start": 414.715, "word": "happen" }, { "confidence": 0.9951172, "end": 415.355, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.8173828, "start": 415.11502, "word": "we" }, { "confidence": 0.99902344, "end": 415.515, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.8173828, "start": 415.355, "word": "need" }, { "confidence": 0.9980469, "end": 415.595, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8173828, "start": 415.515, "word": "to" }, { "confidence": 0.99902344, "end": 415.755, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.92871094, "start": 415.595, "word": "do" }, { "confidence": 0.99609375, "end": 415.915, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.92871094, "start": 415.755, "word": "some" }, { "confidence": 0.9863281, "end": 416.39502, "punctuated_word": "signaling", "speaker": 0, "speaker_confidence": 0.92871094, "start": 415.915, "word": "signaling" }, { "confidence": 0.98291016, "end": 416.55502, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.92871094, "start": 416.39502, "word": "with" }, { "confidence": 0.9930013, "end": 417.05502, "punctuated_word": "Firestore.", "speaker": 0, "speaker_confidence": 0.92871094, "start": 416.55502, "word": "firestore" }, { "confidence": 0.7529297, "end": 417.71, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.92871094, "start": 417.435, "word": "the" }, { "confidence": 0.9980469, "end": 418.11, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 0.92871094, "start": 417.78998, "word": "user" }, { "confidence": 0.9980469, "end": 418.19, "punctuated_word": "who", "speaker": 0, "speaker_confidence": 0.92871094, "start": 418.11, "word": "who" }, { "confidence": 1, "end": 418.43, "punctuated_word": "starts", "speaker": 0, "speaker_confidence": 0.92871094, "start": 418.19, "word": "starts" }, { "confidence": 0.9819336, "end": 418.50998, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.92871094, "start": 418.43, "word": "a" }, { "confidence": 1, "end": 418.75, "punctuated_word": "call", "speaker": 0, "speaker_confidence": 0.92871094, "start": 418.50998, "word": "call" }, { "confidence": 0.99902344, "end": 418.91, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.92871094, "start": 418.75, "word": "is" }, { "confidence": 1, "end": 419.06998, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.92871094, "start": 418.91, "word": "the" }, { "confidence": 0.9892578, "end": 419.22998, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.92871094, "start": 419.06998, "word": "one" }, { "confidence": 1, "end": 419.38998, "punctuated_word": "who", "speaker": 0, "speaker_confidence": 0.92871094, "start": 419.22998, "word": "who" }, { "confidence": 1, "end": 419.63, "punctuated_word": "makes", "speaker": 0, "speaker_confidence": 0.92871094, "start": 419.38998, "word": "makes" }, { "confidence": 1, "end": 419.87, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.92871094, "start": 419.63, "word": "an" }, { "confidence": 1, "end": 420.35, "punctuated_word": "offer.", "speaker": 0, "speaker_confidence": 0.92871094, "start": 419.87, "word": "offer" }, { "confidence": 1, "end": 420.50998, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.92871094, "start": 420.35, "word": "we" }, { "confidence": 1, "end": 420.66998, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.92871094, "start": 420.50998, "word": "have" }, { "confidence": 1, "end": 420.83, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.92871094, "start": 420.66998, "word": "a" }, { "confidence": 0.99121094, "end": 420.99, "punctuated_word": "call", "speaker": 0, "speaker_confidence": 0.92871094, "start": 420.83, "word": "call" }, { "confidence": 1, "end": 421.31, "punctuated_word": "button", "speaker": 0, "speaker_confidence": 0.92871094, "start": 420.99, "word": "button" }, { "confidence": 0.984375, "end": 421.47, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.92871094, "start": 421.31, "word": "in" }, { "confidence": 0.9980469, "end": 421.63, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.92871094, "start": 421.47, "word": "the" }, { "confidence": 0.79003906, "end": 421.94998, "punctuated_word": "DOM", "speaker": 0, "speaker_confidence": 0.92871094, "start": 421.63, "word": "dom" }, { "confidence": 0.99902344, "end": 422.19, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.92871094, "start": 421.94998, "word": "to" }, { "confidence": 1, "end": 422.50998, "punctuated_word": "handle", "speaker": 0, "speaker_confidence": 0.92871094, "start": 422.19, "word": "handle" }, { "confidence": 1, "end": 422.66998, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.92871094, "start": 422.50998, "word": "that" }, { "confidence": 1, "end": 423.16998, "punctuated_word": "functionality", "speaker": 0, "speaker_confidence": 0.92871094, "start": 422.66998, "word": "functionality" }, { "confidence": 0.9980469, "end": 423.71, "punctuated_word": "inside", "speaker": 0, "speaker_confidence": 0.92871094, "start": 423.38998, "word": "inside" }, { "confidence": 0.99902344, "end": 424.03, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.92871094, "start": 423.71, "word": "this" }, { "confidence": 0.96777344, "end": 424.43, "punctuated_word": "async", "speaker": 0, "speaker_confidence": 0.92871094, "start": 424.03, "word": "async" }, { "confidence": 0.99902344, "end": 424.75, "punctuated_word": "function", "speaker": 0, "speaker_confidence": 0.92871094, "start": 424.43, "word": "function" }, { "confidence": 0.9980469, "end": 425.25, "punctuated_word": "here.", "speaker": 0, "speaker_confidence": 0.92871094, "start": 424.75, "word": "here" }, { "confidence": 1, "end": 425.45502, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 1, "start": 425.375, "word": "we" }, { "confidence": 1, "end": 425.695, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 1, "start": 425.45502, "word": "have" }, { "confidence": 0.99902344, "end": 425.77502, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 425.695, "word": "a" }, { "confidence": 0.98291016, "end": 426.17502, "punctuated_word": "call", "speaker": 0, "speaker_confidence": 1, "start": 425.77502, "word": "call" }, { "confidence": 0.96118164, "end": 426.575, "punctuated_word": "document,", "speaker": 0, "speaker_confidence": 1, "start": 426.17502, "word": "document" }, { "confidence": 1, "end": 426.815, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 1, "start": 426.575, "word": "which" }, { "confidence": 1, "end": 426.975, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 426.815, "word": "is" }, { "confidence": 1, "end": 427.135, "punctuated_word": "used", "speaker": 0, "speaker_confidence": 1, "start": 426.975, "word": "used" }, { "confidence": 0.99902344, "end": 427.21503, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 427.135, "word": "to" }, { "confidence": 1, "end": 427.61502, "punctuated_word": "manage", "speaker": 0, "speaker_confidence": 1, "start": 427.21503, "word": "manage" }, { "confidence": 0.9980469, "end": 427.77502, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 427.61502, "word": "the" }, { "confidence": 0.9892578, "end": 428.095, "punctuated_word": "answer", "speaker": 0, "speaker_confidence": 1, "start": 427.77502, "word": "answer" }, { "confidence": 1, "end": 428.415, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 428.095, "word": "and" }, { "confidence": 0.9902344, "end": 428.73502, "punctuated_word": "offer", "speaker": 0, "speaker_confidence": 1, "start": 428.415, "word": "offer" }, { "confidence": 1, "end": 428.975, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 1, "start": 428.73502, "word": "from" }, { "confidence": 1, "end": 429.21503, "punctuated_word": "both", "speaker": 0, "speaker_confidence": 1, "start": 428.975, "word": "both" }, { "confidence": 0.9304199, "end": 429.71503, "punctuated_word": "users.", "speaker": 0, "speaker_confidence": 1, "start": 429.21503, "word": "users" }, { "confidence": 0.99121094, "end": 430.415, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 1, "start": 430.17502, "word": "then" }, { "confidence": 0.90771484, "end": 430.49503, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 1, "start": 430.415, "word": "we" }, { "confidence": 0.9902344, "end": 430.73502, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 1, "start": 430.49503, "word": "have" }, { "confidence": 0.9394531, "end": 431.05502, "punctuated_word": "offer", "speaker": 0, "speaker_confidence": 1, "start": 430.73502, "word": "offer" }, { "confidence": 0.93115234, "end": 431.55502, "punctuated_word": "candidates", "speaker": 0, "speaker_confidence": 1, "start": 431.05502, "word": "candidates" }, { "confidence": 0.99121094, "end": 431.93503, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 431.61502, "word": "and" }, { "confidence": 0.99902344, "end": 432.33502, "punctuated_word": "answer", "speaker": 0, "speaker_confidence": 1, "start": 431.93503, "word": "answer" }, { "confidence": 0.9926758, "end": 432.83502, "punctuated_word": "candidates,", "speaker": 0, "speaker_confidence": 1, "start": 432.33502, "word": "candidates" }, { "confidence": 0.9902344, "end": 433.21503, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 1, "start": 432.975, "word": "which" }, { "confidence": 0.9863281, "end": 433.45502, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 1, "start": 433.21503, "word": "are" }, { "confidence": 0.90934247, "end": 433.95502, "punctuated_word": "subcollections", "speaker": 0, "speaker_confidence": 1, "start": 433.45502, "word": "subcollections" }, { "confidence": 0.93359375, "end": 434.415, "punctuated_word": "under", "speaker": 0, "speaker_confidence": 1, "start": 434.17502, "word": "under" }, { "confidence": 0.50341797, "end": 434.575, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 434.415, "word": "that" }, { "confidence": 0.77001953, "end": 434.83, "punctuated_word": "document", "speaker": 0, "speaker_confidence": 1, "start": 434.575, "word": "document" }, { "confidence": 0.84814453, "end": 435.38998, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 435.22998, "word": "that" }, { "confidence": 0.9760742, "end": 435.78998, "punctuated_word": "contain", "speaker": 0, "speaker_confidence": 1, "start": 435.38998, "word": "contain" }, { "confidence": 0.99902344, "end": 436.03, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 1, "start": 435.78998, "word": "all" }, { "confidence": 0.71484375, "end": 436.27, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 436.03, "word": "the" }, { "confidence": 1, "end": 436.77, "punctuated_word": "candidates", "speaker": 0, "speaker_confidence": 1, "start": 436.27, "word": "candidates" }, { "confidence": 1, "end": 436.99, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 436.83, "word": "for" }, { "confidence": 1, "end": 437.22998, "punctuated_word": "each", "speaker": 0, "speaker_confidence": 1, "start": 436.99, "word": "each" }, { "confidence": 1, "end": 437.31, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 437.22998, "word": "of" }, { "confidence": 1, "end": 437.55, "punctuated_word": "those", "speaker": 0, "speaker_confidence": 1, "start": 437.31, "word": "those" }, { "confidence": 1, "end": 438.05, "punctuated_word": "users.", "speaker": 0, "speaker_confidence": 1, "start": 437.55, "word": "users" }, { "confidence": 1, "end": 438.75, "punctuated_word": "When", "speaker": 0, "speaker_confidence": 1, "start": 438.59, "word": "when" }, { "confidence": 1, "end": 438.90997, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 1, "start": 438.75, "word": "we" }, { "confidence": 1, "end": 439.22998, "punctuated_word": "reference", "speaker": 0, "speaker_confidence": 1, "start": 438.90997, "word": "reference" }, { "confidence": 0.98828125, "end": 439.31, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 439.22998, "word": "a" }, { "confidence": 1, "end": 439.71, "punctuated_word": "document", "speaker": 0, "speaker_confidence": 1, "start": 439.31, "word": "document" }, { "confidence": 1, "end": 440.03, "punctuated_word": "without", "speaker": 0, "speaker_confidence": 1, "start": 439.71, "word": "without" }, { "confidence": 1, "end": 440.18997, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 440.03, "word": "an" }, { "confidence": 0.9995117, "end": 440.68997, "punctuated_word": "ID,", "speaker": 0, "speaker_confidence": 1, "start": 440.18997, "word": "id" }, { "confidence": 0.99853516, "end": 441.22998, "punctuated_word": "Firebase", "speaker": 0, "speaker_confidence": 1, "start": 440.75, "word": "firebase" }, { "confidence": 1, "end": 441.47, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 1, "start": 441.22998, "word": "will" }, { "confidence": 1, "end": 441.97, "punctuated_word": "automatically", "speaker": 0, "speaker_confidence": 1, "start": 441.47, "word": "automatically" }, { "confidence": 1, "end": 442.50998, "punctuated_word": "generate", "speaker": 0, "speaker_confidence": 1, "start": 442.11, "word": "generate" }, { "confidence": 1, "end": 442.75, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 442.50998, "word": "a" }, { "confidence": 1, "end": 443.15, "punctuated_word": "random", "speaker": 0, "speaker_confidence": 1, "start": 442.75, "word": "random" }, { "confidence": 0.99902344, "end": 443.46997, "punctuated_word": "ID", "speaker": 0, "speaker_confidence": 1, "start": 443.15, "word": "id" }, { "confidence": 1, "end": 443.71, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 443.46997, "word": "for" }, { "confidence": 0.8527832, "end": 444.065, "punctuated_word": "us.", "speaker": 0, "speaker_confidence": 1, "start": 443.71, "word": "us" }, { "confidence": 1, "end": 444.225, "punctuated_word": "So", "speaker": 0, "speaker_confidence": 1, "start": 444.145, "word": "so" }, { "confidence": 0.89331055, "end": 444.385, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 1, "start": 444.225, "word": "we'll" }, { "confidence": 1, "end": 444.465, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 1, "start": 444.385, "word": "go" }, { "confidence": 1, "end": 444.625, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 0.76171875, "start": 444.465, "word": "ahead" }, { "confidence": 0.9980469, "end": 444.785, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.76171875, "start": 444.625, "word": "and" }, { "confidence": 1, "end": 445.025, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.76171875, "start": 444.785, "word": "use" }, { "confidence": 1, "end": 445.265, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.76171875, "start": 445.025, "word": "that" }, { "confidence": 0.99902344, "end": 445.505, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.76171875, "start": 445.265, "word": "to" }, { "confidence": 1, "end": 445.98502, "punctuated_word": "populate", "speaker": 0, "speaker_confidence": 0.76171875, "start": 445.505, "word": "populate" }, { "confidence": 0.9770508, "end": 446.225, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.76171875, "start": 445.98502, "word": "an" }, { "confidence": 0.99902344, "end": 446.625, "punctuated_word": "input", "speaker": 0, "speaker_confidence": 0.76171875, "start": 446.225, "word": "input" }, { "confidence": 1, "end": 446.70502, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.76171875, "start": 446.625, "word": "in" }, { "confidence": 0.9980469, "end": 446.865, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.89941406, "start": 446.70502, "word": "the" }, { "confidence": 0.920166, "end": 447.365, "punctuated_word": "UI,", "speaker": 0, "speaker_confidence": 0.89941406, "start": 446.865, "word": "ui" }, { "confidence": 1, "end": 447.665, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.89941406, "start": 447.505, "word": "which" }, { "confidence": 1, "end": 447.905, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.89941406, "start": 447.665, "word": "can" }, { "confidence": 0.9980469, "end": 448.065, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.89941406, "start": 447.905, "word": "then" }, { "confidence": 1, "end": 448.225, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.89941406, "start": 448.065, "word": "be" }, { "confidence": 1, "end": 448.465, "punctuated_word": "used", "speaker": 0, "speaker_confidence": 0.89941406, "start": 448.225, "word": "used" }, { "confidence": 1, "end": 448.625, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.89941406, "start": 448.465, "word": "in" }, { "confidence": 0.9941406, "end": 448.945, "punctuated_word": "another", "speaker": 0, "speaker_confidence": 0.89941406, "start": 448.625, "word": "another" }, { "confidence": 1, "end": 449.425, "punctuated_word": "browser", "speaker": 0, "speaker_confidence": 0.89941406, "start": 448.945, "word": "browser" }, { "confidence": 1, "end": 449.745, "punctuated_word": "tab", "speaker": 0, "speaker_confidence": 0.89941406, "start": 449.425, "word": "tab" }, { "confidence": 0.98828125, "end": 449.98502, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.89941406, "start": 449.745, "word": "or" }, { "confidence": 1, "end": 450.145, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.89941406, "start": 449.98502, "word": "by" }, { "confidence": 1, "end": 450.465, "punctuated_word": "another", "speaker": 0, "speaker_confidence": 0.89941406, "start": 450.145, "word": "another" }, { "confidence": 0.99902344, "end": 450.785, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 0.89941406, "start": 450.465, "word": "user" }, { "confidence": 0.9838867, "end": 451.105, "punctuated_word": "somewhere", "speaker": 0, "speaker_confidence": 0.89941406, "start": 450.785, "word": "somewhere" }, { "confidence": 1, "end": 451.345, "punctuated_word": "else", "speaker": 0, "speaker_confidence": 0.89941406, "start": 451.105, "word": "else" }, { "confidence": 1, "end": 451.425, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.89941406, "start": 451.345, "word": "in" }, { "confidence": 1, "end": 451.585, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.89941406, "start": 451.425, "word": "the" }, { "confidence": 1, "end": 451.98502, "punctuated_word": "world", "speaker": 0, "speaker_confidence": 0.89941406, "start": 451.585, "word": "world" }, { "confidence": 0.9921875, "end": 452.225, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.89941406, "start": 451.98502, "word": "to" }, { "confidence": 1, "end": 452.545, "punctuated_word": "answer", "speaker": 0, "speaker_confidence": 0.89941406, "start": 452.225, "word": "answer" }, { "confidence": 1, "end": 452.70502, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.89941406, "start": 452.545, "word": "the" }, { "confidence": 1, "end": 453.20502, "punctuated_word": "call.", "speaker": 0, "speaker_confidence": 0.89941406, "start": 452.70502, "word": "call" }, { "confidence": 1, "end": 453.56998, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.9296875, "start": 453.40997, "word": "now" }, { "confidence": 0.99194336, "end": 453.72998, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.9296875, "start": 453.56998, "word": "we're" }, { "confidence": 1, "end": 453.97, "punctuated_word": "ready", "speaker": 0, "speaker_confidence": 0.9296875, "start": 453.72998, "word": "ready" }, { "confidence": 0.99902344, "end": 454.21, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9296875, "start": 453.97, "word": "to" }, { "confidence": 1, "end": 454.44998, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.9296875, "start": 454.21, "word": "create" }, { "confidence": 1, "end": 454.61, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.9296875, "start": 454.44998, "word": "an" }, { "confidence": 1, "end": 454.93, "punctuated_word": "offer", "speaker": 0, "speaker_confidence": 0.9296875, "start": 454.61, "word": "offer" }, { "confidence": 0.99902344, "end": 455.16998, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9296875, "start": 454.93, "word": "and" }, { "confidence": 1, "end": 455.33, "punctuated_word": "save", "speaker": 0, "speaker_confidence": 0.9296875, "start": 455.16998, "word": "save" }, { "confidence": 1, "end": 455.49, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.9296875, "start": 455.33, "word": "it" }, { "confidence": 1, "end": 455.56998, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9296875, "start": 455.49, "word": "to" }, { "confidence": 1, "end": 455.72998, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9296875, "start": 455.56998, "word": "the" }, { "confidence": 1, "end": 456.22998, "punctuated_word": "database.", "speaker": 0, "speaker_confidence": 0.9296875, "start": 455.72998, "word": "database" }, { "confidence": 1, "end": 456.77, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.9296875, "start": 456.53, "word": "the" }, { "confidence": 0.9980469, "end": 456.93, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 0.9296875, "start": 456.77, "word": "first" }, { "confidence": 1, "end": 457.09, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.9296875, "start": 456.93, "word": "thing" }, { "confidence": 1, "end": 457.33, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.9296875, "start": 457.09, "word": "we'll" }, { "confidence": 1, "end": 457.65, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.9296875, "start": 457.33, "word": "do" }, { "confidence": 1, "end": 457.88998, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9296875, "start": 457.65, "word": "is" }, { "confidence": 0.9980469, "end": 458.37, "punctuated_word": "await", "speaker": 0, "speaker_confidence": 0.9296875, "start": 457.88998, "word": "await" }, { "confidence": 0.99902344, "end": 458.61, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9296875, "start": 458.37, "word": "the" }, { "confidence": 0.8588867, "end": 458.84998, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 0.9296875, "start": 458.61, "word": "peer" }, { "confidence": 0.984375, "end": 459.34998, "punctuated_word": "connection", "speaker": 0, "speaker_confidence": 0.9296875, "start": 458.84998, "word": "connection" }, { "confidence": 0.8041992, "end": 459.97, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.9296875, "start": 459.56998, "word": "create" }, { "confidence": 0.9560547, "end": 460.28998, "punctuated_word": "offer", "speaker": 0, "speaker_confidence": 0.9296875, "start": 459.97, "word": "offer" }, { "confidence": 0.98168945, "end": 460.78998, "punctuated_word": "method,", "speaker": 0, "speaker_confidence": 0.9296875, "start": 460.28998, "word": "method" }, { "confidence": 1, "end": 461.16998, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.9296875, "start": 461.00998, "word": "which" }, { "confidence": 0.9980469, "end": 461.40997, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.9296875, "start": 461.16998, "word": "will" }, { "confidence": 1, "end": 461.755, "punctuated_word": "return", "speaker": 0, "speaker_confidence": 0.9296875, "start": 461.40997, "word": "return" }, { "confidence": 0.7324219, "end": 462.155, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.9296875, "start": 461.915, "word": "with" }, { "confidence": 1, "end": 462.23502, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.9296875, "start": 462.155, "word": "an" }, { "confidence": 0.90234375, "end": 462.715, "punctuated_word": "offer", "speaker": 0, "speaker_confidence": 0.9296875, "start": 462.23502, "word": "offer" }, { "confidence": 0.9975586, "end": 463.215, "punctuated_word": "description.", "speaker": 0, "speaker_confidence": 0.9296875, "start": 462.715, "word": "description" }, { "confidence": 0.9975586, "end": 463.515, "punctuated_word": "We'll", "speaker": 0, "speaker_confidence": 0.57421875, "start": 463.435, "word": "we'll" }, { "confidence": 0.99902344, "end": 463.755, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.57421875, "start": 463.515, "word": "then" }, { "confidence": 0.99902344, "end": 463.915, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.57421875, "start": 463.755, "word": "set" }, { "confidence": 1, "end": 464.075, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.57421875, "start": 463.915, "word": "it" }, { "confidence": 1, "end": 464.315, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.57421875, "start": 464.075, "word": "as" }, { "confidence": 0.9941406, "end": 464.39502, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.57421875, "start": 464.315, "word": "the" }, { "confidence": 1, "end": 464.795, "punctuated_word": "local", "speaker": 0, "speaker_confidence": 0.57421875, "start": 464.39502, "word": "local" }, { "confidence": 1, "end": 465.295, "punctuated_word": "description", "speaker": 0, "speaker_confidence": 0.57421875, "start": 464.795, "word": "description" }, { "confidence": 1, "end": 465.515, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.57421875, "start": 465.355, "word": "on" }, { "confidence": 0.99902344, "end": 465.595, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 465.515, "word": "the" }, { "confidence": 0.8105469, "end": 465.835, "punctuated_word": "Pure", "speaker": 0, "speaker_confidence": 1, "start": 465.595, "word": "pure" }, { "confidence": 0.7578125, "end": 466.335, "punctuated_word": "connection.", "speaker": 0, "speaker_confidence": 1, "start": 465.835, "word": "connection" }, { "confidence": 1, "end": 466.795, "punctuated_word": "Most", "speaker": 0, "speaker_confidence": 1, "start": 466.555, "word": "most" }, { "confidence": 1, "end": 467.295, "punctuated_word": "importantly,", "speaker": 0, "speaker_confidence": 1, "start": 466.795, "word": "importantly" }, { "confidence": 1, "end": 467.595, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 1, "start": 467.355, "word": "this" }, { "confidence": 1, "end": 467.995, "punctuated_word": "object", "speaker": 0, "speaker_confidence": 1, "start": 467.595, "word": "object" }, { "confidence": 1, "end": 468.475, "punctuated_word": "contains", "speaker": 0, "speaker_confidence": 1, "start": 467.995, "word": "contains" }, { "confidence": 0.99902344, "end": 468.715, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 468.475, "word": "an" }, { "confidence": 0.94873047, "end": 469.215, "punctuated_word": "SDP", "speaker": 0, "speaker_confidence": 1, "start": 468.715, "word": "sdp" }, { "confidence": 0.95996094, "end": 469.79, "punctuated_word": "value,", "speaker": 0, "speaker_confidence": 1, "start": 469.355, "word": "value" }, { "confidence": 0.9902344, "end": 470.11002, "punctuated_word": "Which", "speaker": 0, "speaker_confidence": 1, "start": 469.87, "word": "which" }, { "confidence": 0.99902344, "end": 470.27002, "punctuated_word": "stands", "speaker": 0, "speaker_confidence": 1, "start": 470.11002, "word": "stands" }, { "confidence": 1, "end": 470.75, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 470.27002, "word": "for" }, { "confidence": 0.39135742, "end": 471.07, "punctuated_word": "Session", "speaker": 0, "speaker_confidence": 1, "start": 470.75, "word": "session" }, { "confidence": 0.9658203, "end": 471.57, "punctuated_word": "Description", "speaker": 0, "speaker_confidence": 1, "start": 471.07, "word": "description" }, { "confidence": 0.98779297, "end": 472.13, "punctuated_word": "Protocol.", "speaker": 0, "speaker_confidence": 1, "start": 471.63, "word": "protocol" }, { "confidence": 0.9980469, "end": 472.75, "punctuated_word": "That's", "speaker": 0, "speaker_confidence": 1, "start": 472.51, "word": "that's" }, { "confidence": 0.99902344, "end": 472.91, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 472.75, "word": "the" }, { "confidence": 0.99902344, "end": 473.15, "punctuated_word": "value", "speaker": 0, "speaker_confidence": 1, "start": 472.91, "word": "value" }, { "confidence": 0.99609375, "end": 473.31, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 1, "start": 473.15, "word": "we" }, { "confidence": 0.99902344, "end": 473.55002, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 1, "start": 473.31, "word": "want" }, { "confidence": 0.9892578, "end": 473.63, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 473.55002, "word": "to" }, { "confidence": 0.9951172, "end": 473.95, "punctuated_word": "save", "speaker": 0, "speaker_confidence": 1, "start": 473.63, "word": "save" }, { "confidence": 0.99609375, "end": 474.03, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 473.95, "word": "to" }, { "confidence": 0.9980469, "end": 474.19, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 474.03, "word": "the" }, { "confidence": 0.7758789, "end": 474.69, "punctuated_word": "database,", "speaker": 0, "speaker_confidence": 1, "start": 474.19, "word": "database" }, { "confidence": 0.99902344, "end": 474.99002, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 1, "start": 474.75, "word": "so" }, { "confidence": 0.9975586, "end": 475.15, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 1, "start": 474.99002, "word": "we'll" }, { "confidence": 1, "end": 475.23, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 1, "start": 475.15, "word": "go" }, { "confidence": 0.99902344, "end": 475.47, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 1, "start": 475.23, "word": "ahead" }, { "confidence": 0.99902344, "end": 475.71002, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 475.47, "word": "and" }, { "confidence": 0.99902344, "end": 476.03, "punctuated_word": "convert", "speaker": 0, "speaker_confidence": 1, "start": 475.71002, "word": "convert" }, { "confidence": 0.99316406, "end": 476.27002, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 476.03, "word": "it" }, { "confidence": 0.99609375, "end": 476.43002, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 476.27002, "word": "to" }, { "confidence": 0.99609375, "end": 476.59, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 476.43002, "word": "a" }, { "confidence": 0.9951172, "end": 476.99002, "punctuated_word": "plain", "speaker": 0, "speaker_confidence": 1, "start": 476.59, "word": "plain" }, { "confidence": 0.9873047, "end": 477.49002, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 1, "start": 476.99002, "word": "javascript" }, { "confidence": 0.8413086, "end": 478.035, "punctuated_word": "object,", "speaker": 0, "speaker_confidence": 1, "start": 477.63, "word": "object" }, { "confidence": 0.9165039, "end": 478.595, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 1, "start": 478.435, "word": "then" }, { "confidence": 0.94970703, "end": 478.835, "punctuated_word": "write", "speaker": 0, "speaker_confidence": 1, "start": 478.595, "word": "write" }, { "confidence": 0.9980469, "end": 478.995, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 478.835, "word": "it" }, { "confidence": 0.99902344, "end": 479.075, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 478.995, "word": "to" }, { "confidence": 0.9980469, "end": 479.23502, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 479.075, "word": "the" }, { "confidence": 1, "end": 479.73502, "punctuated_word": "database", "speaker": 0, "speaker_confidence": 1, "start": 479.23502, "word": "database" }, { "confidence": 0.9980469, "end": 479.95502, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 1, "start": 479.795, "word": "by" }, { "confidence": 0.99902344, "end": 480.355, "punctuated_word": "calling", "speaker": 0, "speaker_confidence": 1, "start": 479.95502, "word": "calling" }, { "confidence": 0.9667969, "end": 480.855, "punctuated_word": "await", "speaker": 0, "speaker_confidence": 1, "start": 480.355, "word": "await" }, { "confidence": 0.8256836, "end": 481.23502, "punctuated_word": "call", "speaker": 0, "speaker_confidence": 1, "start": 480.995, "word": "call" }, { "confidence": 0.8203125, "end": 481.73502, "punctuated_word": "document", "speaker": 0, "speaker_confidence": 1, "start": 481.23502, "word": "document" }, { "confidence": 0.99609375, "end": 482.275, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 1, "start": 481.795, "word": "set" }, { "confidence": 0.99609375, "end": 482.515, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 482.275, "word": "with" }, { "confidence": 1, "end": 482.67502, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 482.515, "word": "that" }, { "confidence": 1, "end": 483.17502, "punctuated_word": "data.", "speaker": 0, "speaker_confidence": 1, "start": 482.67502, "word": "data" }, { "confidence": 1, "end": 483.635, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 1, "start": 483.395, "word": "now" }, { "confidence": 0.86987305, "end": 483.875, "punctuated_word": "what's", "speaker": 0, "speaker_confidence": 1, "start": 483.635, "word": "what's" }, { "confidence": 1, "end": 484.195, "punctuated_word": "inside", "speaker": 0, "speaker_confidence": 1, "start": 483.875, "word": "inside" }, { "confidence": 0.99902344, "end": 484.355, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 484.195, "word": "the" }, { "confidence": 0.8039551, "end": 484.835, "punctuated_word": "SDP", "speaker": 0, "speaker_confidence": 1, "start": 484.355, "word": "sdp" }, { "confidence": 0.9941406, "end": 485.23502, "punctuated_word": "object", "speaker": 0, "speaker_confidence": 1, "start": 484.835, "word": "object" }, { "confidence": 0.9995117, "end": 485.555, "punctuated_word": "isn't", "speaker": 0, "speaker_confidence": 1, "start": 485.23502, "word": "isn't" }, { "confidence": 1, "end": 485.715, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 1, "start": 485.555, "word": "really" }, { "confidence": 0.9885254, "end": 486.215, "punctuated_word": "important,", "speaker": 0, "speaker_confidence": 1, "start": 485.715, "word": "important" }, { "confidence": 1, "end": 486.515, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 1, "start": 486.275, "word": "but" }, { "confidence": 0.99902344, "end": 486.595, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 486.515, "word": "it" }, { "confidence": 0.99902344, "end": 487.075, "punctuated_word": "contains", "speaker": 0, "speaker_confidence": 1, "start": 486.595, "word": "contains" }, { "confidence": 0.99902344, "end": 487.575, "punctuated_word": "information", "speaker": 0, "speaker_confidence": 1, "start": 487.075, "word": "information" }, { "confidence": 0.9902344, "end": 487.875, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 1, "start": 487.635, "word": "about" }, { "confidence": 0.61816406, "end": 488.02, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 487.875, "word": "the" }, { "confidence": 0.7866211, "end": 488.5, "punctuated_word": "Video", "speaker": 0, "speaker_confidence": 1, "start": 488.09998, "word": "video" }, { "confidence": 0.94970703, "end": 488.9, "punctuated_word": "codec", "speaker": 0, "speaker_confidence": 1, "start": 488.5, "word": "codec" }, { "confidence": 0.7963867, "end": 489.13998, "punctuated_word": "along", "speaker": 0, "speaker_confidence": 1, "start": 488.9, "word": "along" }, { "confidence": 1, "end": 489.3, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 489.13998, "word": "with" }, { "confidence": 0.9970703, "end": 489.37997, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 489.3, "word": "a" }, { "confidence": 1, "end": 489.62, "punctuated_word": "bunch", "speaker": 0, "speaker_confidence": 1, "start": 489.37997, "word": "bunch" }, { "confidence": 0.99902344, "end": 489.69998, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 489.62, "word": "of" }, { "confidence": 0.9980469, "end": 489.94, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 1, "start": 489.69998, "word": "other" }, { "confidence": 0.99902344, "end": 490.34, "punctuated_word": "stuff", "speaker": 0, "speaker_confidence": 1, "start": 489.94, "word": "stuff" }, { "confidence": 0.9892578, "end": 490.58, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 490.34, "word": "to" }, { "confidence": 0.99902344, "end": 491.06, "punctuated_word": "negotiate", "speaker": 0, "speaker_confidence": 1, "start": 490.58, "word": "negotiate" }, { "confidence": 0.99609375, "end": 491.13998, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 491.06, "word": "the" }, { "confidence": 1, "end": 491.63998, "punctuated_word": "connection.", "speaker": 0, "speaker_confidence": 1, "start": 491.13998, "word": "connection" }, { "confidence": 0.99902344, "end": 492.25998, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 1, "start": 492.09998, "word": "now" }, { "confidence": 0.71240234, "end": 492.41998, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 1, "start": 492.25998, "word": "one" }, { "confidence": 0.99902344, "end": 492.66, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 1, "start": 492.41998, "word": "really" }, { "confidence": 0.99902344, "end": 492.97998, "punctuated_word": "important", "speaker": 0, "speaker_confidence": 1, "start": 492.66, "word": "important" }, { "confidence": 0.9980469, "end": 493.13998, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 1, "start": 492.97998, "word": "thing" }, { "confidence": 0.9951172, "end": 493.3, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 493.13998, "word": "to" }, { "confidence": 0.99902344, "end": 493.46, "punctuated_word": "point", "speaker": 0, "speaker_confidence": 1, "start": 493.3, "word": "point" }, { "confidence": 0.9941406, "end": 493.69998, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 1, "start": 493.46, "word": "out" }, { "confidence": 0.99609375, "end": 494.02, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 1, "start": 493.69998, "word": "here" }, { "confidence": 0.9614258, "end": 494.18, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 494.02, "word": "is" }, { "confidence": 0.9941406, "end": 494.34, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 494.18, "word": "that" }, { "confidence": 0.9707031, "end": 494.58, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 1, "start": 494.34, "word": "when" }, { "confidence": 0.9892578, "end": 494.74, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 1, "start": 494.58, "word": "we" }, { "confidence": 0.9941406, "end": 495.22, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 1, "start": 494.74, "word": "called" }, { "confidence": 0.97509766, "end": 495.46, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 1, "start": 495.22, "word": "set" }, { "confidence": 0.7241211, "end": 495.86, "punctuated_word": "local", "speaker": 0, "speaker_confidence": 1, "start": 495.46, "word": "local" }, { "confidence": 0.99560547, "end": 496.36, "punctuated_word": "description,", "speaker": 0, "speaker_confidence": 1, "start": 495.86, "word": "description" }, { "confidence": 0.71191406, "end": 496.97998, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 496.74, "word": "it" }, { "confidence": 0.74072266, "end": 497.375, "punctuated_word": "automatically", "speaker": 0, "speaker_confidence": 1, "start": 496.97998, "word": "automatically" }, { "confidence": 0.98291016, "end": 497.855, "punctuated_word": "started", "speaker": 0, "speaker_confidence": 1, "start": 497.615, "word": "started" }, { "confidence": 1, "end": 498.355, "punctuated_word": "generating", "speaker": 0, "speaker_confidence": 1, "start": 497.855, "word": "generating" }, { "confidence": 0.99902344, "end": 498.575, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 498.415, "word": "the" }, { "confidence": 0.96240234, "end": 498.895, "punctuated_word": "ICE", "speaker": 0, "speaker_confidence": 1, "start": 498.575, "word": "ice" }, { "confidence": 0.9760742, "end": 499.395, "punctuated_word": "candidates.", "speaker": 0, "speaker_confidence": 1, "start": 498.895, "word": "candidates" }, { "confidence": 0.9951172, "end": 499.855, "punctuated_word": "An", "speaker": 0, "speaker_confidence": 1, "start": 499.695, "word": "an" }, { "confidence": 1, "end": 500.175, "punctuated_word": "ICE", "speaker": 0, "speaker_confidence": 1, "start": 499.855, "word": "ice" }, { "confidence": 0.99609375, "end": 500.655, "punctuated_word": "candidate", "speaker": 0, "speaker_confidence": 1, "start": 500.175, "word": "candidate" }, { "confidence": 1, "end": 500.975, "punctuated_word": "contains", "speaker": 0, "speaker_confidence": 1, "start": 500.655, "word": "contains" }, { "confidence": 1, "end": 501.215, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 500.975, "word": "a" }, { "confidence": 1, "end": 501.715, "punctuated_word": "potential", "speaker": 0, "speaker_confidence": 1, "start": 501.215, "word": "potential" }, { "confidence": 1, "end": 502.175, "punctuated_word": "IP", "speaker": 0, "speaker_confidence": 1, "start": 501.935, "word": "ip" }, { "confidence": 0.99902344, "end": 502.575, "punctuated_word": "address", "speaker": 0, "speaker_confidence": 1, "start": 502.175, "word": "address" }, { "confidence": 1, "end": 502.895, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 502.575, "word": "and" }, { "confidence": 1, "end": 503.135, "punctuated_word": "port", "speaker": 0, "speaker_confidence": 1, "start": 502.895, "word": "port" }, { "confidence": 0.99902344, "end": 503.635, "punctuated_word": "pair", "speaker": 0, "speaker_confidence": 1, "start": 503.135, "word": "pair" }, { "confidence": 0.9980469, "end": 503.855, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 503.695, "word": "that" }, { "confidence": 0.99609375, "end": 504.015, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 503.855, "word": "can" }, { "confidence": 0.9980469, "end": 504.095, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 1, "start": 504.015, "word": "be" }, { "confidence": 1, "end": 504.415, "punctuated_word": "used", "speaker": 0, "speaker_confidence": 1, "start": 504.095, "word": "used" }, { "confidence": 0.99902344, "end": 504.575, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 504.415, "word": "to" }, { "confidence": 1, "end": 505.055, "punctuated_word": "establish", "speaker": 0, "speaker_confidence": 1, "start": 504.575, "word": "establish" }, { "confidence": 0.9980469, "end": 505.215, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 505.055, "word": "the" }, { "confidence": 1, "end": 505.535, "punctuated_word": "actual", "speaker": 0, "speaker_confidence": 1, "start": 505.215, "word": "actual" }, { "confidence": 0.99902344, "end": 505.775, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 1, "start": 505.535, "word": "peer" }, { "confidence": 0.99316406, "end": 505.935, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 505.775, "word": "to" }, { "confidence": 1, "end": 506.175, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 1, "start": 505.935, "word": "peer" }, { "confidence": 0.9995117, "end": 506.675, "punctuated_word": "connection.", "speaker": 0, "speaker_confidence": 1, "start": 506.175, "word": "connection" }, { "confidence": 0.99902344, "end": 507.26, "punctuated_word": "Need", "speaker": 0, "speaker_confidence": 1, "start": 507.1, "word": "need" }, { "confidence": 1, "end": 507.34, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 507.26, "word": "to" }, { "confidence": 0.99902344, "end": 507.42, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 1, "start": 507.34, "word": "be" }, { "confidence": 1, "end": 507.74, "punctuated_word": "listening", "speaker": 0, "speaker_confidence": 1, "start": 507.42, "word": "listening" }, { "confidence": 1, "end": 507.9, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 507.74, "word": "to" }, { "confidence": 0.99902344, "end": 507.98, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.91259766, "start": 507.9, "word": "the" }, { "confidence": 0.92822266, "end": 508.22, "punctuated_word": "ICE", "speaker": 0, "speaker_confidence": 0.91259766, "start": 507.98, "word": "ice" }, { "confidence": 0.7648926, "end": 508.72, "punctuated_word": "candidates,", "speaker": 0, "speaker_confidence": 0.91259766, "start": 508.22, "word": "candidates" }, { "confidence": 1, "end": 509.02, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.91259766, "start": 508.86002, "word": "so" }, { "confidence": 1, "end": 509.18, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.91259766, "start": 509.02, "word": "it's" }, { "confidence": 1, "end": 509.58002, "punctuated_word": "important", "speaker": 0, "speaker_confidence": 0.91259766, "start": 509.18, "word": "important" }, { "confidence": 1, "end": 509.66, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.91259766, "start": 509.58002, "word": "that" }, { "confidence": 1, "end": 509.82, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.91259766, "start": 509.66, "word": "we" }, { "confidence": 1, "end": 510.06, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.91259766, "start": 509.82, "word": "have" }, { "confidence": 0.9267578, "end": 510.14, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.91259766, "start": 510.06, "word": "a" }, { "confidence": 1, "end": 510.62, "punctuated_word": "listener", "speaker": 0, "speaker_confidence": 0.91259766, "start": 510.14, "word": "listener" }, { "confidence": 0.9560547, "end": 511.12, "punctuated_word": "established", "speaker": 0, "speaker_confidence": 0.91259766, "start": 510.62, "word": "established" }, { "confidence": 0.9892578, "end": 511.5, "punctuated_word": "before", "speaker": 0, "speaker_confidence": 0.91259766, "start": 511.18, "word": "before" }, { "confidence": 1, "end": 511.74, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.91259766, "start": 511.5, "word": "we" }, { "confidence": 1, "end": 511.9, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.91259766, "start": 511.74, "word": "make" }, { "confidence": 0.99902344, "end": 512.06, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.91259766, "start": 511.9, "word": "that" }, { "confidence": 1, "end": 512.56, "punctuated_word": "call", "speaker": 0, "speaker_confidence": 0.91259766, "start": 512.06, "word": "call" }, { "confidence": 0.98535156, "end": 512.86, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.91259766, "start": 512.62, "word": "that" }, { "confidence": 1, "end": 513.26, "punctuated_word": "listens", "speaker": 0, "speaker_confidence": 0.91259766, "start": 512.86, "word": "listens" }, { "confidence": 0.99902344, "end": 513.42, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.91259766, "start": 513.26, "word": "to" }, { "confidence": 0.99902344, "end": 513.66, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.91259766, "start": 513.42, "word": "the" }, { "confidence": 0.9921875, "end": 513.9, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.91259766, "start": 513.66, "word": "on" }, { "confidence": 0.97802734, "end": 514.22003, "punctuated_word": "ICE", "speaker": 0, "speaker_confidence": 0.91259766, "start": 513.9, "word": "ice" }, { "confidence": 0.93115234, "end": 514.72003, "punctuated_word": "candidate", "speaker": 0, "speaker_confidence": 0.91259766, "start": 514.22003, "word": "candidate" }, { "confidence": 0.99902344, "end": 515.035, "punctuated_word": "event.", "speaker": 0, "speaker_confidence": 0.91259766, "start": 514.78, "word": "event" }, { "confidence": 1, "end": 515.355, "punctuated_word": "When", "speaker": 0, "speaker_confidence": 0.85839844, "start": 515.27496, "word": "when" }, { "confidence": 1, "end": 515.435, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.85839844, "start": 515.355, "word": "the" }, { "confidence": 1, "end": 515.75494, "punctuated_word": "event", "speaker": 0, "speaker_confidence": 0.85839844, "start": 515.435, "word": "event" }, { "confidence": 0.99902344, "end": 515.995, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.85839844, "start": 515.75494, "word": "is" }, { "confidence": 0.9995117, "end": 516.315, "punctuated_word": "fired,", "speaker": 0, "speaker_confidence": 0.85839844, "start": 515.995, "word": "fired" }, { "confidence": 0.99902344, "end": 516.475, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.85839844, "start": 516.315, "word": "we'll" }, { "confidence": 1, "end": 516.63495, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.85839844, "start": 516.475, "word": "make" }, { "confidence": 1, "end": 516.795, "punctuated_word": "sure", "speaker": 0, "speaker_confidence": 0.85839844, "start": 516.63495, "word": "sure" }, { "confidence": 1, "end": 516.95496, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.85839844, "start": 516.795, "word": "that" }, { "confidence": 0.9921875, "end": 517.035, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.85839844, "start": 516.95496, "word": "a" }, { "confidence": 1, "end": 517.51495, "punctuated_word": "candidate", "speaker": 0, "speaker_confidence": 0.85839844, "start": 517.035, "word": "candidate" }, { "confidence": 0.92626953, "end": 518.01495, "punctuated_word": "exists,", "speaker": 0, "speaker_confidence": 0.85839844, "start": 517.51495, "word": "exists" }, { "confidence": 0.99902344, "end": 518.555, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.85839844, "start": 518.315, "word": "then" }, { "confidence": 0.99609375, "end": 518.71497, "punctuated_word": "write", "speaker": 0, "speaker_confidence": 0.85839844, "start": 518.555, "word": "write" }, { "confidence": 1, "end": 518.875, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.85839844, "start": 518.71497, "word": "the" }, { "confidence": 1, "end": 519.19495, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.85839844, "start": 518.875, "word": "data" }, { "confidence": 1, "end": 519.51495, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.85839844, "start": 519.19495, "word": "as" }, { "confidence": 0.9921875, "end": 520.01495, "punctuated_word": "JSON", "speaker": 0, "speaker_confidence": 0.85839844, "start": 519.51495, "word": "json" }, { "confidence": 0.9970703, "end": 520.315, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.85839844, "start": 520.07495, "word": "to" }, { "confidence": 1, "end": 520.555, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.85839844, "start": 520.315, "word": "the" }, { "confidence": 0.95166016, "end": 520.875, "punctuated_word": "offer", "speaker": 0, "speaker_confidence": 0.85839844, "start": 520.555, "word": "offer" }, { "confidence": 0.7927246, "end": 521.375, "punctuated_word": "candidate's", "speaker": 0, "speaker_confidence": 0.85839844, "start": 520.875, "word": "candidate's" }, { "confidence": 1, "end": 521.935, "punctuated_word": "collection.", "speaker": 0, "speaker_confidence": 0.85839844, "start": 521.435, "word": "collection" }, { "confidence": 1, "end": 522.315, "punctuated_word": "So", "speaker": 0, "speaker_confidence": 0.82666016, "start": 522.15497, "word": "so" }, { "confidence": 0.7246094, "end": 522.475, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.82666016, "start": 522.315, "word": "at" }, { "confidence": 1, "end": 522.63495, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.82666016, "start": 522.475, "word": "this" }, { "confidence": 0.97314453, "end": 522.95496, "punctuated_word": "point,", "speaker": 0, "speaker_confidence": 0.82666016, "start": 522.63495, "word": "point" }, { "confidence": 1, "end": 523.19495, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.82666016, "start": 522.95496, "word": "as" }, { "confidence": 1, "end": 523.355, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.82666016, "start": 523.19495, "word": "the" }, { "confidence": 0.9970703, "end": 523.75494, "punctuated_word": "caller", "speaker": 0, "speaker_confidence": 0.82666016, "start": 523.355, "word": "caller" }, { "confidence": 0.99902344, "end": 524.07495, "punctuated_word": "making", "speaker": 0, "speaker_confidence": 0.82666016, "start": 523.75494, "word": "making" }, { "confidence": 1, "end": 524.235, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.82666016, "start": 524.07495, "word": "the" }, { "confidence": 0.9995117, "end": 524.735, "punctuated_word": "offer,", "speaker": 0, "speaker_confidence": 0.82666016, "start": 524.235, "word": "offer" }, { "confidence": 0.99902344, "end": 525.02, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.82666016, "start": 524.86005, "word": "we" }, { "confidence": 1, "end": 525.26, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.82666016, "start": 525.02, "word": "are" }, { "confidence": 1, "end": 525.66003, "punctuated_word": "saving", "speaker": 0, "speaker_confidence": 0.82666016, "start": 525.26, "word": "saving" }, { "confidence": 1, "end": 525.74005, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.82666016, "start": 525.66003, "word": "all" }, { "confidence": 0.9921875, "end": 525.9, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8925781, "start": 525.74005, "word": "of" }, { "confidence": 1, "end": 526.06006, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.8925781, "start": 525.9, "word": "our" }, { "confidence": 1, "end": 526.30005, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.8925781, "start": 526.06006, "word": "data" }, { "confidence": 0.9980469, "end": 526.46, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8925781, "start": 526.30005, "word": "to" }, { "confidence": 1, "end": 526.62006, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8925781, "start": 526.46, "word": "the" }, { "confidence": 0.8312988, "end": 527.12006, "punctuated_word": "database,", "speaker": 0, "speaker_confidence": 0.8925781, "start": 526.62006, "word": "database" }, { "confidence": 1, "end": 527.66003, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.8925781, "start": 527.42004, "word": "but" }, { "confidence": 0.9760742, "end": 527.82, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 0.8925781, "start": 527.66003, "word": "now" }, { "confidence": 0.94970703, "end": 527.98004, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.8925781, "start": 527.82, "word": "we" }, { "confidence": 0.99902344, "end": 528.14, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.8925781, "start": 527.98004, "word": "need" }, { "confidence": 0.9941406, "end": 528.30005, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8925781, "start": 528.14, "word": "to" }, { "confidence": 0.9980469, "end": 528.62006, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.8925781, "start": 528.30005, "word": "also" }, { "confidence": 0.9980469, "end": 528.86005, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.8925781, "start": 528.62006, "word": "be" }, { "confidence": 1, "end": 529.34, "punctuated_word": "listening", "speaker": 0, "speaker_confidence": 0.8925781, "start": 528.86005, "word": "listening" }, { "confidence": 0.99609375, "end": 529.58, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.8925781, "start": 529.34, "word": "for" }, { "confidence": 0.9951172, "end": 529.74005, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8925781, "start": 529.58, "word": "the" }, { "confidence": 0.9980469, "end": 530.14, "punctuated_word": "answer", "speaker": 0, "speaker_confidence": 0.8925781, "start": 529.74005, "word": "answer" }, { "confidence": 0.99609375, "end": 530.38, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.8925781, "start": 530.14, "word": "from" }, { "confidence": 0.9951172, "end": 530.54004, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8925781, "start": 530.38, "word": "the" }, { "confidence": 0.99902344, "end": 530.94, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 0.8925781, "start": 530.54004, "word": "user" }, { "confidence": 0.9941406, "end": 531.10004, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8925781, "start": 530.94, "word": "on" }, { "confidence": 0.99316406, "end": 531.26, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8925781, "start": 531.10004, "word": "the" }, { "confidence": 0.99902344, "end": 531.42004, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.8925781, "start": 531.26, "word": "other" }, { "confidence": 0.9995117, "end": 531.92004, "punctuated_word": "end.", "speaker": 0, "speaker_confidence": 0.8925781, "start": 531.42004, "word": "end" }, { "confidence": 0.9951172, "end": 532.14, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.8925781, "start": 531.98004, "word": "the" }, { "confidence": 0.99902344, "end": 532.30005, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 0.8925781, "start": 532.14, "word": "way" }, { "confidence": 0.9970703, "end": 532.38, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.8925781, "start": 532.30005, "word": "we" }, { "confidence": 0.9970703, "end": 532.54004, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.9790039, "start": 532.38, "word": "do" }, { "confidence": 0.9838867, "end": 532.78, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9790039, "start": 532.54004, "word": "that" }, { "confidence": 0.984375, "end": 533.02, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9790039, "start": 532.78, "word": "is" }, { "confidence": 0.9873047, "end": 533.18005, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.9790039, "start": 533.02, "word": "by" }, { "confidence": 0.9941406, "end": 533.58, "punctuated_word": "listening", "speaker": 0, "speaker_confidence": 0.9790039, "start": 533.18005, "word": "listening" }, { "confidence": 0.65478516, "end": 533.74005, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9790039, "start": 533.58, "word": "to" }, { "confidence": 0.88183594, "end": 534.015, "punctuated_word": "changes", "speaker": 0, "speaker_confidence": 0.9790039, "start": 533.74005, "word": "changes" }, { "confidence": 0.7446289, "end": 534.495, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9790039, "start": 534.255, "word": "to" }, { "confidence": 0.9980469, "end": 534.655, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9790039, "start": 534.495, "word": "the" }, { "confidence": 0.54345703, "end": 534.97504, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 0.9790039, "start": 534.655, "word": "called" }, { "confidence": 0.9970703, "end": 535.375, "punctuated_word": "document", "speaker": 0, "speaker_confidence": 0.9790039, "start": 534.97504, "word": "document" }, { "confidence": 0.98535156, "end": 535.615, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9790039, "start": 535.375, "word": "in" }, { "confidence": 0.9980469, "end": 536.115, "punctuated_word": "Firestore.", "speaker": 0, "speaker_confidence": 0.9790039, "start": 535.615, "word": "firestore" }, { "confidence": 0.9980469, "end": 536.655, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.9790039, "start": 536.41504, "word": "the" }, { "confidence": 0.99316406, "end": 536.815, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.9790039, "start": 536.655, "word": "on" }, { "confidence": 0.9003906, "end": 537.29504, "punctuated_word": "snapshot", "speaker": 0, "speaker_confidence": 0.9790039, "start": 536.815, "word": "snapshot" }, { "confidence": 0.99902344, "end": 537.695, "punctuated_word": "method", "speaker": 0, "speaker_confidence": 0.9790039, "start": 537.29504, "word": "method" }, { "confidence": 0.9951172, "end": 537.85504, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.9790039, "start": 537.695, "word": "will" }, { "confidence": 1, "end": 538.175, "punctuated_word": "fire", "speaker": 0, "speaker_confidence": 0.9790039, "start": 537.85504, "word": "fire" }, { "confidence": 0.9980469, "end": 538.255, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9790039, "start": 538.175, "word": "a" }, { "confidence": 0.9980469, "end": 538.755, "punctuated_word": "callback", "speaker": 0, "speaker_confidence": 0.9790039, "start": 538.255, "word": "callback" }, { "confidence": 0.8691406, "end": 539.215, "punctuated_word": "anytime", "speaker": 0, "speaker_confidence": 0.9790039, "start": 538.815, "word": "anytime" }, { "confidence": 0.9980469, "end": 539.455, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9790039, "start": 539.215, "word": "the" }, { "confidence": 1, "end": 539.935, "punctuated_word": "document", "speaker": 0, "speaker_confidence": 0.9790039, "start": 539.455, "word": "document" }, { "confidence": 0.9667969, "end": 540.09503, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9790039, "start": 539.935, "word": "in" }, { "confidence": 0.99902344, "end": 540.175, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9790039, "start": 540.09503, "word": "the" }, { "confidence": 1, "end": 540.675, "punctuated_word": "database", "speaker": 0, "speaker_confidence": 0.9790039, "start": 540.175, "word": "database" }, { "confidence": 1, "end": 541.235, "punctuated_word": "changes.", "speaker": 0, "speaker_confidence": 0.9790039, "start": 540.735, "word": "changes" }, { "confidence": 1, "end": 541.53503, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.9790039, "start": 541.375, "word": "if" }, { "confidence": 0.9970703, "end": 541.775, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.9790039, "start": 541.53503, "word": "our" }, { "confidence": 0.94628906, "end": 541.935, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 0.9790039, "start": 541.775, "word": "peer" }, { "confidence": 1, "end": 542.41504, "punctuated_word": "connection", "speaker": 0, "speaker_confidence": 0.9790039, "start": 541.935, "word": "connection" }, { "confidence": 0.9995117, "end": 542.735, "punctuated_word": "doesn't", "speaker": 0, "speaker_confidence": 0.9790039, "start": 542.41504, "word": "doesn't" }, { "confidence": 0.9941406, "end": 542.895, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.9790039, "start": 542.735, "word": "have" }, { "confidence": 0.82666016, "end": 543.1, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9790039, "start": 542.895, "word": "a" }, { "confidence": 0.5498047, "end": 543.66, "punctuated_word": "remote", "speaker": 0, "speaker_confidence": 0.9790039, "start": 543.33997, "word": "remote" }, { "confidence": 0.99902344, "end": 544.16, "punctuated_word": "description", "speaker": 0, "speaker_confidence": 0.9790039, "start": 543.66, "word": "description" }, { "confidence": 0.9790039, "end": 544.62, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9790039, "start": 544.38, "word": "and" }, { "confidence": 0.99902344, "end": 544.77997, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9790039, "start": 544.62, "word": "the" }, { "confidence": 1, "end": 545.01996, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.9790039, "start": 544.77997, "word": "data" }, { "confidence": 0.9892578, "end": 545.25995, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.9790039, "start": 545.01996, "word": "has" }, { "confidence": 0.99902344, "end": 545.42, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.9790039, "start": 545.25995, "word": "an" }, { "confidence": 0.9785156, "end": 545.92, "punctuated_word": "answer,", "speaker": 0, "speaker_confidence": 0.9790039, "start": 545.42, "word": "answer" }, { "confidence": 1, "end": 546.54, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.9790039, "start": 546.3, "word": "then" }, { "confidence": 0.986084, "end": 546.69995, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.9790039, "start": 546.54, "word": "we'll" }, { "confidence": 1, "end": 546.77997, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.9580078, "start": 546.69995, "word": "go" }, { "confidence": 1, "end": 547.18, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 0.9580078, "start": 546.77997, "word": "ahead" }, { "confidence": 0.99902344, "end": 547.66, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9580078, "start": 547.18, "word": "and" }, { "confidence": 1, "end": 547.98, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.9580078, "start": 547.66, "word": "set" }, { "confidence": 0.98095703, "end": 548.22, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.9580078, "start": 547.98, "word": "an" }, { "confidence": 0.99902344, "end": 548.54, "punctuated_word": "answer", "speaker": 0, "speaker_confidence": 0.9580078, "start": 548.22, "word": "answer" }, { "confidence": 1, "end": 549.04, "punctuated_word": "description", "speaker": 0, "speaker_confidence": 0.9580078, "start": 548.54, "word": "description" }, { "confidence": 1, "end": 549.74, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.9580078, "start": 549.5, "word": "on" }, { "confidence": 1, "end": 549.98, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.9580078, "start": 549.74, "word": "our" }, { "confidence": 0.5649414, "end": 550.22, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 0.9580078, "start": 549.98, "word": "peer" }, { "confidence": 0.99902344, "end": 550.62, "punctuated_word": "connection", "speaker": 0, "speaker_confidence": 0.9580078, "start": 550.22, "word": "connection" }, { "confidence": 0.99902344, "end": 550.77997, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0.9580078, "start": 550.62, "word": "here" }, { "confidence": 0.9970703, "end": 551.27997, "punctuated_word": "locally.", "speaker": 0, "speaker_confidence": 0.9580078, "start": 550.77997, "word": "locally" }, { "confidence": 0.99902344, "end": 551.805, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.9580078, "start": 551.72504, "word": "in" }, { "confidence": 1, "end": 551.965, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.9580078, "start": 551.805, "word": "other" }, { "confidence": 1, "end": 552.28503, "punctuated_word": "words,", "speaker": 0, "speaker_confidence": 0.9580078, "start": 551.965, "word": "words" }, { "confidence": 0.9995117, "end": 552.525, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.9580078, "start": 552.28503, "word": "we're" }, { "confidence": 1, "end": 552.84503, "punctuated_word": "listening", "speaker": 0, "speaker_confidence": 0.9580078, "start": 552.525, "word": "listening" }, { "confidence": 1, "end": 553.005, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9580078, "start": 552.84503, "word": "to" }, { "confidence": 1, "end": 553.16504, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.9580078, "start": 553.005, "word": "our" }, { "confidence": 1, "end": 553.645, "punctuated_word": "database", "speaker": 0, "speaker_confidence": 0.9580078, "start": 553.16504, "word": "database" }, { "confidence": 0.99902344, "end": 553.805, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.9580078, "start": 553.645, "word": "for" }, { "confidence": 0.99902344, "end": 553.965, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.9580078, "start": 553.805, "word": "an" }, { "confidence": 1, "end": 554.445, "punctuated_word": "answer", "speaker": 0, "speaker_confidence": 0.9580078, "start": 553.965, "word": "answer" }, { "confidence": 0.6904297, "end": 554.685, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9580078, "start": 554.445, "word": "and" }, { "confidence": 0.95166016, "end": 554.92505, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.9580078, "start": 554.685, "word": "when" }, { "confidence": 0.9980469, "end": 555.085, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9580078, "start": 554.92505, "word": "that" }, { "confidence": 0.99902344, "end": 555.325, "punctuated_word": "answer", "speaker": 0, "speaker_confidence": 0.9580078, "start": 555.085, "word": "answer" }, { "confidence": 0.99902344, "end": 555.48505, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9580078, "start": 555.325, "word": "is" }, { "confidence": 0.99658203, "end": 555.965, "punctuated_word": "received,", "speaker": 0, "speaker_confidence": 0.9580078, "start": 555.48505, "word": "received" }, { "confidence": 0.99902344, "end": 556.205, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.9580078, "start": 555.965, "word": "we" }, { "confidence": 0.9980469, "end": 556.525, "punctuated_word": "update", "speaker": 0, "speaker_confidence": 0.9580078, "start": 556.205, "word": "update" }, { "confidence": 0.99902344, "end": 556.685, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.9580078, "start": 556.525, "word": "it" }, { "confidence": 0.99902344, "end": 556.84503, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.9580078, "start": 556.685, "word": "on" }, { "confidence": 1, "end": 557.005, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.9580078, "start": 556.84503, "word": "our" }, { "confidence": 0.99316406, "end": 557.245, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 0.9580078, "start": 557.005, "word": "peer" }, { "confidence": 0.99853516, "end": 557.745, "punctuated_word": "connection.", "speaker": 0, "speaker_confidence": 0.9580078, "start": 557.245, "word": "connection" }, { "confidence": 1, "end": 558.525, "punctuated_word": "That", "speaker": 0, "speaker_confidence": 0.9580078, "start": 558.205, "word": "that" }, { "confidence": 0.99853516, "end": 559.005, "punctuated_word": "negotiates", "speaker": 0, "speaker_confidence": 0.9580078, "start": 558.525, "word": "negotiates" }, { "confidence": 0.99316406, "end": 559.16504, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9580078, "start": 559.005, "word": "the" }, { "confidence": 0.99902344, "end": 559.48505, "punctuated_word": "initial", "speaker": 0, "speaker_confidence": 0.9580078, "start": 559.16504, "word": "initial" }, { "confidence": 0.9655762, "end": 559.92, "punctuated_word": "connection,", "speaker": 0, "speaker_confidence": 0.9580078, "start": 559.48505, "word": "connection" }, { "confidence": 0.9301758, "end": 560.39996, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.9580078, "start": 560.24, "word": "but" }, { "confidence": 0.9941406, "end": 560.56, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.9580078, "start": 560.39996, "word": "we" }, { "confidence": 1, "end": 560.88, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.9580078, "start": 560.56, "word": "also" }, { "confidence": 1, "end": 560.95996, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.7895508, "start": 560.88, "word": "need" }, { "confidence": 0.99902344, "end": 561.12, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7895508, "start": 560.95996, "word": "to" }, { "confidence": 1, "end": 561.36, "punctuated_word": "listen", "speaker": 0, "speaker_confidence": 0.7895508, "start": 561.12, "word": "listen" }, { "confidence": 0.99902344, "end": 561.6, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.7895508, "start": 561.36, "word": "for" }, { "confidence": 0.9165039, "end": 561.83997, "punctuated_word": "ICE", "speaker": 0, "speaker_confidence": 0.7895508, "start": 561.6, "word": "ice" }, { "confidence": 0.9970703, "end": 562.33997, "punctuated_word": "candidates", "speaker": 0, "speaker_confidence": 0.7895508, "start": 561.83997, "word": "candidates" }, { "confidence": 1, "end": 562.63995, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.7895508, "start": 562.39996, "word": "from" }, { "confidence": 1, "end": 562.8, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7895508, "start": 562.63995, "word": "the" }, { "confidence": 1, "end": 563.2, "punctuated_word": "answering", "speaker": 0, "speaker_confidence": 0.7895508, "start": 562.8, "word": "answering" }, { "confidence": 0.99902344, "end": 563.7, "punctuated_word": "user.", "speaker": 0, "speaker_confidence": 0.7895508, "start": 563.2, "word": "user" }, { "confidence": 1, "end": 563.92, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.9785156, "start": 563.76, "word": "we" }, { "confidence": 0.9980469, "end": 564, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.9785156, "start": 563.92, "word": "do" }, { "confidence": 1, "end": 564.32, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9785156, "start": 564, "word": "that" }, { "confidence": 0.9980469, "end": 564.48, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.9785156, "start": 564.32, "word": "by" }, { "confidence": 1, "end": 564.8, "punctuated_word": "listening", "speaker": 0, "speaker_confidence": 0.9785156, "start": 564.48, "word": "listening" }, { "confidence": 1, "end": 565.12, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9785156, "start": 564.8, "word": "to" }, { "confidence": 1, "end": 565.6, "punctuated_word": "updates", "speaker": 0, "speaker_confidence": 0.9785156, "start": 565.12, "word": "updates" }, { "confidence": 0.99902344, "end": 565.76, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9785156, "start": 565.6, "word": "to" }, { "confidence": 0.99902344, "end": 566, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9785156, "start": 565.76, "word": "the" }, { "confidence": 0.94970703, "end": 566.32, "punctuated_word": "answer", "speaker": 0, "speaker_confidence": 0.9785156, "start": 566, "word": "answer" }, { "confidence": 0.8959961, "end": 566.82, "punctuated_word": "candidates", "speaker": 0, "speaker_confidence": 0.9785156, "start": 566.32, "word": "candidates" }, { "confidence": 0.9914551, "end": 567.38, "punctuated_word": "collection.", "speaker": 0, "speaker_confidence": 0.9785156, "start": 566.88, "word": "collection" }, { "confidence": 0.9975586, "end": 568.045, "punctuated_word": "Firestore", "speaker": 0, "speaker_confidence": 0.9785156, "start": 567.645, "word": "firestore" }, { "confidence": 0.99902344, "end": 568.285, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.9785156, "start": 568.045, "word": "has" }, { "confidence": 1, "end": 568.445, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9785156, "start": 568.285, "word": "a" }, { "confidence": 1, "end": 568.605, "punctuated_word": "cool", "speaker": 0, "speaker_confidence": 0.9785156, "start": 568.445, "word": "cool" }, { "confidence": 0.98828125, "end": 568.84503, "punctuated_word": "little", "speaker": 0, "speaker_confidence": 0.9785156, "start": 568.605, "word": "little" }, { "confidence": 1, "end": 569.325, "punctuated_word": "feature", "speaker": 0, "speaker_confidence": 0.9785156, "start": 568.84503, "word": "feature" }, { "confidence": 0.9428711, "end": 569.485, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.9785156, "start": 569.325, "word": "where" }, { "confidence": 1, "end": 569.645, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.9785156, "start": 569.485, "word": "you" }, { "confidence": 1, "end": 569.805, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9785156, "start": 569.645, "word": "can" }, { "confidence": 1, "end": 570.125, "punctuated_word": "listen", "speaker": 0, "speaker_confidence": 0.9785156, "start": 569.805, "word": "listen" }, { "confidence": 0.99902344, "end": 570.445, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9785156, "start": 570.125, "word": "to" }, { "confidence": 0.99609375, "end": 570.765, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.9785156, "start": 570.445, "word": "only" }, { "confidence": 1, "end": 571.085, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9785156, "start": 570.765, "word": "the" }, { "confidence": 1, "end": 571.565, "punctuated_word": "documents", "speaker": 0, "speaker_confidence": 0.9785156, "start": 571.085, "word": "documents" }, { "confidence": 1, "end": 571.725, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9785156, "start": 571.565, "word": "that" }, { "confidence": 0.9980469, "end": 571.885, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.9785156, "start": 571.725, "word": "have" }, { "confidence": 1, "end": 572.045, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.9785156, "start": 571.885, "word": "been" }, { "confidence": 1, "end": 572.365, "punctuated_word": "added", "speaker": 0, "speaker_confidence": 0.9785156, "start": 572.045, "word": "added" }, { "confidence": 1, "end": 572.525, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9785156, "start": 572.365, "word": "to" }, { "confidence": 1, "end": 572.685, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9785156, "start": 572.525, "word": "the" }, { "confidence": 0.9758301, "end": 573.185, "punctuated_word": "collection,", "speaker": 0, "speaker_confidence": 0.9785156, "start": 572.685, "word": "collection" }, { "confidence": 1, "end": 573.565, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.9785156, "start": 573.325, "word": "which" }, { "confidence": 1, "end": 573.725, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9785156, "start": 573.565, "word": "is" }, { "confidence": 1, "end": 574.045, "punctuated_word": "handled", "speaker": 0, "speaker_confidence": 0.9785156, "start": 573.725, "word": "handled" }, { "confidence": 1, "end": 574.205, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.9785156, "start": 574.045, "word": "with" }, { "confidence": 0.9951172, "end": 574.365, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9785156, "start": 574.205, "word": "the" }, { "confidence": 0.94628906, "end": 574.605, "punctuated_word": "doc", "speaker": 0, "speaker_confidence": 0.9785156, "start": 574.365, "word": "doc" }, { "confidence": 0.8984375, "end": 575.005, "punctuated_word": "changes", "speaker": 0, "speaker_confidence": 0.9785156, "start": 574.605, "word": "changes" }, { "confidence": 0.9980469, "end": 575.405, "punctuated_word": "method", "speaker": 0, "speaker_confidence": 0.9785156, "start": 575.005, "word": "method" }, { "confidence": 1, "end": 575.565, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.9785156, "start": 575.405, "word": "on" }, { "confidence": 1, "end": 575.725, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9785156, "start": 575.565, "word": "the" }, { "confidence": 0.9970703, "end": 576.225, "punctuated_word": "query.", "speaker": 0, "speaker_confidence": 0.9785156, "start": 575.725, "word": "query" }, { "confidence": 1, "end": 576.62, "punctuated_word": "So", "speaker": 0, "speaker_confidence": 0.8520508, "start": 576.46, "word": "so" }, { "confidence": 0.9980469, "end": 576.78, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 0.8520508, "start": 576.62, "word": "every" }, { "confidence": 1, "end": 577.1, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.8520508, "start": 576.78, "word": "time" }, { "confidence": 1, "end": 577.26, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.8520508, "start": 577.1, "word": "we" }, { "confidence": 1, "end": 577.42, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.8520508, "start": 577.26, "word": "have" }, { "confidence": 1, "end": 577.58, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8520508, "start": 577.42, "word": "a" }, { "confidence": 1, "end": 577.74, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.8520508, "start": 577.58, "word": "new" }, { "confidence": 1, "end": 578.22003, "punctuated_word": "document", "speaker": 0, "speaker_confidence": 0.8520508, "start": 577.74, "word": "document" }, { "confidence": 0.99902344, "end": 578.7, "punctuated_word": "added,", "speaker": 0, "speaker_confidence": 0.8520508, "start": 578.22003, "word": "added" }, { "confidence": 1, "end": 578.94, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.8520508, "start": 578.7, "word": "we" }, { "confidence": 1, "end": 579.1, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.8520508, "start": 578.94, "word": "can" }, { "confidence": 1, "end": 579.42, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.8520508, "start": 579.1, "word": "then" }, { "confidence": 1, "end": 579.74, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.8520508, "start": 579.42, "word": "create" }, { "confidence": 1, "end": 579.98, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8520508, "start": 579.74, "word": "a" }, { "confidence": 0.99902344, "end": 580.38, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.8520508, "start": 579.98, "word": "new" }, { "confidence": 0.5004883, "end": 580.62, "punctuated_word": "ICE", "speaker": 0, "speaker_confidence": 0.8520508, "start": 580.38, "word": "ice" }, { "confidence": 0.98828125, "end": 581.12, "punctuated_word": "candidate", "speaker": 0, "speaker_confidence": 0.8520508, "start": 580.62, "word": "candidate" }, { "confidence": 1, "end": 581.5, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.8520508, "start": 581.26, "word": "with" }, { "confidence": 0.99902344, "end": 581.58, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8520508, "start": 581.5, "word": "the" }, { "confidence": 1, "end": 581.98, "punctuated_word": "document", "speaker": 0, "speaker_confidence": 0.8520508, "start": 581.58, "word": "document" }, { "confidence": 1, "end": 582.48, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.8520508, "start": 581.98, "word": "data" }, { "confidence": 0.78125, "end": 582.94, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8520508, "start": 582.78, "word": "and" }, { "confidence": 1, "end": 583.1, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.8520508, "start": 582.94, "word": "then" }, { "confidence": 1, "end": 583.26, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.8520508, "start": 583.1, "word": "add" }, { "confidence": 1, "end": 583.5, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8520508, "start": 583.26, "word": "that" }, { "confidence": 1, "end": 584, "punctuated_word": "candidate", "speaker": 0, "speaker_confidence": 0.8520508, "start": 583.5, "word": "candidate" }, { "confidence": 1, "end": 584.445, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8520508, "start": 584.28503, "word": "to" }, { "confidence": 0.99902344, "end": 584.685, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.8520508, "start": 584.445, "word": "our" }, { "confidence": 0.9350586, "end": 585.185, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 0.8520508, "start": 584.685, "word": "peer" }, { "confidence": 0.9995117, "end": 585.885, "punctuated_word": "connection.", "speaker": 0, "speaker_confidence": 0.9892578, "start": 585.805, "word": "connection" }, { "confidence": 1, "end": 585.965, "punctuated_word": "At", "speaker": 0, "speaker_confidence": 0.9892578, "start": 585.885, "word": "at" }, { "confidence": 1, "end": 586.125, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.9892578, "start": 585.965, "word": "this" }, { "confidence": 0.99853516, "end": 586.28503, "punctuated_word": "point,", "speaker": 0, "speaker_confidence": 0.9892578, "start": 586.125, "word": "point" }, { "confidence": 0.9995117, "end": 586.525, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.9892578, "start": 586.28503, "word": "we're" }, { "confidence": 1, "end": 586.925, "punctuated_word": "listening", "speaker": 0, "speaker_confidence": 0.9892578, "start": 586.525, "word": "listening" }, { "confidence": 1, "end": 587.085, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9892578, "start": 586.925, "word": "to" }, { "confidence": 1, "end": 587.48505, "punctuated_word": "updates", "speaker": 0, "speaker_confidence": 0.9892578, "start": 587.085, "word": "updates" }, { "confidence": 1, "end": 587.72504, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.9892578, "start": 587.48505, "word": "from" }, { "confidence": 1, "end": 587.885, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9892578, "start": 587.72504, "word": "the" }, { "confidence": 0.99609375, "end": 588.205, "punctuated_word": "answer", "speaker": 0, "speaker_confidence": 0.9892578, "start": 587.885, "word": "answer" }, { "confidence": 0.98950195, "end": 588.705, "punctuated_word": "side,", "speaker": 0, "speaker_confidence": 0.9892578, "start": 588.205, "word": "side" }, { "confidence": 1, "end": 589.005, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.9892578, "start": 588.765, "word": "but" }, { "confidence": 1, "end": 589.085, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.9892578, "start": 589.005, "word": "we" }, { "confidence": 1, "end": 589.325, "punctuated_word": "still", "speaker": 0, "speaker_confidence": 0.9892578, "start": 589.085, "word": "still" }, { "confidence": 1, "end": 589.48505, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.9892578, "start": 589.325, "word": "need" }, { "confidence": 0.99902344, "end": 589.565, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9892578, "start": 589.48505, "word": "to" }, { "confidence": 1, "end": 589.805, "punctuated_word": "give", "speaker": 0, "speaker_confidence": 0.9892578, "start": 589.565, "word": "give" }, { "confidence": 1, "end": 590.04504, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9892578, "start": 589.805, "word": "the" }, { "confidence": 0.9951172, "end": 590.445, "punctuated_word": "answering", "speaker": 0, "speaker_confidence": 0.9892578, "start": 590.04504, "word": "answering" }, { "confidence": 0.99902344, "end": 590.84503, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 0.9892578, "start": 590.445, "word": "user" }, { "confidence": 1, "end": 591.005, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9892578, "start": 590.84503, "word": "a" }, { "confidence": 1, "end": 591.245, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 0.9892578, "start": 591.005, "word": "way" }, { "confidence": 1, "end": 591.565, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9892578, "start": 591.245, "word": "to" }, { "confidence": 0.9970703, "end": 591.965, "punctuated_word": "actually", "speaker": 0, "speaker_confidence": 0.9892578, "start": 591.565, "word": "actually" }, { "confidence": 1, "end": 592.28503, "punctuated_word": "answer", "speaker": 0, "speaker_confidence": 0.9892578, "start": 591.965, "word": "answer" }, { "confidence": 1, "end": 592.445, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9892578, "start": 592.28503, "word": "the" }, { "confidence": 1, "end": 592.945, "punctuated_word": "call.", "speaker": 0, "speaker_confidence": 0.9892578, "start": 592.445, "word": "call" }, { "confidence": 1, "end": 593.405, "punctuated_word": "Answering", "speaker": 0, "speaker_confidence": 0.9892578, "start": 593.005, "word": "answering" }, { "confidence": 0.9760742, "end": 593.565, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9892578, "start": 593.405, "word": "a" }, { "confidence": 1, "end": 593.805, "punctuated_word": "call", "speaker": 0, "speaker_confidence": 0.9892578, "start": 593.565, "word": "call" }, { "confidence": 0.94921875, "end": 593.95, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9892578, "start": 593.805, "word": "is" }, { "confidence": 0.9892578, "end": 594.27, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 0.9892578, "start": 594.11, "word": "very" }, { "confidence": 1, "end": 594.59, "punctuated_word": "similar", "speaker": 0, "speaker_confidence": 0.9892578, "start": 594.27, "word": "similar" }, { "confidence": 0.9980469, "end": 594.91003, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9892578, "start": 594.59, "word": "to" }, { "confidence": 0.99902344, "end": 595.31, "punctuated_word": "initiating", "speaker": 0, "speaker_confidence": 0.9892578, "start": 594.91003, "word": "initiating" }, { "confidence": 0.8461914, "end": 595.47003, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9892578, "start": 595.31, "word": "a" }, { "confidence": 0.85009766, "end": 595.87, "punctuated_word": "call.", "speaker": 0, "speaker_confidence": 0.9892578, "start": 595.47003, "word": "call" }, { "confidence": 1, "end": 596.03, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.9892578, "start": 595.87, "word": "the" }, { "confidence": 1, "end": 596.27, "punctuated_word": "main", "speaker": 0, "speaker_confidence": 0.9892578, "start": 596.03, "word": "main" }, { "confidence": 0.99902344, "end": 596.75, "punctuated_word": "difference", "speaker": 0, "speaker_confidence": 0.9892578, "start": 596.27, "word": "difference" }, { "confidence": 0.99609375, "end": 596.91003, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9892578, "start": 596.75, "word": "is" }, { "confidence": 1, "end": 597.07, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9892578, "start": 596.91003, "word": "that" }, { "confidence": 0.99560547, "end": 597.23004, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.9892578, "start": 597.07, "word": "we're" }, { "confidence": 1, "end": 597.55, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.9892578, "start": 597.23004, "word": "going" }, { "confidence": 0.9980469, "end": 597.71, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9892578, "start": 597.55, "word": "to" }, { "confidence": 1, "end": 598.03, "punctuated_word": "listen", "speaker": 0, "speaker_confidence": 0.9892578, "start": 597.71, "word": "listen" }, { "confidence": 0.99902344, "end": 598.19, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9892578, "start": 598.03, "word": "to" }, { "confidence": 0.9951172, "end": 598.35004, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9892578, "start": 598.19, "word": "a" }, { "confidence": 0.9980469, "end": 598.75, "punctuated_word": "document", "speaker": 0, "speaker_confidence": 0.9892578, "start": 598.35004, "word": "document" }, { "confidence": 0.99121094, "end": 598.91003, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9892578, "start": 598.75, "word": "in" }, { "confidence": 0.9980469, "end": 599.41003, "punctuated_word": "Firestore", "speaker": 0, "speaker_confidence": 0.9892578, "start": 598.91003, "word": "firestore" }, { "confidence": 0.98291016, "end": 599.95, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.9892578, "start": 599.71, "word": "with" }, { "confidence": 0.98828125, "end": 600.03, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9892578, "start": 599.95, "word": "the" }, { "confidence": 0.9921875, "end": 600.27, "punctuated_word": "same", "speaker": 0, "speaker_confidence": 0.9892578, "start": 600.03, "word": "same" }, { "confidence": 0.99316406, "end": 600.77, "punctuated_word": "document", "speaker": 0, "speaker_confidence": 0.9892578, "start": 600.27, "word": "document" }, { "confidence": 0.9980469, "end": 601.15, "punctuated_word": "ID", "speaker": 0, "speaker_confidence": 0.9892578, "start": 600.83, "word": "id" }, { "confidence": 0.9980469, "end": 601.31, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9892578, "start": 601.15, "word": "that" }, { "confidence": 0.99609375, "end": 601.47003, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.9892578, "start": 601.31, "word": "was" }, { "confidence": 0.99902344, "end": 601.87, "punctuated_word": "created", "speaker": 0, "speaker_confidence": 0.9892578, "start": 601.47003, "word": "created" }, { "confidence": 0.99609375, "end": 601.95, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.88378906, "start": 601.87, "word": "by" }, { "confidence": 0.9892578, "end": 602.11, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.88378906, "start": 601.95, "word": "the" }, { "confidence": 0.9980469, "end": 602.59, "punctuated_word": "caller.", "speaker": 0, "speaker_confidence": 0.88378906, "start": 602.11, "word": "caller" }, { "confidence": 0.9885254, "end": 602.83, "punctuated_word": "We'll", "speaker": 0, "speaker_confidence": 0.88378906, "start": 602.59, "word": "we'll" }, { "confidence": 0.9921875, "end": 602.99, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.88378906, "start": 602.83, "word": "make" }, { "confidence": 0.9716797, "end": 603.07, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.88378906, "start": 602.99, "word": "a" }, { "confidence": 0.99902344, "end": 603.47003, "punctuated_word": "reference", "speaker": 0, "speaker_confidence": 0.88378906, "start": 603.07, "word": "reference" }, { "confidence": 0.9550781, "end": 603.63, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.88378906, "start": 603.47003, "word": "to" }, { "confidence": 0.86865234, "end": 603.935, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.88378906, "start": 603.63, "word": "that" }, { "confidence": 0.7241211, "end": 604.415, "punctuated_word": "document", "speaker": 0, "speaker_confidence": 0.88378906, "start": 604.095, "word": "document" }, { "confidence": 0.7792969, "end": 604.65497, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.88378906, "start": 604.415, "word": "as" }, { "confidence": 1, "end": 604.895, "punctuated_word": "well", "speaker": 0, "speaker_confidence": 0.88378906, "start": 604.65497, "word": "well" }, { "confidence": 0.9951172, "end": 605.055, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.88378906, "start": 604.895, "word": "as" }, { "confidence": 0.9970703, "end": 605.215, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.88378906, "start": 605.055, "word": "the" }, { "confidence": 0.97265625, "end": 605.615, "punctuated_word": "answer", "speaker": 0, "speaker_confidence": 0.88378906, "start": 605.215, "word": "answer" }, { "confidence": 0.74609375, "end": 606.095, "punctuated_word": "candidate's", "speaker": 0, "speaker_confidence": 0.88378906, "start": 605.615, "word": "candidate's" }, { "confidence": 0.9279785, "end": 606.595, "punctuated_word": "collection,", "speaker": 0, "speaker_confidence": 0.88378906, "start": 606.095, "word": "collection" }, { "confidence": 1, "end": 607.135, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.88378906, "start": 606.975, "word": "then" }, { "confidence": 0.99902344, "end": 607.455, "punctuated_word": "listen", "speaker": 0, "speaker_confidence": 0.88378906, "start": 607.135, "word": "listen" }, { "confidence": 1, "end": 607.615, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.88378906, "start": 607.455, "word": "to" }, { "confidence": 1, "end": 607.855, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.88378906, "start": 607.615, "word": "the" }, { "confidence": 0.88671875, "end": 608.095, "punctuated_word": "ICE", "speaker": 0, "speaker_confidence": 0.88378906, "start": 607.855, "word": "ice" }, { "confidence": 0.9086914, "end": 608.575, "punctuated_word": "candidate", "speaker": 0, "speaker_confidence": 0.88378906, "start": 608.095, "word": "candidate" }, { "confidence": 0.99902344, "end": 608.975, "punctuated_word": "event", "speaker": 0, "speaker_confidence": 0.88378906, "start": 608.575, "word": "event" }, { "confidence": 1, "end": 609.135, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.88378906, "start": 608.975, "word": "on" }, { "confidence": 0.99902344, "end": 609.215, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7792969, "start": 609.135, "word": "the" }, { "confidence": 0.4946289, "end": 609.455, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 0.7792969, "start": 609.215, "word": "peer" }, { "confidence": 0.99902344, "end": 609.955, "punctuated_word": "connection", "speaker": 0, "speaker_confidence": 0.7792969, "start": 609.455, "word": "connection" }, { "confidence": 0.99902344, "end": 610.495, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7792969, "start": 610.255, "word": "to" }, { "confidence": 1, "end": 610.975, "punctuated_word": "update", "speaker": 0, "speaker_confidence": 0.7792969, "start": 610.495, "word": "update" }, { "confidence": 0.85058594, "end": 611.375, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7792969, "start": 610.975, "word": "the" }, { "confidence": 1, "end": 611.76, "punctuated_word": "answer", "speaker": 0, "speaker_confidence": 0.7792969, "start": 611.375, "word": "answer" }, { "confidence": 0.6323242, "end": 611.92, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.7792969, "start": 611.84, "word": "the" }, { "confidence": 0.8823242, "end": 612.24, "punctuated_word": "candidate's", "speaker": 0, "speaker_confidence": 0.9375, "start": 611.92, "word": "candidate's" }, { "confidence": 0.9970703, "end": 612.74, "punctuated_word": "collection", "speaker": 0, "speaker_confidence": 0.9375, "start": 612.24, "word": "collection" }, { "confidence": 0.8520508, "end": 613.44, "punctuated_word": "whenever", "speaker": 0, "speaker_confidence": 0.9375, "start": 613.12, "word": "whenever" }, { "confidence": 0.99902344, "end": 613.52, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9375, "start": 613.44, "word": "a" }, { "confidence": 1, "end": 613.76, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.9375, "start": 613.52, "word": "new" }, { "confidence": 1, "end": 614.24, "punctuated_word": "candidate", "speaker": 0, "speaker_confidence": 0.9375, "start": 613.76, "word": "candidate" }, { "confidence": 1, "end": 614.48, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9375, "start": 614.24, "word": "is" }, { "confidence": 1, "end": 614.98, "punctuated_word": "generated.", "speaker": 0, "speaker_confidence": 0.9375, "start": 614.48, "word": "generated" }, { "confidence": 1, "end": 615.60004, "punctuated_word": "From", "speaker": 0, "speaker_confidence": 0.9375, "start": 615.44, "word": "from" }, { "confidence": 0.99902344, "end": 616, "punctuated_word": "there,", "speaker": 0, "speaker_confidence": 0.9375, "start": 615.60004, "word": "there" }, { "confidence": 1, "end": 616.24, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.9375, "start": 616, "word": "we" }, { "confidence": 1, "end": 616.4, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9375, "start": 616.24, "word": "can" }, { "confidence": 1, "end": 616.64, "punctuated_word": "fetch", "speaker": 0, "speaker_confidence": 0.9375, "start": 616.4, "word": "fetch" }, { "confidence": 1, "end": 616.8, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9375, "start": 616.64, "word": "the" }, { "confidence": 0.9980469, "end": 617.04004, "punctuated_word": "call", "speaker": 0, "speaker_confidence": 0.9375, "start": 616.8, "word": "call" }, { "confidence": 1, "end": 617.44, "punctuated_word": "document", "speaker": 0, "speaker_confidence": 0.9375, "start": 617.04004, "word": "document" }, { "confidence": 1, "end": 617.60004, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.9375, "start": 617.44, "word": "from" }, { "confidence": 1, "end": 617.76, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9375, "start": 617.60004, "word": "the" }, { "confidence": 1, "end": 618.26, "punctuated_word": "database", "speaker": 0, "speaker_confidence": 0.9375, "start": 617.76, "word": "database" }, { "confidence": 0.98828125, "end": 618.48, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9375, "start": 618.32, "word": "and" }, { "confidence": 1, "end": 618.8, "punctuated_word": "grab", "speaker": 0, "speaker_confidence": 0.9375, "start": 618.48, "word": "grab" }, { "confidence": 0.9951172, "end": 618.96, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.9375, "start": 618.8, "word": "its" }, { "confidence": 1, "end": 619.46, "punctuated_word": "data.", "speaker": 0, "speaker_confidence": 0.9375, "start": 618.96, "word": "data" }, { "confidence": 1, "end": 619.76, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.9375, "start": 619.60004, "word": "it" }, { "confidence": 1, "end": 620.08, "punctuated_word": "contains", "speaker": 0, "speaker_confidence": 0.9375, "start": 619.76, "word": "contains" }, { "confidence": 1, "end": 620.32, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9375, "start": 620.08, "word": "the" }, { "confidence": 0.9980469, "end": 620.64, "punctuated_word": "offer", "speaker": 0, "speaker_confidence": 0.9375, "start": 620.32, "word": "offer" }, { "confidence": 0.9580078, "end": 621.025, "punctuated_word": "data,", "speaker": 0, "speaker_confidence": 0.9375, "start": 620.64, "word": "data" }, { "confidence": 0.99609375, "end": 621.42505, "punctuated_word": "Which", "speaker": 0, "speaker_confidence": 0.9375, "start": 621.265, "word": "which" }, { "confidence": 0.9980469, "end": 621.505, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.9375, "start": 621.42505, "word": "we" }, { "confidence": 1, "end": 621.745, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9375, "start": 621.505, "word": "can" }, { "confidence": 1, "end": 622.065, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.9375, "start": 621.745, "word": "use" }, { "confidence": 1, "end": 622.22504, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9375, "start": 622.065, "word": "to" }, { "confidence": 1, "end": 622.625, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.9375, "start": 622.22504, "word": "set" }, { "confidence": 1, "end": 622.945, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9375, "start": 622.625, "word": "a" }, { "confidence": 1, "end": 623.34503, "punctuated_word": "remote", "speaker": 0, "speaker_confidence": 0.9375, "start": 622.945, "word": "remote" }, { "confidence": 1, "end": 623.84503, "punctuated_word": "description", "speaker": 0, "speaker_confidence": 0.9375, "start": 623.34503, "word": "description" }, { "confidence": 1, "end": 624.385, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.9375, "start": 624.22504, "word": "on" }, { "confidence": 0.9140625, "end": 624.54504, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9375, "start": 624.385, "word": "the" }, { "confidence": 0.95410156, "end": 624.78503, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 0.9375, "start": 624.54504, "word": "peer" }, { "confidence": 1, "end": 625.28503, "punctuated_word": "connection.", "speaker": 0, "speaker_confidence": 0.9375, "start": 624.78503, "word": "connection" }, { "confidence": 1, "end": 625.905, "punctuated_word": "After", "speaker": 0, "speaker_confidence": 0.9375, "start": 625.66504, "word": "after" }, { "confidence": 0.9995117, "end": 626.30505, "punctuated_word": "that,", "speaker": 0, "speaker_confidence": 0.9375, "start": 625.905, "word": "that" }, { "confidence": 1, "end": 626.465, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.9375, "start": 626.30505, "word": "we" }, { "confidence": 1, "end": 626.625, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9375, "start": 626.465, "word": "can" }, { "confidence": 0.99902344, "end": 626.86505, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.9375, "start": 626.625, "word": "then" }, { "confidence": 1, "end": 627.265, "punctuated_word": "generate", "speaker": 0, "speaker_confidence": 0.9375, "start": 626.86505, "word": "generate" }, { "confidence": 0.99609375, "end": 627.505, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.9375, "start": 627.265, "word": "an" }, { "confidence": 1, "end": 627.825, "punctuated_word": "answer", "speaker": 0, "speaker_confidence": 0.9375, "start": 627.505, "word": "answer" }, { "confidence": 0.89160156, "end": 628.325, "punctuated_word": "locally,", "speaker": 0, "speaker_confidence": 0.9375, "start": 627.825, "word": "locally" }, { "confidence": 0.99902344, "end": 628.705, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.9375, "start": 628.465, "word": "then" }, { "confidence": 0.99902344, "end": 628.86505, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.9375, "start": 628.705, "word": "set" }, { "confidence": 0.99902344, "end": 629.025, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9375, "start": 628.86505, "word": "the" }, { "confidence": 1, "end": 629.42505, "punctuated_word": "local", "speaker": 0, "speaker_confidence": 0.9375, "start": 629.025, "word": "local" }, { "confidence": 1, "end": 629.9, "punctuated_word": "description", "speaker": 0, "speaker_confidence": 0.9375, "start": 629.42505, "word": "description" }, { "confidence": 0.99902344, "end": 630.14, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.9375, "start": 629.98004, "word": "as" }, { "confidence": 1, "end": 630.38, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9375, "start": 630.14, "word": "the" }, { "confidence": 1, "end": 630.88, "punctuated_word": "answer.", "speaker": 0, "speaker_confidence": 0.9375, "start": 630.38, "word": "answer" }, { "confidence": 1, "end": 631.34, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.9375, "start": 631.10004, "word": "now" }, { "confidence": 0.9760742, "end": 631.58, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.9375, "start": 631.34, "word": "just" }, { "confidence": 1, "end": 631.66003, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.9375, "start": 631.58, "word": "like" }, { "confidence": 1, "end": 631.74005, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.9453125, "start": 631.66003, "word": "we" }, { "confidence": 1, "end": 631.98004, "punctuated_word": "did", "speaker": 0, "speaker_confidence": 0.9453125, "start": 631.74005, "word": "did" }, { "confidence": 1, "end": 632.14, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.9453125, "start": 631.98004, "word": "with" }, { "confidence": 1, "end": 632.30005, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9453125, "start": 632.14, "word": "the" }, { "confidence": 1, "end": 632.62, "punctuated_word": "offer", "speaker": 0, "speaker_confidence": 0.9453125, "start": 632.30005, "word": "offer" }, { "confidence": 0.88720703, "end": 632.78, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9453125, "start": 632.62, "word": "in" }, { "confidence": 0.99902344, "end": 632.86005, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9453125, "start": 632.78, "word": "the" }, { "confidence": 1, "end": 633.34, "punctuated_word": "previous", "speaker": 0, "speaker_confidence": 0.9453125, "start": 632.86005, "word": "previous" }, { "confidence": 1, "end": 633.84, "punctuated_word": "function,", "speaker": 0, "speaker_confidence": 0.9453125, "start": 633.34, "word": "function" }, { "confidence": 1, "end": 634.14, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.9453125, "start": 633.98004, "word": "we'll" }, { "confidence": 1, "end": 634.38, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.9453125, "start": 634.14, "word": "set" }, { "confidence": 1, "end": 634.46, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.9453125, "start": 634.38, "word": "it" }, { "confidence": 1, "end": 634.7, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.9453125, "start": 634.46, "word": "up" }, { "confidence": 1, "end": 634.94, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.9453125, "start": 634.7, "word": "as" }, { "confidence": 1, "end": 635.10004, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9453125, "start": 634.94, "word": "a" }, { "confidence": 0.99316406, "end": 635.42004, "punctuated_word": "plain", "speaker": 0, "speaker_confidence": 0.9453125, "start": 635.10004, "word": "plain" }, { "confidence": 1, "end": 635.92004, "punctuated_word": "object", "speaker": 0, "speaker_confidence": 0.9453125, "start": 635.42004, "word": "object" }, { "confidence": 0.8618164, "end": 636.38, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9453125, "start": 636.30005, "word": "and" }, { "confidence": 1, "end": 636.7, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.9453125, "start": 636.38, "word": "then" }, { "confidence": 0.9980469, "end": 637.02, "punctuated_word": "update", "speaker": 0, "speaker_confidence": 0.9453125, "start": 636.7, "word": "update" }, { "confidence": 1, "end": 637.245, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.9453125, "start": 637.02, "word": "it" }, { "confidence": 1, "end": 637.40497, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.9453125, "start": 637.325, "word": "on" }, { "confidence": 0.99902344, "end": 637.565, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9453125, "start": 637.40497, "word": "the" }, { "confidence": 0.96777344, "end": 637.885, "punctuated_word": "call", "speaker": 0, "speaker_confidence": 0.9453125, "start": 637.565, "word": "call" }, { "confidence": 1, "end": 638.385, "punctuated_word": "document", "speaker": 0, "speaker_confidence": 0.9453125, "start": 637.885, "word": "document" }, { "confidence": 0.97314453, "end": 638.685, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.9453125, "start": 638.445, "word": "so" }, { "confidence": 1, "end": 638.925, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9453125, "start": 638.685, "word": "that" }, { "confidence": 1, "end": 639.085, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9453125, "start": 638.925, "word": "the" }, { "confidence": 1, "end": 639.245, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.9453125, "start": 639.085, "word": "other" }, { "confidence": 1, "end": 639.565, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 0.9453125, "start": 639.245, "word": "user" }, { "confidence": 1, "end": 639.805, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9453125, "start": 639.565, "word": "can" }, { "confidence": 1, "end": 640.045, "punctuated_word": "listen", "speaker": 0, "speaker_confidence": 0.9453125, "start": 639.805, "word": "listen" }, { "confidence": 1, "end": 640.205, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9453125, "start": 640.045, "word": "to" }, { "confidence": 1, "end": 640.365, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9453125, "start": 640.205, "word": "the" }, { "confidence": 1, "end": 640.865, "punctuated_word": "answer.", "speaker": 0, "speaker_confidence": 0.9453125, "start": 640.365, "word": "answer" }, { "confidence": 1, "end": 641.245, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.9453125, "start": 641.085, "word": "in" }, { "confidence": 1, "end": 641.725, "punctuated_word": "addition,", "speaker": 0, "speaker_confidence": 0.9453125, "start": 641.245, "word": "addition" }, { "confidence": 1, "end": 641.885, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.7114258, "start": 641.725, "word": "we'll" }, { "confidence": 0.9980469, "end": 642.045, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.7114258, "start": 641.885, "word": "set" }, { "confidence": 1, "end": 642.205, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.7114258, "start": 642.045, "word": "up" }, { "confidence": 1, "end": 642.365, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7114258, "start": 642.205, "word": "a" }, { "confidence": 1, "end": 642.845, "punctuated_word": "listener", "speaker": 0, "speaker_confidence": 0.7114258, "start": 642.365, "word": "listener" }, { "confidence": 1, "end": 643.005, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.7114258, "start": 642.845, "word": "on" }, { "confidence": 1, "end": 643.165, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7114258, "start": 643.005, "word": "the" }, { "confidence": 0.99316406, "end": 643.485, "punctuated_word": "offer", "speaker": 0, "speaker_confidence": 0.7114258, "start": 643.165, "word": "offer" }, { "confidence": 0.7871094, "end": 643.96497, "punctuated_word": "candidates", "speaker": 0, "speaker_confidence": 0.7114258, "start": 643.485, "word": "candidates" }, { "confidence": 0.7416992, "end": 644.46497, "punctuated_word": "collection,", "speaker": 0, "speaker_confidence": 0.7114258, "start": 643.96497, "word": "collection" }, { "confidence": 0.9951172, "end": 644.86, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8203125, "start": 644.685, "word": "and" }, { "confidence": 0.99902344, "end": 645.33997, "punctuated_word": "whenever", "speaker": 0, "speaker_confidence": 0.8203125, "start": 645.01996, "word": "whenever" }, { "confidence": 0.9980469, "end": 645.57996, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8203125, "start": 645.33997, "word": "a" }, { "confidence": 1, "end": 645.82, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.8203125, "start": 645.57996, "word": "new" }, { "confidence": 0.76123047, "end": 646.14, "punctuated_word": "ICE", "speaker": 0, "speaker_confidence": 0.8203125, "start": 645.82, "word": "ice" }, { "confidence": 0.96533203, "end": 646.64, "punctuated_word": "candidate", "speaker": 0, "speaker_confidence": 0.8203125, "start": 646.14, "word": "candidate" }, { "confidence": 1, "end": 646.94, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8203125, "start": 646.7, "word": "is" }, { "confidence": 1, "end": 647.18, "punctuated_word": "added", "speaker": 0, "speaker_confidence": 0.8203125, "start": 646.94, "word": "added" }, { "confidence": 1, "end": 647.33997, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8203125, "start": 647.18, "word": "to" }, { "confidence": 0.99902344, "end": 647.5, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8203125, "start": 647.33997, "word": "that" }, { "confidence": 0.99902344, "end": 648, "punctuated_word": "collection,", "speaker": 0, "speaker_confidence": 0.8203125, "start": 647.5, "word": "collection" }, { "confidence": 1, "end": 648.38, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.8203125, "start": 648.22, "word": "then" }, { "confidence": 0.9975586, "end": 648.54, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.8203125, "start": 648.38, "word": "we'll" }, { "confidence": 1, "end": 648.7, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.7392578, "start": 648.54, "word": "go" }, { "confidence": 1, "end": 649.01996, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 0.7392578, "start": 648.7, "word": "ahead" }, { "confidence": 0.9970703, "end": 649.26, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7392578, "start": 649.01996, "word": "and" }, { "confidence": 1, "end": 649.66, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.7392578, "start": 649.26, "word": "create" }, { "confidence": 0.9970703, "end": 649.82, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.7392578, "start": 649.66, "word": "an" }, { "confidence": 0.9980469, "end": 650.14, "punctuated_word": "ICE", "speaker": 0, "speaker_confidence": 0.7392578, "start": 649.82, "word": "ice" }, { "confidence": 0.99609375, "end": 650.54, "punctuated_word": "candidate", "speaker": 0, "speaker_confidence": 0.7392578, "start": 650.14, "word": "candidate" }, { "confidence": 0.99902344, "end": 650.77997, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0.7392578, "start": 650.54, "word": "here" }, { "confidence": 0.8835449, "end": 651.27997, "punctuated_word": "locally.", "speaker": 0, "speaker_confidence": 0.7392578, "start": 650.77997, "word": "locally" }, { "confidence": 0.99902344, "end": 651.66, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.7392578, "start": 651.42, "word": "and" }, { "confidence": 0.9980469, "end": 651.82, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.7392578, "start": 651.66, "word": "that's" }, { "confidence": 1, "end": 651.98, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.7392578, "start": 651.82, "word": "all" }, { "confidence": 1, "end": 652.06, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.9526367, "start": 651.98, "word": "it" }, { "confidence": 1, "end": 652.45996, "punctuated_word": "takes", "speaker": 0, "speaker_confidence": 0.9526367, "start": 652.06, "word": "takes" }, { "confidence": 1, "end": 652.62, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9526367, "start": 652.45996, "word": "to" }, { "confidence": 1, "end": 652.86, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.9526367, "start": 652.62, "word": "build" }, { "confidence": 1, "end": 653.01996, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9526367, "start": 652.86, "word": "a" }, { "confidence": 1, "end": 653.33997, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.9526367, "start": 653.01996, "word": "video" }, { "confidence": 1, "end": 653.57996, "punctuated_word": "chat", "speaker": 0, "speaker_confidence": 0.9526367, "start": 653.33997, "word": "chat" }, { "confidence": 1, "end": 653.945, "punctuated_word": "feature", "speaker": 0, "speaker_confidence": 0.9526367, "start": 653.57996, "word": "feature" }, { "confidence": 0.8852539, "end": 654.185, "punctuated_word": "With", "speaker": 0, "speaker_confidence": 0.9526367, "start": 654.025, "word": "with" }, { "confidence": 0.93444824, "end": 654.685, "punctuated_word": "WebRTC,", "speaker": 0, "speaker_confidence": 0.9526367, "start": 654.185, "word": "webrtc" }, { "confidence": 0.99902344, "end": 655.465, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9526367, "start": 655.22504, "word": "the" }, { "confidence": 1, "end": 655.705, "punctuated_word": "vast", "speaker": 0, "speaker_confidence": 0.9526367, "start": 655.465, "word": "vast" }, { "confidence": 1, "end": 656.025, "punctuated_word": "majority", "speaker": 0, "speaker_confidence": 0.9526367, "start": 655.705, "word": "majority" }, { "confidence": 1, "end": 656.105, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9526367, "start": 656.025, "word": "of" }, { "confidence": 1, "end": 656.265, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9526367, "start": 656.105, "word": "the" }, { "confidence": 1, "end": 656.585, "punctuated_word": "work", "speaker": 0, "speaker_confidence": 0.9526367, "start": 656.265, "word": "work" }, { "confidence": 1, "end": 656.825, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9526367, "start": 656.585, "word": "is" }, { "confidence": 1, "end": 657.065, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.9526367, "start": 656.825, "word": "just" }, { "confidence": 0.97998047, "end": 657.545, "punctuated_word": "signaling", "speaker": 0, "speaker_confidence": 0.9526367, "start": 657.065, "word": "signaling" }, { "confidence": 1, "end": 657.865, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.9526367, "start": 657.545, "word": "data" }, { "confidence": 1, "end": 658.185, "punctuated_word": "between", "speaker": 0, "speaker_confidence": 0.9526367, "start": 657.865, "word": "between" }, { "confidence": 1, "end": 658.265, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9526367, "start": 658.185, "word": "the" }, { "confidence": 0.5810547, "end": 658.505, "punctuated_word": "two", "speaker": 0, "speaker_confidence": 0.9526367, "start": 658.265, "word": "two" }, { "confidence": 0.99902344, "end": 659.005, "punctuated_word": "users.", "speaker": 0, "speaker_confidence": 0.9526367, "start": 658.505, "word": "users" }, { "confidence": 0.99934894, "end": 659.805, "punctuated_word": "WebRTC", "speaker": 0, "speaker_confidence": 0.9526367, "start": 659.305, "word": "webrtc" }, { "confidence": 0.9902344, "end": 660.505, "punctuated_word": "handles", "speaker": 0, "speaker_confidence": 0.9526367, "start": 660.105, "word": "handles" }, { "confidence": 0.99902344, "end": 660.665, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.9526367, "start": 660.505, "word": "all" }, { "confidence": 0.9165039, "end": 660.825, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9526367, "start": 660.665, "word": "the" }, { "confidence": 1, "end": 661.325, "punctuated_word": "complicated", "speaker": 0, "speaker_confidence": 0.9526367, "start": 660.825, "word": "complicated" }, { "confidence": 0.9951172, "end": 661.705, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 0.9526367, "start": 661.465, "word": "peer" }, { "confidence": 0.9980469, "end": 661.78503, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9526367, "start": 661.705, "word": "to" }, { "confidence": 0.99902344, "end": 662.025, "punctuated_word": "peer", "speaker": 0, "speaker_confidence": 0.9526367, "start": 661.78503, "word": "peer" }, { "confidence": 0.99902344, "end": 662.505, "punctuated_word": "networking", "speaker": 0, "speaker_confidence": 0.9526367, "start": 662.025, "word": "networking" }, { "confidence": 0.9980469, "end": 662.825, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9526367, "start": 662.505, "word": "and" }, { "confidence": 0.9941406, "end": 663.22504, "punctuated_word": "media", "speaker": 0, "speaker_confidence": 0.9526367, "start": 662.825, "word": "media" }, { "confidence": 0.9951172, "end": 663.57, "punctuated_word": "streaming", "speaker": 0, "speaker_confidence": 0.9526367, "start": 663.22504, "word": "streaming" }, { "confidence": 0.62841797, "end": 663.89, "punctuated_word": "under", "speaker": 0, "speaker_confidence": 0.9526367, "start": 663.65, "word": "under" }, { "confidence": 1, "end": 663.97003, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9526367, "start": 663.89, "word": "the" }, { "confidence": 1, "end": 664.45, "punctuated_word": "hood.", "speaker": 0, "speaker_confidence": 0.9526367, "start": 663.97003, "word": "hood" }, { "confidence": 0.9995117, "end": 664.53, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.2290039, "start": 664.45, "word": "i'm" }, { "confidence": 0.9707031, "end": 664.77, "punctuated_word": "gonna", "speaker": 0, "speaker_confidence": 0.2290039, "start": 664.53, "word": "gonna" }, { "confidence": 0.9980469, "end": 664.85004, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.2290039, "start": 664.77, "word": "go" }, { "confidence": 1, "end": 665.01, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 0.2290039, "start": 664.85004, "word": "ahead" }, { "confidence": 0.99902344, "end": 665.09, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.2290039, "start": 665.01, "word": "and" }, { "confidence": 1, "end": 665.25, "punctuated_word": "wrap", "speaker": 0, "speaker_confidence": 0.734375, "start": 665.09, "word": "wrap" }, { "confidence": 1, "end": 665.41003, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 0.734375, "start": 665.25, "word": "things" }, { "confidence": 1, "end": 665.65, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.734375, "start": 665.41003, "word": "up" }, { "confidence": 1, "end": 666.05, "punctuated_word": "there.", "speaker": 0, "speaker_confidence": 0.734375, "start": 665.65, "word": "there" }, { "confidence": 0.99902344, "end": 666.21, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.734375, "start": 666.05, "word": "if" }, { "confidence": 1, "end": 666.37, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.734375, "start": 666.21, "word": "this" }, { "confidence": 1, "end": 666.69, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.734375, "start": 666.37, "word": "video" }, { "confidence": 0.99902344, "end": 666.85004, "punctuated_word": "helped", "speaker": 0, "speaker_confidence": 0.734375, "start": 666.69, "word": "helped" }, { "confidence": 0.9980469, "end": 667.09, "punctuated_word": "you,", "speaker": 0, "speaker_confidence": 0.734375, "start": 666.85004, "word": "you" }, { "confidence": 1, "end": 667.33, "punctuated_word": "please", "speaker": 0, "speaker_confidence": 0.734375, "start": 667.09, "word": "please" }, { "confidence": 0.9790039, "end": 667.49, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.734375, "start": 667.33, "word": "like" }, { "confidence": 0.99609375, "end": 667.65, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.734375, "start": 667.49, "word": "and" }, { "confidence": 0.9616699, "end": 668.15, "punctuated_word": "subscribe.", "speaker": 0, "speaker_confidence": 0.734375, "start": 667.65, "word": "subscribe" }, { "confidence": 0.99609375, "end": 668.37, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.734375, "start": 668.21, "word": "and" }, { "confidence": 1, "end": 668.53, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.734375, "start": 668.37, "word": "if" }, { "confidence": 1, "end": 668.61, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.734375, "start": 668.53, "word": "you" }, { "confidence": 0.97998047, "end": 668.85004, "punctuated_word": "wanna", "speaker": 0, "speaker_confidence": 0.86572266, "start": 668.61, "word": "wanna" }, { "confidence": 0.99609375, "end": 669.01, "punctuated_word": "learn", "speaker": 0, "speaker_confidence": 0.86572266, "start": 668.85004, "word": "learn" }, { "confidence": 1, "end": 669.17, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.86572266, "start": 669.01, "word": "more" }, { "confidence": 0.99316406, "end": 669.57, "punctuated_word": "advanced", "speaker": 0, "speaker_confidence": 0.86572266, "start": 669.17, "word": "advanced" }, { "confidence": 1, "end": 670.05, "punctuated_word": "concepts", "speaker": 0, "speaker_confidence": 0.86572266, "start": 669.57, "word": "concepts" }, { "confidence": 1, "end": 670.29, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.86572266, "start": 670.05, "word": "about" }, { "confidence": 0.99902344, "end": 670.45, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.86572266, "start": 670.29, "word": "the" }, { "confidence": 0.97802734, "end": 670.77, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.86572266, "start": 670.45, "word": "web" }, { "confidence": 0.99902344, "end": 671.01, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.86572266, "start": 670.77, "word": "and" }, { "confidence": 0.9954427, "end": 671.51, "punctuated_word": "Firebase,", "speaker": 0, "speaker_confidence": 0.86572266, "start": 671.01, "word": "firebase" }, { "confidence": 0.99902344, "end": 671.97003, "punctuated_word": "consider", "speaker": 0, "speaker_confidence": 0.86572266, "start": 671.57, "word": "consider" }, { "confidence": 1, "end": 672.37, "punctuated_word": "becoming", "speaker": 0, "speaker_confidence": 0.86572266, "start": 671.97003, "word": "becoming" }, { "confidence": 1, "end": 672.53, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.86572266, "start": 672.37, "word": "a" }, { "confidence": 0.9614258, "end": 672.77, "punctuated_word": "pro", "speaker": 0, "speaker_confidence": 0.86572266, "start": 672.53, "word": "pro" }, { "confidence": 0.99902344, "end": 673.225, "punctuated_word": "member", "speaker": 0, "speaker_confidence": 0.86572266, "start": 672.77, "word": "member" }, { "confidence": 0.7616374, "end": 673.805, "punctuated_word": "atfireship", "speaker": 0, "speaker_confidence": 0.86572266, "start": 673.305, "word": "atfireship" }, { "confidence": 0.63708496, "end": 674.425, "punctuated_word": "io.", "speaker": 0, "speaker_confidence": 0.86572266, "start": 673.94495, "word": "io" }, { "confidence": 0.99902344, "end": 674.745, "punctuated_word": "Thanks", "speaker": 0, "speaker_confidence": 0.86572266, "start": 674.425, "word": "thanks" }, { "confidence": 1, "end": 674.90497, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.86572266, "start": 674.745, "word": "for" }, { "confidence": 0.96118164, "end": 675.305, "punctuated_word": "watching,", "speaker": 0, "speaker_confidence": 0.86572266, "start": 674.90497, "word": "watching" }, { "confidence": 1, "end": 675.545, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.86572266, "start": 675.305, "word": "and" }, { "confidence": 1, "end": 675.70496, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.86572266, "start": 675.545, "word": "i" }, { "confidence": 1, "end": 675.94495, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.86572266, "start": 675.70496, "word": "will" }, { "confidence": 1, "end": 676.105, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.86572266, "start": 675.94495, "word": "see" }, { "confidence": 1, "end": 676.345, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.86572266, "start": 676.105, "word": "you" }, { "confidence": 1, "end": 676.505, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.86572266, "start": 676.345, "word": "in" }, { "confidence": 1, "end": 676.58496, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.86572266, "start": 676.505, "word": "the" }, { "confidence": 1, "end": 676.82495, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.86572266, "start": 676.58496, "word": "next" }, { "confidence": 0.9921875, "end": 677.32495, "punctuated_word": "one.", "speaker": 0, "speaker_confidence": 0.86572266, "start": 676.82495, "word": "one" } ] } ], "detected_language": "", "language_confidence": 0, "search": null } ], "summary": { "result": "success", "short": "The speakers discuss the use of WebRTC for video conferencing and the challenges of peer-to-peer connections. They also explain the process of creating a vanilla JavaScript project using Vite and the use of APIs for streaming video streams. The speakers then give a tutorial on creating a vanilla JavaScript project using the Vite tool and the SDP object, explaining how to handle streaming media streams and set up remote streams through the peer connection. They also discuss managing video and audio streams and setting up a listener on the offer candidates collection and generate an answer locally. WebRTC handles all of the complicated peer to peer networking and media streaming." }, "utterances": null } }
downloads\WebRTC_in_100_Seconds__Build_a_Video_Chat_app_from_Scratch.wav
https://www.youtube.com/watch?v=WmR9IMUD_CY
WebRTC in 100 Seconds // Build a Video Chat app from Scratch
486,364
Fireship
511
Learn the fundamentals of WebSockets in 100 seconds, then build a simple group chat app with Socket.io. https://fireship.io Sponsor me on Github for $1.00 https://github.com/codediodeio Source Code https://github.com/fireship-io/socketio-minimal-demo.git - WebSockets https://developer.mozilla.org/en-US/docs/Web/API/WebSocket - socket.io https://socket.io #webdev #js #100SecondsOfCode Install the quiz app 🤓 iOS https://itunes.apple.com/us/app/fireship/id1462592372?mt=8 Android https://play.google.com/store/apps/details?id=io.fireship.quizapp Upgrade to Fireship PRO at https://fireship.io/pro Use code lORhwXd2 for 25% off your first payment. My VS Code Theme - Atom One Dark - vscode-icons - Fira Code Font
{ "metadata": { "channels": 1, "created": "2024-02-04T06:00:52.906Z", "duration": 510.79257, "model_info": { "30089e05-99d1-4376-b32e-c263170674af": { "arch": "nova-2", "name": "2-general-nova", "version": "2024-01-09.29447" } }, "models": [ "30089e05-99d1-4376-b32e-c263170674af" ], "request_id": "49828b2a-14bd-4992-bb62-10fcb5365b7f", "sha256": "41ff1da12c5fda9e5578b73bae6d1cdac469fe2fcbbe4338e0c5fb6e86534c93", "summary_info": { "input_tokens": 2041, "model_uuid": "67875a7f-c9c4-48a0-aa55-5bdb8a91c34a", "output_tokens": 118 }, "transaction_key": "deprecated", "warnings": null }, "results": { "channels": [ { "alternatives": [ { "confidence": 0.99902344, "entities": null, "paragraphs": { "paragraphs": [ { "end": 23.235, "num_words": 79, "sentences": [ { "end": 0.9, "start": 0.39999998, "text": "WebSockets." }, { "end": 6.3199997, "start": 1.28, "text": "Build real time features by establishing a two way connection between a client and a server." }, { "end": 10.995, "start": 6.3199997, "text": "Imagine an online multiplayer game where the leaderboard is constantly changing on the server." }, { "end": 14.195, "start": 11.055, "text": "Now what's the best way to show the player an updated leaderboard?" }, { "end": 23.235, "start": 14.255, "text": "We could tell them to refresh their browser window every few minutes to send a new HTTP request, or we could use an interval that ticks every few seconds to pull the server for new data." } ], "speaker": 0, "start": 0.39999998 }, { "end": 51.769997, "num_words": 95, "sentences": [ { "end": 27.635, "start": 23.395, "text": "But these options aren't ideal for real time data and that's where WebSockets come in." }, { "end": 33.14, "start": 27.635, "text": "The first step is for the client to send an HTTP request to the server asking to open a connection." }, { "end": 39.54, "start": 33.14, "text": "If the server agrees, it will send a one zero one switching protocols response, at which point the handshake is complete." }, { "end": 46.405, "start": 39.54, "text": "The TCP IP option is left open, allowing bidirectional messages to pass between the 2 parties with very low latency." }, { "end": 51.769997, "start": 46.545, "text": "The connection will stay open until one of the parties drops off, then the TCP resources can be unallocated." } ], "speaker": 0, "start": 23.395 }, { "end": 70.65, "num_words": 69, "sentences": [ { "end": 61.335003, "start": 52.07, "text": "It's often referred to as a full duplex connection, which is a telecommunications term that defines how a phone line works where both parties can send messages or talk at the same time." }, { "end": 64.835, "start": 61.555, "text": "Let's see this in action by creating a real time connection between a Node." }, { "end": 66.729996, "start": 64.835, "text": "Js a server, and a web browser." }, { "end": 70.15, "start": 66.869995, "text": "We'll start in our back end code by building a WebSocket server with Node." }, { "end": 70.65, "start": 70.15, "text": "Js." } ], "speaker": 0, "start": 52.07 }, { "end": 93.295, "num_words": 83, "sentences": [ { "end": 75.165, "start": 70.79, "text": "Using the ws library, We can instantiate a new server on port 8080." }, { "end": 80.26, "start": 75.385, "text": "Everything is event based, and the first event we can expect to happen is a connection from the client." }, { "end": 84.28, "start": 80.340004, "text": "When the connection is made, we'll have access to a WebSocket object in the callback." }, { "end": 87.515, "start": 84.5, "text": "With the initial handshake done, there are 2 things we might wanna do here." }, { "end": 93.295, "start": 87.515, "text": "We can listen to incoming messages, which would just be text in this case, and then handle them accordingly in the callback." } ], "speaker": 0, "start": 70.79 }, { "end": 118.28999, "num_words": 94, "sentences": [ { "end": 98.439995, "start": 93.355, "text": "The second thing we might do is send a message back to the client, which we can do with the send method." }, { "end": 103.415, "start": 98.579994, "text": "Now let's take a look at our client side code in the browser, which has a built in WebSocket a clasp." }, { "end": 108.615, "start": 103.555, "text": "It's instantiated with a URL that points to the server, but notice the w s protocol." }, { "end": 113.81, "start": 108.915, "text": "That will automatically trigger the Handshake, to open the connection, which we can listen to as an event." }, { "end": 118.28999, "start": 113.869995, "text": "Just like on the server, we can use the socket to both listen to and send messages." } ], "speaker": 0, "start": 93.355 }, { "end": 139.07501, "num_words": 76, "sentences": [ { "end": 123.495, "start": 118.535, "text": "And we now have a full duplex connection between a front end JavaScript app and a node back end." }, { "end": 128.395, "start": 123.495, "text": "This has been WebSockets in 100 seconds, but if you want to learn more, make sure to stay tuned." }, { "end": 132.6, "start": 128.52, "text": "Because today, we're going beyond 100 seconds to learn all about a library called Socket." }, { "end": 136.835, "start": 132.6, "text": "Io and look at a couple of APIs that might replace WebSockets in the future." }, { "end": 139.07501, "start": 137.07501, "text": "But first, make sure to like and subscribe." } ], "speaker": 0, "start": 118.535 }, { "end": 176.025, "num_words": 126, "sentences": [ { "end": 143.095, "start": 139.07501, "text": "And if you're into real time apps, check out my Firebase content on Fireship IO." }, { "end": 151.24, "start": 143.235, "text": "Now one of the issues that is not so obvious with our current implementation is that the server cannot broadcast a message out to multiple clients simultaneously." }, { "end": 156.805, "start": 151.94, "text": "Like, for example, a group chat room where you have multiple users passing messages back and forth." }, { "end": 166.34499, "start": 157.045, "text": "It's definitely possible to build something like that from scratch with websockets, but there are libraries, like socket I o in this case, that can make features like that much easier to implement." }, { "end": 176.025, "start": 166.37, "text": "You can think of a web socket as a low level building block, where socket IO is a more practical library that solves common use cases and provides failovers to different protocols when needed." } ], "speaker": 0, "start": 139.07501 }, { "end": 200.00499, "num_words": 87, "sentences": [ { "end": 179.22499, "start": 176.025, "text": "If you're building something real time, there are many different options out there." }, { "end": 183.55, "start": 179.22499, "text": "You might look into Firebase, Apollo GraphQL, or an API like Pusher." }, { "end": 191.07, "start": 183.63, "text": "Once you bring a database into the equation, real time features can become very complex, and using a paid service can be well worth the money in my opinion." }, { "end": 194.485, "start": 191.07, "text": "In any case, Let's go ahead and get started with our socket IO project." }, { "end": 200.00499, "start": 195.185, "text": "At this point, you can open up Versus Code to follow along and access the source code on GitHub." } ], "speaker": 0, "start": 176.025 }, { "end": 223.36, "num_words": 88, "sentences": [ { "end": 204.33, "start": 200.07, "text": "What we're going to build here is a bare minimum implementation of a group chat room." }, { "end": 210.315, "start": 204.55, "text": "When a user opens up the app, they can post a message, and anybody else on that same URL can view the message." }, { "end": 217.035, "start": 210.455, "text": "And, again, one of the big differences from the previous implementation is that the message will be broadcast to all of the connected clients." }, { "end": 220.88, "start": 217.34001, "text": "As you can see in our code, we have a directory for server and app." }, { "end": 223.36, "start": 221.1, "text": "Server is the back end, app is the front end." } ], "speaker": 0, "start": 200.07 }, { "end": 251.535, "num_words": 91, "sentences": [ { "end": 228.335, "start": 223.42001, "text": "In the server directory, we'll initialize an npm project by running npm init y." }, { "end": 233.05501, "start": 228.475, "text": "Then we only require one dependency, which is socket IO, and we can install it with npm." }, { "end": 237.20999, "start": 233.27501, "text": "Now in the index JS file, we need to create an HTTP server." }, { "end": 244.40999, "start": 237.59, "text": "We can do that using the built in HTTP library in Node by importing it, then calling the create server method." }, { "end": 251.535, "start": 244.71501, "text": "However, it is worth noting that you might want to use express here instead, which is a much more popular option for building an HTTP server." } ], "speaker": 0, "start": 223.42001 }, { "end": 279.375, "num_words": 87, "sentences": [ { "end": 258.65, "start": 251.67, "text": "The next step is to import socket IO, which is a function, and it will take our HTTP server object as an argument." }, { "end": 263.225, "start": 259.04498, "text": "But in this demo, we'll be accessing the back end from a front end browser application." }, { "end": 268.26498, "start": 263.685, "text": "But for security reasons, cross origin resource sharing, or cores, is disabled." }, { "end": 277.13, "start": 268.645, "text": "We we can pass an object as a second argument, and we'll set the core's origin to anything, allowing any URL to access our back end URL." }, { "end": 279.375, "start": 277.215, "text": "And now we can implement the logic for Socket." } ], "speaker": 0, "start": 251.67 }, { "end": 297.055, "num_words": 62, "sentences": [ { "end": 279.875, "start": 279.375, "text": "Io." }, { "end": 287.48, "start": 280.01498, "text": "Just like WebSockets, it's an event based system, and the first event you'll likely want to listen for is the connection of a client from the front end." }, { "end": 290.22, "start": 287.48, "text": "The callback will give us access to the socket object." }, { "end": 294.38, "start": 290.6, "text": "And on that socket, we can listen to any custom event we want." }, { "end": 297.055, "start": 294.395, "text": "But for simplicity, we'll just call it the message event." } ], "speaker": 0, "start": 279.375 }, { "end": 328.62, "num_words": 113, "sentences": [ { "end": 305.11002, "start": 297.115, "text": "When an event is emitted, we'll have access to the data, which might be a JavaScript object or a string, and we can handle it inside the callback here." }, { "end": 308.39, "start": 305.25, "text": "In this case, it'll be a string, which we can console log." }, { "end": 315.35, "start": 308.53, "text": "And because we have multiple clients listening to the message event, we can then re emit the message so it's broadcast out to everybody." }, { "end": 326.52, "start": 315.35, "text": "We can do that with the IO emit method, and then we'll pass message as the event name, and then whatever custom text or data we want to pass as the second argument, and that's basically all there is to it." }, { "end": 328.62, "start": 326.52, "text": "It's a very simple event based system." } ], "speaker": 0, "start": 297.115 }, { "end": 362.68, "num_words": 119, "sentences": [ { "end": 333.525, "start": 328.865, "text": "The final piece of code we need here though is to tell our server to listen on port 8080." }, { "end": 340.87, "start": 334.065, "text": "Then you can open up the terminal and call node and point it to this file to run the script and start your Socket IO server." }, { "end": 344.78998, "start": 341.16998, "text": "And now we're ready to move on to the front end code in our app directory here." }, { "end": 352.975, "start": 344.93, "text": "If we open up the index HTML file, you'll notice I have a script tag here pointing to the socket I o CDN for version 3 point o." }, { "end": 362.68, "start": 353.195, "text": "It's very important to understand that socket I o is not a direct WebSocket implementation, which means you can't just use the built in WebSocket class in the browser." } ], "speaker": 0, "start": 328.865 }, { "end": 401.62, "num_words": 140, "sentences": [ { "end": 373.755, "start": 363.3, "text": "Instead, you have to use the socket IO client library, which which we're doing here through the CDN, but you can also install it with NPM and bundle it into your project if you're using something like React or Angular." }, { "end": 382.88, "start": 374.3, "text": "After that, we have a script pointing to the app dotjs file, which is our custom source code, and I'm using the defer attribute to make sure it loads after the body content." }, { "end": 388.235, "start": 383.255, "text": "Then in the body itself, I have an unordered list, which is where our chat messages will appear." }, { "end": 395.86, "start": 388.375, "text": "And then below that, I have an input for the user to type a message and a button to send it, and now we can move over to our JavaScript file." }, { "end": 401.62, "start": 395.91998, "text": "The IO object will now be globally available in the browser, which is the socket IO client library." } ], "speaker": 0, "start": 363.3 }, { "end": 432.29, "num_words": 113, "sentences": [ { "end": 406.93503, "start": 401.875, "text": "We can create the connection by pointing to the URL of our server, which is local host 8080." }, { "end": 409.29, "start": 407.155, "text": "And now we're ready to start listening to events." }, { "end": 425.185, "start": 409.37, "text": "By calling socket on, we can listen to the message event emitted by the server, and we can use some imperative browser APIs here to create a new list item element and then append that item to the unordered list in our HTML, and that's all it takes to create a feed of messages in the UI." }, { "end": 428.51, "start": 425.405, "text": "The only thing left to do is give the user the ability to send a message." }, { "end": 432.29, "start": 428.91, "text": "We can handle that by listening to the click event on a button." } ], "speaker": 0, "start": 401.875 }, { "end": 448.43997, "num_words": 52, "sentences": [ { "end": 440.685, "start": 432.59, "text": "When clicked, we'll grab the text or the value from the input element, and then we'll call socket emit with the message event and the text." }, { "end": 441.565, "start": 441.065, "text": "Congratulations." }, { "end": 444.26498, "start": 441.865, "text": "You just built a real time chat app with socket." }, { "end": 444.58, "start": 444.26498, "text": "Io." }, { "end": 448.43997, "start": 444.81998, "text": "Obviously, there's a lot more to building real time features in the real world." } ], "speaker": 0, "start": 432.59 }, { "end": 475.595, "num_words": 79, "sentences": [ { "end": 452.70502, "start": 448.5, "text": "Events get emitted, and then you listen to events and handle them accordingly with functions." }, { "end": 463.08002, "start": 452.70502, "text": "Now before we finish up, there's one last thing I wanna talk about, and that's the relationship between WebSockets and other APIs like WebRTC and a new experimental API called WebTransport." }, { "end": 467.32, "start": 463.62, "text": "1st, let's talk about WebRTC, which stands for real time communication." }, { "end": 470.23502, "start": 467.975, "text": "It's also a tool for building real time experiences." }, { "end": 475.595, "start": 470.615, "text": "However, it's geared towards browser to browser communication, primarily for video and voice." } ], "speaker": 0, "start": 448.5 }, { "end": 498.80002, "num_words": 73, "sentences": [ { "end": 480.36002, "start": 475.7, "text": "If you're building a video chat app like Zoom, you probably want WebRTC and not WebSockets." }, { "end": 484.84003, "start": 481.22, "text": "And another new API that people have started talking about is WebTransport." }, { "end": 489.20502, "start": 485.345, "text": "And without getting into the details, it's basically a better version of WebSockets." }, { "end": 492.7, "start": 489.825, "text": "Faster handshake, better reliability, and stuff like that." }, { "end": 498.80002, "start": 492.78, "text": "Its proposal is still being stabilized, so nothing you need to know today, but just something to have on the radar for the future." } ], "speaker": 0, "start": 475.7 }, { "end": 509.685, "num_words": 43, "sentences": [ { "end": 500.465, "start": 498.86002, "text": "I'm gonna go ahead and wrap things up there." }, { "end": 502.645, "start": 500.54498, "text": "If this video helped you, please like and subscribe." }, { "end": 506.725, "start": 502.705, "text": "Consider sponsoring me on GitHub or becoming a pro member at FireShip IO." }, { "end": 509.685, "start": 506.945, "text": "Thanks for watching, and I will see you in the next one." } ], "speaker": 0, "start": 498.86002 } ], "transcript": "\nSpeaker 0: WebSockets. Build real time features by establishing a two way connection between a client and a server. Imagine an online multiplayer game where the leaderboard is constantly changing on the server. Now what's the best way to show the player an updated leaderboard? We could tell them to refresh their browser window every few minutes to send a new HTTP request, or we could use an interval that ticks every few seconds to pull the server for new data.\n\nBut these options aren't ideal for real time data and that's where WebSockets come in. The first step is for the client to send an HTTP request to the server asking to open a connection. If the server agrees, it will send a one zero one switching protocols response, at which point the handshake is complete. The TCP IP option is left open, allowing bidirectional messages to pass between the 2 parties with very low latency. The connection will stay open until one of the parties drops off, then the TCP resources can be unallocated.\n\nIt's often referred to as a full duplex connection, which is a telecommunications term that defines how a phone line works where both parties can send messages or talk at the same time. Let's see this in action by creating a real time connection between a Node. Js a server, and a web browser. We'll start in our back end code by building a WebSocket server with Node. Js.\n\nUsing the ws library, We can instantiate a new server on port 8080. Everything is event based, and the first event we can expect to happen is a connection from the client. When the connection is made, we'll have access to a WebSocket object in the callback. With the initial handshake done, there are 2 things we might wanna do here. We can listen to incoming messages, which would just be text in this case, and then handle them accordingly in the callback.\n\nThe second thing we might do is send a message back to the client, which we can do with the send method. Now let's take a look at our client side code in the browser, which has a built in WebSocket a clasp. It's instantiated with a URL that points to the server, but notice the w s protocol. That will automatically trigger the Handshake, to open the connection, which we can listen to as an event. Just like on the server, we can use the socket to both listen to and send messages.\n\nAnd we now have a full duplex connection between a front end JavaScript app and a node back end. This has been WebSockets in 100 seconds, but if you want to learn more, make sure to stay tuned. Because today, we're going beyond 100 seconds to learn all about a library called Socket. Io and look at a couple of APIs that might replace WebSockets in the future. But first, make sure to like and subscribe.\n\nAnd if you're into real time apps, check out my Firebase content on Fireship IO. Now one of the issues that is not so obvious with our current implementation is that the server cannot broadcast a message out to multiple clients simultaneously. Like, for example, a group chat room where you have multiple users passing messages back and forth. It's definitely possible to build something like that from scratch with websockets, but there are libraries, like socket I o in this case, that can make features like that much easier to implement. You can think of a web socket as a low level building block, where socket IO is a more practical library that solves common use cases and provides failovers to different protocols when needed.\n\nIf you're building something real time, there are many different options out there. You might look into Firebase, Apollo GraphQL, or an API like Pusher. Once you bring a database into the equation, real time features can become very complex, and using a paid service can be well worth the money in my opinion. In any case, Let's go ahead and get started with our socket IO project. At this point, you can open up Versus Code to follow along and access the source code on GitHub.\n\nWhat we're going to build here is a bare minimum implementation of a group chat room. When a user opens up the app, they can post a message, and anybody else on that same URL can view the message. And, again, one of the big differences from the previous implementation is that the message will be broadcast to all of the connected clients. As you can see in our code, we have a directory for server and app. Server is the back end, app is the front end.\n\nIn the server directory, we'll initialize an npm project by running npm init y. Then we only require one dependency, which is socket IO, and we can install it with npm. Now in the index JS file, we need to create an HTTP server. We can do that using the built in HTTP library in Node by importing it, then calling the create server method. However, it is worth noting that you might want to use express here instead, which is a much more popular option for building an HTTP server.\n\nThe next step is to import socket IO, which is a function, and it will take our HTTP server object as an argument. But in this demo, we'll be accessing the back end from a front end browser application. But for security reasons, cross origin resource sharing, or cores, is disabled. We we can pass an object as a second argument, and we'll set the core's origin to anything, allowing any URL to access our back end URL. And now we can implement the logic for Socket.\n\nIo. Just like WebSockets, it's an event based system, and the first event you'll likely want to listen for is the connection of a client from the front end. The callback will give us access to the socket object. And on that socket, we can listen to any custom event we want. But for simplicity, we'll just call it the message event.\n\nWhen an event is emitted, we'll have access to the data, which might be a JavaScript object or a string, and we can handle it inside the callback here. In this case, it'll be a string, which we can console log. And because we have multiple clients listening to the message event, we can then re emit the message so it's broadcast out to everybody. We can do that with the IO emit method, and then we'll pass message as the event name, and then whatever custom text or data we want to pass as the second argument, and that's basically all there is to it. It's a very simple event based system.\n\nThe final piece of code we need here though is to tell our server to listen on port 8080. Then you can open up the terminal and call node and point it to this file to run the script and start your Socket IO server. And now we're ready to move on to the front end code in our app directory here. If we open up the index HTML file, you'll notice I have a script tag here pointing to the socket I o CDN for version 3 point o. It's very important to understand that socket I o is not a direct WebSocket implementation, which means you can't just use the built in WebSocket class in the browser.\n\nInstead, you have to use the socket IO client library, which which we're doing here through the CDN, but you can also install it with NPM and bundle it into your project if you're using something like React or Angular. After that, we have a script pointing to the app dotjs file, which is our custom source code, and I'm using the defer attribute to make sure it loads after the body content. Then in the body itself, I have an unordered list, which is where our chat messages will appear. And then below that, I have an input for the user to type a message and a button to send it, and now we can move over to our JavaScript file. The IO object will now be globally available in the browser, which is the socket IO client library.\n\nWe can create the connection by pointing to the URL of our server, which is local host 8080. And now we're ready to start listening to events. By calling socket on, we can listen to the message event emitted by the server, and we can use some imperative browser APIs here to create a new list item element and then append that item to the unordered list in our HTML, and that's all it takes to create a feed of messages in the UI. The only thing left to do is give the user the ability to send a message. We can handle that by listening to the click event on a button.\n\nWhen clicked, we'll grab the text or the value from the input element, and then we'll call socket emit with the message event and the text. Congratulations. You just built a real time chat app with socket. Io. Obviously, there's a lot more to building real time features in the real world.\n\nEvents get emitted, and then you listen to events and handle them accordingly with functions. Now before we finish up, there's one last thing I wanna talk about, and that's the relationship between WebSockets and other APIs like WebRTC and a new experimental API called WebTransport. 1st, let's talk about WebRTC, which stands for real time communication. It's also a tool for building real time experiences. However, it's geared towards browser to browser communication, primarily for video and voice.\n\nIf you're building a video chat app like Zoom, you probably want WebRTC and not WebSockets. And another new API that people have started talking about is WebTransport. And without getting into the details, it's basically a better version of WebSockets. Faster handshake, better reliability, and stuff like that. Its proposal is still being stabilized, so nothing you need to know today, but just something to have on the radar for the future.\n\nI'm gonna go ahead and wrap things up there. If this video helped you, please like and subscribe. Consider sponsoring me on GitHub or becoming a pro member at FireShip IO. Thanks for watching, and I will see you in the next one." }, "summaries": null, "topics": [ { "end_word": 79, "start_word": 0, "text": "WebSockets. Build real time features by establishing a two way connection between a client and a server. Imagine an online multiplayer game where the leaderboard is constantly changing on the server. Now what's the best way to show the player an updated leaderboard? We could tell them to refresh their browser window every few minutes to send a new HTTP request, or we could use an interval that ticks every few seconds to pull the server for new data.", "topics": [] }, { "end_word": 326, "start_word": 79, "text": "But these options aren't ideal for real time data and that's where WebSockets come in. The first step is for the client to send an HTTP request to the server asking to open a connection. If the server agrees, it will send a one zero one switching protocols response, at which point the handshake is complete. The TCP IP option is left open, allowing bidirectional messages to pass between the 2 parties with very low latency. The connection will stay open until one of the parties drops off, then the TCP resources can be unallocated. It's often referred to as a full duplex connection, which is a telecommunications term that defines how a phone line works where both parties can send messages or talk at the same time. Let's see this in action by creating a real time connection between a Node. Js a server, and a web browser. We'll start in our back end code by building a WebSocket server with Node. Js. Using the ws library, We can instantiate a new server on port 8080. Everything is event based, and the first event we can expect to happen is a connection from the client. When the connection is made, we'll have access to a WebSocket object in the callback. With the initial handshake done, there are 2 things we might wanna do here. We can listen to incoming messages, which would just be text in this case, and then handle them accordingly in the callback.", "topics": [ { "confidence": 0.9702872, "topic": "telecommunications" }, { "confidence": 0.035907477, "topic": "internet" }, { "confidence": 0.03034011, "topic": "networking" } ] }, { "end_word": 385, "start_word": 326, "text": "The second thing we might do is send a message back to the client, which we can do with the send method. Now let's take a look at our client side code in the browser, which has a built in WebSocket a clasp. It's instantiated with a URL that points to the server, but notice the w s protocol.", "topics": [] }, { "end_word": 439, "start_word": 385, "text": "That will automatically trigger the Handshake, to open the connection, which we can listen to as an event. Just like on the server, we can use the socket to both listen to and send messages. And we now have a full duplex connection between a front end JavaScript app and a node back end.", "topics": [ { "confidence": 0.735547, "topic": "networking" } ] }, { "end_word": 458, "start_word": 439, "text": "This has been WebSockets in 100 seconds, but if you want to learn more, make sure to stay tuned.", "topics": [] }, { "end_word": 511, "start_word": 458, "text": "Because today, we're going beyond 100 seconds to learn all about a library called Socket. Io and look at a couple of APIs that might replace WebSockets in the future. But first, make sure to like and subscribe. And if you're into real time apps, check out my Firebase content on Fireship IO.", "topics": [ { "confidence": 0.037191216, "topic": "internet" } ] }, { "end_word": 538, "start_word": 511, "text": "Now one of the issues that is not so obvious with our current implementation is that the server cannot broadcast a message out to multiple clients simultaneously.", "topics": [] }, { "end_word": 588, "start_word": 538, "text": "Like, for example, a group chat room where you have multiple users passing messages back and forth. It's definitely possible to build something like that from scratch with websockets, but there are libraries, like socket I o in this case, that can make features like that much easier to implement.", "topics": [ { "confidence": 0.019343818, "topic": "networking" } ] }, { "end_word": 647, "start_word": 588, "text": "You can think of a web socket as a low level building block, where socket IO is a more practical library that solves common use cases and provides failovers to different protocols when needed. If you're building something real time, there are many different options out there. You might look into Firebase, Apollo GraphQL, or an API like Pusher.", "topics": [] }, { "end_word": 811, "start_word": 647, "text": "Once you bring a database into the equation, real time features can become very complex, and using a paid service can be well worth the money in my opinion. In any case, Let's go ahead and get started with our socket IO project. At this point, you can open up Versus Code to follow along and access the source code on GitHub. What we're going to build here is a bare minimum implementation of a group chat room. When a user opens up the app, they can post a message, and anybody else on that same URL can view the message. And, again, one of the big differences from the previous implementation is that the message will be broadcast to all of the connected clients. As you can see in our code, we have a directory for server and app. Server is the back end, app is the front end. In the server directory, we'll initialize an npm project by running npm init y.", "topics": [ { "confidence": 0.26427072, "topic": "databases" }, { "confidence": 0.15183322, "topic": "networking" }, { "confidence": 0.0112997, "topic": "software development" } ] }, { "end_word": 862, "start_word": 811, "text": "Then we only require one dependency, which is socket IO, and we can install it with npm. Now in the index JS file, we need to create an HTTP server. We can do that using the built in HTTP library in Node by importing it, then calling the create server method.", "topics": [] }, { "end_word": 1027, "start_word": 862, "text": "However, it is worth noting that you might want to use express here instead, which is a much more popular option for building an HTTP server. The next step is to import socket IO, which is a function, and it will take our HTTP server object as an argument. But in this demo, we'll be accessing the back end from a front end browser application. But for security reasons, cross origin resource sharing, or cores, is disabled. We we can pass an object as a second argument, and we'll set the core's origin to anything, allowing any URL to access our back end URL. And now we can implement the logic for Socket. Io. Just like WebSockets, it's an event based system, and the first event you'll likely want to listen for is the connection of a client from the front end. The callback will give us access to the socket object. And on that socket, we can listen to any custom event we want.", "topics": [ { "confidence": 0.28886214, "topic": "networking" }, { "confidence": 0.028139746, "topic": "internet" } ] }, { "end_word": 1102, "start_word": 1027, "text": "But for simplicity, we'll just call it the message event. When an event is emitted, we'll have access to the data, which might be a JavaScript object or a string, and we can handle it inside the callback here. In this case, it'll be a string, which we can console log. And because we have multiple clients listening to the message event, we can then re emit the message so it's broadcast out to everybody.", "topics": [] }, { "end_word": 1169, "start_word": 1102, "text": "We can do that with the IO emit method, and then we'll pass message as the event name, and then whatever custom text or data we want to pass as the second argument, and that's basically all there is to it. It's a very simple event based system. The final piece of code we need here though is to tell our server to listen on port 8080.", "topics": [ { "confidence": 0.008660758, "topic": "internet" } ] }, { "end_word": 1240, "start_word": 1169, "text": "Then you can open up the terminal and call node and point it to this file to run the script and start your Socket IO server. And now we're ready to move on to the front end code in our app directory here. If we open up the index HTML file, you'll notice I have a script tag here pointing to the socket I o CDN for version 3 point o.", "topics": [] }, { "end_word": 1309, "start_word": 1240, "text": "It's very important to understand that socket I o is not a direct WebSocket implementation, which means you can't just use the built in WebSocket class in the browser. Instead, you have to use the socket IO client library, which which we're doing here through the CDN, but you can also install it with NPM and bundle it into your project if you're using something like React or Angular.", "topics": [ { "confidence": 0.0062779826, "topic": "networking" } ] }, { "end_word": 1391, "start_word": 1309, "text": "After that, we have a script pointing to the app dotjs file, which is our custom source code, and I'm using the defer attribute to make sure it loads after the body content. Then in the body itself, I have an unordered list, which is where our chat messages will appear. And then below that, I have an input for the user to type a message and a button to send it, and now we can move over to our JavaScript file.", "topics": [] }, { "end_word": 1441, "start_word": 1391, "text": "The IO object will now be globally available in the browser, which is the socket IO client library. We can create the connection by pointing to the URL of our server, which is local host 8080. And now we're ready to start listening to events. By calling socket on, we", "topics": [ { "confidence": 0.8050699, "topic": "networking" }, { "confidence": 0.3716988, "topic": "internet" } ] }, { "end_word": 1548, "start_word": 1441, "text": "can listen to the message event emitted by the server, and we can use some imperative browser APIs here to create a new list item element and then append that item to the unordered list in our HTML, and that's all it takes to create a feed of messages in the UI. The only thing left to do is give the user the ability to send a message. We can handle that by listening to the click event on a button. When clicked, we'll grab the text or the value from the input element, and then we'll call socket emit with the message event and the text.", "topics": [] }, { "end_word": 1726, "start_word": 1548, "text": "Congratulations. You just built a real time chat app with socket. Io. Obviously, there's a lot more to building real time features in the real world. Events get emitted, and then you listen to events and handle them accordingly with functions. Now before we finish up, there's one last thing I wanna talk about, and that's the relationship between WebSockets and other APIs like WebRTC and a new experimental API called WebTransport. 1st, let's talk about WebRTC, which stands for real time communication. It's also a tool for building real time experiences. However, it's geared towards browser to browser communication, primarily for video and voice. If you're building a video chat app like Zoom, you probably want WebRTC and not WebSockets. And another new API that people have started talking about is WebTransport. And without getting into the details, it's basically a better version of WebSockets. Faster handshake, better reliability, and stuff like that. Its proposal is still being stabilized, so nothing you need to know today, but just something to have on the radar for the future.", "topics": [ { "confidence": 0.10553919, "topic": "networking" }, { "confidence": 0.07130855, "topic": "internet" }, { "confidence": 0.0112118, "topic": "multimedia" }, { "confidence": 0.0058665783, "topic": "telecommunications" } ] }, { "end_word": 1769, "start_word": 1726, "text": "I'm gonna go ahead and wrap things up there. If this video helped you, please like and subscribe. Consider sponsoring me on GitHub or becoming a pro member at FireShip IO. Thanks for watching, and I will see you in the next one.", "topics": [ { "confidence": 0.1328203, "topic": "youtube" }, { "confidence": 0.057749722, "topic": "social media" }, { "confidence": 0.04199336, "topic": "media" }, { "confidence": 0.041678417, "topic": "streaming" } ] } ], "transcript": "WebSockets. Build real time features by establishing a two way connection between a client and a server. Imagine an online multiplayer game where the leaderboard is constantly changing on the server. Now what's the best way to show the player an updated leaderboard? We could tell them to refresh their browser window every few minutes to send a new HTTP request, or we could use an interval that ticks every few seconds to pull the server for new data. But these options aren't ideal for real time data and that's where WebSockets come in. The first step is for the client to send an HTTP request to the server asking to open a connection. If the server agrees, it will send a one zero one switching protocols response, at which point the handshake is complete. The TCP IP option is left open, allowing bidirectional messages to pass between the 2 parties with very low latency. The connection will stay open until one of the parties drops off, then the TCP resources can be unallocated. It's often referred to as a full duplex connection, which is a telecommunications term that defines how a phone line works where both parties can send messages or talk at the same time. Let's see this in action by creating a real time connection between a Node. Js a server, and a web browser. We'll start in our back end code by building a WebSocket server with Node. Js. Using the ws library, We can instantiate a new server on port 8080. Everything is event based, and the first event we can expect to happen is a connection from the client. When the connection is made, we'll have access to a WebSocket object in the callback. With the initial handshake done, there are 2 things we might wanna do here. We can listen to incoming messages, which would just be text in this case, and then handle them accordingly in the callback. The second thing we might do is send a message back to the client, which we can do with the send method. Now let's take a look at our client side code in the browser, which has a built in WebSocket a clasp. It's instantiated with a URL that points to the server, but notice the w s protocol. That will automatically trigger the Handshake, to open the connection, which we can listen to as an event. Just like on the server, we can use the socket to both listen to and send messages. And we now have a full duplex connection between a front end JavaScript app and a node back end. This has been WebSockets in 100 seconds, but if you want to learn more, make sure to stay tuned. Because today, we're going beyond 100 seconds to learn all about a library called Socket. Io and look at a couple of APIs that might replace WebSockets in the future. But first, make sure to like and subscribe. And if you're into real time apps, check out my Firebase content on Fireship IO. Now one of the issues that is not so obvious with our current implementation is that the server cannot broadcast a message out to multiple clients simultaneously. Like, for example, a group chat room where you have multiple users passing messages back and forth. It's definitely possible to build something like that from scratch with websockets, but there are libraries, like socket I o in this case, that can make features like that much easier to implement. You can think of a web socket as a low level building block, where socket IO is a more practical library that solves common use cases and provides failovers to different protocols when needed. If you're building something real time, there are many different options out there. You might look into Firebase, Apollo GraphQL, or an API like Pusher. Once you bring a database into the equation, real time features can become very complex, and using a paid service can be well worth the money in my opinion. In any case, Let's go ahead and get started with our socket IO project. At this point, you can open up Versus Code to follow along and access the source code on GitHub. What we're going to build here is a bare minimum implementation of a group chat room. When a user opens up the app, they can post a message, and anybody else on that same URL can view the message. And, again, one of the big differences from the previous implementation is that the message will be broadcast to all of the connected clients. As you can see in our code, we have a directory for server and app. Server is the back end, app is the front end. In the server directory, we'll initialize an npm project by running npm init y. Then we only require one dependency, which is socket IO, and we can install it with npm. Now in the index JS file, we need to create an HTTP server. We can do that using the built in HTTP library in Node by importing it, then calling the create server method. However, it is worth noting that you might want to use express here instead, which is a much more popular option for building an HTTP server. The next step is to import socket IO, which is a function, and it will take our HTTP server object as an argument. But in this demo, we'll be accessing the back end from a front end browser application. But for security reasons, cross origin resource sharing, or cores, is disabled. We we can pass an object as a second argument, and we'll set the core's origin to anything, allowing any URL to access our back end URL. And now we can implement the logic for Socket. Io. Just like WebSockets, it's an event based system, and the first event you'll likely want to listen for is the connection of a client from the front end. The callback will give us access to the socket object. And on that socket, we can listen to any custom event we want. But for simplicity, we'll just call it the message event. When an event is emitted, we'll have access to the data, which might be a JavaScript object or a string, and we can handle it inside the callback here. In this case, it'll be a string, which we can console log. And because we have multiple clients listening to the message event, we can then re emit the message so it's broadcast out to everybody. We can do that with the IO emit method, and then we'll pass message as the event name, and then whatever custom text or data we want to pass as the second argument, and that's basically all there is to it. It's a very simple event based system. The final piece of code we need here though is to tell our server to listen on port 8080. Then you can open up the terminal and call node and point it to this file to run the script and start your Socket IO server. And now we're ready to move on to the front end code in our app directory here. If we open up the index HTML file, you'll notice I have a script tag here pointing to the socket I o CDN for version 3 point o. It's very important to understand that socket I o is not a direct WebSocket implementation, which means you can't just use the built in WebSocket class in the browser. Instead, you have to use the socket IO client library, which which we're doing here through the CDN, but you can also install it with NPM and bundle it into your project if you're using something like React or Angular. After that, we have a script pointing to the app dotjs file, which is our custom source code, and I'm using the defer attribute to make sure it loads after the body content. Then in the body itself, I have an unordered list, which is where our chat messages will appear. And then below that, I have an input for the user to type a message and a button to send it, and now we can move over to our JavaScript file. The IO object will now be globally available in the browser, which is the socket IO client library. We can create the connection by pointing to the URL of our server, which is local host 8080. And now we're ready to start listening to events. By calling socket on, we can listen to the message event emitted by the server, and we can use some imperative browser APIs here to create a new list item element and then append that item to the unordered list in our HTML, and that's all it takes to create a feed of messages in the UI. The only thing left to do is give the user the ability to send a message. We can handle that by listening to the click event on a button. When clicked, we'll grab the text or the value from the input element, and then we'll call socket emit with the message event and the text. Congratulations. You just built a real time chat app with socket. Io. Obviously, there's a lot more to building real time features in the real world. Events get emitted, and then you listen to events and handle them accordingly with functions. Now before we finish up, there's one last thing I wanna talk about, and that's the relationship between WebSockets and other APIs like WebRTC and a new experimental API called WebTransport. 1st, let's talk about WebRTC, which stands for real time communication. It's also a tool for building real time experiences. However, it's geared towards browser to browser communication, primarily for video and voice. If you're building a video chat app like Zoom, you probably want WebRTC and not WebSockets. And another new API that people have started talking about is WebTransport. And without getting into the details, it's basically a better version of WebSockets. Faster handshake, better reliability, and stuff like that. Its proposal is still being stabilized, so nothing you need to know today, but just something to have on the radar for the future. I'm gonna go ahead and wrap things up there. If this video helped you, please like and subscribe. Consider sponsoring me on GitHub or becoming a pro member at FireShip IO. Thanks for watching, and I will see you in the next one.", "translations": null, "words": [ { "confidence": 0.8121338, "end": 0.9, "punctuated_word": "WebSockets.", "speaker": 0, "speaker_confidence": 0.87890625, "start": 0.39999998, "word": "websockets" }, { "confidence": 0.9951172, "end": 1.68, "punctuated_word": "Build", "speaker": 0, "speaker_confidence": 0.87890625, "start": 1.28, "word": "build" }, { "confidence": 0.9819336, "end": 1.92, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 0.87890625, "start": 1.68, "word": "real" }, { "confidence": 0.99316406, "end": 2.1599998, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.87890625, "start": 1.92, "word": "time" }, { "confidence": 1, "end": 2.56, "punctuated_word": "features", "speaker": 0, "speaker_confidence": 0.87890625, "start": 2.1599998, "word": "features" }, { "confidence": 0.99902344, "end": 2.8799999, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.87890625, "start": 2.56, "word": "by" }, { "confidence": 0.99902344, "end": 3.3799999, "punctuated_word": "establishing", "speaker": 0, "speaker_confidence": 0.87890625, "start": 2.8799999, "word": "establishing" }, { "confidence": 1, "end": 3.6799998, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.87890625, "start": 3.52, "word": "a" }, { "confidence": 0.8671875, "end": 3.9199998, "punctuated_word": "two", "speaker": 0, "speaker_confidence": 0.87890625, "start": 3.6799998, "word": "two" }, { "confidence": 1, "end": 4.08, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 0.87890625, "start": 3.9199998, "word": "way" }, { "confidence": 0.99902344, "end": 4.58, "punctuated_word": "connection", "speaker": 0, "speaker_confidence": 0.87890625, "start": 4.08, "word": "connection" }, { "confidence": 0.99902344, "end": 4.96, "punctuated_word": "between", "speaker": 0, "speaker_confidence": 0.87890625, "start": 4.64, "word": "between" }, { "confidence": 1, "end": 5.12, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.87890625, "start": 4.96, "word": "a" }, { "confidence": 1, "end": 5.52, "punctuated_word": "client", "speaker": 0, "speaker_confidence": 0.87890625, "start": 5.12, "word": "client" }, { "confidence": 0.99609375, "end": 5.68, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.87890625, "start": 5.52, "word": "and" }, { "confidence": 0.9980469, "end": 5.8399997, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.87890625, "start": 5.68, "word": "a" }, { "confidence": 1, "end": 6.3199997, "punctuated_word": "server.", "speaker": 0, "speaker_confidence": 0.87890625, "start": 5.8399997, "word": "server" }, { "confidence": 0.9980469, "end": 6.72, "punctuated_word": "Imagine", "speaker": 0, "speaker_confidence": 0.87890625, "start": 6.3199997, "word": "imagine" }, { "confidence": 0.9980469, "end": 6.8799996, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.87890625, "start": 6.72, "word": "an" }, { "confidence": 0.99902344, "end": 7.2799997, "punctuated_word": "online", "speaker": 0, "speaker_confidence": 0.87890625, "start": 6.8799996, "word": "online" }, { "confidence": 0.9770508, "end": 7.7599998, "punctuated_word": "multiplayer", "speaker": 0, "speaker_confidence": 0.87890625, "start": 7.2799997, "word": "multiplayer" }, { "confidence": 1, "end": 8.095, "punctuated_word": "game", "speaker": 0, "speaker_confidence": 0.87890625, "start": 7.7599998, "word": "game" }, { "confidence": 0.93408203, "end": 8.255, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.87890625, "start": 8.095, "word": "where" }, { "confidence": 0.9980469, "end": 8.495, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.87890625, "start": 8.255, "word": "the" }, { "confidence": 0.9182129, "end": 8.975, "punctuated_word": "leaderboard", "speaker": 0, "speaker_confidence": 0.87890625, "start": 8.495, "word": "leaderboard" }, { "confidence": 1, "end": 9.295, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.87890625, "start": 8.975, "word": "is" }, { "confidence": 1, "end": 9.775001, "punctuated_word": "constantly", "speaker": 0, "speaker_confidence": 0.87890625, "start": 9.295, "word": "constantly" }, { "confidence": 1, "end": 10.175, "punctuated_word": "changing", "speaker": 0, "speaker_confidence": 0.87890625, "start": 9.775001, "word": "changing" }, { "confidence": 1, "end": 10.335, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.87890625, "start": 10.175, "word": "on" }, { "confidence": 0.9980469, "end": 10.495, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.87890625, "start": 10.335, "word": "the" }, { "confidence": 0.9975586, "end": 10.995, "punctuated_word": "server.", "speaker": 0, "speaker_confidence": 0.87890625, "start": 10.495, "word": "server" }, { "confidence": 1, "end": 11.295, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.87890625, "start": 11.055, "word": "now" }, { "confidence": 0.81103516, "end": 11.535, "punctuated_word": "what's", "speaker": 0, "speaker_confidence": 0.87890625, "start": 11.295, "word": "what's" }, { "confidence": 1, "end": 11.615, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.87890625, "start": 11.535, "word": "the" }, { "confidence": 1, "end": 11.935, "punctuated_word": "best", "speaker": 0, "speaker_confidence": 0.87890625, "start": 11.615, "word": "best" }, { "confidence": 1, "end": 12.175, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 0.87890625, "start": 11.935, "word": "way" }, { "confidence": 0.99902344, "end": 12.335, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.87890625, "start": 12.175, "word": "to" }, { "confidence": 0.99902344, "end": 12.495001, "punctuated_word": "show", "speaker": 0, "speaker_confidence": 0.87890625, "start": 12.335, "word": "show" }, { "confidence": 0.99902344, "end": 12.655001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.87890625, "start": 12.495001, "word": "the" }, { "confidence": 1, "end": 12.975, "punctuated_word": "player", "speaker": 0, "speaker_confidence": 0.87890625, "start": 12.655001, "word": "player" }, { "confidence": 0.9580078, "end": 13.215, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.87890625, "start": 12.975, "word": "an" }, { "confidence": 0.984375, "end": 13.695, "punctuated_word": "updated", "speaker": 0, "speaker_confidence": 0.87890625, "start": 13.215, "word": "updated" }, { "confidence": 0.9947917, "end": 14.195, "punctuated_word": "leaderboard?", "speaker": 0, "speaker_confidence": 0.87890625, "start": 13.695, "word": "leaderboard" }, { "confidence": 0.9970703, "end": 14.495, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.87890625, "start": 14.255, "word": "we" }, { "confidence": 0.99902344, "end": 14.575001, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.87890625, "start": 14.495, "word": "could" }, { "confidence": 0.99902344, "end": 14.735001, "punctuated_word": "tell", "speaker": 0, "speaker_confidence": 0.6689453, "start": 14.575001, "word": "tell" }, { "confidence": 0.99609375, "end": 15.11, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.6689453, "start": 14.735001, "word": "them" }, { "confidence": 0.9863281, "end": 15.2699995, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6689453, "start": 15.11, "word": "to" }, { "confidence": 1, "end": 15.589999, "punctuated_word": "refresh", "speaker": 0, "speaker_confidence": 0.6689453, "start": 15.2699995, "word": "refresh" }, { "confidence": 0.9326172, "end": 15.75, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 0.6689453, "start": 15.589999, "word": "their" }, { "confidence": 1, "end": 16.07, "punctuated_word": "browser", "speaker": 0, "speaker_confidence": 0.6689453, "start": 15.75, "word": "browser" }, { "confidence": 1, "end": 16.47, "punctuated_word": "window", "speaker": 0, "speaker_confidence": 0.6689453, "start": 16.07, "word": "window" }, { "confidence": 0.99902344, "end": 16.63, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 0.6689453, "start": 16.47, "word": "every" }, { "confidence": 1, "end": 16.789999, "punctuated_word": "few", "speaker": 0, "speaker_confidence": 0.6689453, "start": 16.63, "word": "few" }, { "confidence": 1, "end": 17.27, "punctuated_word": "minutes", "speaker": 0, "speaker_confidence": 0.6689453, "start": 16.789999, "word": "minutes" }, { "confidence": 0.9760742, "end": 17.35, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.51220703, "start": 17.27, "word": "to" }, { "confidence": 1, "end": 17.59, "punctuated_word": "send", "speaker": 0, "speaker_confidence": 0.51220703, "start": 17.35, "word": "send" }, { "confidence": 0.99902344, "end": 17.67, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.51220703, "start": 17.59, "word": "a" }, { "confidence": 0.99902344, "end": 17.91, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.51220703, "start": 17.67, "word": "new" }, { "confidence": 0.9536133, "end": 18.41, "punctuated_word": "HTTP", "speaker": 0, "speaker_confidence": 0.51220703, "start": 17.91, "word": "http" }, { "confidence": 0.8625488, "end": 18.97, "punctuated_word": "request,", "speaker": 0, "speaker_confidence": 0.51220703, "start": 18.47, "word": "request" }, { "confidence": 0.9301758, "end": 19.27, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.68847656, "start": 19.189999, "word": "or" }, { "confidence": 1, "end": 19.43, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.68847656, "start": 19.27, "word": "we" }, { "confidence": 1, "end": 19.59, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.68847656, "start": 19.43, "word": "could" }, { "confidence": 1, "end": 19.75, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.68847656, "start": 19.59, "word": "use" }, { "confidence": 0.99902344, "end": 19.91, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.68847656, "start": 19.75, "word": "an" }, { "confidence": 0.99902344, "end": 20.23, "punctuated_word": "interval", "speaker": 0, "speaker_confidence": 0.68847656, "start": 19.91, "word": "interval" }, { "confidence": 1, "end": 20.47, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.68847656, "start": 20.23, "word": "that" }, { "confidence": 0.8125, "end": 20.71, "punctuated_word": "ticks", "speaker": 0, "speaker_confidence": 0.68847656, "start": 20.47, "word": "ticks" }, { "confidence": 1, "end": 20.949999, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 0.68847656, "start": 20.71, "word": "every" }, { "confidence": 0.99902344, "end": 21.11, "punctuated_word": "few", "speaker": 0, "speaker_confidence": 0.68847656, "start": 20.949999, "word": "few" }, { "confidence": 1, "end": 21.509998, "punctuated_word": "seconds", "speaker": 0, "speaker_confidence": 0.68847656, "start": 21.11, "word": "seconds" }, { "confidence": 1, "end": 21.75, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.68847656, "start": 21.509998, "word": "to" }, { "confidence": 0.9902344, "end": 21.99, "punctuated_word": "pull", "speaker": 0, "speaker_confidence": 0.68847656, "start": 21.75, "word": "pull" }, { "confidence": 1, "end": 22.07, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7788086, "start": 21.99, "word": "the" }, { "confidence": 1, "end": 22.39, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 0.7788086, "start": 22.07, "word": "server" }, { "confidence": 1, "end": 22.63, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.7788086, "start": 22.39, "word": "for" }, { "confidence": 0.81640625, "end": 22.869999, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.7788086, "start": 22.63, "word": "new" }, { "confidence": 0.9277344, "end": 23.235, "punctuated_word": "data.", "speaker": 0, "speaker_confidence": 0.7788086, "start": 22.869999, "word": "data" }, { "confidence": 1, "end": 23.635, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.7788086, "start": 23.395, "word": "but" }, { "confidence": 0.9980469, "end": 23.715, "punctuated_word": "these", "speaker": 0, "speaker_confidence": 0.7788086, "start": 23.635, "word": "these" }, { "confidence": 1, "end": 24.115, "punctuated_word": "options", "speaker": 0, "speaker_confidence": 0.7788086, "start": 23.715, "word": "options" }, { "confidence": 0.99853516, "end": 24.355001, "punctuated_word": "aren't", "speaker": 0, "speaker_confidence": 0.7788086, "start": 24.115, "word": "aren't" }, { "confidence": 1, "end": 24.755001, "punctuated_word": "ideal", "speaker": 0, "speaker_confidence": 0.7788086, "start": 24.355001, "word": "ideal" }, { "confidence": 1, "end": 25.075, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.7788086, "start": 24.755001, "word": "for" }, { "confidence": 0.9741211, "end": 25.315, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 0.7788086, "start": 25.075, "word": "real" }, { "confidence": 0.99609375, "end": 25.475, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.7788086, "start": 25.315, "word": "time" }, { "confidence": 1, "end": 25.875, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.7788086, "start": 25.475, "word": "data" }, { "confidence": 0.5180664, "end": 26.035, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7788086, "start": 25.875, "word": "and" }, { "confidence": 1, "end": 26.195, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.7788086, "start": 26.035, "word": "that's" }, { "confidence": 0.99609375, "end": 26.435001, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.7788086, "start": 26.195, "word": "where" }, { "confidence": 0.78377277, "end": 26.935001, "punctuated_word": "WebSockets", "speaker": 0, "speaker_confidence": 0.7788086, "start": 26.435001, "word": "websockets" }, { "confidence": 0.9970703, "end": 27.155, "punctuated_word": "come", "speaker": 0, "speaker_confidence": 0.7788086, "start": 26.995, "word": "come" }, { "confidence": 1, "end": 27.635, "punctuated_word": "in.", "speaker": 0, "speaker_confidence": 0.7788086, "start": 27.155, "word": "in" }, { "confidence": 0.9970703, "end": 27.715, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.7788086, "start": 27.635, "word": "the" }, { "confidence": 0.95703125, "end": 27.955, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 0.7788086, "start": 27.715, "word": "first" }, { "confidence": 1, "end": 28.275002, "punctuated_word": "step", "speaker": 0, "speaker_confidence": 0.7788086, "start": 27.955, "word": "step" }, { "confidence": 0.99121094, "end": 28.435001, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7788086, "start": 28.275002, "word": "is" }, { "confidence": 0.94384766, "end": 28.675001, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.7788086, "start": 28.435001, "word": "for" }, { "confidence": 0.9980469, "end": 28.755001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.67089844, "start": 28.675001, "word": "the" }, { "confidence": 1, "end": 29.155, "punctuated_word": "client", "speaker": 0, "speaker_confidence": 0.67089844, "start": 28.755001, "word": "client" }, { "confidence": 1, "end": 29.315, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.67089844, "start": 29.155, "word": "to" }, { "confidence": 1, "end": 29.555, "punctuated_word": "send", "speaker": 0, "speaker_confidence": 0.67089844, "start": 29.315, "word": "send" }, { "confidence": 0.99609375, "end": 29.715, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.67089844, "start": 29.555, "word": "an" }, { "confidence": 0.8305664, "end": 30.215, "punctuated_word": "HTTP", "speaker": 0, "speaker_confidence": 0.67089844, "start": 29.715, "word": "http" }, { "confidence": 0.9892578, "end": 30.835001, "punctuated_word": "request", "speaker": 0, "speaker_confidence": 0.67089844, "start": 30.355, "word": "request" }, { "confidence": 1, "end": 30.995, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.67089844, "start": 30.835001, "word": "to" }, { "confidence": 1, "end": 31.155, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.67089844, "start": 30.995, "word": "the" }, { "confidence": 1, "end": 31.54, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 0.67089844, "start": 31.155, "word": "server" }, { "confidence": 1, "end": 32.02, "punctuated_word": "asking", "speaker": 0, "speaker_confidence": 0.67089844, "start": 31.7, "word": "asking" }, { "confidence": 0.9970703, "end": 32.260002, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.67089844, "start": 32.02, "word": "to" }, { "confidence": 0.99902344, "end": 32.5, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.67089844, "start": 32.260002, "word": "open" }, { "confidence": 0.9980469, "end": 32.66, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.67089844, "start": 32.5, "word": "a" }, { "confidence": 0.9848633, "end": 33.14, "punctuated_word": "connection.", "speaker": 0, "speaker_confidence": 0.67089844, "start": 32.66, "word": "connection" }, { "confidence": 0.9980469, "end": 33.3, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.8261719, "start": 33.14, "word": "if" }, { "confidence": 0.9980469, "end": 33.46, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8261719, "start": 33.3, "word": "the" }, { "confidence": 1, "end": 33.780003, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 0.8261719, "start": 33.46, "word": "server" }, { "confidence": 0.9914551, "end": 34.18, "punctuated_word": "agrees,", "speaker": 0, "speaker_confidence": 0.8261719, "start": 33.780003, "word": "agrees" }, { "confidence": 0.9921875, "end": 34.34, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8261719, "start": 34.18, "word": "it" }, { "confidence": 0.9980469, "end": 34.5, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.8261719, "start": 34.34, "word": "will" }, { "confidence": 0.99902344, "end": 34.66, "punctuated_word": "send", "speaker": 0, "speaker_confidence": 0.8261719, "start": 34.5, "word": "send" }, { "confidence": 0.9770508, "end": 34.9, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8261719, "start": 34.66, "word": "a" }, { "confidence": 0.35009766, "end": 35.06, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.8261719, "start": 34.9, "word": "one" }, { "confidence": 0.9003906, "end": 35.22, "punctuated_word": "zero", "speaker": 0, "speaker_confidence": 0.8261719, "start": 35.06, "word": "zero" }, { "confidence": 0.96533203, "end": 35.620003, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.8261719, "start": 35.22, "word": "one" }, { "confidence": 0.9819336, "end": 36.100002, "punctuated_word": "switching", "speaker": 0, "speaker_confidence": 0.8261719, "start": 35.620003, "word": "switching" }, { "confidence": 0.96533203, "end": 36.600002, "punctuated_word": "protocols", "speaker": 0, "speaker_confidence": 0.8261719, "start": 36.100002, "word": "protocols" }, { "confidence": 0.8273926, "end": 37.16, "punctuated_word": "response,", "speaker": 0, "speaker_confidence": 0.8261719, "start": 36.66, "word": "response" }, { "confidence": 0.9770508, "end": 37.54, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.8261719, "start": 37.38, "word": "at" }, { "confidence": 0.9970703, "end": 37.78, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.8261719, "start": 37.54, "word": "which" }, { "confidence": 0.99316406, "end": 38.100002, "punctuated_word": "point", "speaker": 0, "speaker_confidence": 0.8261719, "start": 37.78, "word": "point" }, { "confidence": 0.6582031, "end": 38.34, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8261719, "start": 38.100002, "word": "the" }, { "confidence": 0.98828125, "end": 38.84, "punctuated_word": "handshake", "speaker": 0, "speaker_confidence": 0.8261719, "start": 38.34, "word": "handshake" }, { "confidence": 0.9194336, "end": 39.06, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8261719, "start": 38.9, "word": "is" }, { "confidence": 0.9946289, "end": 39.54, "punctuated_word": "complete.", "speaker": 0, "speaker_confidence": 0.8261719, "start": 39.06, "word": "complete" }, { "confidence": 0.74072266, "end": 39.78, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.8261719, "start": 39.54, "word": "the" }, { "confidence": 0.8457031, "end": 40.28, "punctuated_word": "TCP", "speaker": 0, "speaker_confidence": 0.8261719, "start": 39.78, "word": "tcp" }, { "confidence": 0.66259766, "end": 41.105, "punctuated_word": "IP", "speaker": 0, "speaker_confidence": 0.8261719, "start": 40.74, "word": "ip" }, { "confidence": 0.42358398, "end": 41.345, "punctuated_word": "option", "speaker": 0, "speaker_confidence": 0.8261719, "start": 41.185, "word": "option" }, { "confidence": 0.99609375, "end": 41.505, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8261719, "start": 41.345, "word": "is" }, { "confidence": 1, "end": 41.585, "punctuated_word": "left", "speaker": 0, "speaker_confidence": 0.8071289, "start": 41.505, "word": "left" }, { "confidence": 0.8808594, "end": 42.085, "punctuated_word": "open,", "speaker": 0, "speaker_confidence": 0.8071289, "start": 41.585, "word": "open" }, { "confidence": 1, "end": 42.785, "punctuated_word": "allowing", "speaker": 0, "speaker_confidence": 0.8071289, "start": 42.385, "word": "allowing" }, { "confidence": 0.8992513, "end": 43.285, "punctuated_word": "bidirectional", "speaker": 0, "speaker_confidence": 0.8071289, "start": 42.785, "word": "bidirectional" }, { "confidence": 1, "end": 43.905, "punctuated_word": "messages", "speaker": 0, "speaker_confidence": 0.8071289, "start": 43.425, "word": "messages" }, { "confidence": 1, "end": 44.065, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8071289, "start": 43.905, "word": "to" }, { "confidence": 1, "end": 44.385, "punctuated_word": "pass", "speaker": 0, "speaker_confidence": 0.8071289, "start": 44.065, "word": "pass" }, { "confidence": 1, "end": 44.704998, "punctuated_word": "between", "speaker": 0, "speaker_confidence": 0.8071289, "start": 44.385, "word": "between" }, { "confidence": 0.99902344, "end": 44.785, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8071289, "start": 44.704998, "word": "the" }, { "confidence": 0.72998047, "end": 44.945, "punctuated_word": "2", "speaker": 0, "speaker_confidence": 0.8071289, "start": 44.785, "word": "2" }, { "confidence": 1, "end": 45.265, "punctuated_word": "parties", "speaker": 0, "speaker_confidence": 0.8071289, "start": 44.945, "word": "parties" }, { "confidence": 0.99902344, "end": 45.505, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.8071289, "start": 45.265, "word": "with" }, { "confidence": 1, "end": 45.665, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 0.8071289, "start": 45.505, "word": "very" }, { "confidence": 0.9970703, "end": 45.905, "punctuated_word": "low", "speaker": 0, "speaker_confidence": 0.8071289, "start": 45.665, "word": "low" }, { "confidence": 0.9848633, "end": 46.405, "punctuated_word": "latency.", "speaker": 0, "speaker_confidence": 0.8071289, "start": 45.905, "word": "latency" }, { "confidence": 1, "end": 46.704998, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.8071289, "start": 46.545, "word": "the" }, { "confidence": 1, "end": 47.025, "punctuated_word": "connection", "speaker": 0, "speaker_confidence": 0.8071289, "start": 46.704998, "word": "connection" }, { "confidence": 1, "end": 47.184998, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.8071289, "start": 47.025, "word": "will" }, { "confidence": 1, "end": 47.425, "punctuated_word": "stay", "speaker": 0, "speaker_confidence": 0.8071289, "start": 47.184998, "word": "stay" }, { "confidence": 1, "end": 47.825, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.8071289, "start": 47.425, "word": "open" }, { "confidence": 0.9980469, "end": 48.065, "punctuated_word": "until", "speaker": 0, "speaker_confidence": 0.8071289, "start": 47.825, "word": "until" }, { "confidence": 0.6220703, "end": 48.225, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.8071289, "start": 48.065, "word": "one" }, { "confidence": 1, "end": 48.385, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8071289, "start": 48.225, "word": "of" }, { "confidence": 1, "end": 48.465, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8071289, "start": 48.385, "word": "the" }, { "confidence": 0.9941406, "end": 48.864998, "punctuated_word": "parties", "speaker": 0, "speaker_confidence": 0.8071289, "start": 48.465, "word": "parties" }, { "confidence": 1, "end": 49.105, "punctuated_word": "drops", "speaker": 0, "speaker_confidence": 0.8071289, "start": 48.864998, "word": "drops" }, { "confidence": 0.9562988, "end": 49.35, "punctuated_word": "off,", "speaker": 0, "speaker_confidence": 0.8071289, "start": 49.105, "word": "off" }, { "confidence": 0.9902344, "end": 49.75, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.8071289, "start": 49.51, "word": "then" }, { "confidence": 0.9970703, "end": 49.829998, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8071289, "start": 49.75, "word": "the" }, { "confidence": 0.9980469, "end": 50.329998, "punctuated_word": "TCP", "speaker": 0, "speaker_confidence": 0.8071289, "start": 49.829998, "word": "tcp" }, { "confidence": 0.9921875, "end": 50.87, "punctuated_word": "resources", "speaker": 0, "speaker_confidence": 0.8071289, "start": 50.39, "word": "resources" }, { "confidence": 0.9980469, "end": 51.109997, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.8071289, "start": 50.87, "word": "can" }, { "confidence": 1, "end": 51.269997, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.8071289, "start": 51.109997, "word": "be" }, { "confidence": 0.99975586, "end": 51.769997, "punctuated_word": "unallocated.", "speaker": 0, "speaker_confidence": 0.8071289, "start": 51.269997, "word": "unallocated" }, { "confidence": 0.9995117, "end": 52.23, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.8071289, "start": 52.07, "word": "it's" }, { "confidence": 1, "end": 52.55, "punctuated_word": "often", "speaker": 0, "speaker_confidence": 0.8071289, "start": 52.23, "word": "often" }, { "confidence": 1, "end": 52.87, "punctuated_word": "referred", "speaker": 0, "speaker_confidence": 0.8071289, "start": 52.55, "word": "referred" }, { "confidence": 1, "end": 53.109997, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8071289, "start": 52.87, "word": "to" }, { "confidence": 1, "end": 53.35, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.8071289, "start": 53.109997, "word": "as" }, { "confidence": 0.99902344, "end": 53.43, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8071289, "start": 53.35, "word": "a" }, { "confidence": 0.99316406, "end": 53.75, "punctuated_word": "full", "speaker": 0, "speaker_confidence": 0.8071289, "start": 53.43, "word": "full" }, { "confidence": 0.99902344, "end": 54.149998, "punctuated_word": "duplex", "speaker": 0, "speaker_confidence": 0.8071289, "start": 53.75, "word": "duplex" }, { "confidence": 0.9941406, "end": 54.629997, "punctuated_word": "connection,", "speaker": 0, "speaker_confidence": 0.8071289, "start": 54.149998, "word": "connection" }, { "confidence": 1, "end": 54.789997, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.8071289, "start": 54.629997, "word": "which" }, { "confidence": 1, "end": 54.949997, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8071289, "start": 54.789997, "word": "is" }, { "confidence": 0.99902344, "end": 55.19, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8071289, "start": 54.949997, "word": "a" }, { "confidence": 0.9980469, "end": 55.69, "punctuated_word": "telecommunications", "speaker": 0, "speaker_confidence": 0.8071289, "start": 55.19, "word": "telecommunications" }, { "confidence": 0.99902344, "end": 56.309998, "punctuated_word": "term", "speaker": 0, "speaker_confidence": 0.8071289, "start": 55.989998, "word": "term" }, { "confidence": 1, "end": 56.55, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8071289, "start": 56.309998, "word": "that" }, { "confidence": 1, "end": 56.949997, "punctuated_word": "defines", "speaker": 0, "speaker_confidence": 0.8071289, "start": 56.55, "word": "defines" }, { "confidence": 1, "end": 57.109997, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.8071289, "start": 56.949997, "word": "how" }, { "confidence": 1, "end": 57.269997, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8071289, "start": 57.109997, "word": "a" }, { "confidence": 0.9970703, "end": 57.51, "punctuated_word": "phone", "speaker": 0, "speaker_confidence": 0.8071289, "start": 57.269997, "word": "phone" }, { "confidence": 1, "end": 57.67, "punctuated_word": "line", "speaker": 0, "speaker_confidence": 0.8071289, "start": 57.51, "word": "line" }, { "confidence": 1, "end": 57.955, "punctuated_word": "works", "speaker": 0, "speaker_confidence": 0.8071289, "start": 57.67, "word": "works" }, { "confidence": 0.99902344, "end": 58.275, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.8071289, "start": 58.035004, "word": "where" }, { "confidence": 1, "end": 58.435, "punctuated_word": "both", "speaker": 0, "speaker_confidence": 0.8071289, "start": 58.275, "word": "both" }, { "confidence": 1, "end": 58.915, "punctuated_word": "parties", "speaker": 0, "speaker_confidence": 0.8071289, "start": 58.435, "word": "parties" }, { "confidence": 1, "end": 59.075, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.8071289, "start": 58.915, "word": "can" }, { "confidence": 1, "end": 59.315002, "punctuated_word": "send", "speaker": 0, "speaker_confidence": 0.8071289, "start": 59.075, "word": "send" }, { "confidence": 1, "end": 59.795002, "punctuated_word": "messages", "speaker": 0, "speaker_confidence": 0.8071289, "start": 59.315002, "word": "messages" }, { "confidence": 0.9980469, "end": 60.115, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.8071289, "start": 59.795002, "word": "or" }, { "confidence": 0.99902344, "end": 60.435, "punctuated_word": "talk", "speaker": 0, "speaker_confidence": 0.8071289, "start": 60.115, "word": "talk" }, { "confidence": 0.99902344, "end": 60.515003, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.8071289, "start": 60.435, "word": "at" }, { "confidence": 1, "end": 60.595, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.49902344, "start": 60.515003, "word": "the" }, { "confidence": 1, "end": 60.835003, "punctuated_word": "same", "speaker": 0, "speaker_confidence": 0.49902344, "start": 60.595, "word": "same" }, { "confidence": 0.99902344, "end": 61.335003, "punctuated_word": "time.", "speaker": 0, "speaker_confidence": 0.49902344, "start": 60.835003, "word": "time" }, { "confidence": 1, "end": 61.795002, "punctuated_word": "Let's", "speaker": 0, "speaker_confidence": 0.49902344, "start": 61.555, "word": "let's" }, { "confidence": 1, "end": 61.875, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.49902344, "start": 61.795002, "word": "see" }, { "confidence": 1, "end": 62.115, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.49902344, "start": 61.875, "word": "this" }, { "confidence": 0.99121094, "end": 62.195, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.82714844, "start": 62.115, "word": "in" }, { "confidence": 1, "end": 62.595, "punctuated_word": "action", "speaker": 0, "speaker_confidence": 0.82714844, "start": 62.195, "word": "action" }, { "confidence": 0.99902344, "end": 62.755, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.82714844, "start": 62.595, "word": "by" }, { "confidence": 1, "end": 63.075, "punctuated_word": "creating", "speaker": 0, "speaker_confidence": 0.82714844, "start": 62.755, "word": "creating" }, { "confidence": 1, "end": 63.235, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.82714844, "start": 63.075, "word": "a" }, { "confidence": 0.99902344, "end": 63.475002, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 0.82714844, "start": 63.235, "word": "real" }, { "confidence": 0.9941406, "end": 63.715, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.82714844, "start": 63.475002, "word": "time" }, { "confidence": 1, "end": 64.115005, "punctuated_word": "connection", "speaker": 0, "speaker_confidence": 0.82714844, "start": 63.715, "word": "connection" }, { "confidence": 0.99902344, "end": 64.435005, "punctuated_word": "between", "speaker": 0, "speaker_confidence": 0.82714844, "start": 64.115005, "word": "between" }, { "confidence": 0.9980469, "end": 64.595, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.82714844, "start": 64.435005, "word": "a" }, { "confidence": 0.73095703, "end": 64.835, "punctuated_word": "Node.", "speaker": 0, "speaker_confidence": 0.82714844, "start": 64.595, "word": "node" }, { "confidence": 0.8769531, "end": 65.03, "punctuated_word": "Js", "speaker": 0, "speaker_confidence": 0.82714844, "start": 64.835, "word": "js" }, { "confidence": 0.9921875, "end": 65.27, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.82714844, "start": 65.11, "word": "a" }, { "confidence": 0.92163086, "end": 65.59, "punctuated_word": "server,", "speaker": 0, "speaker_confidence": 0.82714844, "start": 65.27, "word": "server" }, { "confidence": 1, "end": 65.909996, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.82714844, "start": 65.59, "word": "and" }, { "confidence": 0.99902344, "end": 66.07, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.82714844, "start": 65.909996, "word": "a" }, { "confidence": 0.9902344, "end": 66.229996, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.82714844, "start": 66.07, "word": "web" }, { "confidence": 0.9970703, "end": 66.729996, "punctuated_word": "browser.", "speaker": 0, "speaker_confidence": 0.82714844, "start": 66.229996, "word": "browser" }, { "confidence": 0.9980469, "end": 67.03, "punctuated_word": "We'll", "speaker": 0, "speaker_confidence": 0.82714844, "start": 66.869995, "word": "we'll" }, { "confidence": 0.9970703, "end": 67.27, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 0.82714844, "start": 67.03, "word": "start" }, { "confidence": 0.9951172, "end": 67.43, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.82714844, "start": 67.27, "word": "in" }, { "confidence": 1, "end": 67.59, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.82714844, "start": 67.43, "word": "our" }, { "confidence": 0.8203125, "end": 67.75, "punctuated_word": "back", "speaker": 0, "speaker_confidence": 0.82714844, "start": 67.59, "word": "back" }, { "confidence": 1, "end": 67.909996, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.82714844, "start": 67.75, "word": "end" }, { "confidence": 0.9970703, "end": 68.229996, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.82714844, "start": 67.909996, "word": "code" }, { "confidence": 0.9970703, "end": 68.39, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.82714844, "start": 68.229996, "word": "by" }, { "confidence": 1, "end": 68.71, "punctuated_word": "building", "speaker": 0, "speaker_confidence": 0.82714844, "start": 68.39, "word": "building" }, { "confidence": 0.99902344, "end": 68.869995, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.82714844, "start": 68.71, "word": "a" }, { "confidence": 0.84228516, "end": 69.369995, "punctuated_word": "WebSocket", "speaker": 0, "speaker_confidence": 0.82714844, "start": 68.869995, "word": "websocket" }, { "confidence": 0.9741211, "end": 69.75, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 0.82714844, "start": 69.51, "word": "server" }, { "confidence": 0.9980469, "end": 69.909996, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.82714844, "start": 69.75, "word": "with" }, { "confidence": 0.7138672, "end": 70.15, "punctuated_word": "Node.", "speaker": 0, "speaker_confidence": 0.82714844, "start": 69.909996, "word": "node" }, { "confidence": 0.94970703, "end": 70.65, "punctuated_word": "Js.", "speaker": 0, "speaker_confidence": 0.82714844, "start": 70.15, "word": "js" }, { "confidence": 0.9970703, "end": 71.11, "punctuated_word": "Using", "speaker": 0, "speaker_confidence": 0.82714844, "start": 70.79, "word": "using" }, { "confidence": 0.9970703, "end": 71.27, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.82714844, "start": 71.11, "word": "the" }, { "confidence": 0.8442383, "end": 71.67, "punctuated_word": "ws", "speaker": 0, "speaker_confidence": 0.82714844, "start": 71.27, "word": "ws" }, { "confidence": 0.86865234, "end": 72.105, "punctuated_word": "library,", "speaker": 0, "speaker_confidence": 0.82714844, "start": 71.67, "word": "library" }, { "confidence": 0.9970703, "end": 72.425, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.82714844, "start": 72.185005, "word": "we" }, { "confidence": 0.9838867, "end": 72.58501, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.82714844, "start": 72.425, "word": "can" }, { "confidence": 0.99902344, "end": 73.08501, "punctuated_word": "instantiate", "speaker": 0, "speaker_confidence": 0.82714844, "start": 72.58501, "word": "instantiate" }, { "confidence": 0.9970703, "end": 73.385, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.82714844, "start": 73.225006, "word": "a" }, { "confidence": 1, "end": 73.625, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.82714844, "start": 73.385, "word": "new" }, { "confidence": 1, "end": 74.025, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 0.82714844, "start": 73.625, "word": "server" }, { "confidence": 0.99902344, "end": 74.265, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.82714844, "start": 74.025, "word": "on" }, { "confidence": 0.9892578, "end": 74.665, "punctuated_word": "port", "speaker": 0, "speaker_confidence": 0.82714844, "start": 74.265, "word": "port" }, { "confidence": 0.91845703, "end": 75.165, "punctuated_word": "8080.", "speaker": 0, "speaker_confidence": 0.82714844, "start": 74.665, "word": "8080" }, { "confidence": 1, "end": 75.705, "punctuated_word": "Everything", "speaker": 0, "speaker_confidence": 0.82714844, "start": 75.385, "word": "everything" }, { "confidence": 1, "end": 75.945, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.82714844, "start": 75.705, "word": "is" }, { "confidence": 1, "end": 76.185005, "punctuated_word": "event", "speaker": 0, "speaker_confidence": 0.82714844, "start": 75.945, "word": "event" }, { "confidence": 0.7590332, "end": 76.58501, "punctuated_word": "based,", "speaker": 0, "speaker_confidence": 0.82714844, "start": 76.185005, "word": "based" }, { "confidence": 1, "end": 76.745, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.82714844, "start": 76.58501, "word": "and" }, { "confidence": 1, "end": 76.90501, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.82714844, "start": 76.745, "word": "the" }, { "confidence": 0.89746094, "end": 77.065, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 0.82714844, "start": 76.90501, "word": "first" }, { "confidence": 0.99902344, "end": 77.385, "punctuated_word": "event", "speaker": 0, "speaker_confidence": 0.82714844, "start": 77.065, "word": "event" }, { "confidence": 0.99902344, "end": 77.465004, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.82714844, "start": 77.385, "word": "we" }, { "confidence": 1, "end": 77.625, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.75341797, "start": 77.465004, "word": "can" }, { "confidence": 1, "end": 77.945, "punctuated_word": "expect", "speaker": 0, "speaker_confidence": 0.75341797, "start": 77.625, "word": "expect" }, { "confidence": 1, "end": 78.105, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.75341797, "start": 77.945, "word": "to" }, { "confidence": 1, "end": 78.505005, "punctuated_word": "happen", "speaker": 0, "speaker_confidence": 0.75341797, "start": 78.105, "word": "happen" }, { "confidence": 0.99902344, "end": 78.745, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.75341797, "start": 78.505005, "word": "is" }, { "confidence": 1, "end": 78.90501, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.75341797, "start": 78.745, "word": "a" }, { "confidence": 1, "end": 79.385, "punctuated_word": "connection", "speaker": 0, "speaker_confidence": 0.75341797, "start": 78.90501, "word": "connection" }, { "confidence": 1, "end": 79.625, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.75341797, "start": 79.385, "word": "from" }, { "confidence": 0.9921875, "end": 79.785, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.75341797, "start": 79.625, "word": "the" }, { "confidence": 1, "end": 80.26, "punctuated_word": "client.", "speaker": 0, "speaker_confidence": 0.75341797, "start": 79.785, "word": "client" }, { "confidence": 1, "end": 80.5, "punctuated_word": "When", "speaker": 0, "speaker_confidence": 0.75341797, "start": 80.340004, "word": "when" }, { "confidence": 0.99609375, "end": 80.66, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.75341797, "start": 80.5, "word": "the" }, { "confidence": 1, "end": 80.9, "punctuated_word": "connection", "speaker": 0, "speaker_confidence": 0.75341797, "start": 80.66, "word": "connection" }, { "confidence": 1, "end": 81.14, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.75341797, "start": 80.9, "word": "is" }, { "confidence": 0.9975586, "end": 81.380005, "punctuated_word": "made,", "speaker": 0, "speaker_confidence": 0.75341797, "start": 81.14, "word": "made" }, { "confidence": 0.9926758, "end": 81.62, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.75341797, "start": 81.380005, "word": "we'll" }, { "confidence": 1, "end": 81.86, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.75341797, "start": 81.62, "word": "have" }, { "confidence": 0.99902344, "end": 82.18, "punctuated_word": "access", "speaker": 0, "speaker_confidence": 0.75341797, "start": 81.86, "word": "access" }, { "confidence": 1, "end": 82.42, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.75341797, "start": 82.18, "word": "to" }, { "confidence": 0.99902344, "end": 82.58, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.75341797, "start": 82.42, "word": "a" }, { "confidence": 0.8886719, "end": 83.08, "punctuated_word": "WebSocket", "speaker": 0, "speaker_confidence": 0.75341797, "start": 82.58, "word": "websocket" }, { "confidence": 0.99902344, "end": 83.54, "punctuated_word": "object", "speaker": 0, "speaker_confidence": 0.75341797, "start": 83.14, "word": "object" }, { "confidence": 0.53466797, "end": 83.700005, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.75341797, "start": 83.54, "word": "in" }, { "confidence": 0.98291016, "end": 83.78, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.75341797, "start": 83.700005, "word": "the" }, { "confidence": 0.98706055, "end": 84.28, "punctuated_word": "callback.", "speaker": 0, "speaker_confidence": 0.75341797, "start": 83.78, "word": "callback" }, { "confidence": 1, "end": 84.66, "punctuated_word": "With", "speaker": 0, "speaker_confidence": 0.75341797, "start": 84.5, "word": "with" }, { "confidence": 1, "end": 84.740005, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.75341797, "start": 84.66, "word": "the" }, { "confidence": 1, "end": 85.14, "punctuated_word": "initial", "speaker": 0, "speaker_confidence": 0.60595703, "start": 84.740005, "word": "initial" }, { "confidence": 0.99902344, "end": 85.54, "punctuated_word": "handshake", "speaker": 0, "speaker_confidence": 0.60595703, "start": 85.14, "word": "handshake" }, { "confidence": 0.98999023, "end": 85.78, "punctuated_word": "done,", "speaker": 0, "speaker_confidence": 0.60595703, "start": 85.54, "word": "done" }, { "confidence": 1, "end": 86.020004, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.60595703, "start": 85.78, "word": "there" }, { "confidence": 0.99902344, "end": 86.1, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.60595703, "start": 86.020004, "word": "are" }, { "confidence": 0.7685547, "end": 86.26, "punctuated_word": "2", "speaker": 0, "speaker_confidence": 0.60595703, "start": 86.1, "word": "2" }, { "confidence": 1, "end": 86.5, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 0.60595703, "start": 86.26, "word": "things" }, { "confidence": 0.9951172, "end": 86.58, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.60595703, "start": 86.5, "word": "we" }, { "confidence": 1, "end": 86.82, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 0.60595703, "start": 86.58, "word": "might" }, { "confidence": 0.66845703, "end": 87.060005, "punctuated_word": "wanna", "speaker": 0, "speaker_confidence": 0.60595703, "start": 86.82, "word": "wanna" }, { "confidence": 0.984375, "end": 87.275, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.60595703, "start": 87.060005, "word": "do" }, { "confidence": 0.70288086, "end": 87.515, "punctuated_word": "here.", "speaker": 0, "speaker_confidence": 0.60595703, "start": 87.275, "word": "here" }, { "confidence": 1, "end": 87.675, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.7607422, "start": 87.515, "word": "we" }, { "confidence": 1, "end": 87.755005, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7607422, "start": 87.675, "word": "can" }, { "confidence": 1, "end": 88.155, "punctuated_word": "listen", "speaker": 0, "speaker_confidence": 0.7607422, "start": 87.755005, "word": "listen" }, { "confidence": 1, "end": 88.395004, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7607422, "start": 88.155, "word": "to" }, { "confidence": 0.99902344, "end": 88.795, "punctuated_word": "incoming", "speaker": 0, "speaker_confidence": 0.7607422, "start": 88.395004, "word": "incoming" }, { "confidence": 0.93237305, "end": 89.295, "punctuated_word": "messages,", "speaker": 0, "speaker_confidence": 0.7607422, "start": 88.795, "word": "messages" }, { "confidence": 1, "end": 89.675, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.7607422, "start": 89.435, "word": "which" }, { "confidence": 0.99902344, "end": 89.915, "punctuated_word": "would", "speaker": 0, "speaker_confidence": 0.7607422, "start": 89.675, "word": "would" }, { "confidence": 0.99902344, "end": 90.075005, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.7607422, "start": 89.915, "word": "just" }, { "confidence": 1, "end": 90.235, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.7607422, "start": 90.075005, "word": "be" }, { "confidence": 0.99121094, "end": 90.475, "punctuated_word": "text", "speaker": 0, "speaker_confidence": 0.7607422, "start": 90.235, "word": "text" }, { "confidence": 0.91748047, "end": 90.635, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7607422, "start": 90.475, "word": "in" }, { "confidence": 1, "end": 90.795, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.7607422, "start": 90.635, "word": "this" }, { "confidence": 0.9238281, "end": 91.115, "punctuated_word": "case,", "speaker": 0, "speaker_confidence": 0.7607422, "start": 90.795, "word": "case" }, { "confidence": 1, "end": 91.275, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7607422, "start": 91.115, "word": "and" }, { "confidence": 1, "end": 91.435, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.7607422, "start": 91.275, "word": "then" }, { "confidence": 0.9921875, "end": 91.755005, "punctuated_word": "handle", "speaker": 0, "speaker_confidence": 0.7607422, "start": 91.435, "word": "handle" }, { "confidence": 1, "end": 91.915, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.7607422, "start": 91.755005, "word": "them" }, { "confidence": 1, "end": 92.415, "punctuated_word": "accordingly", "speaker": 0, "speaker_confidence": 0.7607422, "start": 91.915, "word": "accordingly" }, { "confidence": 0.99902344, "end": 92.635, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7607422, "start": 92.475, "word": "in" }, { "confidence": 0.99609375, "end": 92.795, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7607422, "start": 92.635, "word": "the" }, { "confidence": 0.9916992, "end": 93.295, "punctuated_word": "callback.", "speaker": 0, "speaker_confidence": 0.7607422, "start": 92.795, "word": "callback" }, { "confidence": 0.9277344, "end": 93.595, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.7607422, "start": 93.355, "word": "the" }, { "confidence": 0.9980469, "end": 93.755005, "punctuated_word": "second", "speaker": 0, "speaker_confidence": 0.7607422, "start": 93.595, "word": "second" }, { "confidence": 1, "end": 93.995, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.7607422, "start": 93.755005, "word": "thing" }, { "confidence": 0.99902344, "end": 94.155, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.7607422, "start": 93.995, "word": "we" }, { "confidence": 1, "end": 94.315, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 0.7607422, "start": 94.155, "word": "might" }, { "confidence": 1, "end": 94.74, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.7607422, "start": 94.315, "word": "do" }, { "confidence": 0.9951172, "end": 94.979996, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7607422, "start": 94.74, "word": "is" }, { "confidence": 0.58740234, "end": 95.14, "punctuated_word": "send", "speaker": 0, "speaker_confidence": 0.7607422, "start": 94.979996, "word": "send" }, { "confidence": 0.9941406, "end": 95.22, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7607422, "start": 95.14, "word": "a" }, { "confidence": 1, "end": 95.7, "punctuated_word": "message", "speaker": 0, "speaker_confidence": 0.7607422, "start": 95.22, "word": "message" }, { "confidence": 1, "end": 95.939995, "punctuated_word": "back", "speaker": 0, "speaker_confidence": 0.7607422, "start": 95.7, "word": "back" }, { "confidence": 1, "end": 96.1, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7607422, "start": 95.939995, "word": "to" }, { "confidence": 0.99902344, "end": 96.18, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7607422, "start": 96.1, "word": "the" }, { "confidence": 0.89990234, "end": 96.659996, "punctuated_word": "client,", "speaker": 0, "speaker_confidence": 0.7607422, "start": 96.18, "word": "client" }, { "confidence": 1, "end": 96.82, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.7089844, "start": 96.659996, "word": "which" }, { "confidence": 1, "end": 96.979996, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.7089844, "start": 96.82, "word": "we" }, { "confidence": 1, "end": 97.14, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7089844, "start": 96.979996, "word": "can" }, { "confidence": 1, "end": 97.299995, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.7089844, "start": 97.14, "word": "do" }, { "confidence": 1, "end": 97.46, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.7089844, "start": 97.299995, "word": "with" }, { "confidence": 0.99902344, "end": 97.619995, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7089844, "start": 97.46, "word": "the" }, { "confidence": 0.99902344, "end": 97.939995, "punctuated_word": "send", "speaker": 0, "speaker_confidence": 0.7089844, "start": 97.619995, "word": "send" }, { "confidence": 0.9890137, "end": 98.439995, "punctuated_word": "method.", "speaker": 0, "speaker_confidence": 0.7089844, "start": 97.939995, "word": "method" }, { "confidence": 1, "end": 98.74, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.7089844, "start": 98.579994, "word": "now" }, { "confidence": 0.935791, "end": 98.899994, "punctuated_word": "let's", "speaker": 0, "speaker_confidence": 0.7089844, "start": 98.74, "word": "let's" }, { "confidence": 1, "end": 99.06, "punctuated_word": "take", "speaker": 0, "speaker_confidence": 0.7089844, "start": 98.899994, "word": "take" }, { "confidence": 1, "end": 99.14, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7089844, "start": 99.06, "word": "a" }, { "confidence": 1, "end": 99.38, "punctuated_word": "look", "speaker": 0, "speaker_confidence": 0.7089844, "start": 99.14, "word": "look" }, { "confidence": 1, "end": 99.54, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.7089844, "start": 99.38, "word": "at" }, { "confidence": 1, "end": 99.619995, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.7089844, "start": 99.54, "word": "our" }, { "confidence": 0.9941406, "end": 99.939995, "punctuated_word": "client", "speaker": 0, "speaker_confidence": 0.7089844, "start": 99.619995, "word": "client" }, { "confidence": 0.87353516, "end": 100.1, "punctuated_word": "side", "speaker": 0, "speaker_confidence": 0.7089844, "start": 99.939995, "word": "side" }, { "confidence": 0.9921875, "end": 100.42, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.7089844, "start": 100.1, "word": "code" }, { "confidence": 0.9667969, "end": 100.5, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7089844, "start": 100.42, "word": "in" }, { "confidence": 1, "end": 100.659996, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.79589844, "start": 100.5, "word": "the" }, { "confidence": 0.7980957, "end": 101.159996, "punctuated_word": "browser,", "speaker": 0, "speaker_confidence": 0.79589844, "start": 100.659996, "word": "browser" }, { "confidence": 1, "end": 101.38, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.79589844, "start": 101.22, "word": "which" }, { "confidence": 1, "end": 101.619995, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.79589844, "start": 101.38, "word": "has" }, { "confidence": 0.99902344, "end": 101.78, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.79589844, "start": 101.619995, "word": "a" }, { "confidence": 0.99902344, "end": 102.02, "punctuated_word": "built", "speaker": 0, "speaker_confidence": 0.79589844, "start": 101.78, "word": "built" }, { "confidence": 0.97998047, "end": 102.259995, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.79589844, "start": 102.02, "word": "in" }, { "confidence": 0.7451172, "end": 102.759995, "punctuated_word": "WebSocket", "speaker": 0, "speaker_confidence": 0.79589844, "start": 102.259995, "word": "websocket" }, { "confidence": 0.6723633, "end": 102.915, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.79589844, "start": 102.835, "word": "a" }, { "confidence": 0.904541, "end": 103.415, "punctuated_word": "clasp.", "speaker": 0, "speaker_confidence": 0.79589844, "start": 102.915, "word": "clasp" }, { "confidence": 0.9970703, "end": 103.875, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.79589844, "start": 103.555, "word": "it's" }, { "confidence": 0.97265625, "end": 104.375, "punctuated_word": "instantiated", "speaker": 0, "speaker_confidence": 0.79589844, "start": 103.875, "word": "instantiated" }, { "confidence": 1, "end": 104.674995, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.79589844, "start": 104.435, "word": "with" }, { "confidence": 0.984375, "end": 104.755, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.79589844, "start": 104.674995, "word": "a" }, { "confidence": 0.9863281, "end": 105.255, "punctuated_word": "URL", "speaker": 0, "speaker_confidence": 0.79589844, "start": 104.755, "word": "url" }, { "confidence": 0.99902344, "end": 105.555, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.79589844, "start": 105.315, "word": "that" }, { "confidence": 1, "end": 105.875, "punctuated_word": "points", "speaker": 0, "speaker_confidence": 0.79589844, "start": 105.555, "word": "points" }, { "confidence": 1, "end": 106.034996, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.79589844, "start": 105.875, "word": "to" }, { "confidence": 0.99121094, "end": 106.115, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5605469, "start": 106.034996, "word": "the" }, { "confidence": 0.8183594, "end": 106.615, "punctuated_word": "server,", "speaker": 0, "speaker_confidence": 0.5605469, "start": 106.115, "word": "server" }, { "confidence": 1, "end": 106.915, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.5605469, "start": 106.674995, "word": "but" }, { "confidence": 0.9921875, "end": 107.315, "punctuated_word": "notice", "speaker": 0, "speaker_confidence": 0.5605469, "start": 106.915, "word": "notice" }, { "confidence": 0.9482422, "end": 107.555, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5605469, "start": 107.315, "word": "the" }, { "confidence": 0.98095703, "end": 107.955, "punctuated_word": "w", "speaker": 0, "speaker_confidence": 0.5605469, "start": 107.555, "word": "w" }, { "confidence": 0.66552734, "end": 108.115, "punctuated_word": "s", "speaker": 0, "speaker_confidence": 0.5605469, "start": 107.955, "word": "s" }, { "confidence": 0.9733887, "end": 108.615, "punctuated_word": "protocol.", "speaker": 0, "speaker_confidence": 0.5605469, "start": 108.115, "word": "protocol" }, { "confidence": 1, "end": 108.994995, "punctuated_word": "That", "speaker": 0, "speaker_confidence": 0.61621094, "start": 108.915, "word": "that" }, { "confidence": 1, "end": 109.235, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.61621094, "start": 108.994995, "word": "will" }, { "confidence": 0.99902344, "end": 109.735, "punctuated_word": "automatically", "speaker": 0, "speaker_confidence": 0.61621094, "start": 109.235, "word": "automatically" }, { "confidence": 1, "end": 110.034996, "punctuated_word": "trigger", "speaker": 0, "speaker_confidence": 0.61621094, "start": 109.795, "word": "trigger" }, { "confidence": 0.82128906, "end": 110.27, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.61621094, "start": 110.034996, "word": "the" }, { "confidence": 0.93343097, "end": 110.75, "punctuated_word": "Handshake,", "speaker": 0, "speaker_confidence": 0.61621094, "start": 110.35, "word": "handshake" }, { "confidence": 1, "end": 110.99, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.61621094, "start": 110.75, "word": "to" }, { "confidence": 1, "end": 111.229996, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.61621094, "start": 110.99, "word": "open" }, { "confidence": 0.98291016, "end": 111.46999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.61621094, "start": 111.229996, "word": "the" }, { "confidence": 0.923584, "end": 111.95, "punctuated_word": "connection,", "speaker": 0, "speaker_confidence": 0.61621094, "start": 111.46999, "word": "connection" }, { "confidence": 1, "end": 112.189995, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.61621094, "start": 111.95, "word": "which" }, { "confidence": 1, "end": 112.35, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.61621094, "start": 112.189995, "word": "we" }, { "confidence": 1, "end": 112.42999, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.61621094, "start": 112.35, "word": "can" }, { "confidence": 1, "end": 112.75, "punctuated_word": "listen", "speaker": 0, "speaker_confidence": 0.61621094, "start": 112.42999, "word": "listen" }, { "confidence": 0.99902344, "end": 112.99, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.61621094, "start": 112.75, "word": "to" }, { "confidence": 0.9980469, "end": 113.149994, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.61621094, "start": 112.99, "word": "as" }, { "confidence": 0.9970703, "end": 113.31, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.61621094, "start": 113.149994, "word": "an" }, { "confidence": 0.9975586, "end": 113.81, "punctuated_word": "event.", "speaker": 0, "speaker_confidence": 0.61621094, "start": 113.31, "word": "event" }, { "confidence": 0.8964844, "end": 114.10999, "punctuated_word": "Just", "speaker": 0, "speaker_confidence": 0.61621094, "start": 113.869995, "word": "just" }, { "confidence": 1, "end": 114.27, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.61621094, "start": 114.10999, "word": "like" }, { "confidence": 1, "end": 114.42999, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.80126953, "start": 114.27, "word": "on" }, { "confidence": 0.96533203, "end": 114.509995, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.80126953, "start": 114.42999, "word": "the" }, { "confidence": 0.9951172, "end": 115.009995, "punctuated_word": "server,", "speaker": 0, "speaker_confidence": 0.80126953, "start": 114.509995, "word": "server" }, { "confidence": 1, "end": 115.149994, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.80126953, "start": 115.07, "word": "we" }, { "confidence": 1, "end": 115.31, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.80126953, "start": 115.149994, "word": "can" }, { "confidence": 1, "end": 115.46999, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.80126953, "start": 115.31, "word": "use" }, { "confidence": 0.9921875, "end": 115.63, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.80126953, "start": 115.46999, "word": "the" }, { "confidence": 1, "end": 116.10999, "punctuated_word": "socket", "speaker": 0, "speaker_confidence": 0.80126953, "start": 115.63, "word": "socket" }, { "confidence": 0.99902344, "end": 116.27, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.80126953, "start": 116.10999, "word": "to" }, { "confidence": 1, "end": 116.59, "punctuated_word": "both", "speaker": 0, "speaker_confidence": 0.80126953, "start": 116.27, "word": "both" }, { "confidence": 0.99902344, "end": 116.909996, "punctuated_word": "listen", "speaker": 0, "speaker_confidence": 0.80126953, "start": 116.59, "word": "listen" }, { "confidence": 0.99902344, "end": 117.149994, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.80126953, "start": 116.909996, "word": "to" }, { "confidence": 0.99316406, "end": 117.46999, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.80126953, "start": 117.149994, "word": "and" }, { "confidence": 1, "end": 117.78999, "punctuated_word": "send", "speaker": 0, "speaker_confidence": 0.80126953, "start": 117.46999, "word": "send" }, { "confidence": 0.91186523, "end": 118.28999, "punctuated_word": "messages.", "speaker": 0, "speaker_confidence": 0.80126953, "start": 117.78999, "word": "messages" }, { "confidence": 1, "end": 118.695, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.80126953, "start": 118.535, "word": "and" }, { "confidence": 0.99902344, "end": 118.855, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.80126953, "start": 118.695, "word": "we" }, { "confidence": 0.99902344, "end": 118.935005, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 0.8769531, "start": 118.855, "word": "now" }, { "confidence": 1, "end": 119.335, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.8769531, "start": 118.935005, "word": "have" }, { "confidence": 0.9970703, "end": 119.415, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8769531, "start": 119.335, "word": "a" }, { "confidence": 1, "end": 119.655, "punctuated_word": "full", "speaker": 0, "speaker_confidence": 0.8769531, "start": 119.415, "word": "full" }, { "confidence": 0.9921875, "end": 120.135, "punctuated_word": "duplex", "speaker": 0, "speaker_confidence": 0.8769531, "start": 119.655, "word": "duplex" }, { "confidence": 1, "end": 120.535, "punctuated_word": "connection", "speaker": 0, "speaker_confidence": 0.8769531, "start": 120.135, "word": "connection" }, { "confidence": 0.99902344, "end": 120.855, "punctuated_word": "between", "speaker": 0, "speaker_confidence": 0.8769531, "start": 120.535, "word": "between" }, { "confidence": 0.9970703, "end": 121.015, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8769531, "start": 120.855, "word": "a" }, { "confidence": 0.9951172, "end": 121.255005, "punctuated_word": "front", "speaker": 0, "speaker_confidence": 0.8769531, "start": 121.015, "word": "front" }, { "confidence": 0.8251953, "end": 121.415, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.8769531, "start": 121.255005, "word": "end" }, { "confidence": 0.94140625, "end": 121.895004, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.8769531, "start": 121.415, "word": "javascript" }, { "confidence": 0.97314453, "end": 122.215004, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.8769531, "start": 121.895004, "word": "app" }, { "confidence": 0.9633789, "end": 122.455, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8769531, "start": 122.215004, "word": "and" }, { "confidence": 0.9980469, "end": 122.615005, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8769531, "start": 122.455, "word": "a" }, { "confidence": 0.7524414, "end": 122.855, "punctuated_word": "node", "speaker": 0, "speaker_confidence": 0.8769531, "start": 122.615005, "word": "node" }, { "confidence": 0.83447266, "end": 123.015, "punctuated_word": "back", "speaker": 0, "speaker_confidence": 0.8769531, "start": 122.855, "word": "back" }, { "confidence": 0.99902344, "end": 123.495, "punctuated_word": "end.", "speaker": 0, "speaker_confidence": 0.8769531, "start": 123.015, "word": "end" }, { "confidence": 1, "end": 123.735, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.8769531, "start": 123.495, "word": "this" }, { "confidence": 0.9951172, "end": 123.895004, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.8769531, "start": 123.735, "word": "has" }, { "confidence": 1, "end": 124.055, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.8769531, "start": 123.895004, "word": "been" }, { "confidence": 0.75927734, "end": 124.555, "punctuated_word": "WebSockets", "speaker": 0, "speaker_confidence": 0.8769531, "start": 124.055, "word": "websockets" }, { "confidence": 0.9790039, "end": 125.015, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8769531, "start": 124.695, "word": "in" }, { "confidence": 0.88671875, "end": 125.415, "punctuated_word": "100", "speaker": 0, "speaker_confidence": 0.8769531, "start": 125.015, "word": "100" }, { "confidence": 0.7709961, "end": 125.895004, "punctuated_word": "seconds,", "speaker": 0, "speaker_confidence": 0.8769531, "start": 125.415, "word": "seconds" }, { "confidence": 0.99902344, "end": 126.055, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.8769531, "start": 125.895004, "word": "but" }, { "confidence": 0.99609375, "end": 126.215004, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.8769531, "start": 126.055, "word": "if" }, { "confidence": 1, "end": 126.295, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.8769531, "start": 126.215004, "word": "you" }, { "confidence": 0.5073242, "end": 126.535, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.8769531, "start": 126.295, "word": "want" }, { "confidence": 0.9980469, "end": 126.615005, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8769531, "start": 126.535, "word": "to" }, { "confidence": 1, "end": 126.775, "punctuated_word": "learn", "speaker": 0, "speaker_confidence": 0.8769531, "start": 126.615005, "word": "learn" }, { "confidence": 0.9482422, "end": 127.095, "punctuated_word": "more,", "speaker": 0, "speaker_confidence": 0.8769531, "start": 126.775, "word": "more" }, { "confidence": 1, "end": 127.255005, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.8769531, "start": 127.095, "word": "make" }, { "confidence": 1, "end": 127.495, "punctuated_word": "sure", "speaker": 0, "speaker_confidence": 0.8769531, "start": 127.255005, "word": "sure" }, { "confidence": 0.99902344, "end": 127.735, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8769531, "start": 127.495, "word": "to" }, { "confidence": 0.99902344, "end": 127.895004, "punctuated_word": "stay", "speaker": 0, "speaker_confidence": 0.8769531, "start": 127.735, "word": "stay" }, { "confidence": 0.8088379, "end": 128.395, "punctuated_word": "tuned.", "speaker": 0, "speaker_confidence": 0.8769531, "start": 127.895004, "word": "tuned" }, { "confidence": 1, "end": 128.76001, "punctuated_word": "Because", "speaker": 0, "speaker_confidence": 0.8769531, "start": 128.52, "word": "because" }, { "confidence": 0.75878906, "end": 129.08, "punctuated_word": "today,", "speaker": 0, "speaker_confidence": 0.8769531, "start": 128.76001, "word": "today" }, { "confidence": 1, "end": 129.32, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.8769531, "start": 129.08, "word": "we're" }, { "confidence": 1, "end": 129.56, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.8769531, "start": 129.32, "word": "going" }, { "confidence": 0.99902344, "end": 129.88, "punctuated_word": "beyond", "speaker": 0, "speaker_confidence": 0.8769531, "start": 129.56, "word": "beyond" }, { "confidence": 0.9243164, "end": 130.28, "punctuated_word": "100", "speaker": 0, "speaker_confidence": 0.8769531, "start": 129.88, "word": "100" }, { "confidence": 0.9970703, "end": 130.76001, "punctuated_word": "seconds", "speaker": 0, "speaker_confidence": 0.8769531, "start": 130.28, "word": "seconds" }, { "confidence": 0.99902344, "end": 131, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8769531, "start": 130.76001, "word": "to" }, { "confidence": 1, "end": 131.16, "punctuated_word": "learn", "speaker": 0, "speaker_confidence": 0.8769531, "start": 131, "word": "learn" }, { "confidence": 1, "end": 131.32, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.8769531, "start": 131.16, "word": "all" }, { "confidence": 1, "end": 131.56, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.8769531, "start": 131.32, "word": "about" }, { "confidence": 0.9970703, "end": 131.64, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8769531, "start": 131.56, "word": "a" }, { "confidence": 1, "end": 132.04001, "punctuated_word": "library", "speaker": 0, "speaker_confidence": 0.8769531, "start": 131.64, "word": "library" }, { "confidence": 0.99902344, "end": 132.28, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 0.8769531, "start": 132.04001, "word": "called" }, { "confidence": 0.5578613, "end": 132.6, "punctuated_word": "Socket.", "speaker": 0, "speaker_confidence": 0.8769531, "start": 132.28, "word": "socket" }, { "confidence": 0.3786621, "end": 133.1, "punctuated_word": "Io", "speaker": 0, "speaker_confidence": 0.8769531, "start": 132.6, "word": "io" }, { "confidence": 0.88720703, "end": 133.32, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8769531, "start": 133.24, "word": "and" }, { "confidence": 1, "end": 133.56, "punctuated_word": "look", "speaker": 0, "speaker_confidence": 0.8769531, "start": 133.32, "word": "look" }, { "confidence": 1, "end": 133.64, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.76123047, "start": 133.56, "word": "at" }, { "confidence": 1, "end": 133.72, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.76123047, "start": 133.64, "word": "a" }, { "confidence": 1, "end": 133.96, "punctuated_word": "couple", "speaker": 0, "speaker_confidence": 0.76123047, "start": 133.72, "word": "couple" }, { "confidence": 1, "end": 134.2, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.76123047, "start": 133.96, "word": "of" }, { "confidence": 0.98828125, "end": 134.68001, "punctuated_word": "APIs", "speaker": 0, "speaker_confidence": 0.76123047, "start": 134.2, "word": "apis" }, { "confidence": 1, "end": 134.92, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.76123047, "start": 134.68001, "word": "that" }, { "confidence": 0.99902344, "end": 135.08, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 0.76123047, "start": 134.92, "word": "might" }, { "confidence": 1, "end": 135.48, "punctuated_word": "replace", "speaker": 0, "speaker_confidence": 0.76123047, "start": 135.08, "word": "replace" }, { "confidence": 0.9267578, "end": 135.98, "punctuated_word": "WebSockets", "speaker": 0, "speaker_confidence": 0.76123047, "start": 135.48, "word": "websockets" }, { "confidence": 1, "end": 136.2, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.76123047, "start": 136.12, "word": "in" }, { "confidence": 1, "end": 136.36, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.76123047, "start": 136.2, "word": "the" }, { "confidence": 0.9926758, "end": 136.835, "punctuated_word": "future.", "speaker": 0, "speaker_confidence": 0.76123047, "start": 136.36, "word": "future" }, { "confidence": 1, "end": 137.235, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.6508789, "start": 137.07501, "word": "but" }, { "confidence": 0.80908203, "end": 137.55501, "punctuated_word": "first,", "speaker": 0, "speaker_confidence": 0.6508789, "start": 137.235, "word": "first" }, { "confidence": 1, "end": 137.79501, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.6508789, "start": 137.55501, "word": "make" }, { "confidence": 1, "end": 138.035, "punctuated_word": "sure", "speaker": 0, "speaker_confidence": 0.6508789, "start": 137.79501, "word": "sure" }, { "confidence": 0.99902344, "end": 138.195, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6508789, "start": 138.035, "word": "to" }, { "confidence": 0.9838867, "end": 138.43501, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.6508789, "start": 138.195, "word": "like" }, { "confidence": 0.99902344, "end": 138.595, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6508789, "start": 138.43501, "word": "and" }, { "confidence": 0.98706055, "end": 139.07501, "punctuated_word": "subscribe.", "speaker": 0, "speaker_confidence": 0.6508789, "start": 138.595, "word": "subscribe" }, { "confidence": 0.99902344, "end": 139.315, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.6508789, "start": 139.07501, "word": "and" }, { "confidence": 0.9980469, "end": 139.395, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.6508789, "start": 139.315, "word": "if" }, { "confidence": 0.99902344, "end": 139.55501, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.65625, "start": 139.395, "word": "you're" }, { "confidence": 0.96777344, "end": 139.79501, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.65625, "start": 139.55501, "word": "into" }, { "confidence": 0.9970703, "end": 139.955, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 0.65625, "start": 139.79501, "word": "real" }, { "confidence": 0.9873047, "end": 140.115, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.65625, "start": 139.955, "word": "time" }, { "confidence": 0.9946289, "end": 140.43501, "punctuated_word": "apps,", "speaker": 0, "speaker_confidence": 0.65625, "start": 140.115, "word": "apps" }, { "confidence": 1, "end": 140.675, "punctuated_word": "check", "speaker": 0, "speaker_confidence": 0.65625, "start": 140.43501, "word": "check" }, { "confidence": 1, "end": 140.835, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.65625, "start": 140.675, "word": "out" }, { "confidence": 1, "end": 140.99501, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.65625, "start": 140.835, "word": "my" }, { "confidence": 0.98535156, "end": 141.395, "punctuated_word": "Firebase", "speaker": 0, "speaker_confidence": 0.65625, "start": 140.99501, "word": "firebase" }, { "confidence": 0.9838867, "end": 141.875, "punctuated_word": "content", "speaker": 0, "speaker_confidence": 0.65625, "start": 141.395, "word": "content" }, { "confidence": 1, "end": 142.035, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.65625, "start": 141.875, "word": "on" }, { "confidence": 0.8413086, "end": 142.535, "punctuated_word": "Fireship", "speaker": 0, "speaker_confidence": 0.65625, "start": 142.035, "word": "fireship" }, { "confidence": 0.9304199, "end": 143.095, "punctuated_word": "IO.", "speaker": 0, "speaker_confidence": 0.65625, "start": 142.595, "word": "io" }, { "confidence": 1, "end": 143.395, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.6386719, "start": 143.235, "word": "now" }, { "confidence": 0.90234375, "end": 143.55501, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.6386719, "start": 143.395, "word": "one" }, { "confidence": 1, "end": 143.63501, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.6386719, "start": 143.55501, "word": "of" }, { "confidence": 1, "end": 143.79501, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6386719, "start": 143.63501, "word": "the" }, { "confidence": 1, "end": 144.115, "punctuated_word": "issues", "speaker": 0, "speaker_confidence": 0.6386719, "start": 143.79501, "word": "issues" }, { "confidence": 1, "end": 144.35501, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.6386719, "start": 144.115, "word": "that" }, { "confidence": 1, "end": 144.515, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.6386719, "start": 144.35501, "word": "is" }, { "confidence": 1, "end": 144.755, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.6386719, "start": 144.515, "word": "not" }, { "confidence": 1, "end": 144.99501, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.6386719, "start": 144.755, "word": "so" }, { "confidence": 1, "end": 145.315, "punctuated_word": "obvious", "speaker": 0, "speaker_confidence": 0.6386719, "start": 144.99501, "word": "obvious" }, { "confidence": 1, "end": 145.475, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.6386719, "start": 145.315, "word": "with" }, { "confidence": 1, "end": 145.55501, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.6386719, "start": 145.475, "word": "our" }, { "confidence": 1, "end": 145.875, "punctuated_word": "current", "speaker": 0, "speaker_confidence": 0.6386719, "start": 145.55501, "word": "current" }, { "confidence": 1, "end": 146.375, "punctuated_word": "implementation", "speaker": 0, "speaker_confidence": 0.6386719, "start": 145.875, "word": "implementation" }, { "confidence": 1, "end": 146.90001, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.6386719, "start": 146.82, "word": "is" }, { "confidence": 1, "end": 147.06001, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.6689453, "start": 146.90001, "word": "that" }, { "confidence": 0.9980469, "end": 147.22, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6689453, "start": 147.06001, "word": "the" }, { "confidence": 1, "end": 147.70001, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 0.6689453, "start": 147.22, "word": "server" }, { "confidence": 0.99609375, "end": 148.02, "punctuated_word": "cannot", "speaker": 0, "speaker_confidence": 0.6689453, "start": 147.70001, "word": "cannot" }, { "confidence": 1, "end": 148.52, "punctuated_word": "broadcast", "speaker": 0, "speaker_confidence": 0.6689453, "start": 148.02, "word": "broadcast" }, { "confidence": 0.99902344, "end": 148.82, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6689453, "start": 148.74, "word": "a" }, { "confidence": 1, "end": 149.32, "punctuated_word": "message", "speaker": 0, "speaker_confidence": 0.6689453, "start": 148.82, "word": "message" }, { "confidence": 1, "end": 149.62001, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.6689453, "start": 149.38, "word": "out" }, { "confidence": 1, "end": 149.86, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6689453, "start": 149.62001, "word": "to" }, { "confidence": 0.9980469, "end": 150.26001, "punctuated_word": "multiple", "speaker": 0, "speaker_confidence": 0.6689453, "start": 149.86, "word": "multiple" }, { "confidence": 0.9770508, "end": 150.74, "punctuated_word": "clients", "speaker": 0, "speaker_confidence": 0.6689453, "start": 150.26001, "word": "clients" }, { "confidence": 0.7609863, "end": 151.24, "punctuated_word": "simultaneously.", "speaker": 0, "speaker_confidence": 0.6689453, "start": 150.74, "word": "simultaneously" }, { "confidence": 0.8066406, "end": 152.1, "punctuated_word": "Like,", "speaker": 0, "speaker_confidence": 0.6689453, "start": 151.94, "word": "like" }, { "confidence": 1, "end": 152.34001, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.6689453, "start": 152.1, "word": "for" }, { "confidence": 0.9975586, "end": 152.82, "punctuated_word": "example,", "speaker": 0, "speaker_confidence": 0.6689453, "start": 152.34001, "word": "example" }, { "confidence": 1, "end": 153.06001, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6689453, "start": 152.82, "word": "a" }, { "confidence": 1, "end": 153.3, "punctuated_word": "group", "speaker": 0, "speaker_confidence": 0.6689453, "start": 153.06001, "word": "group" }, { "confidence": 1, "end": 153.54001, "punctuated_word": "chat", "speaker": 0, "speaker_confidence": 0.6689453, "start": 153.3, "word": "chat" }, { "confidence": 0.9248047, "end": 153.78001, "punctuated_word": "room", "speaker": 0, "speaker_confidence": 0.6689453, "start": 153.54001, "word": "room" }, { "confidence": 0.7602539, "end": 154.02, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.6689453, "start": 153.78001, "word": "where" }, { "confidence": 1, "end": 154.18001, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.6689453, "start": 154.02, "word": "you" }, { "confidence": 1, "end": 154.34001, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.6689453, "start": 154.18001, "word": "have" }, { "confidence": 1, "end": 154.74, "punctuated_word": "multiple", "speaker": 0, "speaker_confidence": 0.6689453, "start": 154.34001, "word": "multiple" }, { "confidence": 1, "end": 155.22, "punctuated_word": "users", "speaker": 0, "speaker_confidence": 0.6689453, "start": 154.74, "word": "users" }, { "confidence": 0.99902344, "end": 155.62001, "punctuated_word": "passing", "speaker": 0, "speaker_confidence": 0.6689453, "start": 155.22, "word": "passing" }, { "confidence": 0.99316406, "end": 156.1, "punctuated_word": "messages", "speaker": 0, "speaker_confidence": 0.6689453, "start": 155.62001, "word": "messages" }, { "confidence": 1, "end": 156.26001, "punctuated_word": "back", "speaker": 0, "speaker_confidence": 0.6689453, "start": 156.1, "word": "back" }, { "confidence": 0.9980469, "end": 156.42001, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6689453, "start": 156.26001, "word": "and" }, { "confidence": 0.97802734, "end": 156.805, "punctuated_word": "forth.", "speaker": 0, "speaker_confidence": 0.6689453, "start": 156.42001, "word": "forth" }, { "confidence": 0.99902344, "end": 157.20499, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.67626953, "start": 157.045, "word": "it's" }, { "confidence": 1, "end": 157.605, "punctuated_word": "definitely", "speaker": 0, "speaker_confidence": 0.67626953, "start": 157.20499, "word": "definitely" }, { "confidence": 1, "end": 158.00499, "punctuated_word": "possible", "speaker": 0, "speaker_confidence": 0.67626953, "start": 157.605, "word": "possible" }, { "confidence": 1, "end": 158.245, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.67626953, "start": 158.00499, "word": "to" }, { "confidence": 0.99902344, "end": 158.48499, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.67626953, "start": 158.245, "word": "build" }, { "confidence": 1, "end": 158.805, "punctuated_word": "something", "speaker": 0, "speaker_confidence": 0.67626953, "start": 158.48499, "word": "something" }, { "confidence": 1, "end": 158.965, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.67626953, "start": 158.805, "word": "like" }, { "confidence": 1, "end": 159.125, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.67626953, "start": 158.965, "word": "that" }, { "confidence": 1, "end": 159.36499, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.67626953, "start": 159.125, "word": "from" }, { "confidence": 1, "end": 159.605, "punctuated_word": "scratch", "speaker": 0, "speaker_confidence": 0.67626953, "start": 159.36499, "word": "scratch" }, { "confidence": 0.99902344, "end": 159.84499, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.67626953, "start": 159.605, "word": "with" }, { "confidence": 0.7780762, "end": 160.34499, "punctuated_word": "websockets,", "speaker": 0, "speaker_confidence": 0.67626953, "start": 159.84499, "word": "websockets" }, { "confidence": 0.9980469, "end": 161.045, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.56152344, "start": 160.885, "word": "but" }, { "confidence": 0.99902344, "end": 161.28499, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.56152344, "start": 161.045, "word": "there" }, { "confidence": 0.99902344, "end": 161.36499, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.56152344, "start": 161.28499, "word": "are" }, { "confidence": 0.77490234, "end": 161.86499, "punctuated_word": "libraries,", "speaker": 0, "speaker_confidence": 0.56152344, "start": 161.36499, "word": "libraries" }, { "confidence": 1, "end": 162.325, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.56152344, "start": 162.00499, "word": "like" }, { "confidence": 0.92822266, "end": 162.72499, "punctuated_word": "socket", "speaker": 0, "speaker_confidence": 0.56152344, "start": 162.325, "word": "socket" }, { "confidence": 0.42382812, "end": 162.885, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.56152344, "start": 162.72499, "word": "i" }, { "confidence": 0.78222656, "end": 162.965, "punctuated_word": "o", "speaker": 0, "speaker_confidence": 0.56152344, "start": 162.885, "word": "o" }, { "confidence": 0.96435547, "end": 163.045, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7060547, "start": 162.965, "word": "in" }, { "confidence": 1, "end": 163.20499, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.7060547, "start": 163.045, "word": "this" }, { "confidence": 0.9741211, "end": 163.70499, "punctuated_word": "case,", "speaker": 0, "speaker_confidence": 0.7060547, "start": 163.20499, "word": "case" }, { "confidence": 0.99902344, "end": 164.00499, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7060547, "start": 163.84499, "word": "that" }, { "confidence": 0.9980469, "end": 164.165, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7060547, "start": 164.00499, "word": "can" }, { "confidence": 1, "end": 164.405, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.7060547, "start": 164.165, "word": "make" }, { "confidence": 1, "end": 164.72499, "punctuated_word": "features", "speaker": 0, "speaker_confidence": 0.7060547, "start": 164.405, "word": "features" }, { "confidence": 1, "end": 164.885, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.7060547, "start": 164.72499, "word": "like" }, { "confidence": 1, "end": 165.045, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7060547, "start": 164.885, "word": "that" }, { "confidence": 1, "end": 165.36499, "punctuated_word": "much", "speaker": 0, "speaker_confidence": 0.7060547, "start": 165.045, "word": "much" }, { "confidence": 1, "end": 165.765, "punctuated_word": "easier", "speaker": 0, "speaker_confidence": 0.7060547, "start": 165.36499, "word": "easier" }, { "confidence": 1, "end": 165.84499, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7060547, "start": 165.765, "word": "to" }, { "confidence": 1, "end": 166.34499, "punctuated_word": "implement.", "speaker": 0, "speaker_confidence": 0.7060547, "start": 165.84499, "word": "implement" }, { "confidence": 0.99902344, "end": 166.61, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.7060547, "start": 166.37, "word": "you" }, { "confidence": 1, "end": 166.69, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7060547, "start": 166.61, "word": "can" }, { "confidence": 0.99902344, "end": 166.76999, "punctuated_word": "think", "speaker": 0, "speaker_confidence": 0.82714844, "start": 166.69, "word": "think" }, { "confidence": 1, "end": 166.84999, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.82714844, "start": 166.76999, "word": "of" }, { "confidence": 0.9980469, "end": 167.09, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.82714844, "start": 166.84999, "word": "a" }, { "confidence": 0.5419922, "end": 167.33, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.82714844, "start": 167.09, "word": "web" }, { "confidence": 0.99316406, "end": 167.73, "punctuated_word": "socket", "speaker": 0, "speaker_confidence": 0.82714844, "start": 167.33, "word": "socket" }, { "confidence": 0.9951172, "end": 167.97, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.82714844, "start": 167.73, "word": "as" }, { "confidence": 1, "end": 168.04999, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.82714844, "start": 167.97, "word": "a" }, { "confidence": 0.99902344, "end": 168.29, "punctuated_word": "low", "speaker": 0, "speaker_confidence": 0.82714844, "start": 168.04999, "word": "low" }, { "confidence": 0.99902344, "end": 168.53, "punctuated_word": "level", "speaker": 0, "speaker_confidence": 0.82714844, "start": 168.29, "word": "level" }, { "confidence": 1, "end": 168.93, "punctuated_word": "building", "speaker": 0, "speaker_confidence": 0.82714844, "start": 168.53, "word": "building" }, { "confidence": 0.7807617, "end": 169.25, "punctuated_word": "block,", "speaker": 0, "speaker_confidence": 0.82714844, "start": 168.93, "word": "block" }, { "confidence": 0.99609375, "end": 169.48999, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.82714844, "start": 169.25, "word": "where" }, { "confidence": 0.8676758, "end": 169.81, "punctuated_word": "socket", "speaker": 0, "speaker_confidence": 0.82714844, "start": 169.48999, "word": "socket" }, { "confidence": 0.5625, "end": 170.12999, "punctuated_word": "IO", "speaker": 0, "speaker_confidence": 0.82714844, "start": 169.81, "word": "io" }, { "confidence": 0.9863281, "end": 170.29, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.82714844, "start": 170.12999, "word": "is" }, { "confidence": 0.99902344, "end": 170.37, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.82714844, "start": 170.29, "word": "a" }, { "confidence": 1, "end": 170.53, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.82714844, "start": 170.37, "word": "more" }, { "confidence": 1, "end": 171.01, "punctuated_word": "practical", "speaker": 0, "speaker_confidence": 0.82714844, "start": 170.53, "word": "practical" }, { "confidence": 1, "end": 171.51, "punctuated_word": "library", "speaker": 0, "speaker_confidence": 0.82714844, "start": 171.01, "word": "library" }, { "confidence": 0.9291992, "end": 171.89, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.82714844, "start": 171.65, "word": "that" }, { "confidence": 1, "end": 172.20999, "punctuated_word": "solves", "speaker": 0, "speaker_confidence": 0.82714844, "start": 171.89, "word": "solves" }, { "confidence": 1, "end": 172.53, "punctuated_word": "common", "speaker": 0, "speaker_confidence": 0.82714844, "start": 172.20999, "word": "common" }, { "confidence": 0.9707031, "end": 172.69, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.82714844, "start": 172.53, "word": "use" }, { "confidence": 0.99902344, "end": 173.17, "punctuated_word": "cases", "speaker": 0, "speaker_confidence": 0.82714844, "start": 172.69, "word": "cases" }, { "confidence": 0.9111328, "end": 173.40999, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.82714844, "start": 173.17, "word": "and" }, { "confidence": 0.9970703, "end": 173.81, "punctuated_word": "provides", "speaker": 0, "speaker_confidence": 0.82714844, "start": 173.40999, "word": "provides" }, { "confidence": 0.8605957, "end": 174.31, "punctuated_word": "failovers", "speaker": 0, "speaker_confidence": 0.82714844, "start": 173.81, "word": "failovers" }, { "confidence": 1, "end": 174.61, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.82714844, "start": 174.37, "word": "to" }, { "confidence": 1, "end": 174.93, "punctuated_word": "different", "speaker": 0, "speaker_confidence": 0.82714844, "start": 174.61, "word": "different" }, { "confidence": 1, "end": 175.40999, "punctuated_word": "protocols", "speaker": 0, "speaker_confidence": 0.82714844, "start": 174.93, "word": "protocols" }, { "confidence": 0.9970703, "end": 175.65, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.82714844, "start": 175.40999, "word": "when" }, { "confidence": 1, "end": 176.025, "punctuated_word": "needed.", "speaker": 0, "speaker_confidence": 0.82714844, "start": 175.65, "word": "needed" }, { "confidence": 1, "end": 176.185, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.82714844, "start": 176.025, "word": "if" }, { "confidence": 1, "end": 176.42499, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.82714844, "start": 176.185, "word": "you're" }, { "confidence": 1, "end": 176.665, "punctuated_word": "building", "speaker": 0, "speaker_confidence": 0.82714844, "start": 176.42499, "word": "building" }, { "confidence": 1, "end": 176.985, "punctuated_word": "something", "speaker": 0, "speaker_confidence": 0.82714844, "start": 176.665, "word": "something" }, { "confidence": 0.99609375, "end": 177.22499, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 0.82714844, "start": 176.985, "word": "real" }, { "confidence": 0.99658203, "end": 177.545, "punctuated_word": "time,", "speaker": 0, "speaker_confidence": 0.82714844, "start": 177.22499, "word": "time" }, { "confidence": 1, "end": 177.70499, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.82714844, "start": 177.545, "word": "there" }, { "confidence": 0.99902344, "end": 177.86499, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.82714844, "start": 177.70499, "word": "are" }, { "confidence": 1, "end": 178.105, "punctuated_word": "many", "speaker": 0, "speaker_confidence": 0.82714844, "start": 177.86499, "word": "many" }, { "confidence": 1, "end": 178.345, "punctuated_word": "different", "speaker": 0, "speaker_confidence": 0.82714844, "start": 178.105, "word": "different" }, { "confidence": 1, "end": 178.665, "punctuated_word": "options", "speaker": 0, "speaker_confidence": 0.82714844, "start": 178.345, "word": "options" }, { "confidence": 1, "end": 178.825, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.82714844, "start": 178.665, "word": "out" }, { "confidence": 0.9995117, "end": 179.22499, "punctuated_word": "there.", "speaker": 0, "speaker_confidence": 0.82714844, "start": 178.825, "word": "there" }, { "confidence": 1, "end": 179.385, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.82714844, "start": 179.22499, "word": "you" }, { "confidence": 1, "end": 179.545, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 0.82714844, "start": 179.385, "word": "might" }, { "confidence": 0.9980469, "end": 179.70499, "punctuated_word": "look", "speaker": 0, "speaker_confidence": 0.82714844, "start": 179.545, "word": "look" }, { "confidence": 0.9892578, "end": 179.94499, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.82714844, "start": 179.70499, "word": "into" }, { "confidence": 0.98811847, "end": 180.44499, "punctuated_word": "Firebase,", "speaker": 0, "speaker_confidence": 0.82714844, "start": 179.94499, "word": "firebase" }, { "confidence": 0.94921875, "end": 181.06499, "punctuated_word": "Apollo", "speaker": 0, "speaker_confidence": 0.82714844, "start": 180.58499, "word": "apollo" }, { "confidence": 0.9536133, "end": 181.56499, "punctuated_word": "GraphQL,", "speaker": 0, "speaker_confidence": 0.82714844, "start": 181.06499, "word": "graphql" }, { "confidence": 0.99902344, "end": 182.185, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.82714844, "start": 182.025, "word": "or" }, { "confidence": 0.9980469, "end": 182.42499, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.82714844, "start": 182.185, "word": "an" }, { "confidence": 1, "end": 182.825, "punctuated_word": "API", "speaker": 0, "speaker_confidence": 0.82714844, "start": 182.42499, "word": "api" }, { "confidence": 0.9350586, "end": 183.06499, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.82714844, "start": 182.825, "word": "like" }, { "confidence": 0.9550781, "end": 183.55, "punctuated_word": "Pusher.", "speaker": 0, "speaker_confidence": 0.82714844, "start": 183.06499, "word": "pusher" }, { "confidence": 1, "end": 183.87001, "punctuated_word": "Once", "speaker": 0, "speaker_confidence": 0.82714844, "start": 183.63, "word": "once" }, { "confidence": 1, "end": 183.95, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.82714844, "start": 183.87001, "word": "you" }, { "confidence": 1, "end": 184.03, "punctuated_word": "bring", "speaker": 0, "speaker_confidence": 0.82714844, "start": 183.95, "word": "bring" }, { "confidence": 0.99902344, "end": 184.27, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7163086, "start": 184.03, "word": "a" }, { "confidence": 1, "end": 184.75, "punctuated_word": "database", "speaker": 0, "speaker_confidence": 0.7163086, "start": 184.27, "word": "database" }, { "confidence": 0.99609375, "end": 184.99, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.7163086, "start": 184.75, "word": "into" }, { "confidence": 1, "end": 185.15001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7163086, "start": 184.99, "word": "the" }, { "confidence": 0.9995117, "end": 185.63, "punctuated_word": "equation,", "speaker": 0, "speaker_confidence": 0.7163086, "start": 185.15001, "word": "equation" }, { "confidence": 0.99902344, "end": 185.87001, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 0.7163086, "start": 185.63, "word": "real" }, { "confidence": 0.9980469, "end": 186.11, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.7163086, "start": 185.87001, "word": "time" }, { "confidence": 1, "end": 186.59, "punctuated_word": "features", "speaker": 0, "speaker_confidence": 0.7163086, "start": 186.11, "word": "features" }, { "confidence": 1, "end": 186.75, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7163086, "start": 186.59, "word": "can" }, { "confidence": 0.99902344, "end": 187.07, "punctuated_word": "become", "speaker": 0, "speaker_confidence": 0.7163086, "start": 186.75, "word": "become" }, { "confidence": 1, "end": 187.39, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 0.7163086, "start": 187.07, "word": "very" }, { "confidence": 0.9206543, "end": 187.89, "punctuated_word": "complex,", "speaker": 0, "speaker_confidence": 0.7163086, "start": 187.39, "word": "complex" }, { "confidence": 1, "end": 188.19, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7163086, "start": 187.95, "word": "and" }, { "confidence": 1, "end": 188.51001, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.7163086, "start": 188.19, "word": "using" }, { "confidence": 1, "end": 188.67, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7163086, "start": 188.51001, "word": "a" }, { "confidence": 1, "end": 188.91, "punctuated_word": "paid", "speaker": 0, "speaker_confidence": 0.7163086, "start": 188.67, "word": "paid" }, { "confidence": 1, "end": 189.23, "punctuated_word": "service", "speaker": 0, "speaker_confidence": 0.7163086, "start": 188.91, "word": "service" }, { "confidence": 1, "end": 189.39, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7163086, "start": 189.23, "word": "can" }, { "confidence": 1, "end": 189.55, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.7163086, "start": 189.39, "word": "be" }, { "confidence": 1, "end": 189.79001, "punctuated_word": "well", "speaker": 0, "speaker_confidence": 0.7163086, "start": 189.55, "word": "well" }, { "confidence": 1, "end": 189.95, "punctuated_word": "worth", "speaker": 0, "speaker_confidence": 0.7163086, "start": 189.79001, "word": "worth" }, { "confidence": 1, "end": 190.03, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5859375, "start": 189.95, "word": "the" }, { "confidence": 1, "end": 190.27, "punctuated_word": "money", "speaker": 0, "speaker_confidence": 0.5859375, "start": 190.03, "word": "money" }, { "confidence": 0.74902344, "end": 190.43001, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.5859375, "start": 190.27, "word": "in" }, { "confidence": 1, "end": 190.59, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.5859375, "start": 190.43001, "word": "my" }, { "confidence": 1, "end": 191.07, "punctuated_word": "opinion.", "speaker": 0, "speaker_confidence": 0.5859375, "start": 190.59, "word": "opinion" }, { "confidence": 1, "end": 191.23, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.5859375, "start": 191.07, "word": "in" }, { "confidence": 1, "end": 191.47, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 0.5859375, "start": 191.23, "word": "any" }, { "confidence": 0.9995117, "end": 191.825, "punctuated_word": "case,", "speaker": 0, "speaker_confidence": 0.5859375, "start": 191.47, "word": "case" }, { "confidence": 1, "end": 192.065, "punctuated_word": "Let's", "speaker": 0, "speaker_confidence": 0.5859375, "start": 191.905, "word": "let's" }, { "confidence": 1, "end": 192.22499, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.5859375, "start": 192.065, "word": "go" }, { "confidence": 1, "end": 192.305, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 0.5859375, "start": 192.22499, "word": "ahead" }, { "confidence": 0.99902344, "end": 192.465, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.56933594, "start": 192.305, "word": "and" }, { "confidence": 1, "end": 192.625, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.56933594, "start": 192.465, "word": "get" }, { "confidence": 1, "end": 192.94499, "punctuated_word": "started", "speaker": 0, "speaker_confidence": 0.56933594, "start": 192.625, "word": "started" }, { "confidence": 1, "end": 193.105, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.56933594, "start": 192.94499, "word": "with" }, { "confidence": 1, "end": 193.345, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.56933594, "start": 193.105, "word": "our" }, { "confidence": 0.7080078, "end": 193.745, "punctuated_word": "socket", "speaker": 0, "speaker_confidence": 0.56933594, "start": 193.345, "word": "socket" }, { "confidence": 0.49902344, "end": 193.985, "punctuated_word": "IO", "speaker": 0, "speaker_confidence": 0.56933594, "start": 193.745, "word": "io" }, { "confidence": 0.9980469, "end": 194.485, "punctuated_word": "project.", "speaker": 0, "speaker_confidence": 0.56933594, "start": 193.985, "word": "project" }, { "confidence": 0.99902344, "end": 195.345, "punctuated_word": "At", "speaker": 0, "speaker_confidence": 0.6113281, "start": 195.185, "word": "at" }, { "confidence": 1, "end": 195.50499, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.6113281, "start": 195.345, "word": "this" }, { "confidence": 0.9995117, "end": 195.825, "punctuated_word": "point,", "speaker": 0, "speaker_confidence": 0.6113281, "start": 195.50499, "word": "point" }, { "confidence": 1, "end": 195.905, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.6113281, "start": 195.825, "word": "you" }, { "confidence": 1, "end": 196.065, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.6113281, "start": 195.905, "word": "can" }, { "confidence": 1, "end": 196.305, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.6113281, "start": 196.065, "word": "open" }, { "confidence": 0.9980469, "end": 196.465, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.6113281, "start": 196.305, "word": "up" }, { "confidence": 0.8222656, "end": 196.785, "punctuated_word": "Versus", "speaker": 0, "speaker_confidence": 0.6113281, "start": 196.465, "word": "versus" }, { "confidence": 0.5107422, "end": 197.105, "punctuated_word": "Code", "speaker": 0, "speaker_confidence": 0.6113281, "start": 196.785, "word": "code" }, { "confidence": 0.99609375, "end": 197.265, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6113281, "start": 197.105, "word": "to" }, { "confidence": 1, "end": 197.50499, "punctuated_word": "follow", "speaker": 0, "speaker_confidence": 0.6113281, "start": 197.265, "word": "follow" }, { "confidence": 1, "end": 197.985, "punctuated_word": "along", "speaker": 0, "speaker_confidence": 0.6113281, "start": 197.50499, "word": "along" }, { "confidence": 0.96533203, "end": 198.22499, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6113281, "start": 197.985, "word": "and" }, { "confidence": 1, "end": 198.625, "punctuated_word": "access", "speaker": 0, "speaker_confidence": 0.6113281, "start": 198.22499, "word": "access" }, { "confidence": 0.9980469, "end": 198.785, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6113281, "start": 198.625, "word": "the" }, { "confidence": 1, "end": 199.105, "punctuated_word": "source", "speaker": 0, "speaker_confidence": 0.6113281, "start": 198.785, "word": "source" }, { "confidence": 1, "end": 199.345, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.6113281, "start": 199.105, "word": "code" }, { "confidence": 1, "end": 199.50499, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.6113281, "start": 199.345, "word": "on" }, { "confidence": 0.9885254, "end": 200.00499, "punctuated_word": "GitHub.", "speaker": 0, "speaker_confidence": 0.6113281, "start": 199.50499, "word": "github" }, { "confidence": 1, "end": 200.23001, "punctuated_word": "What", "speaker": 0, "speaker_confidence": 0.6113281, "start": 200.07, "word": "what" }, { "confidence": 1, "end": 200.39001, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.6113281, "start": 200.23001, "word": "we're" }, { "confidence": 1, "end": 200.47, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.6113281, "start": 200.39001, "word": "going" }, { "confidence": 1, "end": 200.55, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6113281, "start": 200.47, "word": "to" }, { "confidence": 1, "end": 200.95001, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.85595703, "start": 200.55, "word": "build" }, { "confidence": 1, "end": 201.19, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0.85595703, "start": 200.95001, "word": "here" }, { "confidence": 0.99902344, "end": 201.35, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.85595703, "start": 201.19, "word": "is" }, { "confidence": 1, "end": 201.51001, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.85595703, "start": 201.35, "word": "a" }, { "confidence": 0.9980469, "end": 201.75, "punctuated_word": "bare", "speaker": 0, "speaker_confidence": 0.85595703, "start": 201.51001, "word": "bare" }, { "confidence": 0.99902344, "end": 202.23001, "punctuated_word": "minimum", "speaker": 0, "speaker_confidence": 0.85595703, "start": 201.75, "word": "minimum" }, { "confidence": 1, "end": 202.73001, "punctuated_word": "implementation", "speaker": 0, "speaker_confidence": 0.85595703, "start": 202.23001, "word": "implementation" }, { "confidence": 1, "end": 203.19, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.85595703, "start": 203.03001, "word": "of" }, { "confidence": 1, "end": 203.35, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.85595703, "start": 203.19, "word": "a" }, { "confidence": 0.99902344, "end": 203.67001, "punctuated_word": "group", "speaker": 0, "speaker_confidence": 0.85595703, "start": 203.35, "word": "group" }, { "confidence": 1, "end": 203.83, "punctuated_word": "chat", "speaker": 0, "speaker_confidence": 0.85595703, "start": 203.67001, "word": "chat" }, { "confidence": 0.9108887, "end": 204.33, "punctuated_word": "room.", "speaker": 0, "speaker_confidence": 0.85595703, "start": 203.83, "word": "room" }, { "confidence": 1, "end": 204.71, "punctuated_word": "When", "speaker": 0, "speaker_confidence": 0.85595703, "start": 204.55, "word": "when" }, { "confidence": 1, "end": 204.87001, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.85595703, "start": 204.71, "word": "a" }, { "confidence": 1, "end": 205.11, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 0.85595703, "start": 204.87001, "word": "user" }, { "confidence": 1, "end": 205.43001, "punctuated_word": "opens", "speaker": 0, "speaker_confidence": 0.85595703, "start": 205.11, "word": "opens" }, { "confidence": 1, "end": 205.51001, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.5751953, "start": 205.43001, "word": "up" }, { "confidence": 1, "end": 205.67001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5751953, "start": 205.51001, "word": "the" }, { "confidence": 0.9995117, "end": 205.99, "punctuated_word": "app,", "speaker": 0, "speaker_confidence": 0.5751953, "start": 205.67001, "word": "app" }, { "confidence": 1, "end": 206.15001, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.5751953, "start": 205.99, "word": "they" }, { "confidence": 1, "end": 206.31001, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.5751953, "start": 206.15001, "word": "can" }, { "confidence": 1, "end": 206.55, "punctuated_word": "post", "speaker": 0, "speaker_confidence": 0.5751953, "start": 206.31001, "word": "post" }, { "confidence": 0.9980469, "end": 206.63, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.84765625, "start": 206.55, "word": "a" }, { "confidence": 0.88012695, "end": 207.13, "punctuated_word": "message,", "speaker": 0, "speaker_confidence": 0.84765625, "start": 206.63, "word": "message" }, { "confidence": 1, "end": 207.575, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.84765625, "start": 207.335, "word": "and" }, { "confidence": 1, "end": 207.975, "punctuated_word": "anybody", "speaker": 0, "speaker_confidence": 0.84765625, "start": 207.575, "word": "anybody" }, { "confidence": 1, "end": 208.215, "punctuated_word": "else", "speaker": 0, "speaker_confidence": 0.84765625, "start": 207.975, "word": "else" }, { "confidence": 0.99902344, "end": 208.375, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.84765625, "start": 208.215, "word": "on" }, { "confidence": 0.99902344, "end": 208.535, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.84765625, "start": 208.375, "word": "that" }, { "confidence": 1, "end": 208.77501, "punctuated_word": "same", "speaker": 0, "speaker_confidence": 0.84765625, "start": 208.535, "word": "same" }, { "confidence": 0.98291016, "end": 209.175, "punctuated_word": "URL", "speaker": 0, "speaker_confidence": 0.84765625, "start": 208.77501, "word": "url" }, { "confidence": 1, "end": 209.49501, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.84765625, "start": 209.175, "word": "can" }, { "confidence": 1, "end": 209.735, "punctuated_word": "view", "speaker": 0, "speaker_confidence": 0.84765625, "start": 209.49501, "word": "view" }, { "confidence": 1, "end": 209.815, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.69140625, "start": 209.735, "word": "the" }, { "confidence": 0.9812012, "end": 210.315, "punctuated_word": "message.", "speaker": 0, "speaker_confidence": 0.69140625, "start": 209.815, "word": "message" }, { "confidence": 0.88183594, "end": 210.695, "punctuated_word": "And,", "speaker": 0, "speaker_confidence": 0.69140625, "start": 210.455, "word": "and" }, { "confidence": 1, "end": 211.015, "punctuated_word": "again,", "speaker": 0, "speaker_confidence": 0.69140625, "start": 210.695, "word": "again" }, { "confidence": 0.98828125, "end": 211.175, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.69140625, "start": 211.015, "word": "one" }, { "confidence": 1, "end": 211.255, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.69140625, "start": 211.175, "word": "of" }, { "confidence": 1, "end": 211.335, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7939453, "start": 211.255, "word": "the" }, { "confidence": 1, "end": 211.655, "punctuated_word": "big", "speaker": 0, "speaker_confidence": 0.7939453, "start": 211.335, "word": "big" }, { "confidence": 1, "end": 212.05501, "punctuated_word": "differences", "speaker": 0, "speaker_confidence": 0.7939453, "start": 211.655, "word": "differences" }, { "confidence": 1, "end": 212.295, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.7939453, "start": 212.05501, "word": "from" }, { "confidence": 1, "end": 212.455, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7939453, "start": 212.295, "word": "the" }, { "confidence": 1, "end": 212.77501, "punctuated_word": "previous", "speaker": 0, "speaker_confidence": 0.7939453, "start": 212.455, "word": "previous" }, { "confidence": 1, "end": 213.27501, "punctuated_word": "implementation", "speaker": 0, "speaker_confidence": 0.7939453, "start": 212.77501, "word": "implementation" }, { "confidence": 0.9980469, "end": 213.735, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7939453, "start": 213.575, "word": "is" }, { "confidence": 1, "end": 213.895, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7939453, "start": 213.735, "word": "that" }, { "confidence": 1, "end": 214.05501, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.65527344, "start": 213.895, "word": "the" }, { "confidence": 1, "end": 214.375, "punctuated_word": "message", "speaker": 0, "speaker_confidence": 0.65527344, "start": 214.05501, "word": "message" }, { "confidence": 1, "end": 214.615, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.65527344, "start": 214.375, "word": "will" }, { "confidence": 1, "end": 214.77501, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.65527344, "start": 214.615, "word": "be" }, { "confidence": 1, "end": 215.27501, "punctuated_word": "broadcast", "speaker": 0, "speaker_confidence": 0.65527344, "start": 214.77501, "word": "broadcast" }, { "confidence": 0.9970703, "end": 215.655, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.65527344, "start": 215.41501, "word": "to" }, { "confidence": 1, "end": 215.815, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.65527344, "start": 215.655, "word": "all" }, { "confidence": 0.80810547, "end": 215.895, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.65527344, "start": 215.815, "word": "of" }, { "confidence": 1, "end": 216.05501, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5942383, "start": 215.895, "word": "the" }, { "confidence": 1, "end": 216.535, "punctuated_word": "connected", "speaker": 0, "speaker_confidence": 0.5942383, "start": 216.05501, "word": "connected" }, { "confidence": 0.9951172, "end": 217.035, "punctuated_word": "clients.", "speaker": 0, "speaker_confidence": 0.5942383, "start": 216.535, "word": "clients" }, { "confidence": 1, "end": 217.5, "punctuated_word": "As", "speaker": 0, "speaker_confidence": 0.5942383, "start": 217.34001, "word": "as" }, { "confidence": 1, "end": 217.54001, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.5942383, "start": 217.5, "word": "you" }, { "confidence": 1, "end": 217.58, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.58203125, "start": 217.54001, "word": "can" }, { "confidence": 1, "end": 217.82, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.58203125, "start": 217.58, "word": "see" }, { "confidence": 0.99902344, "end": 217.98001, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.58203125, "start": 217.82, "word": "in" }, { "confidence": 1, "end": 218.22, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.58203125, "start": 217.98001, "word": "our" }, { "confidence": 1, "end": 218.46, "punctuated_word": "code,", "speaker": 0, "speaker_confidence": 0.58203125, "start": 218.22, "word": "code" }, { "confidence": 1, "end": 218.62001, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.58203125, "start": 218.46, "word": "we" }, { "confidence": 1, "end": 218.78, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.58203125, "start": 218.62001, "word": "have" }, { "confidence": 1, "end": 218.86, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.69677734, "start": 218.78, "word": "a" }, { "confidence": 1, "end": 219.26001, "punctuated_word": "directory", "speaker": 0, "speaker_confidence": 0.69677734, "start": 218.86, "word": "directory" }, { "confidence": 1, "end": 219.58, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.69677734, "start": 219.26001, "word": "for" }, { "confidence": 0.8618164, "end": 220.08, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 0.69677734, "start": 219.58, "word": "server" }, { "confidence": 0.99316406, "end": 220.38, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.69677734, "start": 220.14, "word": "and" }, { "confidence": 0.9951172, "end": 220.88, "punctuated_word": "app.", "speaker": 0, "speaker_confidence": 0.69677734, "start": 220.38, "word": "app" }, { "confidence": 0.9819336, "end": 221.34001, "punctuated_word": "Server", "speaker": 0, "speaker_confidence": 0.69677734, "start": 221.1, "word": "server" }, { "confidence": 0.9863281, "end": 221.5, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.69677734, "start": 221.34001, "word": "is" }, { "confidence": 0.99902344, "end": 221.58, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.87402344, "start": 221.5, "word": "the" }, { "confidence": 0.9316406, "end": 221.74, "punctuated_word": "back", "speaker": 0, "speaker_confidence": 0.87402344, "start": 221.58, "word": "back" }, { "confidence": 0.85961914, "end": 222.22, "punctuated_word": "end,", "speaker": 0, "speaker_confidence": 0.87402344, "start": 221.74, "word": "end" }, { "confidence": 0.9980469, "end": 222.46, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.87402344, "start": 222.22, "word": "app" }, { "confidence": 0.9980469, "end": 222.54001, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.87402344, "start": 222.46, "word": "is" }, { "confidence": 1, "end": 222.70001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.87402344, "start": 222.54001, "word": "the" }, { "confidence": 1, "end": 222.86, "punctuated_word": "front", "speaker": 0, "speaker_confidence": 0.87402344, "start": 222.70001, "word": "front" }, { "confidence": 0.99853516, "end": 223.36, "punctuated_word": "end.", "speaker": 0, "speaker_confidence": 0.87402344, "start": 222.86, "word": "end" }, { "confidence": 0.9970703, "end": 223.58, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.87402344, "start": 223.42001, "word": "in" }, { "confidence": 1, "end": 223.74, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.87402344, "start": 223.58, "word": "the" }, { "confidence": 1, "end": 224.06001, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 0.87402344, "start": 223.74, "word": "server" }, { "confidence": 1, "end": 224.54001, "punctuated_word": "directory,", "speaker": 0, "speaker_confidence": 0.87402344, "start": 224.06001, "word": "directory" }, { "confidence": 1, "end": 224.78, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.87402344, "start": 224.54001, "word": "we'll" }, { "confidence": 0.9970703, "end": 225.28, "punctuated_word": "initialize", "speaker": 0, "speaker_confidence": 0.87402344, "start": 224.78, "word": "initialize" }, { "confidence": 0.99609375, "end": 225.5, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.87402344, "start": 225.34001, "word": "an" }, { "confidence": 0.7421875, "end": 225.90001, "punctuated_word": "npm", "speaker": 0, "speaker_confidence": 0.87402344, "start": 225.5, "word": "npm" }, { "confidence": 0.99902344, "end": 226.395, "punctuated_word": "project", "speaker": 0, "speaker_confidence": 0.87402344, "start": 225.90001, "word": "project" }, { "confidence": 1, "end": 226.63501, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.87402344, "start": 226.395, "word": "by" }, { "confidence": 1, "end": 226.875, "punctuated_word": "running", "speaker": 0, "speaker_confidence": 0.87402344, "start": 226.63501, "word": "running" }, { "confidence": 0.79833984, "end": 227.375, "punctuated_word": "npm", "speaker": 0, "speaker_confidence": 0.87402344, "start": 226.875, "word": "npm" }, { "confidence": 0.82470703, "end": 227.835, "punctuated_word": "init", "speaker": 0, "speaker_confidence": 0.87402344, "start": 227.435, "word": "init" }, { "confidence": 0.7199707, "end": 228.335, "punctuated_word": "y.", "speaker": 0, "speaker_confidence": 0.87402344, "start": 227.835, "word": "y" }, { "confidence": 0.9980469, "end": 228.63501, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.8671875, "start": 228.475, "word": "then" }, { "confidence": 0.98291016, "end": 228.795, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.8671875, "start": 228.63501, "word": "we" }, { "confidence": 0.9970703, "end": 229.035, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.8671875, "start": 228.795, "word": "only" }, { "confidence": 0.99902344, "end": 229.435, "punctuated_word": "require", "speaker": 0, "speaker_confidence": 0.8671875, "start": 229.035, "word": "require" }, { "confidence": 0.6152344, "end": 229.595, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.8671875, "start": 229.435, "word": "one" }, { "confidence": 0.9785156, "end": 230.095, "punctuated_word": "dependency,", "speaker": 0, "speaker_confidence": 0.8671875, "start": 229.595, "word": "dependency" }, { "confidence": 1, "end": 230.395, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.8671875, "start": 230.235, "word": "which" }, { "confidence": 0.99902344, "end": 230.55501, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8671875, "start": 230.395, "word": "is" }, { "confidence": 0.91015625, "end": 230.955, "punctuated_word": "socket", "speaker": 0, "speaker_confidence": 0.8671875, "start": 230.55501, "word": "socket" }, { "confidence": 0.7071533, "end": 231.35501, "punctuated_word": "IO,", "speaker": 0, "speaker_confidence": 0.8671875, "start": 230.955, "word": "io" }, { "confidence": 1, "end": 231.515, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8671875, "start": 231.35501, "word": "and" }, { "confidence": 1, "end": 231.595, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.8671875, "start": 231.515, "word": "we" }, { "confidence": 1, "end": 231.835, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.8671875, "start": 231.595, "word": "can" }, { "confidence": 1, "end": 232.155, "punctuated_word": "install", "speaker": 0, "speaker_confidence": 0.8671875, "start": 231.835, "word": "install" }, { "confidence": 1, "end": 232.315, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8671875, "start": 232.155, "word": "it" }, { "confidence": 1, "end": 232.55501, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.8671875, "start": 232.315, "word": "with" }, { "confidence": 0.77490234, "end": 233.05501, "punctuated_word": "npm.", "speaker": 0, "speaker_confidence": 0.8671875, "start": 232.55501, "word": "npm" }, { "confidence": 1, "end": 233.515, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.52246094, "start": 233.27501, "word": "now" }, { "confidence": 0.97802734, "end": 233.595, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.52246094, "start": 233.515, "word": "in" }, { "confidence": 1, "end": 233.755, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.52246094, "start": 233.595, "word": "the" }, { "confidence": 0.9902344, "end": 234.155, "punctuated_word": "index", "speaker": 0, "speaker_confidence": 0.52246094, "start": 233.755, "word": "index" }, { "confidence": 0.78759766, "end": 234.475, "punctuated_word": "JS", "speaker": 0, "speaker_confidence": 0.52246094, "start": 234.155, "word": "js" }, { "confidence": 0.9980469, "end": 234.79, "punctuated_word": "file,", "speaker": 0, "speaker_confidence": 0.52246094, "start": 234.475, "word": "file" }, { "confidence": 1, "end": 235.03, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.52246094, "start": 234.79, "word": "we" }, { "confidence": 1, "end": 235.18999, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.52246094, "start": 235.03, "word": "need" }, { "confidence": 1, "end": 235.26999, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.64697266, "start": 235.18999, "word": "to" }, { "confidence": 1, "end": 235.67, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.64697266, "start": 235.26999, "word": "create" }, { "confidence": 0.9980469, "end": 235.98999, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.64697266, "start": 235.67, "word": "an" }, { "confidence": 0.79296875, "end": 236.48999, "punctuated_word": "HTTP", "speaker": 0, "speaker_confidence": 0.64697266, "start": 235.98999, "word": "http" }, { "confidence": 0.9824219, "end": 237.20999, "punctuated_word": "server.", "speaker": 0, "speaker_confidence": 0.64697266, "start": 236.70999, "word": "server" }, { "confidence": 1, "end": 237.75, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 1, "start": 237.59, "word": "we" }, { "confidence": 1, "end": 237.82999, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 237.75, "word": "can" }, { "confidence": 1, "end": 237.98999, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 1, "start": 237.82999, "word": "do" }, { "confidence": 1, "end": 238.23, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 237.98999, "word": "that" }, { "confidence": 0.99902344, "end": 238.46999, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 1, "start": 238.23, "word": "using" }, { "confidence": 1, "end": 238.70999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 238.46999, "word": "the" }, { "confidence": 0.9980469, "end": 238.95, "punctuated_word": "built", "speaker": 0, "speaker_confidence": 1, "start": 238.70999, "word": "built" }, { "confidence": 0.9741211, "end": 239.34999, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 238.95, "word": "in" }, { "confidence": 0.97509766, "end": 239.84999, "punctuated_word": "HTTP", "speaker": 0, "speaker_confidence": 1, "start": 239.34999, "word": "http" }, { "confidence": 0.97802734, "end": 240.46999, "punctuated_word": "library", "speaker": 0, "speaker_confidence": 1, "start": 240.06999, "word": "library" }, { "confidence": 0.7758789, "end": 240.62999, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 240.46999, "word": "in" }, { "confidence": 0.53466797, "end": 241.12999, "punctuated_word": "Node", "speaker": 0, "speaker_confidence": 1, "start": 240.62999, "word": "node" }, { "confidence": 0.74365234, "end": 241.90999, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 1, "start": 241.67, "word": "by" }, { "confidence": 1, "end": 242.31, "punctuated_word": "importing", "speaker": 0, "speaker_confidence": 1, "start": 241.90999, "word": "importing" }, { "confidence": 0.859375, "end": 242.62999, "punctuated_word": "it,", "speaker": 0, "speaker_confidence": 1, "start": 242.31, "word": "it" }, { "confidence": 0.9980469, "end": 242.87, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 1, "start": 242.62999, "word": "then" }, { "confidence": 0.9970703, "end": 243.10999, "punctuated_word": "calling", "speaker": 0, "speaker_confidence": 1, "start": 242.87, "word": "calling" }, { "confidence": 0.9790039, "end": 243.26999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 243.10999, "word": "the" }, { "confidence": 0.9941406, "end": 243.59, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 1, "start": 243.26999, "word": "create" }, { "confidence": 0.99902344, "end": 243.90999, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 1, "start": 243.59, "word": "server" }, { "confidence": 1, "end": 244.40999, "punctuated_word": "method.", "speaker": 0, "speaker_confidence": 1, "start": 243.90999, "word": "method" }, { "confidence": 1, "end": 244.955, "punctuated_word": "However,", "speaker": 0, "speaker_confidence": 1, "start": 244.71501, "word": "however" }, { "confidence": 1, "end": 245.195, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 244.955, "word": "it" }, { "confidence": 1, "end": 245.35501, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 245.195, "word": "is" }, { "confidence": 1, "end": 245.675, "punctuated_word": "worth", "speaker": 0, "speaker_confidence": 1, "start": 245.35501, "word": "worth" }, { "confidence": 0.9980469, "end": 246.07501, "punctuated_word": "noting", "speaker": 0, "speaker_confidence": 1, "start": 245.675, "word": "noting" }, { "confidence": 0.9980469, "end": 246.235, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 246.07501, "word": "that" }, { "confidence": 1, "end": 246.395, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 246.235, "word": "you" }, { "confidence": 1, "end": 246.55501, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 1, "start": 246.395, "word": "might" }, { "confidence": 1, "end": 246.79501, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 1, "start": 246.55501, "word": "want" }, { "confidence": 1, "end": 246.875, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 246.79501, "word": "to" }, { "confidence": 1, "end": 247.115, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 1, "start": 246.875, "word": "use" }, { "confidence": 0.77441406, "end": 247.43501, "punctuated_word": "express", "speaker": 0, "speaker_confidence": 1, "start": 247.115, "word": "express" }, { "confidence": 0.99902344, "end": 247.675, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 1, "start": 247.43501, "word": "here" }, { "confidence": 0.9951172, "end": 248.155, "punctuated_word": "instead,", "speaker": 0, "speaker_confidence": 1, "start": 247.675, "word": "instead" }, { "confidence": 1, "end": 248.315, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 1, "start": 248.155, "word": "which" }, { "confidence": 1, "end": 248.475, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 248.315, "word": "is" }, { "confidence": 1, "end": 248.63501, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 248.475, "word": "a" }, { "confidence": 1, "end": 248.79501, "punctuated_word": "much", "speaker": 0, "speaker_confidence": 1, "start": 248.63501, "word": "much" }, { "confidence": 1, "end": 249.035, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 1, "start": 248.79501, "word": "more" }, { "confidence": 1, "end": 249.43501, "punctuated_word": "popular", "speaker": 0, "speaker_confidence": 1, "start": 249.035, "word": "popular" }, { "confidence": 1, "end": 249.835, "punctuated_word": "option", "speaker": 0, "speaker_confidence": 1, "start": 249.43501, "word": "option" }, { "confidence": 1, "end": 249.99501, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 249.835, "word": "for" }, { "confidence": 1, "end": 250.315, "punctuated_word": "building", "speaker": 0, "speaker_confidence": 1, "start": 249.99501, "word": "building" }, { "confidence": 0.9951172, "end": 250.475, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 250.315, "word": "an" }, { "confidence": 0.7973633, "end": 250.975, "punctuated_word": "HTTP", "speaker": 0, "speaker_confidence": 1, "start": 250.475, "word": "http" }, { "confidence": 0.9946289, "end": 251.535, "punctuated_word": "server.", "speaker": 0, "speaker_confidence": 1, "start": 251.035, "word": "server" }, { "confidence": 1, "end": 251.91, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 1, "start": 251.67, "word": "the" }, { "confidence": 1, "end": 252.15, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 1, "start": 251.91, "word": "next" }, { "confidence": 1, "end": 252.39, "punctuated_word": "step", "speaker": 0, "speaker_confidence": 1, "start": 252.15, "word": "step" }, { "confidence": 1, "end": 252.63, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 252.39, "word": "is" }, { "confidence": 1, "end": 252.87, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 252.63, "word": "to" }, { "confidence": 1, "end": 253.19, "punctuated_word": "import", "speaker": 0, "speaker_confidence": 1, "start": 252.87, "word": "import" }, { "confidence": 0.8286133, "end": 253.59, "punctuated_word": "socket", "speaker": 0, "speaker_confidence": 1, "start": 253.19, "word": "socket" }, { "confidence": 0.74560547, "end": 253.99, "punctuated_word": "IO,", "speaker": 0, "speaker_confidence": 1, "start": 253.59, "word": "io" }, { "confidence": 1, "end": 254.23, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 1, "start": 253.99, "word": "which" }, { "confidence": 1, "end": 254.39, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 254.23, "word": "is" }, { "confidence": 1, "end": 254.55, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 254.39, "word": "a" }, { "confidence": 0.9736328, "end": 255.05, "punctuated_word": "function,", "speaker": 0, "speaker_confidence": 1, "start": 254.55, "word": "function" }, { "confidence": 1, "end": 255.43, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8076172, "start": 255.27, "word": "and" }, { "confidence": 1, "end": 255.59, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8076172, "start": 255.43, "word": "it" }, { "confidence": 1, "end": 255.75, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.8076172, "start": 255.59, "word": "will" }, { "confidence": 1, "end": 255.91, "punctuated_word": "take", "speaker": 0, "speaker_confidence": 0.8076172, "start": 255.75, "word": "take" }, { "confidence": 1, "end": 256.15, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.8076172, "start": 255.91, "word": "our" }, { "confidence": 0.61035156, "end": 256.65, "punctuated_word": "HTTP", "speaker": 0, "speaker_confidence": 0.8076172, "start": 256.15, "word": "http" }, { "confidence": 0.984375, "end": 257.35, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 0.8076172, "start": 256.95, "word": "server" }, { "confidence": 1, "end": 257.83, "punctuated_word": "object", "speaker": 0, "speaker_confidence": 0.8076172, "start": 257.35, "word": "object" }, { "confidence": 1, "end": 257.99, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.8076172, "start": 257.83, "word": "as" }, { "confidence": 1, "end": 258.15, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.8076172, "start": 257.99, "word": "an" }, { "confidence": 0.99609375, "end": 258.65, "punctuated_word": "argument.", "speaker": 0, "speaker_confidence": 0.8076172, "start": 258.15, "word": "argument" }, { "confidence": 1, "end": 259.205, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.9296875, "start": 259.04498, "word": "but" }, { "confidence": 0.96777344, "end": 259.285, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9296875, "start": 259.205, "word": "in" }, { "confidence": 1, "end": 259.445, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.9296875, "start": 259.285, "word": "this" }, { "confidence": 0.98583984, "end": 259.925, "punctuated_word": "demo,", "speaker": 0, "speaker_confidence": 0.9296875, "start": 259.445, "word": "demo" }, { "confidence": 0.9995117, "end": 260.16498, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.9296875, "start": 259.925, "word": "we'll" }, { "confidence": 1, "end": 260.405, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.9296875, "start": 260.16498, "word": "be" }, { "confidence": 1, "end": 260.805, "punctuated_word": "accessing", "speaker": 0, "speaker_confidence": 0.9296875, "start": 260.405, "word": "accessing" }, { "confidence": 0.99902344, "end": 260.965, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9296875, "start": 260.805, "word": "the" }, { "confidence": 0.90478516, "end": 261.205, "punctuated_word": "back", "speaker": 0, "speaker_confidence": 0.9296875, "start": 260.965, "word": "back" }, { "confidence": 1, "end": 261.445, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.9296875, "start": 261.205, "word": "end" }, { "confidence": 1, "end": 261.685, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.9296875, "start": 261.445, "word": "from" }, { "confidence": 1, "end": 261.845, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9296875, "start": 261.685, "word": "a" }, { "confidence": 0.9980469, "end": 262.085, "punctuated_word": "front", "speaker": 0, "speaker_confidence": 0.9296875, "start": 261.845, "word": "front" }, { "confidence": 0.9863281, "end": 262.32498, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.9296875, "start": 262.085, "word": "end" }, { "confidence": 1, "end": 262.725, "punctuated_word": "browser", "speaker": 0, "speaker_confidence": 0.9296875, "start": 262.32498, "word": "browser" }, { "confidence": 0.98291016, "end": 263.225, "punctuated_word": "application.", "speaker": 0, "speaker_confidence": 0.9296875, "start": 262.725, "word": "application" }, { "confidence": 1, "end": 264.005, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.9296875, "start": 263.685, "word": "but" }, { "confidence": 0.98828125, "end": 264.245, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.9296875, "start": 264.005, "word": "for" }, { "confidence": 0.99902344, "end": 264.725, "punctuated_word": "security", "speaker": 0, "speaker_confidence": 0.9296875, "start": 264.245, "word": "security" }, { "confidence": 1, "end": 265.225, "punctuated_word": "reasons,", "speaker": 0, "speaker_confidence": 0.9296875, "start": 264.725, "word": "reasons" }, { "confidence": 0.9707031, "end": 265.60498, "punctuated_word": "cross", "speaker": 0, "speaker_confidence": 0.9296875, "start": 265.285, "word": "cross" }, { "confidence": 0.99316406, "end": 266.085, "punctuated_word": "origin", "speaker": 0, "speaker_confidence": 0.9296875, "start": 265.60498, "word": "origin" }, { "confidence": 0.99609375, "end": 266.485, "punctuated_word": "resource", "speaker": 0, "speaker_confidence": 0.9296875, "start": 266.085, "word": "resource" }, { "confidence": 0.8713379, "end": 266.88498, "punctuated_word": "sharing,", "speaker": 0, "speaker_confidence": 0.9296875, "start": 266.485, "word": "sharing" }, { "confidence": 0.9970703, "end": 267.205, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.9296875, "start": 266.88498, "word": "or" }, { "confidence": 0.7463379, "end": 267.60498, "punctuated_word": "cores,", "speaker": 0, "speaker_confidence": 0.9296875, "start": 267.205, "word": "cores" }, { "confidence": 1, "end": 267.76498, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9296875, "start": 267.60498, "word": "is" }, { "confidence": 1, "end": 268.26498, "punctuated_word": "disabled.", "speaker": 0, "speaker_confidence": 0.9296875, "start": 267.76498, "word": "disabled" }, { "confidence": 0.8613281, "end": 268.79, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 1, "start": 268.645, "word": "we" }, { "confidence": 0.99902344, "end": 268.87, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 1, "start": 268.79, "word": "we" }, { "confidence": 1, "end": 269.03, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 268.87, "word": "can" }, { "confidence": 1, "end": 269.19, "punctuated_word": "pass", "speaker": 0, "speaker_confidence": 1, "start": 269.03, "word": "pass" }, { "confidence": 0.99609375, "end": 269.43002, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 269.19, "word": "an" }, { "confidence": 1, "end": 269.83002, "punctuated_word": "object", "speaker": 0, "speaker_confidence": 1, "start": 269.43002, "word": "object" }, { "confidence": 1, "end": 270.07, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 1, "start": 269.83002, "word": "as" }, { "confidence": 1, "end": 270.23, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 270.07, "word": "a" }, { "confidence": 0.9243164, "end": 270.47, "punctuated_word": "second", "speaker": 0, "speaker_confidence": 1, "start": 270.23, "word": "second" }, { "confidence": 0.88500977, "end": 270.97, "punctuated_word": "argument,", "speaker": 0, "speaker_confidence": 1, "start": 270.47, "word": "argument" }, { "confidence": 0.9980469, "end": 271.59, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 271.43002, "word": "and" }, { "confidence": 0.9980469, "end": 271.75, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 1, "start": 271.59, "word": "we'll" }, { "confidence": 1, "end": 271.91, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 1, "start": 271.75, "word": "set" }, { "confidence": 1, "end": 272.07, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 271.91, "word": "the" }, { "confidence": 0.9428711, "end": 272.55002, "punctuated_word": "core's", "speaker": 0, "speaker_confidence": 1, "start": 272.07, "word": "core's" }, { "confidence": 0.99902344, "end": 273.05002, "punctuated_word": "origin", "speaker": 0, "speaker_confidence": 1, "start": 272.55002, "word": "origin" }, { "confidence": 1, "end": 273.35, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 273.11002, "word": "to" }, { "confidence": 0.96240234, "end": 273.85, "punctuated_word": "anything,", "speaker": 0, "speaker_confidence": 1, "start": 273.35, "word": "anything" }, { "confidence": 1, "end": 274.55002, "punctuated_word": "allowing", "speaker": 0, "speaker_confidence": 1, "start": 274.23, "word": "allowing" }, { "confidence": 0.99902344, "end": 274.79, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 1, "start": 274.55002, "word": "any" }, { "confidence": 0.9941406, "end": 275.29, "punctuated_word": "URL", "speaker": 0, "speaker_confidence": 1, "start": 274.79, "word": "url" }, { "confidence": 0.99902344, "end": 275.51, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 275.35, "word": "to" }, { "confidence": 1, "end": 275.91, "punctuated_word": "access", "speaker": 0, "speaker_confidence": 1, "start": 275.51, "word": "access" }, { "confidence": 1, "end": 276.15, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 1, "start": 275.91, "word": "our" }, { "confidence": 0.8598633, "end": 276.31, "punctuated_word": "back", "speaker": 0, "speaker_confidence": 1, "start": 276.15, "word": "back" }, { "confidence": 0.9970703, "end": 276.63, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 1, "start": 276.31, "word": "end" }, { "confidence": 0.9716797, "end": 277.13, "punctuated_word": "URL.", "speaker": 0, "speaker_confidence": 1, "start": 276.63, "word": "url" }, { "confidence": 1, "end": 277.375, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 1, "start": 277.215, "word": "and" }, { "confidence": 0.99316406, "end": 277.535, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 1, "start": 277.375, "word": "now" }, { "confidence": 0.97998047, "end": 277.615, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 1, "start": 277.535, "word": "we" }, { "confidence": 1, "end": 277.695, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 277.615, "word": "can" }, { "confidence": 1, "end": 278.175, "punctuated_word": "implement", "speaker": 0, "speaker_confidence": 1, "start": 277.695, "word": "implement" }, { "confidence": 0.9892578, "end": 278.255, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 278.175, "word": "the" }, { "confidence": 1, "end": 278.655, "punctuated_word": "logic", "speaker": 0, "speaker_confidence": 1, "start": 278.255, "word": "logic" }, { "confidence": 1, "end": 278.895, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 278.655, "word": "for" }, { "confidence": 0.62475586, "end": 279.375, "punctuated_word": "Socket.", "speaker": 0, "speaker_confidence": 1, "start": 278.895, "word": "socket" }, { "confidence": 0.86743164, "end": 279.875, "punctuated_word": "Io.", "speaker": 0, "speaker_confidence": 1, "start": 279.375, "word": "io" }, { "confidence": 0.8925781, "end": 280.175, "punctuated_word": "Just", "speaker": 0, "speaker_confidence": 1, "start": 280.01498, "word": "just" }, { "confidence": 1, "end": 280.415, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 280.175, "word": "like" }, { "confidence": 0.92614746, "end": 280.915, "punctuated_word": "WebSockets,", "speaker": 0, "speaker_confidence": 1, "start": 280.415, "word": "websockets" }, { "confidence": 0.9995117, "end": 281.375, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 1, "start": 281.135, "word": "it's" }, { "confidence": 1, "end": 281.535, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 281.375, "word": "an" }, { "confidence": 0.99902344, "end": 281.775, "punctuated_word": "event", "speaker": 0, "speaker_confidence": 1, "start": 281.535, "word": "event" }, { "confidence": 0.9970703, "end": 282.095, "punctuated_word": "based", "speaker": 0, "speaker_confidence": 1, "start": 281.775, "word": "based" }, { "confidence": 0.76464844, "end": 282.595, "punctuated_word": "system,", "speaker": 0, "speaker_confidence": 1, "start": 282.095, "word": "system" }, { "confidence": 0.99902344, "end": 282.975, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 282.815, "word": "and" }, { "confidence": 1, "end": 283.135, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 282.975, "word": "the" }, { "confidence": 0.83447266, "end": 283.29498, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 1, "start": 283.135, "word": "first" }, { "confidence": 1, "end": 283.535, "punctuated_word": "event", "speaker": 0, "speaker_confidence": 1, "start": 283.29498, "word": "event" }, { "confidence": 0.9692383, "end": 283.695, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 1, "start": 283.535, "word": "you'll" }, { "confidence": 0.9951172, "end": 284.01498, "punctuated_word": "likely", "speaker": 0, "speaker_confidence": 1, "start": 283.695, "word": "likely" }, { "confidence": 1, "end": 284.255, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 1, "start": 284.01498, "word": "want" }, { "confidence": 1, "end": 284.415, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 284.255, "word": "to" }, { "confidence": 1, "end": 284.735, "punctuated_word": "listen", "speaker": 0, "speaker_confidence": 1, "start": 284.415, "word": "listen" }, { "confidence": 1, "end": 285.16, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 284.735, "word": "for" }, { "confidence": 1, "end": 285.32, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 285.16, "word": "is" }, { "confidence": 0.99902344, "end": 285.56, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 285.32, "word": "the" }, { "confidence": 1, "end": 285.96, "punctuated_word": "connection", "speaker": 0, "speaker_confidence": 1, "start": 285.56, "word": "connection" }, { "confidence": 1, "end": 286.12, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 285.96, "word": "of" }, { "confidence": 1, "end": 286.28, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 286.12, "word": "a" }, { "confidence": 1, "end": 286.68, "punctuated_word": "client", "speaker": 0, "speaker_confidence": 1, "start": 286.28, "word": "client" }, { "confidence": 1, "end": 286.92, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 1, "start": 286.68, "word": "from" }, { "confidence": 1, "end": 287, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9091797, "start": 286.92, "word": "the" }, { "confidence": 1, "end": 287.08002, "punctuated_word": "front", "speaker": 0, "speaker_confidence": 0.9091797, "start": 287, "word": "front" }, { "confidence": 0.9797363, "end": 287.48, "punctuated_word": "end.", "speaker": 0, "speaker_confidence": 0.9091797, "start": 287.08002, "word": "end" }, { "confidence": 1, "end": 287.64, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.9091797, "start": 287.48, "word": "the" }, { "confidence": 0.99902344, "end": 288.12, "punctuated_word": "callback", "speaker": 0, "speaker_confidence": 0.9091797, "start": 287.64, "word": "callback" }, { "confidence": 1, "end": 288.36002, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.9091797, "start": 288.12, "word": "will" }, { "confidence": 1, "end": 288.52, "punctuated_word": "give", "speaker": 0, "speaker_confidence": 0.9091797, "start": 288.36002, "word": "give" }, { "confidence": 1, "end": 288.68, "punctuated_word": "us", "speaker": 0, "speaker_confidence": 0.9091797, "start": 288.52, "word": "us" }, { "confidence": 1, "end": 289, "punctuated_word": "access", "speaker": 0, "speaker_confidence": 0.9091797, "start": 288.68, "word": "access" }, { "confidence": 1, "end": 289.24, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9091797, "start": 289, "word": "to" }, { "confidence": 1, "end": 289.32, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9091797, "start": 289.24, "word": "the" }, { "confidence": 1, "end": 289.72, "punctuated_word": "socket", "speaker": 0, "speaker_confidence": 0.9091797, "start": 289.32, "word": "socket" }, { "confidence": 0.76464844, "end": 290.22, "punctuated_word": "object.", "speaker": 0, "speaker_confidence": 0.9091797, "start": 289.72, "word": "object" }, { "confidence": 1, "end": 290.84, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.9091797, "start": 290.6, "word": "and" }, { "confidence": 0.98291016, "end": 291, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.9091797, "start": 290.84, "word": "on" }, { "confidence": 1, "end": 291.16, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9091797, "start": 291, "word": "that" }, { "confidence": 1, "end": 291.66, "punctuated_word": "socket,", "speaker": 0, "speaker_confidence": 0.9091797, "start": 291.16, "word": "socket" }, { "confidence": 1, "end": 291.96, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.9091797, "start": 291.80002, "word": "we" }, { "confidence": 1, "end": 292.2, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9091797, "start": 291.96, "word": "can" }, { "confidence": 1, "end": 292.52, "punctuated_word": "listen", "speaker": 0, "speaker_confidence": 0.9091797, "start": 292.2, "word": "listen" }, { "confidence": 1, "end": 292.84, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9091797, "start": 292.52, "word": "to" }, { "confidence": 0.99902344, "end": 293.08002, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 0.9091797, "start": 292.84, "word": "any" }, { "confidence": 1, "end": 293.4, "punctuated_word": "custom", "speaker": 0, "speaker_confidence": 0.9091797, "start": 293.08002, "word": "custom" }, { "confidence": 1, "end": 293.72, "punctuated_word": "event", "speaker": 0, "speaker_confidence": 0.9091797, "start": 293.4, "word": "event" }, { "confidence": 0.99902344, "end": 293.88, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.9091797, "start": 293.72, "word": "we" }, { "confidence": 0.9592285, "end": 294.38, "punctuated_word": "want.", "speaker": 0, "speaker_confidence": 0.9091797, "start": 293.88, "word": "want" }, { "confidence": 1, "end": 294.63498, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.9091797, "start": 294.395, "word": "but" }, { "confidence": 0.95947266, "end": 294.79498, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.9091797, "start": 294.63498, "word": "for" }, { "confidence": 0.9909668, "end": 295.29498, "punctuated_word": "simplicity,", "speaker": 0, "speaker_confidence": 0.9091797, "start": 294.79498, "word": "simplicity" }, { "confidence": 0.9995117, "end": 295.595, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.9091797, "start": 295.435, "word": "we'll" }, { "confidence": 1, "end": 295.75497, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.9091797, "start": 295.595, "word": "just" }, { "confidence": 1, "end": 295.91498, "punctuated_word": "call", "speaker": 0, "speaker_confidence": 0.9091797, "start": 295.75497, "word": "call" }, { "confidence": 0.9980469, "end": 296.07498, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.9091797, "start": 295.91498, "word": "it" }, { "confidence": 0.9951172, "end": 296.155, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.80566406, "start": 296.07498, "word": "the" }, { "confidence": 0.9902344, "end": 296.555, "punctuated_word": "message", "speaker": 0, "speaker_confidence": 0.80566406, "start": 296.155, "word": "message" }, { "confidence": 1, "end": 297.055, "punctuated_word": "event.", "speaker": 0, "speaker_confidence": 0.80566406, "start": 296.555, "word": "event" }, { "confidence": 1, "end": 297.35498, "punctuated_word": "When", "speaker": 0, "speaker_confidence": 0.80566406, "start": 297.115, "word": "when" }, { "confidence": 1, "end": 297.51498, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.80566406, "start": 297.35498, "word": "an" }, { "confidence": 1, "end": 297.75497, "punctuated_word": "event", "speaker": 0, "speaker_confidence": 0.80566406, "start": 297.51498, "word": "event" }, { "confidence": 1, "end": 297.995, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.80566406, "start": 297.75497, "word": "is" }, { "confidence": 0.9863281, "end": 298.495, "punctuated_word": "emitted,", "speaker": 0, "speaker_confidence": 0.80566406, "start": 297.995, "word": "emitted" }, { "confidence": 1, "end": 298.875, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.80566406, "start": 298.63498, "word": "we'll" }, { "confidence": 1, "end": 299.035, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.80566406, "start": 298.875, "word": "have" }, { "confidence": 1, "end": 299.51498, "punctuated_word": "access", "speaker": 0, "speaker_confidence": 0.80566406, "start": 299.035, "word": "access" }, { "confidence": 1, "end": 299.675, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.80566406, "start": 299.51498, "word": "to" }, { "confidence": 1, "end": 299.835, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.80566406, "start": 299.675, "word": "the" }, { "confidence": 0.8327637, "end": 300.235, "punctuated_word": "data,", "speaker": 0, "speaker_confidence": 0.80566406, "start": 299.835, "word": "data" }, { "confidence": 1, "end": 300.47498, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.80566406, "start": 300.235, "word": "which" }, { "confidence": 1, "end": 300.63498, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 0.80566406, "start": 300.47498, "word": "might" }, { "confidence": 1, "end": 300.79498, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.80566406, "start": 300.63498, "word": "be" }, { "confidence": 1, "end": 300.875, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8798828, "start": 300.79498, "word": "a" }, { "confidence": 0.95703125, "end": 301.375, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.8798828, "start": 300.875, "word": "javascript" }, { "confidence": 0.96533203, "end": 301.91498, "punctuated_word": "object", "speaker": 0, "speaker_confidence": 0.8798828, "start": 301.435, "word": "object" }, { "confidence": 0.9980469, "end": 302.07498, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.8798828, "start": 301.91498, "word": "or" }, { "confidence": 0.9970703, "end": 302.235, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8798828, "start": 302.07498, "word": "a" }, { "confidence": 0.967041, "end": 302.735, "punctuated_word": "string,", "speaker": 0, "speaker_confidence": 0.8798828, "start": 302.235, "word": "string" }, { "confidence": 1, "end": 303.01, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8798828, "start": 302.85, "word": "and" }, { "confidence": 1, "end": 303.17, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.8798828, "start": 303.01, "word": "we" }, { "confidence": 1, "end": 303.25, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.8798828, "start": 303.17, "word": "can" }, { "confidence": 1, "end": 303.65, "punctuated_word": "handle", "speaker": 0, "speaker_confidence": 0.8798828, "start": 303.25, "word": "handle" }, { "confidence": 1, "end": 303.81, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8798828, "start": 303.65, "word": "it" }, { "confidence": 1, "end": 304.05002, "punctuated_word": "inside", "speaker": 0, "speaker_confidence": 0.8798828, "start": 303.81, "word": "inside" }, { "confidence": 0.9980469, "end": 304.21, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8798828, "start": 304.05002, "word": "the" }, { "confidence": 0.99121094, "end": 304.61002, "punctuated_word": "callback", "speaker": 0, "speaker_confidence": 0.8798828, "start": 304.21, "word": "callback" }, { "confidence": 1, "end": 305.11002, "punctuated_word": "here.", "speaker": 0, "speaker_confidence": 0.8798828, "start": 304.61002, "word": "here" }, { "confidence": 1, "end": 305.41, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.8798828, "start": 305.25, "word": "in" }, { "confidence": 1, "end": 305.49002, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.8798828, "start": 305.41, "word": "this" }, { "confidence": 0.9975586, "end": 305.73, "punctuated_word": "case,", "speaker": 0, "speaker_confidence": 0.8798828, "start": 305.49002, "word": "case" }, { "confidence": 0.9836426, "end": 305.97, "punctuated_word": "it'll", "speaker": 0, "speaker_confidence": 0.8798828, "start": 305.73, "word": "it'll" }, { "confidence": 0.99902344, "end": 306.13, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.8798828, "start": 305.97, "word": "be" }, { "confidence": 0.99902344, "end": 306.21, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 306.13, "word": "a" }, { "confidence": 0.94433594, "end": 306.71, "punctuated_word": "string,", "speaker": 0, "speaker_confidence": 1, "start": 306.21, "word": "string" }, { "confidence": 1, "end": 307.17, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 1, "start": 307.01, "word": "which" }, { "confidence": 1, "end": 307.33002, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 1, "start": 307.17, "word": "we" }, { "confidence": 0.99902344, "end": 307.57, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 307.33002, "word": "can" }, { "confidence": 0.9902344, "end": 307.89, "punctuated_word": "console", "speaker": 0, "speaker_confidence": 1, "start": 307.57, "word": "console" }, { "confidence": 0.89331055, "end": 308.39, "punctuated_word": "log.", "speaker": 0, "speaker_confidence": 1, "start": 307.89, "word": "log" }, { "confidence": 1, "end": 308.77002, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 1, "start": 308.53, "word": "and" }, { "confidence": 0.9980469, "end": 309.01, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 1, "start": 308.77002, "word": "because" }, { "confidence": 1, "end": 309.17, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 1, "start": 309.01, "word": "we" }, { "confidence": 1, "end": 309.33002, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 1, "start": 309.17, "word": "have" }, { "confidence": 1, "end": 309.73, "punctuated_word": "multiple", "speaker": 0, "speaker_confidence": 1, "start": 309.33002, "word": "multiple" }, { "confidence": 0.99902344, "end": 310.05002, "punctuated_word": "clients", "speaker": 0, "speaker_confidence": 1, "start": 309.73, "word": "clients" }, { "confidence": 0.9819336, "end": 310.55002, "punctuated_word": "listening", "speaker": 0, "speaker_confidence": 1, "start": 310.05002, "word": "listening" }, { "confidence": 1, "end": 310.77002, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 310.61002, "word": "to" }, { "confidence": 1, "end": 310.93, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 310.77002, "word": "the" }, { "confidence": 0.99902344, "end": 311.41, "punctuated_word": "message", "speaker": 0, "speaker_confidence": 1, "start": 310.93, "word": "message" }, { "confidence": 1, "end": 311.905, "punctuated_word": "event,", "speaker": 0, "speaker_confidence": 1, "start": 311.41, "word": "event" }, { "confidence": 1, "end": 312.17, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 1, "start": 311.905, "word": "we" }, { "confidence": 1, "end": 312.435, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 312.17, "word": "can" }, { "confidence": 1, "end": 312.7, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 1, "start": 312.435, "word": "then" }, { "confidence": 0.9604492, "end": 312.965, "punctuated_word": "re", "speaker": 0, "speaker_confidence": 1, "start": 312.7, "word": "re" }, { "confidence": 0.5576172, "end": 313.23, "punctuated_word": "emit", "speaker": 0, "speaker_confidence": 1, "start": 312.965, "word": "emit" }, { "confidence": 0.99609375, "end": 313.495, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 313.23, "word": "the" }, { "confidence": 1, "end": 313.76, "punctuated_word": "message", "speaker": 0, "speaker_confidence": 1, "start": 313.495, "word": "message" }, { "confidence": 0.7348633, "end": 314.025, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 1, "start": 313.76, "word": "so" }, { "confidence": 0.9951172, "end": 314.29, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 1, "start": 314.025, "word": "it's" }, { "confidence": 1, "end": 314.555, "punctuated_word": "broadcast", "speaker": 0, "speaker_confidence": 1, "start": 314.29, "word": "broadcast" }, { "confidence": 0.9941406, "end": 314.82, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 1, "start": 314.555, "word": "out" }, { "confidence": 0.99902344, "end": 315.085, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 314.82, "word": "to" }, { "confidence": 1, "end": 315.35, "punctuated_word": "everybody.", "speaker": 0, "speaker_confidence": 1, "start": 315.085, "word": "everybody" }, { "confidence": 1, "end": 315.615, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 1, "start": 315.35, "word": "we" }, { "confidence": 1, "end": 315.88, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 315.615, "word": "can" }, { "confidence": 0.99902344, "end": 316.145, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 1, "start": 315.88, "word": "do" }, { "confidence": 0.99902344, "end": 316.41, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 316.145, "word": "that" }, { "confidence": 1, "end": 316.675, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 316.41, "word": "with" }, { "confidence": 0.9980469, "end": 316.94, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 316.675, "word": "the" }, { "confidence": 0.9770508, "end": 317.205, "punctuated_word": "IO", "speaker": 0, "speaker_confidence": 1, "start": 316.94, "word": "io" }, { "confidence": 0.9560547, "end": 317.47, "punctuated_word": "emit", "speaker": 0, "speaker_confidence": 1, "start": 317.205, "word": "emit" }, { "confidence": 0.95214844, "end": 317.735, "punctuated_word": "method,", "speaker": 0, "speaker_confidence": 1, "start": 317.47, "word": "method" }, { "confidence": 1, "end": 318, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 317.735, "word": "and" }, { "confidence": 0.8833008, "end": 318.26498, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 1, "start": 318, "word": "then" }, { "confidence": 0.99902344, "end": 318.53, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 1, "start": 318.26498, "word": "we'll" }, { "confidence": 1, "end": 318.79498, "punctuated_word": "pass", "speaker": 0, "speaker_confidence": 1, "start": 318.53, "word": "pass" }, { "confidence": 0.9301758, "end": 319.06, "punctuated_word": "message", "speaker": 0, "speaker_confidence": 1, "start": 318.79498, "word": "message" }, { "confidence": 1, "end": 319.32498, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 1, "start": 319.06, "word": "as" }, { "confidence": 1, "end": 319.59, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 319.32498, "word": "the" }, { "confidence": 1, "end": 319.85498, "punctuated_word": "event", "speaker": 0, "speaker_confidence": 1, "start": 319.59, "word": "event" }, { "confidence": 0.8688965, "end": 320.12, "punctuated_word": "name,", "speaker": 0, "speaker_confidence": 1, "start": 319.85498, "word": "name" }, { "confidence": 1, "end": 320.28, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7714844, "start": 320.19998, "word": "and" }, { "confidence": 0.9980469, "end": 320.52, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.7714844, "start": 320.28, "word": "then" }, { "confidence": 0.9873047, "end": 320.84, "punctuated_word": "whatever", "speaker": 0, "speaker_confidence": 0.7714844, "start": 320.52, "word": "whatever" }, { "confidence": 0.99121094, "end": 321.34, "punctuated_word": "custom", "speaker": 0, "speaker_confidence": 0.7714844, "start": 320.84, "word": "custom" }, { "confidence": 0.9790039, "end": 321.63998, "punctuated_word": "text", "speaker": 0, "speaker_confidence": 0.7714844, "start": 321.4, "word": "text" }, { "confidence": 0.9980469, "end": 321.8, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.7714844, "start": 321.63998, "word": "or" }, { "confidence": 0.9941406, "end": 322.12, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.7714844, "start": 321.8, "word": "data" }, { "confidence": 0.984375, "end": 322.36, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.7714844, "start": 322.12, "word": "we" }, { "confidence": 1, "end": 322.6, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.7714844, "start": 322.36, "word": "want" }, { "confidence": 0.9980469, "end": 322.76, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7714844, "start": 322.6, "word": "to" }, { "confidence": 0.99902344, "end": 323.24, "punctuated_word": "pass", "speaker": 0, "speaker_confidence": 0.7714844, "start": 322.76, "word": "pass" }, { "confidence": 1, "end": 323.56, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.7714844, "start": 323.24, "word": "as" }, { "confidence": 1, "end": 323.8, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7714844, "start": 323.56, "word": "the" }, { "confidence": 0.8774414, "end": 324.12, "punctuated_word": "second", "speaker": 0, "speaker_confidence": 0.7714844, "start": 323.8, "word": "second" }, { "confidence": 0.83251953, "end": 324.62, "punctuated_word": "argument,", "speaker": 0, "speaker_confidence": 0.7714844, "start": 324.12, "word": "argument" }, { "confidence": 1, "end": 325, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.5053711, "start": 324.84, "word": "and" }, { "confidence": 1, "end": 325.24, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.5053711, "start": 325, "word": "that's" }, { "confidence": 0.9970703, "end": 325.63998, "punctuated_word": "basically", "speaker": 0, "speaker_confidence": 0.5053711, "start": 325.24, "word": "basically" }, { "confidence": 1, "end": 325.72, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.5053711, "start": 325.63998, "word": "all" }, { "confidence": 0.99902344, "end": 325.8, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.5053711, "start": 325.72, "word": "there" }, { "confidence": 0.9863281, "end": 325.96, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8959961, "start": 325.8, "word": "is" }, { "confidence": 0.99902344, "end": 326.12, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8959961, "start": 325.96, "word": "to" }, { "confidence": 0.99853516, "end": 326.52, "punctuated_word": "it.", "speaker": 0, "speaker_confidence": 0.8959961, "start": 326.12, "word": "it" }, { "confidence": 1, "end": 326.68, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.8959961, "start": 326.52, "word": "it's" }, { "confidence": 1, "end": 326.84, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8959961, "start": 326.68, "word": "a" }, { "confidence": 1, "end": 327.08, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 0.8959961, "start": 326.84, "word": "very" }, { "confidence": 1, "end": 327.56, "punctuated_word": "simple", "speaker": 0, "speaker_confidence": 0.8959961, "start": 327.08, "word": "simple" }, { "confidence": 0.9707031, "end": 327.88, "punctuated_word": "event", "speaker": 0, "speaker_confidence": 0.8959961, "start": 327.56, "word": "event" }, { "confidence": 0.9921875, "end": 328.12, "punctuated_word": "based", "speaker": 0, "speaker_confidence": 0.8959961, "start": 327.88, "word": "based" }, { "confidence": 1, "end": 328.62, "punctuated_word": "system.", "speaker": 0, "speaker_confidence": 0.8959961, "start": 328.12, "word": "system" }, { "confidence": 1, "end": 329.105, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.8959961, "start": 328.865, "word": "the" }, { "confidence": 1, "end": 329.265, "punctuated_word": "final", "speaker": 0, "speaker_confidence": 0.8959961, "start": 329.105, "word": "final" }, { "confidence": 1, "end": 329.505, "punctuated_word": "piece", "speaker": 0, "speaker_confidence": 0.8959961, "start": 329.265, "word": "piece" }, { "confidence": 0.99902344, "end": 329.665, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8959961, "start": 329.505, "word": "of" }, { "confidence": 1, "end": 329.905, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.8959961, "start": 329.665, "word": "code" }, { "confidence": 1, "end": 329.98502, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.8959961, "start": 329.905, "word": "we" }, { "confidence": 1, "end": 330.145, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.8959961, "start": 329.98502, "word": "need" }, { "confidence": 0.9902344, "end": 330.305, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0.8959961, "start": 330.145, "word": "here" }, { "confidence": 0.6621094, "end": 330.70502, "punctuated_word": "though", "speaker": 0, "speaker_confidence": 0.8959961, "start": 330.305, "word": "though" }, { "confidence": 0.9550781, "end": 330.865, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8959961, "start": 330.70502, "word": "is" }, { "confidence": 0.99902344, "end": 331.025, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8959961, "start": 330.865, "word": "to" }, { "confidence": 1, "end": 331.265, "punctuated_word": "tell", "speaker": 0, "speaker_confidence": 0.8959961, "start": 331.025, "word": "tell" }, { "confidence": 1, "end": 331.42502, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.8959961, "start": 331.265, "word": "our" }, { "confidence": 1, "end": 331.825, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 0.8959961, "start": 331.42502, "word": "server" }, { "confidence": 1, "end": 331.98502, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8959961, "start": 331.825, "word": "to" }, { "confidence": 1, "end": 332.465, "punctuated_word": "listen", "speaker": 0, "speaker_confidence": 0.8959961, "start": 331.98502, "word": "listen" }, { "confidence": 1, "end": 332.70502, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8959961, "start": 332.465, "word": "on" }, { "confidence": 0.99609375, "end": 333.025, "punctuated_word": "port", "speaker": 0, "speaker_confidence": 0.8959961, "start": 332.70502, "word": "port" }, { "confidence": 0.7648112, "end": 333.525, "punctuated_word": "8080.", "speaker": 0, "speaker_confidence": 0.8959961, "start": 333.025, "word": "8080" }, { "confidence": 0.99902344, "end": 334.225, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.7636719, "start": 334.065, "word": "then" }, { "confidence": 0.984375, "end": 334.305, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7636719, "start": 334.225, "word": "you" }, { "confidence": 0.99316406, "end": 334.465, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7636719, "start": 334.305, "word": "can" }, { "confidence": 1, "end": 334.785, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.7636719, "start": 334.465, "word": "open" }, { "confidence": 1, "end": 334.865, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.7636719, "start": 334.785, "word": "up" }, { "confidence": 1, "end": 335.025, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7636719, "start": 334.865, "word": "the" }, { "confidence": 0.99902344, "end": 335.525, "punctuated_word": "terminal", "speaker": 0, "speaker_confidence": 0.7636719, "start": 335.025, "word": "terminal" }, { "confidence": 0.9604492, "end": 335.825, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7636719, "start": 335.585, "word": "and" }, { "confidence": 0.99902344, "end": 336.145, "punctuated_word": "call", "speaker": 0, "speaker_confidence": 0.7636719, "start": 335.825, "word": "call" }, { "confidence": 0.92089844, "end": 336.465, "punctuated_word": "node", "speaker": 0, "speaker_confidence": 0.7636719, "start": 336.145, "word": "node" }, { "confidence": 0.9375, "end": 336.70502, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7636719, "start": 336.465, "word": "and" }, { "confidence": 0.99902344, "end": 336.945, "punctuated_word": "point", "speaker": 0, "speaker_confidence": 0.7636719, "start": 336.70502, "word": "point" }, { "confidence": 1, "end": 337.105, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.7636719, "start": 336.945, "word": "it" }, { "confidence": 1, "end": 337.265, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7636719, "start": 337.105, "word": "to" }, { "confidence": 1, "end": 337.425, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.7636719, "start": 337.265, "word": "this" }, { "confidence": 1, "end": 337.925, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.7636719, "start": 337.425, "word": "file" }, { "confidence": 1, "end": 338.28998, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7636719, "start": 338.12997, "word": "to" }, { "confidence": 1, "end": 338.44998, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.7636719, "start": 338.28998, "word": "run" }, { "confidence": 0.9970703, "end": 338.53, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7939453, "start": 338.44998, "word": "the" }, { "confidence": 1, "end": 339.00998, "punctuated_word": "script", "speaker": 0, "speaker_confidence": 0.7939453, "start": 338.53, "word": "script" }, { "confidence": 0.9819336, "end": 339.33, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7939453, "start": 339.00998, "word": "and" }, { "confidence": 1, "end": 339.56998, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 0.7939453, "start": 339.33, "word": "start" }, { "confidence": 1, "end": 339.72998, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.7939453, "start": 339.56998, "word": "your" }, { "confidence": 0.79833984, "end": 340.05, "punctuated_word": "Socket", "speaker": 0, "speaker_confidence": 0.7939453, "start": 339.72998, "word": "socket" }, { "confidence": 0.61865234, "end": 340.37, "punctuated_word": "IO", "speaker": 0, "speaker_confidence": 0.7939453, "start": 340.05, "word": "io" }, { "confidence": 0.80908203, "end": 340.87, "punctuated_word": "server.", "speaker": 0, "speaker_confidence": 0.7939453, "start": 340.37, "word": "server" }, { "confidence": 1, "end": 341.33, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.48095703, "start": 341.16998, "word": "and" }, { "confidence": 0.96972656, "end": 341.49, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 0.48095703, "start": 341.33, "word": "now" }, { "confidence": 0.97314453, "end": 341.65, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.48095703, "start": 341.49, "word": "we're" }, { "confidence": 1, "end": 341.88998, "punctuated_word": "ready", "speaker": 0, "speaker_confidence": 0.48095703, "start": 341.65, "word": "ready" }, { "confidence": 1, "end": 341.97, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.48095703, "start": 341.88998, "word": "to" }, { "confidence": 1, "end": 342.12997, "punctuated_word": "move", "speaker": 0, "speaker_confidence": 1, "start": 341.97, "word": "move" }, { "confidence": 0.98291016, "end": 342.28998, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 1, "start": 342.12997, "word": "on" }, { "confidence": 0.9980469, "end": 342.44998, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 342.28998, "word": "to" }, { "confidence": 1, "end": 342.53, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 342.44998, "word": "the" }, { "confidence": 0.99609375, "end": 342.77, "punctuated_word": "front", "speaker": 0, "speaker_confidence": 1, "start": 342.53, "word": "front" }, { "confidence": 0.9819336, "end": 342.93, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 1, "start": 342.77, "word": "end" }, { "confidence": 0.9980469, "end": 343.16998, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 1, "start": 342.93, "word": "code" }, { "confidence": 0.9951172, "end": 343.40997, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 343.16998, "word": "in" }, { "confidence": 1, "end": 343.56998, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 1, "start": 343.40997, "word": "our" }, { "confidence": 0.9951172, "end": 343.81, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 1, "start": 343.56998, "word": "app" }, { "confidence": 0.99902344, "end": 344.28998, "punctuated_word": "directory", "speaker": 0, "speaker_confidence": 1, "start": 343.81, "word": "directory" }, { "confidence": 0.9995117, "end": 344.78998, "punctuated_word": "here.", "speaker": 0, "speaker_confidence": 1, "start": 344.28998, "word": "here" }, { "confidence": 1, "end": 345.09, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 1, "start": 344.93, "word": "if" }, { "confidence": 1, "end": 345.25, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 1, "start": 345.09, "word": "we" }, { "confidence": 1, "end": 345.49, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 1, "start": 345.25, "word": "open" }, { "confidence": 1, "end": 345.56998, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 1, "start": 345.49, "word": "up" }, { "confidence": 1, "end": 345.81, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 345.56998, "word": "the" }, { "confidence": 0.9951172, "end": 346.21, "punctuated_word": "index", "speaker": 0, "speaker_confidence": 1, "start": 345.81, "word": "index" }, { "confidence": 0.91015625, "end": 346.69, "punctuated_word": "HTML", "speaker": 0, "speaker_confidence": 1, "start": 346.21, "word": "html" }, { "confidence": 0.99902344, "end": 347.19, "punctuated_word": "file,", "speaker": 0, "speaker_confidence": 1, "start": 346.69, "word": "file" }, { "confidence": 0.99853516, "end": 347.355, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 1, "start": 347.195, "word": "you'll" }, { "confidence": 1, "end": 347.515, "punctuated_word": "notice", "speaker": 0, "speaker_confidence": 1, "start": 347.355, "word": "notice" }, { "confidence": 0.9970703, "end": 347.67502, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 1, "start": 347.515, "word": "i" }, { "confidence": 1, "end": 347.995, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 1, "start": 347.67502, "word": "have" }, { "confidence": 1, "end": 348.155, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 347.995, "word": "a" }, { "confidence": 0.99902344, "end": 348.475, "punctuated_word": "script", "speaker": 0, "speaker_confidence": 1, "start": 348.155, "word": "script" }, { "confidence": 0.9951172, "end": 348.715, "punctuated_word": "tag", "speaker": 0, "speaker_confidence": 1, "start": 348.475, "word": "tag" }, { "confidence": 1, "end": 349.11502, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 1, "start": 348.715, "word": "here" }, { "confidence": 0.93359375, "end": 349.515, "punctuated_word": "pointing", "speaker": 0, "speaker_confidence": 1, "start": 349.11502, "word": "pointing" }, { "confidence": 0.9980469, "end": 349.67502, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 349.515, "word": "to" }, { "confidence": 0.99609375, "end": 349.915, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 349.67502, "word": "the" }, { "confidence": 0.61816406, "end": 350.39502, "punctuated_word": "socket", "speaker": 0, "speaker_confidence": 1, "start": 349.915, "word": "socket" }, { "confidence": 0.57958984, "end": 350.555, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 1, "start": 350.39502, "word": "i" }, { "confidence": 0.6538086, "end": 350.715, "punctuated_word": "o", "speaker": 0, "speaker_confidence": 1, "start": 350.555, "word": "o" }, { "confidence": 0.91015625, "end": 351.215, "punctuated_word": "CDN", "speaker": 0, "speaker_confidence": 1, "start": 350.715, "word": "cdn" }, { "confidence": 0.9536133, "end": 351.67502, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 351.435, "word": "for" }, { "confidence": 0.9902344, "end": 352.075, "punctuated_word": "version", "speaker": 0, "speaker_confidence": 1, "start": 351.67502, "word": "version" }, { "confidence": 0.921875, "end": 352.23502, "punctuated_word": "3", "speaker": 0, "speaker_confidence": 1, "start": 352.075, "word": "3" }, { "confidence": 0.6245117, "end": 352.475, "punctuated_word": "point", "speaker": 0, "speaker_confidence": 1, "start": 352.23502, "word": "point" }, { "confidence": 0.9926758, "end": 352.975, "punctuated_word": "o.", "speaker": 0, "speaker_confidence": 1, "start": 352.475, "word": "o" }, { "confidence": 0.99853516, "end": 353.435, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 1, "start": 353.195, "word": "it's" }, { "confidence": 1, "end": 353.67502, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 1, "start": 353.435, "word": "very" }, { "confidence": 1, "end": 353.995, "punctuated_word": "important", "speaker": 0, "speaker_confidence": 1, "start": 353.67502, "word": "important" }, { "confidence": 0.99902344, "end": 354.155, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 353.995, "word": "to" }, { "confidence": 1, "end": 354.655, "punctuated_word": "understand", "speaker": 0, "speaker_confidence": 1, "start": 354.155, "word": "understand" }, { "confidence": 0.99902344, "end": 355.11502, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 354.795, "word": "that" }, { "confidence": 0.9428711, "end": 355.515, "punctuated_word": "socket", "speaker": 0, "speaker_confidence": 1, "start": 355.11502, "word": "socket" }, { "confidence": 0.94921875, "end": 355.67502, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 1, "start": 355.515, "word": "i" }, { "confidence": 0.98291016, "end": 355.915, "punctuated_word": "o", "speaker": 0, "speaker_confidence": 1, "start": 355.67502, "word": "o" }, { "confidence": 0.99902344, "end": 356.075, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 355.915, "word": "is" }, { "confidence": 1, "end": 356.39502, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 1, "start": 356.075, "word": "not" }, { "confidence": 1, "end": 356.635, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 356.39502, "word": "a" }, { "confidence": 0.99902344, "end": 357.06, "punctuated_word": "direct", "speaker": 0, "speaker_confidence": 1, "start": 356.635, "word": "direct" }, { "confidence": 0.93774414, "end": 357.7, "punctuated_word": "WebSocket", "speaker": 0, "speaker_confidence": 1, "start": 357.22, "word": "websocket" }, { "confidence": 0.93481445, "end": 358.2, "punctuated_word": "implementation,", "speaker": 0, "speaker_confidence": 1, "start": 357.7, "word": "implementation" }, { "confidence": 1, "end": 358.98, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 1, "start": 358.74, "word": "which" }, { "confidence": 1, "end": 359.13998, "punctuated_word": "means", "speaker": 0, "speaker_confidence": 1, "start": 358.98, "word": "means" }, { "confidence": 0.9980469, "end": 359.38, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 359.13998, "word": "you" }, { "confidence": 1, "end": 359.62, "punctuated_word": "can't", "speaker": 0, "speaker_confidence": 1, "start": 359.38, "word": "can't" }, { "confidence": 0.99902344, "end": 359.86, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 1, "start": 359.62, "word": "just" }, { "confidence": 0.99121094, "end": 360.18, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 1, "start": 359.86, "word": "use" }, { "confidence": 1, "end": 360.34, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 360.18, "word": "the" }, { "confidence": 0.99609375, "end": 360.66, "punctuated_word": "built", "speaker": 0, "speaker_confidence": 1, "start": 360.34, "word": "built" }, { "confidence": 0.98535156, "end": 360.9, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 360.66, "word": "in" }, { "confidence": 0.9885254, "end": 361.4, "punctuated_word": "WebSocket", "speaker": 0, "speaker_confidence": 1, "start": 360.9, "word": "websocket" }, { "confidence": 0.97998047, "end": 361.94, "punctuated_word": "class", "speaker": 0, "speaker_confidence": 1, "start": 361.62, "word": "class" }, { "confidence": 0.9589844, "end": 362.1, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 361.94, "word": "in" }, { "confidence": 0.9951172, "end": 362.18, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 362.1, "word": "the" }, { "confidence": 0.9946289, "end": 362.68, "punctuated_word": "browser.", "speaker": 0, "speaker_confidence": 1, "start": 362.18, "word": "browser" }, { "confidence": 0.9995117, "end": 363.8, "punctuated_word": "Instead,", "speaker": 0, "speaker_confidence": 1, "start": 363.3, "word": "instead" }, { "confidence": 1, "end": 364.02, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 363.86, "word": "you" }, { "confidence": 1, "end": 364.18, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 1, "start": 364.02, "word": "have" }, { "confidence": 1, "end": 364.26, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.83691406, "start": 364.18, "word": "to" }, { "confidence": 1, "end": 364.5, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.83691406, "start": 364.26, "word": "use" }, { "confidence": 0.9980469, "end": 364.58, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.83691406, "start": 364.5, "word": "the" }, { "confidence": 0.70214844, "end": 365.06, "punctuated_word": "socket", "speaker": 0, "speaker_confidence": 0.83691406, "start": 364.58, "word": "socket" }, { "confidence": 0.56152344, "end": 365.3, "punctuated_word": "IO", "speaker": 0, "speaker_confidence": 0.83691406, "start": 365.06, "word": "io" }, { "confidence": 0.98535156, "end": 365.7, "punctuated_word": "client", "speaker": 0, "speaker_confidence": 0.83691406, "start": 365.3, "word": "client" }, { "confidence": 0.9941406, "end": 366.1, "punctuated_word": "library,", "speaker": 0, "speaker_confidence": 0.83691406, "start": 365.7, "word": "library" }, { "confidence": 0.80322266, "end": 366.295, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.83691406, "start": 366.1, "word": "which" }, { "confidence": 1, "end": 366.45502, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.83691406, "start": 366.295, "word": "which" }, { "confidence": 0.99902344, "end": 366.61502, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.83691406, "start": 366.45502, "word": "we're" }, { "confidence": 1, "end": 366.695, "punctuated_word": "doing", "speaker": 0, "speaker_confidence": 0.83691406, "start": 366.61502, "word": "doing" }, { "confidence": 1, "end": 367.015, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0.83691406, "start": 366.695, "word": "here" }, { "confidence": 0.97265625, "end": 367.255, "punctuated_word": "through", "speaker": 0, "speaker_confidence": 0.83691406, "start": 367.015, "word": "through" }, { "confidence": 0.9770508, "end": 367.33502, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8876953, "start": 367.255, "word": "the" }, { "confidence": 0.9941406, "end": 367.83502, "punctuated_word": "CDN,", "speaker": 0, "speaker_confidence": 0.8876953, "start": 367.33502, "word": "cdn" }, { "confidence": 0.99902344, "end": 368.135, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.8876953, "start": 367.975, "word": "but" }, { "confidence": 1, "end": 368.21503, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.8876953, "start": 368.135, "word": "you" }, { "confidence": 0.9921875, "end": 368.375, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.8876953, "start": 368.21503, "word": "can" }, { "confidence": 1, "end": 368.77502, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.8876953, "start": 368.375, "word": "also" }, { "confidence": 1, "end": 369.095, "punctuated_word": "install", "speaker": 0, "speaker_confidence": 0.8876953, "start": 368.77502, "word": "install" }, { "confidence": 1, "end": 369.255, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8876953, "start": 369.095, "word": "it" }, { "confidence": 1, "end": 369.49503, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.8876953, "start": 369.255, "word": "with" }, { "confidence": 0.8378906, "end": 369.99503, "punctuated_word": "NPM", "speaker": 0, "speaker_confidence": 0.8876953, "start": 369.49503, "word": "npm" }, { "confidence": 0.92578125, "end": 370.375, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8876953, "start": 370.135, "word": "and" }, { "confidence": 1, "end": 370.77502, "punctuated_word": "bundle", "speaker": 0, "speaker_confidence": 0.8876953, "start": 370.375, "word": "bundle" }, { "confidence": 0.99121094, "end": 370.855, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8876953, "start": 370.77502, "word": "it" }, { "confidence": 0.9902344, "end": 371.095, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.8876953, "start": 370.855, "word": "into" }, { "confidence": 0.99902344, "end": 371.255, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.8876953, "start": 371.095, "word": "your" }, { "confidence": 1, "end": 371.655, "punctuated_word": "project", "speaker": 0, "speaker_confidence": 0.8876953, "start": 371.255, "word": "project" }, { "confidence": 0.91748047, "end": 371.815, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.8876953, "start": 371.655, "word": "if" }, { "confidence": 0.99658203, "end": 371.89502, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.71435547, "start": 371.815, "word": "you're" }, { "confidence": 1, "end": 372.21503, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.71435547, "start": 371.89502, "word": "using" }, { "confidence": 1, "end": 372.535, "punctuated_word": "something", "speaker": 0, "speaker_confidence": 0.71435547, "start": 372.21503, "word": "something" }, { "confidence": 0.9892578, "end": 372.77502, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.71435547, "start": 372.535, "word": "like" }, { "confidence": 0.9633789, "end": 373.095, "punctuated_word": "React", "speaker": 0, "speaker_confidence": 0.71435547, "start": 372.77502, "word": "react" }, { "confidence": 0.95947266, "end": 373.255, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.71435547, "start": 373.095, "word": "or" }, { "confidence": 0.9995117, "end": 373.755, "punctuated_word": "Angular.", "speaker": 0, "speaker_confidence": 0.71435547, "start": 373.255, "word": "angular" }, { "confidence": 1, "end": 374.46, "punctuated_word": "After", "speaker": 0, "speaker_confidence": 0.90625, "start": 374.3, "word": "after" }, { "confidence": 0.9980469, "end": 374.78, "punctuated_word": "that,", "speaker": 0, "speaker_confidence": 0.90625, "start": 374.46, "word": "that" }, { "confidence": 1, "end": 374.94, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.90625, "start": 374.78, "word": "we" }, { "confidence": 1, "end": 375.1, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.90625, "start": 374.94, "word": "have" }, { "confidence": 0.9970703, "end": 375.26, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.90625, "start": 375.1, "word": "a" }, { "confidence": 1, "end": 375.58, "punctuated_word": "script", "speaker": 0, "speaker_confidence": 0.90625, "start": 375.26, "word": "script" }, { "confidence": 0.9921875, "end": 375.9, "punctuated_word": "pointing", "speaker": 0, "speaker_confidence": 0.90625, "start": 375.58, "word": "pointing" }, { "confidence": 0.9980469, "end": 376.13998, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.90625, "start": 375.9, "word": "to" }, { "confidence": 0.99902344, "end": 376.3, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.90625, "start": 376.13998, "word": "the" }, { "confidence": 0.9326172, "end": 376.46, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.90625, "start": 376.3, "word": "app" }, { "confidence": 0.5913086, "end": 376.96, "punctuated_word": "dotjs", "speaker": 0, "speaker_confidence": 0.90625, "start": 376.46, "word": "dotjs" }, { "confidence": 0.97265625, "end": 377.41998, "punctuated_word": "file,", "speaker": 0, "speaker_confidence": 0.90625, "start": 377.1, "word": "file" }, { "confidence": 1, "end": 377.66, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.90625, "start": 377.41998, "word": "which" }, { "confidence": 1, "end": 377.82, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.90625, "start": 377.66, "word": "is" }, { "confidence": 1, "end": 378.06, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.90625, "start": 377.82, "word": "our" }, { "confidence": 0.9941406, "end": 378.38, "punctuated_word": "custom", "speaker": 0, "speaker_confidence": 0.90625, "start": 378.06, "word": "custom" }, { "confidence": 1, "end": 378.62, "punctuated_word": "source", "speaker": 0, "speaker_confidence": 0.90625, "start": 378.38, "word": "source" }, { "confidence": 0.9108887, "end": 379.12, "punctuated_word": "code,", "speaker": 0, "speaker_confidence": 0.90625, "start": 378.62, "word": "code" }, { "confidence": 1, "end": 379.41998, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.90625, "start": 379.18, "word": "and" }, { "confidence": 1, "end": 379.5, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.90625, "start": 379.41998, "word": "i'm" }, { "confidence": 1, "end": 379.74, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.90625, "start": 379.5, "word": "using" }, { "confidence": 0.99609375, "end": 379.9, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.90625, "start": 379.74, "word": "the" }, { "confidence": 0.90527344, "end": 380.22, "punctuated_word": "defer", "speaker": 0, "speaker_confidence": 0.90625, "start": 379.9, "word": "defer" }, { "confidence": 0.99902344, "end": 380.72, "punctuated_word": "attribute", "speaker": 0, "speaker_confidence": 0.90625, "start": 380.22, "word": "attribute" }, { "confidence": 1, "end": 380.86, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7421875, "start": 380.78, "word": "to" }, { "confidence": 1, "end": 381.02, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.7421875, "start": 380.86, "word": "make" }, { "confidence": 1, "end": 381.26, "punctuated_word": "sure", "speaker": 0, "speaker_confidence": 0.7421875, "start": 381.02, "word": "sure" }, { "confidence": 1, "end": 381.41998, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.7421875, "start": 381.26, "word": "it" }, { "confidence": 1, "end": 381.66, "punctuated_word": "loads", "speaker": 0, "speaker_confidence": 0.7421875, "start": 381.41998, "word": "loads" }, { "confidence": 0.99902344, "end": 381.9, "punctuated_word": "after", "speaker": 0, "speaker_confidence": 0.7421875, "start": 381.66, "word": "after" }, { "confidence": 1, "end": 382.06, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7421875, "start": 381.9, "word": "the" }, { "confidence": 1, "end": 382.38, "punctuated_word": "body", "speaker": 0, "speaker_confidence": 0.7421875, "start": 382.06, "word": "body" }, { "confidence": 0.9995117, "end": 382.88, "punctuated_word": "content.", "speaker": 0, "speaker_confidence": 0.7421875, "start": 382.38, "word": "content" }, { "confidence": 0.9970703, "end": 383.415, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.56933594, "start": 383.255, "word": "then" }, { "confidence": 0.9941406, "end": 383.655, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.56933594, "start": 383.415, "word": "in" }, { "confidence": 0.9902344, "end": 383.895, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.56933594, "start": 383.655, "word": "the" }, { "confidence": 1, "end": 384.215, "punctuated_word": "body", "speaker": 0, "speaker_confidence": 0.56933594, "start": 383.895, "word": "body" }, { "confidence": 0.90966797, "end": 384.695, "punctuated_word": "itself,", "speaker": 0, "speaker_confidence": 0.56933594, "start": 384.215, "word": "itself" }, { "confidence": 1, "end": 384.775, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.71191406, "start": 384.695, "word": "i" }, { "confidence": 1, "end": 385.01498, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.71191406, "start": 384.775, "word": "have" }, { "confidence": 0.9980469, "end": 385.255, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.71191406, "start": 385.01498, "word": "an" }, { "confidence": 0.9946289, "end": 385.755, "punctuated_word": "unordered", "speaker": 0, "speaker_confidence": 0.71191406, "start": 385.255, "word": "unordered" }, { "confidence": 0.97802734, "end": 386.135, "punctuated_word": "list,", "speaker": 0, "speaker_confidence": 0.71191406, "start": 385.815, "word": "list" }, { "confidence": 1, "end": 386.375, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.71191406, "start": 386.135, "word": "which" }, { "confidence": 1, "end": 386.455, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.71191406, "start": 386.375, "word": "is" }, { "confidence": 1, "end": 386.775, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.71191406, "start": 386.455, "word": "where" }, { "confidence": 0.9980469, "end": 386.855, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.71191406, "start": 386.775, "word": "our" }, { "confidence": 0.99902344, "end": 387.095, "punctuated_word": "chat", "speaker": 0, "speaker_confidence": 0.59277344, "start": 386.855, "word": "chat" }, { "confidence": 1, "end": 387.495, "punctuated_word": "messages", "speaker": 0, "speaker_confidence": 0.59277344, "start": 387.095, "word": "messages" }, { "confidence": 1, "end": 387.735, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.59277344, "start": 387.495, "word": "will" }, { "confidence": 0.82836914, "end": 388.235, "punctuated_word": "appear.", "speaker": 0, "speaker_confidence": 0.59277344, "start": 387.735, "word": "appear" }, { "confidence": 0.9980469, "end": 388.535, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.74316406, "start": 388.375, "word": "and" }, { "confidence": 0.9970703, "end": 388.695, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.74316406, "start": 388.535, "word": "then" }, { "confidence": 0.9921875, "end": 388.935, "punctuated_word": "below", "speaker": 0, "speaker_confidence": 0.74316406, "start": 388.695, "word": "below" }, { "confidence": 0.9592285, "end": 389.095, "punctuated_word": "that,", "speaker": 0, "speaker_confidence": 0.74316406, "start": 388.935, "word": "that" }, { "confidence": 1, "end": 389.255, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.74316406, "start": 389.095, "word": "i" }, { "confidence": 1, "end": 389.415, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.74316406, "start": 389.255, "word": "have" }, { "confidence": 0.9980469, "end": 389.575, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.74316406, "start": 389.415, "word": "an" }, { "confidence": 1, "end": 390.055, "punctuated_word": "input", "speaker": 0, "speaker_confidence": 0.74316406, "start": 389.575, "word": "input" }, { "confidence": 1, "end": 390.29498, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.74316406, "start": 390.055, "word": "for" }, { "confidence": 1, "end": 390.375, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.74316406, "start": 390.29498, "word": "the" }, { "confidence": 1, "end": 390.775, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 0.74316406, "start": 390.375, "word": "user" }, { "confidence": 0.99902344, "end": 390.935, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.74316406, "start": 390.775, "word": "to" }, { "confidence": 1, "end": 391.175, "punctuated_word": "type", "speaker": 0, "speaker_confidence": 0.74316406, "start": 390.935, "word": "type" }, { "confidence": 0.7895508, "end": 391.255, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9863281, "start": 391.175, "word": "a" }, { "confidence": 1, "end": 391.755, "punctuated_word": "message", "speaker": 0, "speaker_confidence": 0.9863281, "start": 391.255, "word": "message" }, { "confidence": 0.9291992, "end": 392.24, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9863281, "start": 392, "word": "and" }, { "confidence": 1, "end": 392.32, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9863281, "start": 392.24, "word": "a" }, { "confidence": 1, "end": 392.72, "punctuated_word": "button", "speaker": 0, "speaker_confidence": 0.9863281, "start": 392.32, "word": "button" }, { "confidence": 1, "end": 392.88, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9863281, "start": 392.72, "word": "to" }, { "confidence": 0.9980469, "end": 393.12, "punctuated_word": "send", "speaker": 0, "speaker_confidence": 0.9863281, "start": 392.88, "word": "send" }, { "confidence": 0.7504883, "end": 393.52, "punctuated_word": "it,", "speaker": 0, "speaker_confidence": 0.9863281, "start": 393.12, "word": "it" }, { "confidence": 0.99902344, "end": 393.68, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9863281, "start": 393.52, "word": "and" }, { "confidence": 0.9951172, "end": 393.91998, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 0.9863281, "start": 393.68, "word": "now" }, { "confidence": 0.99316406, "end": 394, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.9863281, "start": 393.91998, "word": "we" }, { "confidence": 1, "end": 394.16, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9863281, "start": 394, "word": "can" }, { "confidence": 1, "end": 394.32, "punctuated_word": "move", "speaker": 0, "speaker_confidence": 0.9863281, "start": 394.16, "word": "move" }, { "confidence": 1, "end": 394.48, "punctuated_word": "over", "speaker": 0, "speaker_confidence": 0.9863281, "start": 394.32, "word": "over" }, { "confidence": 1, "end": 394.63998, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9863281, "start": 394.48, "word": "to" }, { "confidence": 1, "end": 394.88, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.9863281, "start": 394.63998, "word": "our" }, { "confidence": 0.95166016, "end": 395.36, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.9863281, "start": 394.88, "word": "javascript" }, { "confidence": 0.99902344, "end": 395.86, "punctuated_word": "file.", "speaker": 0, "speaker_confidence": 0.9863281, "start": 395.36, "word": "file" }, { "confidence": 1, "end": 396.16, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.9863281, "start": 395.91998, "word": "the" }, { "confidence": 0.69921875, "end": 396.56, "punctuated_word": "IO", "speaker": 0, "speaker_confidence": 0.9863281, "start": 396.16, "word": "io" }, { "confidence": 0.98828125, "end": 397.06, "punctuated_word": "object", "speaker": 0, "speaker_confidence": 0.9863281, "start": 396.56, "word": "object" }, { "confidence": 1, "end": 397.36, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.9863281, "start": 397.12, "word": "will" }, { "confidence": 1, "end": 397.52, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 0.9863281, "start": 397.36, "word": "now" }, { "confidence": 1, "end": 397.76, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.9863281, "start": 397.52, "word": "be" }, { "confidence": 1, "end": 398.24, "punctuated_word": "globally", "speaker": 0, "speaker_confidence": 0.9863281, "start": 397.76, "word": "globally" }, { "confidence": 1, "end": 398.63998, "punctuated_word": "available", "speaker": 0, "speaker_confidence": 0.9863281, "start": 398.24, "word": "available" }, { "confidence": 1, "end": 398.8, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9863281, "start": 398.63998, "word": "in" }, { "confidence": 1, "end": 398.96, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9863281, "start": 398.8, "word": "the" }, { "confidence": 0.9633789, "end": 399.36, "punctuated_word": "browser,", "speaker": 0, "speaker_confidence": 0.9863281, "start": 398.96, "word": "browser" }, { "confidence": 1, "end": 399.6, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.9863281, "start": 399.36, "word": "which" }, { "confidence": 1, "end": 399.76, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9863281, "start": 399.6, "word": "is" }, { "confidence": 1, "end": 399.91998, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9863281, "start": 399.76, "word": "the" }, { "confidence": 0.60009766, "end": 400.4, "punctuated_word": "socket", "speaker": 0, "speaker_confidence": 0.9863281, "start": 399.91998, "word": "socket" }, { "confidence": 0.6479492, "end": 400.72, "punctuated_word": "IO", "speaker": 0, "speaker_confidence": 0.9863281, "start": 400.4, "word": "io" }, { "confidence": 0.9921875, "end": 401.12, "punctuated_word": "client", "speaker": 0, "speaker_confidence": 0.9863281, "start": 400.72, "word": "client" }, { "confidence": 0.99902344, "end": 401.62, "punctuated_word": "library.", "speaker": 0, "speaker_confidence": 0.9863281, "start": 401.12, "word": "library" }, { "confidence": 1, "end": 401.95502, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.890625, "start": 401.875, "word": "we" }, { "confidence": 1, "end": 402.195, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.890625, "start": 401.95502, "word": "can" }, { "confidence": 1, "end": 402.27502, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.890625, "start": 402.195, "word": "create" }, { "confidence": 0.9716797, "end": 402.515, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.890625, "start": 402.27502, "word": "the" }, { "confidence": 1, "end": 403.015, "punctuated_word": "connection", "speaker": 0, "speaker_confidence": 0.890625, "start": 402.515, "word": "connection" }, { "confidence": 1, "end": 403.475, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.890625, "start": 403.23502, "word": "by" }, { "confidence": 1, "end": 403.71503, "punctuated_word": "pointing", "speaker": 0, "speaker_confidence": 0.890625, "start": 403.475, "word": "pointing" }, { "confidence": 1, "end": 403.95502, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.890625, "start": 403.71503, "word": "to" }, { "confidence": 1, "end": 404.11502, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.890625, "start": 403.95502, "word": "the" }, { "confidence": 0.99609375, "end": 404.595, "punctuated_word": "URL", "speaker": 0, "speaker_confidence": 0.890625, "start": 404.11502, "word": "url" }, { "confidence": 1, "end": 404.83502, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.890625, "start": 404.595, "word": "of" }, { "confidence": 1, "end": 405.075, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.890625, "start": 404.83502, "word": "our" }, { "confidence": 0.98999023, "end": 405.475, "punctuated_word": "server,", "speaker": 0, "speaker_confidence": 0.890625, "start": 405.075, "word": "server" }, { "confidence": 1, "end": 405.635, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.890625, "start": 405.475, "word": "which" }, { "confidence": 1, "end": 405.795, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.890625, "start": 405.635, "word": "is" }, { "confidence": 0.99902344, "end": 406.11502, "punctuated_word": "local", "speaker": 0, "speaker_confidence": 0.890625, "start": 405.795, "word": "local" }, { "confidence": 0.9326172, "end": 406.43503, "punctuated_word": "host", "speaker": 0, "speaker_confidence": 0.890625, "start": 406.11502, "word": "host" }, { "confidence": 0.7838542, "end": 406.93503, "punctuated_word": "8080.", "speaker": 0, "speaker_confidence": 0.890625, "start": 406.43503, "word": "8080" }, { "confidence": 0.99902344, "end": 407.315, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.9736328, "start": 407.155, "word": "and" }, { "confidence": 0.9760742, "end": 407.475, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 0.9736328, "start": 407.315, "word": "now" }, { "confidence": 0.9650879, "end": 407.635, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.9736328, "start": 407.475, "word": "we're" }, { "confidence": 1, "end": 407.875, "punctuated_word": "ready", "speaker": 0, "speaker_confidence": 0.9736328, "start": 407.635, "word": "ready" }, { "confidence": 1, "end": 408.035, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9736328, "start": 407.875, "word": "to" }, { "confidence": 1, "end": 408.355, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 0.9736328, "start": 408.035, "word": "start" }, { "confidence": 1, "end": 408.67502, "punctuated_word": "listening", "speaker": 0, "speaker_confidence": 0.9736328, "start": 408.355, "word": "listening" }, { "confidence": 1, "end": 408.83502, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9736328, "start": 408.67502, "word": "to" }, { "confidence": 0.9511719, "end": 409.29, "punctuated_word": "events.", "speaker": 0, "speaker_confidence": 0.9736328, "start": 408.83502, "word": "events" }, { "confidence": 1, "end": 409.53, "punctuated_word": "By", "speaker": 0, "speaker_confidence": 0.9736328, "start": 409.37, "word": "by" }, { "confidence": 1, "end": 409.93002, "punctuated_word": "calling", "speaker": 0, "speaker_confidence": 0.9736328, "start": 409.53, "word": "calling" }, { "confidence": 0.99121094, "end": 410.41, "punctuated_word": "socket", "speaker": 0, "speaker_confidence": 0.9736328, "start": 409.93002, "word": "socket" }, { "confidence": 0.9140625, "end": 410.91, "punctuated_word": "on,", "speaker": 0, "speaker_confidence": 0.9736328, "start": 410.41, "word": "on" }, { "confidence": 1, "end": 411.13, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.9736328, "start": 410.97, "word": "we" }, { "confidence": 1, "end": 411.29, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9736328, "start": 411.13, "word": "can" }, { "confidence": 1, "end": 411.61002, "punctuated_word": "listen", "speaker": 0, "speaker_confidence": 0.9736328, "start": 411.29, "word": "listen" }, { "confidence": 1, "end": 411.77002, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9736328, "start": 411.61002, "word": "to" }, { "confidence": 1, "end": 411.85, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9736328, "start": 411.77002, "word": "the" }, { "confidence": 0.99902344, "end": 412.33002, "punctuated_word": "message", "speaker": 0, "speaker_confidence": 0.9736328, "start": 411.85, "word": "message" }, { "confidence": 0.99121094, "end": 412.65, "punctuated_word": "event", "speaker": 0, "speaker_confidence": 0.9736328, "start": 412.33002, "word": "event" }, { "confidence": 0.8984375, "end": 413.05002, "punctuated_word": "emitted", "speaker": 0, "speaker_confidence": 0.9736328, "start": 412.65, "word": "emitted" }, { "confidence": 1, "end": 413.21002, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.9736328, "start": 413.05002, "word": "by" }, { "confidence": 0.9770508, "end": 413.37, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9736328, "start": 413.21002, "word": "the" }, { "confidence": 0.8359375, "end": 413.85, "punctuated_word": "server,", "speaker": 0, "speaker_confidence": 0.9736328, "start": 413.37, "word": "server" }, { "confidence": 1, "end": 414.09, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9736328, "start": 413.85, "word": "and" }, { "confidence": 1, "end": 414.17, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.9736328, "start": 414.09, "word": "we" }, { "confidence": 1, "end": 414.33002, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9736328, "start": 414.17, "word": "can" }, { "confidence": 1, "end": 414.57, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.9736328, "start": 414.33002, "word": "use" }, { "confidence": 0.9980469, "end": 414.73, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.9736328, "start": 414.57, "word": "some" }, { "confidence": 0.9980469, "end": 415.21002, "punctuated_word": "imperative", "speaker": 0, "speaker_confidence": 0.9736328, "start": 414.73, "word": "imperative" }, { "confidence": 0.9863281, "end": 415.69, "punctuated_word": "browser", "speaker": 0, "speaker_confidence": 0.9736328, "start": 415.21002, "word": "browser" }, { "confidence": 0.93408203, "end": 416.17, "punctuated_word": "APIs", "speaker": 0, "speaker_confidence": 0.9736328, "start": 415.69, "word": "apis" }, { "confidence": 0.99902344, "end": 416.49002, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0.9736328, "start": 416.17, "word": "here" }, { "confidence": 1, "end": 416.57, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9736328, "start": 416.49002, "word": "to" }, { "confidence": 1, "end": 416.81, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.9736328, "start": 416.57, "word": "create" }, { "confidence": 1, "end": 416.89, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9736328, "start": 416.81, "word": "a" }, { "confidence": 0.99902344, "end": 417.13, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.9736328, "start": 416.89, "word": "new" }, { "confidence": 1, "end": 417.29, "punctuated_word": "list", "speaker": 0, "speaker_confidence": 0.9736328, "start": 417.13, "word": "list" }, { "confidence": 0.9980469, "end": 417.61002, "punctuated_word": "item", "speaker": 0, "speaker_confidence": 0.9736328, "start": 417.29, "word": "item" }, { "confidence": 1, "end": 418.11002, "punctuated_word": "element", "speaker": 0, "speaker_confidence": 0.9736328, "start": 417.61002, "word": "element" }, { "confidence": 1, "end": 418.685, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.84716797, "start": 418.60498, "word": "and" }, { "confidence": 1, "end": 418.925, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.84716797, "start": 418.685, "word": "then" }, { "confidence": 0.9941406, "end": 419.32498, "punctuated_word": "append", "speaker": 0, "speaker_confidence": 0.84716797, "start": 418.925, "word": "append" }, { "confidence": 1, "end": 419.565, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.84716797, "start": 419.32498, "word": "that" }, { "confidence": 1, "end": 419.965, "punctuated_word": "item", "speaker": 0, "speaker_confidence": 0.84716797, "start": 419.565, "word": "item" }, { "confidence": 1, "end": 420.205, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.84716797, "start": 419.965, "word": "to" }, { "confidence": 1, "end": 420.445, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.84716797, "start": 420.205, "word": "the" }, { "confidence": 0.9995117, "end": 420.925, "punctuated_word": "unordered", "speaker": 0, "speaker_confidence": 0.84716797, "start": 420.445, "word": "unordered" }, { "confidence": 0.9980469, "end": 421.085, "punctuated_word": "list", "speaker": 0, "speaker_confidence": 0.84716797, "start": 420.925, "word": "list" }, { "confidence": 0.99902344, "end": 421.245, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.84716797, "start": 421.085, "word": "in" }, { "confidence": 1, "end": 421.485, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.84716797, "start": 421.245, "word": "our" }, { "confidence": 0.76538086, "end": 421.985, "punctuated_word": "HTML,", "speaker": 0, "speaker_confidence": 0.84716797, "start": 421.485, "word": "html" }, { "confidence": 0.99902344, "end": 422.365, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7128906, "start": 422.205, "word": "and" }, { "confidence": 1, "end": 422.60498, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.7128906, "start": 422.365, "word": "that's" }, { "confidence": 1, "end": 422.685, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.7128906, "start": 422.60498, "word": "all" }, { "confidence": 1, "end": 422.845, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.7128906, "start": 422.685, "word": "it" }, { "confidence": 1, "end": 423.165, "punctuated_word": "takes", "speaker": 0, "speaker_confidence": 0.7128906, "start": 422.845, "word": "takes" }, { "confidence": 1, "end": 423.32498, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7128906, "start": 423.165, "word": "to" }, { "confidence": 1, "end": 423.485, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.7128906, "start": 423.32498, "word": "create" }, { "confidence": 1, "end": 423.645, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7128906, "start": 423.485, "word": "a" }, { "confidence": 0.9970703, "end": 423.88498, "punctuated_word": "feed", "speaker": 0, "speaker_confidence": 0.7128906, "start": 423.645, "word": "feed" }, { "confidence": 1, "end": 423.965, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.79052734, "start": 423.88498, "word": "of" }, { "confidence": 1, "end": 424.445, "punctuated_word": "messages", "speaker": 0, "speaker_confidence": 0.79052734, "start": 423.965, "word": "messages" }, { "confidence": 0.99902344, "end": 424.525, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.79052734, "start": 424.445, "word": "in" }, { "confidence": 0.9941406, "end": 424.685, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.79052734, "start": 424.525, "word": "the" }, { "confidence": 0.99658203, "end": 425.185, "punctuated_word": "UI.", "speaker": 0, "speaker_confidence": 0.79052734, "start": 424.685, "word": "ui" }, { "confidence": 0.99902344, "end": 425.565, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.79052734, "start": 425.405, "word": "the" }, { "confidence": 1, "end": 425.725, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.79052734, "start": 425.565, "word": "only" }, { "confidence": 0.99902344, "end": 425.965, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.79052734, "start": 425.725, "word": "thing" }, { "confidence": 0.9980469, "end": 426.125, "punctuated_word": "left", "speaker": 0, "speaker_confidence": 0.79052734, "start": 425.965, "word": "left" }, { "confidence": 0.9980469, "end": 426.205, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.66259766, "start": 426.125, "word": "to" }, { "confidence": 1, "end": 426.445, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.66259766, "start": 426.205, "word": "do" }, { "confidence": 0.99902344, "end": 426.685, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.66259766, "start": 426.445, "word": "is" }, { "confidence": 1, "end": 426.845, "punctuated_word": "give", "speaker": 0, "speaker_confidence": 0.66259766, "start": 426.685, "word": "give" }, { "confidence": 0.9707031, "end": 426.925, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.66259766, "start": 426.845, "word": "the" }, { "confidence": 1, "end": 427.245, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 0.66259766, "start": 426.925, "word": "user" }, { "confidence": 0.9970703, "end": 427.405, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.66259766, "start": 427.245, "word": "the" }, { "confidence": 0.9980469, "end": 427.805, "punctuated_word": "ability", "speaker": 0, "speaker_confidence": 0.66259766, "start": 427.405, "word": "ability" }, { "confidence": 0.984375, "end": 427.965, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.66259766, "start": 427.805, "word": "to" }, { "confidence": 0.9873047, "end": 428.205, "punctuated_word": "send", "speaker": 0, "speaker_confidence": 0.66259766, "start": 427.965, "word": "send" }, { "confidence": 0.82177734, "end": 428.285, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.66259766, "start": 428.205, "word": "a" }, { "confidence": 0.9499512, "end": 428.51, "punctuated_word": "message.", "speaker": 0, "speaker_confidence": 0.66259766, "start": 428.285, "word": "message" }, { "confidence": 0.99316406, "end": 428.99002, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.9199219, "start": 428.91, "word": "we" }, { "confidence": 1, "end": 429.15002, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9199219, "start": 428.99002, "word": "can" }, { "confidence": 1, "end": 429.55002, "punctuated_word": "handle", "speaker": 0, "speaker_confidence": 0.9199219, "start": 429.15002, "word": "handle" }, { "confidence": 1, "end": 429.87, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9199219, "start": 429.55002, "word": "that" }, { "confidence": 1, "end": 430.03, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.9199219, "start": 429.87, "word": "by" }, { "confidence": 1, "end": 430.43002, "punctuated_word": "listening", "speaker": 0, "speaker_confidence": 0.9199219, "start": 430.03, "word": "listening" }, { "confidence": 1, "end": 430.59, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9199219, "start": 430.43002, "word": "to" }, { "confidence": 1, "end": 430.75, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9199219, "start": 430.59, "word": "the" }, { "confidence": 0.99902344, "end": 431.07, "punctuated_word": "click", "speaker": 0, "speaker_confidence": 0.9199219, "start": 430.75, "word": "click" }, { "confidence": 1, "end": 431.47, "punctuated_word": "event", "speaker": 0, "speaker_confidence": 0.9199219, "start": 431.07, "word": "event" }, { "confidence": 1, "end": 431.63, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.9199219, "start": 431.47, "word": "on" }, { "confidence": 0.99902344, "end": 431.79, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9199219, "start": 431.63, "word": "a" }, { "confidence": 1, "end": 432.29, "punctuated_word": "button.", "speaker": 0, "speaker_confidence": 0.9199219, "start": 431.79, "word": "button" }, { "confidence": 1, "end": 432.91, "punctuated_word": "When", "speaker": 0, "speaker_confidence": 0.9199219, "start": 432.59, "word": "when" }, { "confidence": 0.99609375, "end": 433.31, "punctuated_word": "clicked,", "speaker": 0, "speaker_confidence": 0.9199219, "start": 432.91, "word": "clicked" }, { "confidence": 0.99902344, "end": 433.47, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.9199219, "start": 433.31, "word": "we'll" }, { "confidence": 1, "end": 433.71002, "punctuated_word": "grab", "speaker": 0, "speaker_confidence": 0.9199219, "start": 433.47, "word": "grab" }, { "confidence": 1, "end": 433.87, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9199219, "start": 433.71002, "word": "the" }, { "confidence": 1, "end": 434.35, "punctuated_word": "text", "speaker": 0, "speaker_confidence": 0.9199219, "start": 433.87, "word": "text" }, { "confidence": 0.78759766, "end": 434.59, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.9199219, "start": 434.35, "word": "or" }, { "confidence": 1, "end": 434.67, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9199219, "start": 434.59, "word": "the" }, { "confidence": 1, "end": 435.07, "punctuated_word": "value", "speaker": 0, "speaker_confidence": 0.9199219, "start": 434.67, "word": "value" }, { "confidence": 1, "end": 435.31, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.9199219, "start": 435.07, "word": "from" }, { "confidence": 1, "end": 435.47, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9199219, "start": 435.31, "word": "the" }, { "confidence": 1, "end": 435.87, "punctuated_word": "input", "speaker": 0, "speaker_confidence": 0.9199219, "start": 435.47, "word": "input" }, { "confidence": 0.9650879, "end": 436.37, "punctuated_word": "element,", "speaker": 0, "speaker_confidence": 0.9199219, "start": 435.87, "word": "element" }, { "confidence": 1, "end": 436.905, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.58154297, "start": 436.82498, "word": "and" }, { "confidence": 1, "end": 437.065, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.58154297, "start": 436.905, "word": "then" }, { "confidence": 0.99853516, "end": 437.22498, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.58154297, "start": 437.065, "word": "we'll" }, { "confidence": 1, "end": 437.54498, "punctuated_word": "call", "speaker": 0, "speaker_confidence": 0.58154297, "start": 437.22498, "word": "call" }, { "confidence": 0.9873047, "end": 437.94498, "punctuated_word": "socket", "speaker": 0, "speaker_confidence": 0.58154297, "start": 437.54498, "word": "socket" }, { "confidence": 0.97802734, "end": 438.44498, "punctuated_word": "emit", "speaker": 0, "speaker_confidence": 0.58154297, "start": 437.94498, "word": "emit" }, { "confidence": 0.98535156, "end": 438.745, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.58154297, "start": 438.50497, "word": "with" }, { "confidence": 0.9941406, "end": 438.82498, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.58154297, "start": 438.745, "word": "the" }, { "confidence": 1, "end": 439.22498, "punctuated_word": "message", "speaker": 0, "speaker_confidence": 0.8779297, "start": 438.82498, "word": "message" }, { "confidence": 0.99902344, "end": 439.72498, "punctuated_word": "event", "speaker": 0, "speaker_confidence": 0.8779297, "start": 439.22498, "word": "event" }, { "confidence": 0.99121094, "end": 440.025, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8779297, "start": 439.865, "word": "and" }, { "confidence": 0.9980469, "end": 440.185, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8779297, "start": 440.025, "word": "the" }, { "confidence": 0.9951172, "end": 440.685, "punctuated_word": "text.", "speaker": 0, "speaker_confidence": 0.8779297, "start": 440.185, "word": "text" }, { "confidence": 0.9436035, "end": 441.565, "punctuated_word": "Congratulations.", "speaker": 0, "speaker_confidence": 0.8779297, "start": 441.065, "word": "congratulations" }, { "confidence": 1, "end": 442.025, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.8779297, "start": 441.865, "word": "you" }, { "confidence": 0.99316406, "end": 442.26498, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.8779297, "start": 442.025, "word": "just" }, { "confidence": 1, "end": 442.50497, "punctuated_word": "built", "speaker": 0, "speaker_confidence": 0.8779297, "start": 442.26498, "word": "built" }, { "confidence": 1, "end": 442.66498, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8779297, "start": 442.50497, "word": "a" }, { "confidence": 0.99902344, "end": 442.905, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 0.8779297, "start": 442.66498, "word": "real" }, { "confidence": 0.9902344, "end": 443.145, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.8779297, "start": 442.905, "word": "time" }, { "confidence": 0.99902344, "end": 443.305, "punctuated_word": "chat", "speaker": 0, "speaker_confidence": 0.8779297, "start": 443.145, "word": "chat" }, { "confidence": 1, "end": 443.54498, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.89404297, "start": 443.305, "word": "app" }, { "confidence": 1, "end": 443.78497, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.89404297, "start": 443.54498, "word": "with" }, { "confidence": 0.6213379, "end": 444.26498, "punctuated_word": "socket.", "speaker": 0, "speaker_confidence": 0.89404297, "start": 443.78497, "word": "socket" }, { "confidence": 0.7626953, "end": 444.58, "punctuated_word": "Io.", "speaker": 0, "speaker_confidence": 0.89404297, "start": 444.26498, "word": "io" }, { "confidence": 0.99902344, "end": 445.22, "punctuated_word": "Obviously,", "speaker": 0, "speaker_confidence": 0.89404297, "start": 444.81998, "word": "obviously" }, { "confidence": 0.9980469, "end": 445.53998, "punctuated_word": "there's", "speaker": 0, "speaker_confidence": 0.89404297, "start": 445.22, "word": "there's" }, { "confidence": 1, "end": 445.62, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.89404297, "start": 445.53998, "word": "a" }, { "confidence": 1, "end": 445.78, "punctuated_word": "lot", "speaker": 0, "speaker_confidence": 0.89404297, "start": 445.62, "word": "lot" }, { "confidence": 1, "end": 446.02, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.89404297, "start": 445.78, "word": "more" }, { "confidence": 1, "end": 446.25998, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.89404297, "start": 446.02, "word": "to" }, { "confidence": 0.99902344, "end": 446.58, "punctuated_word": "building", "speaker": 0, "speaker_confidence": 0.89404297, "start": 446.25998, "word": "building" }, { "confidence": 0.99902344, "end": 446.81998, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 0.89404297, "start": 446.58, "word": "real" }, { "confidence": 0.99121094, "end": 447.06, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.89404297, "start": 446.81998, "word": "time" }, { "confidence": 1, "end": 447.46, "punctuated_word": "features", "speaker": 0, "speaker_confidence": 0.89404297, "start": 447.06, "word": "features" }, { "confidence": 1, "end": 447.53998, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.89404297, "start": 447.46, "word": "in" }, { "confidence": 1, "end": 447.69998, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.89404297, "start": 447.53998, "word": "the" }, { "confidence": 1, "end": 447.93997, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 0.89404297, "start": 447.69998, "word": "real" }, { "confidence": 0.99853516, "end": 448.43997, "punctuated_word": "world.", "speaker": 0, "speaker_confidence": 0.89404297, "start": 447.93997, "word": "world" }, { "confidence": 0.99902344, "end": 448.81998, "punctuated_word": "Events", "speaker": 0, "speaker_confidence": 0.89404297, "start": 448.5, "word": "events" }, { "confidence": 1, "end": 448.97998, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.89404297, "start": 448.81998, "word": "get" }, { "confidence": 0.95874023, "end": 449.47998, "punctuated_word": "emitted,", "speaker": 0, "speaker_confidence": 0.89404297, "start": 448.97998, "word": "emitted" }, { "confidence": 1, "end": 449.69998, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.89404297, "start": 449.53998, "word": "and" }, { "confidence": 1, "end": 449.78, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.92822266, "start": 449.69998, "word": "then" }, { "confidence": 0.9941406, "end": 450.02, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.92822266, "start": 449.78, "word": "you" }, { "confidence": 0.97802734, "end": 450.25998, "punctuated_word": "listen", "speaker": 0, "speaker_confidence": 0.92822266, "start": 450.02, "word": "listen" }, { "confidence": 1, "end": 450.41998, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.92822266, "start": 450.25998, "word": "to" }, { "confidence": 0.9873047, "end": 450.81998, "punctuated_word": "events", "speaker": 0, "speaker_confidence": 0.92822266, "start": 450.41998, "word": "events" }, { "confidence": 0.98535156, "end": 451.06, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.92822266, "start": 450.81998, "word": "and" }, { "confidence": 1, "end": 451.3, "punctuated_word": "handle", "speaker": 0, "speaker_confidence": 0.92822266, "start": 451.06, "word": "handle" }, { "confidence": 1, "end": 451.53998, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.92822266, "start": 451.3, "word": "them" }, { "confidence": 1, "end": 452.02, "punctuated_word": "accordingly", "speaker": 0, "speaker_confidence": 0.92822266, "start": 451.53998, "word": "accordingly" }, { "confidence": 0.9536133, "end": 452.225, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.92822266, "start": 452.02, "word": "with" }, { "confidence": 0.9995117, "end": 452.70502, "punctuated_word": "functions.", "speaker": 0, "speaker_confidence": 0.92822266, "start": 452.385, "word": "functions" }, { "confidence": 1, "end": 453.025, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.92822266, "start": 452.70502, "word": "now" }, { "confidence": 0.96435547, "end": 453.265, "punctuated_word": "before", "speaker": 0, "speaker_confidence": 0.92822266, "start": 453.025, "word": "before" }, { "confidence": 0.9941406, "end": 453.42502, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.92822266, "start": 453.265, "word": "we" }, { "confidence": 1, "end": 453.665, "punctuated_word": "finish", "speaker": 0, "speaker_confidence": 0.92822266, "start": 453.42502, "word": "finish" }, { "confidence": 0.99902344, "end": 453.825, "punctuated_word": "up,", "speaker": 0, "speaker_confidence": 0.92822266, "start": 453.665, "word": "up" }, { "confidence": 0.9926758, "end": 453.98502, "punctuated_word": "there's", "speaker": 0, "speaker_confidence": 0.92822266, "start": 453.825, "word": "there's" }, { "confidence": 0.96533203, "end": 454.14502, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.92822266, "start": 453.98502, "word": "one" }, { "confidence": 1, "end": 454.305, "punctuated_word": "last", "speaker": 0, "speaker_confidence": 0.92822266, "start": 454.14502, "word": "last" }, { "confidence": 1, "end": 454.545, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.92822266, "start": 454.305, "word": "thing" }, { "confidence": 0.99902344, "end": 454.625, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.92822266, "start": 454.545, "word": "i" }, { "confidence": 0.9394531, "end": 454.86502, "punctuated_word": "wanna", "speaker": 0, "speaker_confidence": 0.92822266, "start": 454.625, "word": "wanna" }, { "confidence": 0.99316406, "end": 455.025, "punctuated_word": "talk", "speaker": 0, "speaker_confidence": 0.92822266, "start": 454.86502, "word": "talk" }, { "confidence": 0.9406738, "end": 455.42502, "punctuated_word": "about,", "speaker": 0, "speaker_confidence": 0.92822266, "start": 455.025, "word": "about" }, { "confidence": 1, "end": 455.665, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.92822266, "start": 455.42502, "word": "and" }, { "confidence": 1, "end": 455.825, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.92822266, "start": 455.665, "word": "that's" }, { "confidence": 1, "end": 456.065, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.92822266, "start": 455.825, "word": "the" }, { "confidence": 1, "end": 456.545, "punctuated_word": "relationship", "speaker": 0, "speaker_confidence": 0.92822266, "start": 456.065, "word": "relationship" }, { "confidence": 1, "end": 456.945, "punctuated_word": "between", "speaker": 0, "speaker_confidence": 0.92822266, "start": 456.545, "word": "between" }, { "confidence": 0.9226888, "end": 457.445, "punctuated_word": "WebSockets", "speaker": 0, "speaker_confidence": 0.92822266, "start": 456.945, "word": "websockets" }, { "confidence": 0.9980469, "end": 457.98502, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.92822266, "start": 457.745, "word": "and" }, { "confidence": 0.99609375, "end": 458.305, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.92822266, "start": 457.98502, "word": "other" }, { "confidence": 0.9941406, "end": 458.785, "punctuated_word": "APIs", "speaker": 0, "speaker_confidence": 0.92822266, "start": 458.305, "word": "apis" }, { "confidence": 0.7397461, "end": 459.105, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.92822266, "start": 458.785, "word": "like" }, { "confidence": 0.9864909, "end": 459.605, "punctuated_word": "WebRTC", "speaker": 0, "speaker_confidence": 0.92822266, "start": 459.105, "word": "webrtc" }, { "confidence": 0.99902344, "end": 460.5, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.92822266, "start": 460.34, "word": "and" }, { "confidence": 1, "end": 460.58002, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.92822266, "start": 460.5, "word": "a" }, { "confidence": 1, "end": 460.74002, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.859375, "start": 460.58002, "word": "new" }, { "confidence": 1, "end": 461.24002, "punctuated_word": "experimental", "speaker": 0, "speaker_confidence": 0.859375, "start": 460.74002, "word": "experimental" }, { "confidence": 0.99902344, "end": 461.96002, "punctuated_word": "API", "speaker": 0, "speaker_confidence": 0.859375, "start": 461.46002, "word": "api" }, { "confidence": 0.9970703, "end": 462.58002, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 0.859375, "start": 462.26, "word": "called" }, { "confidence": 0.84033203, "end": 463.08002, "punctuated_word": "WebTransport.", "speaker": 0, "speaker_confidence": 0.859375, "start": 462.58002, "word": "webtransport" }, { "confidence": 0.87353516, "end": 463.86002, "punctuated_word": "1st,", "speaker": 0, "speaker_confidence": 0.859375, "start": 463.62, "word": "1st" }, { "confidence": 1, "end": 464.1, "punctuated_word": "let's", "speaker": 0, "speaker_confidence": 0.859375, "start": 463.86002, "word": "let's" }, { "confidence": 1, "end": 464.26, "punctuated_word": "talk", "speaker": 0, "speaker_confidence": 0.859375, "start": 464.1, "word": "talk" }, { "confidence": 1, "end": 464.5, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.859375, "start": 464.26, "word": "about" }, { "confidence": 0.99365234, "end": 465, "punctuated_word": "WebRTC,", "speaker": 0, "speaker_confidence": 0.859375, "start": 464.5, "word": "webrtc" }, { "confidence": 1, "end": 465.78, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.859375, "start": 465.54, "word": "which" }, { "confidence": 1, "end": 466.1, "punctuated_word": "stands", "speaker": 0, "speaker_confidence": 0.859375, "start": 465.78, "word": "stands" }, { "confidence": 1, "end": 466.34, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.859375, "start": 466.1, "word": "for" }, { "confidence": 0.62841797, "end": 466.58002, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 0.859375, "start": 466.34, "word": "real" }, { "confidence": 0.9902344, "end": 466.82, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.859375, "start": 466.58002, "word": "time" }, { "confidence": 0.99853516, "end": 467.32, "punctuated_word": "communication.", "speaker": 0, "speaker_confidence": 0.859375, "start": 466.82, "word": "communication" }, { "confidence": 1, "end": 468.215, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.859375, "start": 467.975, "word": "it's" }, { "confidence": 1, "end": 468.295, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.859375, "start": 468.215, "word": "also" }, { "confidence": 1, "end": 468.45502, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9350586, "start": 468.295, "word": "a" }, { "confidence": 1, "end": 468.775, "punctuated_word": "tool", "speaker": 0, "speaker_confidence": 0.9350586, "start": 468.45502, "word": "tool" }, { "confidence": 1, "end": 468.935, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.9350586, "start": 468.775, "word": "for" }, { "confidence": 1, "end": 469.255, "punctuated_word": "building", "speaker": 0, "speaker_confidence": 0.9350586, "start": 468.935, "word": "building" }, { "confidence": 1, "end": 469.495, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 0.9350586, "start": 469.255, "word": "real" }, { "confidence": 0.9921875, "end": 469.73502, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.9350586, "start": 469.495, "word": "time" }, { "confidence": 0.90356445, "end": 470.23502, "punctuated_word": "experiences.", "speaker": 0, "speaker_confidence": 0.9350586, "start": 469.73502, "word": "experiences" }, { "confidence": 0.9995117, "end": 470.935, "punctuated_word": "However,", "speaker": 0, "speaker_confidence": 0.9350586, "start": 470.615, "word": "however" }, { "confidence": 1, "end": 471.175, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.9350586, "start": 470.935, "word": "it's" }, { "confidence": 1, "end": 471.495, "punctuated_word": "geared", "speaker": 0, "speaker_confidence": 0.9350586, "start": 471.175, "word": "geared" }, { "confidence": 0.9951172, "end": 471.895, "punctuated_word": "towards", "speaker": 0, "speaker_confidence": 0.9350586, "start": 471.495, "word": "towards" }, { "confidence": 0.99902344, "end": 472.295, "punctuated_word": "browser", "speaker": 0, "speaker_confidence": 0.9350586, "start": 471.895, "word": "browser" }, { "confidence": 0.9980469, "end": 472.45502, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9350586, "start": 472.295, "word": "to" }, { "confidence": 1, "end": 472.855, "punctuated_word": "browser", "speaker": 0, "speaker_confidence": 0.9350586, "start": 472.45502, "word": "browser" }, { "confidence": 0.87402344, "end": 473.355, "punctuated_word": "communication,", "speaker": 0, "speaker_confidence": 0.9350586, "start": 472.855, "word": "communication" }, { "confidence": 0.99902344, "end": 474.295, "punctuated_word": "primarily", "speaker": 0, "speaker_confidence": 0.9350586, "start": 473.815, "word": "primarily" }, { "confidence": 1, "end": 474.615, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.9350586, "start": 474.295, "word": "for" }, { "confidence": 0.99902344, "end": 474.935, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.9350586, "start": 474.615, "word": "video" }, { "confidence": 0.99902344, "end": 475.095, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9350586, "start": 474.935, "word": "and" }, { "confidence": 0.9995117, "end": 475.595, "punctuated_word": "voice.", "speaker": 0, "speaker_confidence": 0.9350586, "start": 475.095, "word": "voice" }, { "confidence": 0.99902344, "end": 475.86002, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.9350586, "start": 475.7, "word": "if" }, { "confidence": 0.9995117, "end": 476.1, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.9350586, "start": 475.86002, "word": "you're" }, { "confidence": 1, "end": 476.34003, "punctuated_word": "building", "speaker": 0, "speaker_confidence": 0.9350586, "start": 476.1, "word": "building" }, { "confidence": 1, "end": 476.58002, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9350586, "start": 476.34003, "word": "a" }, { "confidence": 0.9902344, "end": 476.82, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.9350586, "start": 476.58002, "word": "video" }, { "confidence": 1, "end": 477.06, "punctuated_word": "chat", "speaker": 0, "speaker_confidence": 0.9350586, "start": 476.82, "word": "chat" }, { "confidence": 0.99902344, "end": 477.30002, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.9350586, "start": 477.06, "word": "app" }, { "confidence": 0.95703125, "end": 477.46002, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.9350586, "start": 477.30002, "word": "like" }, { "confidence": 0.9890137, "end": 477.78, "punctuated_word": "Zoom,", "speaker": 0, "speaker_confidence": 0.9350586, "start": 477.46002, "word": "zoom" }, { "confidence": 1, "end": 478.02002, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.9350586, "start": 477.78, "word": "you" }, { "confidence": 0.99316406, "end": 478.34003, "punctuated_word": "probably", "speaker": 0, "speaker_confidence": 0.9350586, "start": 478.02002, "word": "probably" }, { "confidence": 1, "end": 478.66, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.9350586, "start": 478.34003, "word": "want" }, { "confidence": 0.9947917, "end": 479.16, "punctuated_word": "WebRTC", "speaker": 0, "speaker_confidence": 0.9350586, "start": 478.66, "word": "webrtc" }, { "confidence": 0.97998047, "end": 479.62003, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9350586, "start": 479.38, "word": "and" }, { "confidence": 0.9941406, "end": 479.86002, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.9350586, "start": 479.62003, "word": "not" }, { "confidence": 0.8774414, "end": 480.36002, "punctuated_word": "WebSockets.", "speaker": 0, "speaker_confidence": 0.9350586, "start": 479.86002, "word": "websockets" }, { "confidence": 0.9970703, "end": 481.46002, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.9350586, "start": 481.22, "word": "and" }, { "confidence": 0.96777344, "end": 481.7, "punctuated_word": "another", "speaker": 0, "speaker_confidence": 0.9350586, "start": 481.46002, "word": "another" }, { "confidence": 1, "end": 481.94, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.9350586, "start": 481.7, "word": "new" }, { "confidence": 0.99902344, "end": 482.42, "punctuated_word": "API", "speaker": 0, "speaker_confidence": 0.9350586, "start": 481.94, "word": "api" }, { "confidence": 0.9921875, "end": 482.58002, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9350586, "start": 482.42, "word": "that" }, { "confidence": 1, "end": 482.82, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.9350586, "start": 482.58002, "word": "people" }, { "confidence": 0.99902344, "end": 482.98, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.9350586, "start": 482.82, "word": "have" }, { "confidence": 1, "end": 483.30002, "punctuated_word": "started", "speaker": 0, "speaker_confidence": 0.9350586, "start": 482.98, "word": "started" }, { "confidence": 1, "end": 483.62003, "punctuated_word": "talking", "speaker": 0, "speaker_confidence": 0.9350586, "start": 483.30002, "word": "talking" }, { "confidence": 1, "end": 484.02002, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.9350586, "start": 483.62003, "word": "about" }, { "confidence": 1, "end": 484.34003, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9350586, "start": 484.02002, "word": "is" }, { "confidence": 0.8658447, "end": 484.84003, "punctuated_word": "WebTransport.", "speaker": 0, "speaker_confidence": 0.9350586, "start": 484.34003, "word": "webtransport" }, { "confidence": 0.9980469, "end": 485.505, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.9350586, "start": 485.345, "word": "and" }, { "confidence": 0.9980469, "end": 485.665, "punctuated_word": "without", "speaker": 0, "speaker_confidence": 0.9350586, "start": 485.505, "word": "without" }, { "confidence": 0.9980469, "end": 485.90503, "punctuated_word": "getting", "speaker": 0, "speaker_confidence": 0.9350586, "start": 485.665, "word": "getting" }, { "confidence": 0.99316406, "end": 486.225, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.9350586, "start": 485.90503, "word": "into" }, { "confidence": 0.97509766, "end": 486.385, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9350586, "start": 486.225, "word": "the" }, { "confidence": 0.9692383, "end": 486.885, "punctuated_word": "details,", "speaker": 0, "speaker_confidence": 0.9350586, "start": 486.385, "word": "details" }, { "confidence": 0.99902344, "end": 487.18503, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.9350586, "start": 486.945, "word": "it's" }, { "confidence": 0.9970703, "end": 487.68503, "punctuated_word": "basically", "speaker": 0, "speaker_confidence": 0.9350586, "start": 487.18503, "word": "basically" }, { "confidence": 0.99902344, "end": 487.98502, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9350586, "start": 487.74503, "word": "a" }, { "confidence": 1, "end": 488.30502, "punctuated_word": "better", "speaker": 0, "speaker_confidence": 0.9350586, "start": 487.98502, "word": "better" }, { "confidence": 1, "end": 488.545, "punctuated_word": "version", "speaker": 0, "speaker_confidence": 0.9350586, "start": 488.30502, "word": "version" }, { "confidence": 1, "end": 488.70502, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9350586, "start": 488.545, "word": "of" }, { "confidence": 0.79663086, "end": 489.20502, "punctuated_word": "WebSockets.", "speaker": 0, "speaker_confidence": 0.9350586, "start": 488.70502, "word": "websockets" }, { "confidence": 0.9921875, "end": 490.065, "punctuated_word": "Faster", "speaker": 0, "speaker_confidence": 0.9350586, "start": 489.825, "word": "faster" }, { "confidence": 0.98706055, "end": 490.565, "punctuated_word": "handshake,", "speaker": 0, "speaker_confidence": 0.9350586, "start": 490.065, "word": "handshake" }, { "confidence": 1, "end": 491.105, "punctuated_word": "better", "speaker": 0, "speaker_confidence": 0.9350586, "start": 490.785, "word": "better" }, { "confidence": 0.9875488, "end": 491.605, "punctuated_word": "reliability,", "speaker": 0, "speaker_confidence": 0.9350586, "start": 491.105, "word": "reliability" }, { "confidence": 1, "end": 491.98502, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9350586, "start": 491.74503, "word": "and" }, { "confidence": 1, "end": 492.30502, "punctuated_word": "stuff", "speaker": 0, "speaker_confidence": 0.9350586, "start": 491.98502, "word": "stuff" }, { "confidence": 1, "end": 492.385, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.9350586, "start": 492.30502, "word": "like" }, { "confidence": 1, "end": 492.7, "punctuated_word": "that.", "speaker": 0, "speaker_confidence": 0.9350586, "start": 492.385, "word": "that" }, { "confidence": 0.9453125, "end": 492.88666, "punctuated_word": "Its", "speaker": 0, "speaker_confidence": 0.9350586, "start": 492.78, "word": "its" }, { "confidence": 1, "end": 492.99335, "punctuated_word": "proposal", "speaker": 0, "speaker_confidence": 0.9350586, "start": 492.88666, "word": "proposal" }, { "confidence": 0.99609375, "end": 493.1, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9350586, "start": 492.99335, "word": "is" }, { "confidence": 1, "end": 493.6, "punctuated_word": "still", "speaker": 0, "speaker_confidence": 0.74121094, "start": 493.1, "word": "still" }, { "confidence": 1, "end": 494.06, "punctuated_word": "being", "speaker": 0, "speaker_confidence": 0.74121094, "start": 493.82, "word": "being" }, { "confidence": 0.94750977, "end": 494.56, "punctuated_word": "stabilized,", "speaker": 0, "speaker_confidence": 0.74121094, "start": 494.06, "word": "stabilized" }, { "confidence": 1, "end": 494.86002, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.74121094, "start": 494.62003, "word": "so" }, { "confidence": 1, "end": 495.18002, "punctuated_word": "nothing", "speaker": 0, "speaker_confidence": 0.74121094, "start": 494.86002, "word": "nothing" }, { "confidence": 1, "end": 495.26, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.74121094, "start": 495.18002, "word": "you" }, { "confidence": 1, "end": 495.5, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.74121094, "start": 495.26, "word": "need" }, { "confidence": 1, "end": 495.58002, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.74121094, "start": 495.5, "word": "to" }, { "confidence": 1, "end": 495.82, "punctuated_word": "know", "speaker": 0, "speaker_confidence": 0.74121094, "start": 495.58002, "word": "know" }, { "confidence": 0.93603516, "end": 496.30002, "punctuated_word": "today,", "speaker": 0, "speaker_confidence": 0.74121094, "start": 495.82, "word": "today" }, { "confidence": 1, "end": 496.54, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.74121094, "start": 496.30002, "word": "but" }, { "confidence": 1, "end": 496.7, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.74121094, "start": 496.54, "word": "just" }, { "confidence": 1, "end": 497.02002, "punctuated_word": "something", "speaker": 0, "speaker_confidence": 0.74121094, "start": 496.7, "word": "something" }, { "confidence": 0.9921875, "end": 497.18002, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.74121094, "start": 497.02002, "word": "to" }, { "confidence": 0.99902344, "end": 497.34003, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.74121094, "start": 497.18002, "word": "have" }, { "confidence": 1, "end": 497.5, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.74121094, "start": 497.34003, "word": "on" }, { "confidence": 0.9980469, "end": 497.58002, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.47851562, "start": 497.5, "word": "the" }, { "confidence": 1, "end": 497.90002, "punctuated_word": "radar", "speaker": 0, "speaker_confidence": 0.47851562, "start": 497.58002, "word": "radar" }, { "confidence": 1, "end": 498.14, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.47851562, "start": 497.90002, "word": "for" }, { "confidence": 1, "end": 498.30002, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.47851562, "start": 498.14, "word": "the" }, { "confidence": 1, "end": 498.80002, "punctuated_word": "future.", "speaker": 0, "speaker_confidence": 0.47851562, "start": 498.30002, "word": "future" }, { "confidence": 0.9995117, "end": 499.02002, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.5209961, "start": 498.86002, "word": "i'm" }, { "confidence": 0.94628906, "end": 499.18002, "punctuated_word": "gonna", "speaker": 0, "speaker_confidence": 0.5209961, "start": 499.02002, "word": "gonna" }, { "confidence": 0.9970703, "end": 499.26, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.5209961, "start": 499.18002, "word": "go" }, { "confidence": 1, "end": 499.42, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 0.5209961, "start": 499.26, "word": "ahead" }, { "confidence": 0.99902344, "end": 499.5, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.5209961, "start": 499.42, "word": "and" }, { "confidence": 1, "end": 499.74002, "punctuated_word": "wrap", "speaker": 0, "speaker_confidence": 0.5209961, "start": 499.5, "word": "wrap" }, { "confidence": 1, "end": 499.98, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 0.5209961, "start": 499.74002, "word": "things" }, { "confidence": 1, "end": 500.14, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 1, "start": 499.98, "word": "up" }, { "confidence": 0.9995117, "end": 500.465, "punctuated_word": "there.", "speaker": 0, "speaker_confidence": 1, "start": 500.14, "word": "there" }, { "confidence": 0.9980469, "end": 500.705, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 1, "start": 500.54498, "word": "if" }, { "confidence": 1, "end": 500.865, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 1, "start": 500.705, "word": "this" }, { "confidence": 1, "end": 501.105, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 1, "start": 500.865, "word": "video" }, { "confidence": 0.9951172, "end": 501.345, "punctuated_word": "helped", "speaker": 0, "speaker_confidence": 1, "start": 501.105, "word": "helped" }, { "confidence": 0.9980469, "end": 501.505, "punctuated_word": "you,", "speaker": 0, "speaker_confidence": 1, "start": 501.345, "word": "you" }, { "confidence": 1, "end": 501.745, "punctuated_word": "please", "speaker": 0, "speaker_confidence": 1, "start": 501.505, "word": "please" }, { "confidence": 0.9921875, "end": 501.905, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 501.745, "word": "like" }, { "confidence": 0.9980469, "end": 502.145, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 501.905, "word": "and" }, { "confidence": 0.98217773, "end": 502.645, "punctuated_word": "subscribe.", "speaker": 0, "speaker_confidence": 1, "start": 502.145, "word": "subscribe" }, { "confidence": 0.99902344, "end": 503.185, "punctuated_word": "Consider", "speaker": 0, "speaker_confidence": 1, "start": 502.705, "word": "consider" }, { "confidence": 0.9980469, "end": 503.585, "punctuated_word": "sponsoring", "speaker": 0, "speaker_confidence": 1, "start": 503.185, "word": "sponsoring" }, { "confidence": 0.99902344, "end": 503.745, "punctuated_word": "me", "speaker": 0, "speaker_confidence": 1, "start": 503.585, "word": "me" }, { "confidence": 1, "end": 503.905, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 1, "start": 503.745, "word": "on" }, { "confidence": 0.9580078, "end": 504.305, "punctuated_word": "GitHub", "speaker": 0, "speaker_confidence": 1, "start": 503.905, "word": "github" }, { "confidence": 0.96533203, "end": 504.465, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 1, "start": 504.305, "word": "or" }, { "confidence": 0.9980469, "end": 504.785, "punctuated_word": "becoming", "speaker": 0, "speaker_confidence": 1, "start": 504.465, "word": "becoming" }, { "confidence": 1, "end": 504.945, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 504.785, "word": "a" }, { "confidence": 0.96435547, "end": 505.185, "punctuated_word": "pro", "speaker": 0, "speaker_confidence": 1, "start": 504.945, "word": "pro" }, { "confidence": 0.99609375, "end": 505.425, "punctuated_word": "member", "speaker": 0, "speaker_confidence": 1, "start": 505.185, "word": "member" }, { "confidence": 0.9980469, "end": 505.665, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 1, "start": 505.425, "word": "at" }, { "confidence": 0.7126465, "end": 506.165, "punctuated_word": "FireShip", "speaker": 0, "speaker_confidence": 1, "start": 505.665, "word": "fireship" }, { "confidence": 0.8405762, "end": 506.725, "punctuated_word": "IO.", "speaker": 0, "speaker_confidence": 1, "start": 506.225, "word": "io" }, { "confidence": 1, "end": 507.185, "punctuated_word": "Thanks", "speaker": 0, "speaker_confidence": 1, "start": 506.945, "word": "thanks" }, { "confidence": 1, "end": 507.425, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 507.185, "word": "for" }, { "confidence": 0.9970703, "end": 507.82498, "punctuated_word": "watching,", "speaker": 0, "speaker_confidence": 1, "start": 507.425, "word": "watching" }, { "confidence": 1, "end": 507.985, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 507.82498, "word": "and" }, { "confidence": 1, "end": 508.145, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 1, "start": 507.985, "word": "i" }, { "confidence": 1, "end": 508.385, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 1, "start": 508.145, "word": "will" }, { "confidence": 1, "end": 508.465, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 1, "start": 508.385, "word": "see" }, { "confidence": 1, "end": 508.705, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 508.465, "word": "you" }, { "confidence": 1, "end": 508.865, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 508.705, "word": "in" }, { "confidence": 1, "end": 509.025, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 508.865, "word": "the" }, { "confidence": 1, "end": 509.185, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 1, "start": 509.025, "word": "next" }, { "confidence": 0.9951172, "end": 509.685, "punctuated_word": "one.", "speaker": 0, "speaker_confidence": 1, "start": 509.185, "word": "one" } ] } ], "detected_language": "", "language_confidence": 0, "search": null } ], "summary": { "result": "success", "short": "The speakers discuss the use of WebSockets and the implementation of a low latency, multi-channel communication system for real-time data. They also discuss the use of a web browser and APIs, including a full duplex connection between a client and a server. The process of building a front end code for a web app, including importting socket IO and setting the core's origin to anything, is discussed, along with the benefits of using WebRTC and the use of Web Ramirez for building real time experiences. They also mention a new API called Web Ramirez and its use for building real time experiences." }, "utterances": null } }
downloads\WebSockets_in_100_Seconds_&_Beyond_with_Socket.io.wav
https://www.youtube.com/watch?v=1BfCnjr_Vjg
WebSockets in 100 Seconds & Beyond with Socket.io
892,119
Fireship
136
Learn the fundamentals of Web Assembly in 100 Seconds, then build your first WASM binary with AssemblyScript. https://fireship.io - WASM Docs https://developer.mozilla.org/en-US/docs/WebAssembly - Figma's Story https://www.figma.com/blog/webassembly-cut-figmas-load-time-by-3x/ - AssemblyScript https://www.assemblyscript.org/ #webdev #wasm #100SecondsOfCode Install the quiz app 🤓 iOS https://itunes.apple.com/us/app/fireship/id1462592372?mt=8 Android https://play.google.com/store/apps/details?id=io.fireship.quizapp Upgrade to Fireship PRO at https://fireship.io/pro Use code lORhwXd2 for 25% off your first payment. My VS Code Theme - Atom One Dark - vscode-icons - Fira Code Font
{ "metadata": { "channels": 1, "created": "2024-02-04T06:03:49.337Z", "duration": 135.6045, "model_info": { "30089e05-99d1-4376-b32e-c263170674af": { "arch": "nova-2", "name": "2-general-nova", "version": "2024-01-09.29447" } }, "models": [ "30089e05-99d1-4376-b32e-c263170674af" ], "request_id": "69c2fadd-e7e3-4b09-885f-87b5b9576c52", "sha256": "f29b6f3194062a06333919a6caf7eed8c20c47a2afc1dbeae603f7eea9b18b31", "summary_info": { "input_tokens": 562, "model_uuid": "67875a7f-c9c4-48a0-aa55-5bdb8a91c34a", "output_tokens": 76 }, "transaction_key": "deprecated", "warnings": null }, "results": { "channels": [ { "alternatives": [ { "confidence": 0.9980469, "entities": null, "paragraphs": { "paragraphs": [ { "end": 28.845, "num_words": 93, "sentences": [ { "end": 1.14, "start": 0.64, "text": "WebAssembly." }, { "end": 4.58, "start": 1.52, "text": "Write applications for the web in languages other than JavaScript." }, { "end": 15.344999, "start": 4.7999997, "text": "Imagine a world where you could build software with c plus plus Rust, Python, Go, or even COBOL, then deliver that software to the end user in a web browser without any installation and near native performance." }, { "end": 21.29, "start": 15.51, "text": "That world became a reality in December 2019, when WebAssembly became an official w three c standard." }, { "end": 28.845, "start": 21.35, "text": "It includes a low level language similar to Assembly that can be represented with text, then convert it to a binary format that runs on all modern browsers." } ], "speaker": 0, "start": 0.64 }, { "end": 51.14, "num_words": 79, "sentences": [ { "end": 35.43, "start": 28.984999, "text": "However, you won't actually write this code directly, but rather use it as a compilation target for programs written in other languages." }, { "end": 41.975, "start": 35.65, "text": "For example, you might build a game with Unity and c sharp, and compile it to WebAssembly where it can be delivered in the browser." }, { "end": 45.175, "start": 42.035, "text": "Now, it's important to note that it's not intended to replace JavaScript." }, { "end": 47.62, "start": 45.315, "text": "In fact, the 2 work well together side by side." }, { "end": 51.14, "start": 47.68, "text": "Figma, for example, uses React JS for its outer UI." } ], "speaker": 0, "start": 28.984999 }, { "end": 79.095, "num_words": 103, "sentences": [ { "end": 56.995, "start": 51.2, "text": "Then on the inside, you have a high performance c plus plus design tool that feels just as fast as native software." }, { "end": 61.795, "start": 57.055, "text": "As a developer, there are many different ways you can build a WebAssembly app with many more under development." }, { "end": 71.49, "start": 61.855, "text": "One of the most popular tools is Emscripten, which can convert a c or c plus plus program to WebAssembly, as it did by bringing AutoCAD to the web, which is a 30 year old code base." }, { "end": 72.61, "start": 71.71, "text": "No way." }, { "end": 79.095, "start": 73.395, "text": "One of the best ways to get started is with AssemblyScript, which is a language that looks like TypeScript, but compiles to WebAssembly." } ], "speaker": 0, "start": 51.2 }, { "end": 103.63, "num_words": 76, "sentences": [ { "end": 86.82, "start": 79.235, "text": "We can easily start a new AssemblyScript Project using Node JS and NPM, then we'll write our first WebAssembly module in the index TS file." }, { "end": 93.565, "start": 86.88, "text": "Unlike JavaScript, a dynamic interpreted language, WebAssembly is a static compiled language, with strict type guarantees." }, { "end": 96.185, "start": 93.705, "text": "For example, our code can't use the any type." }, { "end": 101.53, "start": 96.185, "text": "When it comes to numbers, we need to specify a 32 bit integer or a 64 bit floating point." }, { "end": 103.63, "start": 101.53, "text": "In addition, we can't use dynamic objects." } ], "speaker": 0, "start": 79.235 }, { "end": 125.71, "num_words": 78, "sentences": [ { "end": 107.05, "start": 103.85, "text": "Instead, we use maps where we can strongly type the key value pairs." }, { "end": 112.275, "start": 107.05, "text": "Once we're happy with our code, we can then compile it down to a binary, which is a file that ends in dotwasm." }, { "end": 119.475, "start": 112.495, "text": "We can now run this binary in the browser, open an HTML page, and then use the WebAssembly API to instantiate streaming." }, { "end": 123.49, "start": 119.79, "text": "Simply fetch the binary, and when the promise resolves, do something with it." }, { "end": 125.71, "start": 123.63, "text": "This has been WebAssembly in 100 seconds." } ], "speaker": 0, "start": 103.85 }, { "end": 135.6045, "num_words": 40, "sentences": [ { "end": 132.33751, "start": 125.71, "text": "If you wanna see a more in-depth video on this topic, please let me know in the comments, and make sure to subscribe and hit the like button." }, { "end": 135.6045, "start": 132.33751, "text": "Thanks for watching, and I will see you in the next one." } ], "speaker": 0, "start": 125.71 } ], "transcript": "\nSpeaker 0: WebAssembly. Write applications for the web in languages other than JavaScript. Imagine a world where you could build software with c plus plus Rust, Python, Go, or even COBOL, then deliver that software to the end user in a web browser without any installation and near native performance. That world became a reality in December 2019, when WebAssembly became an official w three c standard. It includes a low level language similar to Assembly that can be represented with text, then convert it to a binary format that runs on all modern browsers.\n\nHowever, you won't actually write this code directly, but rather use it as a compilation target for programs written in other languages. For example, you might build a game with Unity and c sharp, and compile it to WebAssembly where it can be delivered in the browser. Now, it's important to note that it's not intended to replace JavaScript. In fact, the 2 work well together side by side. Figma, for example, uses React JS for its outer UI.\n\nThen on the inside, you have a high performance c plus plus design tool that feels just as fast as native software. As a developer, there are many different ways you can build a WebAssembly app with many more under development. One of the most popular tools is Emscripten, which can convert a c or c plus plus program to WebAssembly, as it did by bringing AutoCAD to the web, which is a 30 year old code base. No way. One of the best ways to get started is with AssemblyScript, which is a language that looks like TypeScript, but compiles to WebAssembly.\n\nWe can easily start a new AssemblyScript Project using Node JS and NPM, then we'll write our first WebAssembly module in the index TS file. Unlike JavaScript, a dynamic interpreted language, WebAssembly is a static compiled language, with strict type guarantees. For example, our code can't use the any type. When it comes to numbers, we need to specify a 32 bit integer or a 64 bit floating point. In addition, we can't use dynamic objects.\n\nInstead, we use maps where we can strongly type the key value pairs. Once we're happy with our code, we can then compile it down to a binary, which is a file that ends in dotwasm. We can now run this binary in the browser, open an HTML page, and then use the WebAssembly API to instantiate streaming. Simply fetch the binary, and when the promise resolves, do something with it. This has been WebAssembly in 100 seconds.\n\nIf you wanna see a more in-depth video on this topic, please let me know in the comments, and make sure to subscribe and hit the like button. Thanks for watching, and I will see you in the next one." }, "summaries": null, "topics": [ { "end_word": 152, "start_word": 0, "text": "WebAssembly. Write applications for the web in languages other than JavaScript. Imagine a world where you could build software with c plus plus Rust, Python, Go, or even COBOL, then deliver that software to the end user in a web browser without any installation and near native performance. That world became a reality in December 2019, when WebAssembly became an official w three c standard. It includes a low level language similar to Assembly that can be represented with text, then convert it to a binary format that runs on all modern browsers. However, you won't actually write this code directly, but rather use it as a compilation target for programs written in other languages. For example, you might build a game with Unity and c sharp, and compile it to WebAssembly where it can be delivered in the browser. Now, it's important to note that it's not intended to replace JavaScript.", "topics": [ { "confidence": 0.56248814, "topic": "programming" }, { "confidence": 0.52375984, "topic": "software development" }, { "confidence": 0.065520905, "topic": "software" }, { "confidence": 0.011046623, "topic": "computer science" } ] }, { "end_word": 172, "start_word": 152, "text": "In fact, the 2 work well together side by side. Figma, for example, uses React JS for its outer UI.", "topics": [] }, { "end_word": 325, "start_word": 172, "text": "Then on the inside, you have a high performance c plus plus design tool that feels just as fast as native software. As a developer, there are many different ways you can build a WebAssembly app with many more under development. One of the most popular tools is Emscripten, which can convert a c or c plus plus program to WebAssembly, as it did by bringing AutoCAD to the web, which is a 30 year old code base. No way. One of the best ways to get started is with AssemblyScript, which is a language that looks like TypeScript, but compiles to WebAssembly. We can easily start a new AssemblyScript Project using Node JS and NPM, then we'll write our first WebAssembly module in the index TS file. Unlike JavaScript, a dynamic interpreted language, WebAssembly is a static compiled language, with strict type guarantees. For example, our code can't use the any type.", "topics": [ { "confidence": 0.3449853, "topic": "software development" }, { "confidence": 0.18409872, "topic": "software" }, { "confidence": 0.03227846, "topic": "programming" } ] }, { "end_word": 351, "start_word": 325, "text": "When it comes to numbers, we need to specify a 32 bit integer or a 64 bit floating point. In addition, we can't use dynamic objects.", "topics": [] }, { "end_word": 469, "start_word": 351, "text": "Instead, we use maps where we can strongly type the key value pairs. Once we're happy with our code, we can then compile it down to a binary, which is a file that ends in dotwasm. We can now run this binary in the browser, open an HTML page, and then use the WebAssembly API to instantiate streaming. Simply fetch the binary, and when the promise resolves, do something with it. This has been WebAssembly in 100 seconds. If you wanna see a more in-depth video on this topic, please let me know in the comments, and make sure to subscribe and hit the like button. Thanks for watching, and I will see you in the next one.", "topics": [ { "confidence": 0.99770164, "topic": "streaming" }, { "confidence": 0.07617229, "topic": "programming" }, { "confidence": 0.0311173, "topic": "youtube" }, { "confidence": 0.017677424, "topic": "social media" }, { "confidence": 0.008022563, "topic": "video gaming" }, { "confidence": 0.007877613, "topic": "multimedia" } ] } ], "transcript": "WebAssembly. Write applications for the web in languages other than JavaScript. Imagine a world where you could build software with c plus plus Rust, Python, Go, or even COBOL, then deliver that software to the end user in a web browser without any installation and near native performance. That world became a reality in December 2019, when WebAssembly became an official w three c standard. It includes a low level language similar to Assembly that can be represented with text, then convert it to a binary format that runs on all modern browsers. However, you won't actually write this code directly, but rather use it as a compilation target for programs written in other languages. For example, you might build a game with Unity and c sharp, and compile it to WebAssembly where it can be delivered in the browser. Now, it's important to note that it's not intended to replace JavaScript. In fact, the 2 work well together side by side. Figma, for example, uses React JS for its outer UI. Then on the inside, you have a high performance c plus plus design tool that feels just as fast as native software. As a developer, there are many different ways you can build a WebAssembly app with many more under development. One of the most popular tools is Emscripten, which can convert a c or c plus plus program to WebAssembly, as it did by bringing AutoCAD to the web, which is a 30 year old code base. No way. One of the best ways to get started is with AssemblyScript, which is a language that looks like TypeScript, but compiles to WebAssembly. We can easily start a new AssemblyScript Project using Node JS and NPM, then we'll write our first WebAssembly module in the index TS file. Unlike JavaScript, a dynamic interpreted language, WebAssembly is a static compiled language, with strict type guarantees. For example, our code can't use the any type. When it comes to numbers, we need to specify a 32 bit integer or a 64 bit floating point. In addition, we can't use dynamic objects. Instead, we use maps where we can strongly type the key value pairs. Once we're happy with our code, we can then compile it down to a binary, which is a file that ends in dotwasm. We can now run this binary in the browser, open an HTML page, and then use the WebAssembly API to instantiate streaming. Simply fetch the binary, and when the promise resolves, do something with it. This has been WebAssembly in 100 seconds. If you wanna see a more in-depth video on this topic, please let me know in the comments, and make sure to subscribe and hit the like button. Thanks for watching, and I will see you in the next one.", "translations": null, "words": [ { "confidence": 0.8255208, "end": 1.14, "punctuated_word": "WebAssembly.", "speaker": 0, "speaker_confidence": 0.49609375, "start": 0.64, "word": "webassembly" }, { "confidence": 0.9375, "end": 1.8399999, "punctuated_word": "Write", "speaker": 0, "speaker_confidence": 0.49609375, "start": 1.52, "word": "write" }, { "confidence": 0.93359375, "end": 2.32, "punctuated_word": "applications", "speaker": 0, "speaker_confidence": 0.49609375, "start": 1.8399999, "word": "applications" }, { "confidence": 1, "end": 2.56, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.49609375, "start": 2.32, "word": "for" }, { "confidence": 0.99902344, "end": 2.6399999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.49853516, "start": 2.56, "word": "the" }, { "confidence": 0.96875, "end": 2.8799999, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.49853516, "start": 2.6399999, "word": "web" }, { "confidence": 0.57910156, "end": 3.12, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.49853516, "start": 2.8799999, "word": "in" }, { "confidence": 0.9980469, "end": 3.6, "punctuated_word": "languages", "speaker": 0, "speaker_confidence": 0.49853516, "start": 3.12, "word": "languages" }, { "confidence": 0.9980469, "end": 3.84, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.49853516, "start": 3.6, "word": "other" }, { "confidence": 1, "end": 4.08, "punctuated_word": "than", "speaker": 0, "speaker_confidence": 0.49853516, "start": 3.84, "word": "than" }, { "confidence": 0.9592285, "end": 4.58, "punctuated_word": "JavaScript.", "speaker": 0, "speaker_confidence": 0.49853516, "start": 4.08, "word": "javascript" }, { "confidence": 0.99316406, "end": 5.12, "punctuated_word": "Imagine", "speaker": 0, "speaker_confidence": 0.9628906, "start": 4.7999997, "word": "imagine" }, { "confidence": 1, "end": 5.2799997, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9628906, "start": 5.12, "word": "a" }, { "confidence": 1, "end": 5.52, "punctuated_word": "world", "speaker": 0, "speaker_confidence": 0.9628906, "start": 5.2799997, "word": "world" }, { "confidence": 0.9980469, "end": 5.68, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.9628906, "start": 5.52, "word": "where" }, { "confidence": 1, "end": 5.7599998, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.9628906, "start": 5.68, "word": "you" }, { "confidence": 0.94970703, "end": 5.92, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.9628906, "start": 5.7599998, "word": "could" }, { "confidence": 1, "end": 6.16, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.9628906, "start": 5.92, "word": "build" }, { "confidence": 0.99902344, "end": 6.56, "punctuated_word": "software", "speaker": 0, "speaker_confidence": 0.9628906, "start": 6.16, "word": "software" }, { "confidence": 0.93115234, "end": 6.72, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.9628906, "start": 6.56, "word": "with" }, { "confidence": 0.8588867, "end": 6.96, "punctuated_word": "c", "speaker": 0, "speaker_confidence": 0.9628906, "start": 6.72, "word": "c" }, { "confidence": 0.62890625, "end": 7.2799997, "punctuated_word": "plus", "speaker": 0, "speaker_confidence": 0.9628906, "start": 6.96, "word": "plus" }, { "confidence": 0.9741211, "end": 7.6, "punctuated_word": "plus", "speaker": 0, "speaker_confidence": 0.9628906, "start": 7.2799997, "word": "plus" }, { "confidence": 0.8833008, "end": 8.1, "punctuated_word": "Rust,", "speaker": 0, "speaker_confidence": 0.9628906, "start": 7.6, "word": "rust" }, { "confidence": 0.9851074, "end": 8.605, "punctuated_word": "Python,", "speaker": 0, "speaker_confidence": 0.9628906, "start": 8.365, "word": "python" }, { "confidence": 0.96240234, "end": 9.085, "punctuated_word": "Go,", "speaker": 0, "speaker_confidence": 0.9628906, "start": 8.605, "word": "go" }, { "confidence": 0.9980469, "end": 9.325, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.9628906, "start": 9.085, "word": "or" }, { "confidence": 0.9970703, "end": 9.645, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 0.9628906, "start": 9.325, "word": "even" }, { "confidence": 0.9538574, "end": 10.145, "punctuated_word": "COBOL,", "speaker": 0, "speaker_confidence": 0.9628906, "start": 9.645, "word": "cobol" }, { "confidence": 0.9941406, "end": 10.365, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.9628906, "start": 10.205, "word": "then" }, { "confidence": 0.99316406, "end": 10.684999, "punctuated_word": "deliver", "speaker": 0, "speaker_confidence": 0.9628906, "start": 10.365, "word": "deliver" }, { "confidence": 0.99902344, "end": 10.845, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9628906, "start": 10.684999, "word": "that" }, { "confidence": 1, "end": 11.245, "punctuated_word": "software", "speaker": 0, "speaker_confidence": 0.9628906, "start": 10.845, "word": "software" }, { "confidence": 1, "end": 11.405, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9628906, "start": 11.245, "word": "to" }, { "confidence": 0.99902344, "end": 11.565, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9628906, "start": 11.405, "word": "the" }, { "confidence": 1, "end": 11.725, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.9628906, "start": 11.565, "word": "end" }, { "confidence": 1, "end": 12.045, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 0.9628906, "start": 11.725, "word": "user" }, { "confidence": 0.9970703, "end": 12.205, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9628906, "start": 12.045, "word": "in" }, { "confidence": 1, "end": 12.285, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9628906, "start": 12.205, "word": "a" }, { "confidence": 0.9863281, "end": 12.445, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.9628906, "start": 12.285, "word": "web" }, { "confidence": 1, "end": 12.924999, "punctuated_word": "browser", "speaker": 0, "speaker_confidence": 0.9628906, "start": 12.445, "word": "browser" }, { "confidence": 0.6699219, "end": 13.245, "punctuated_word": "without", "speaker": 0, "speaker_confidence": 0.9628906, "start": 12.924999, "word": "without" }, { "confidence": 0.99902344, "end": 13.565001, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 0.9628906, "start": 13.245, "word": "any" }, { "confidence": 1, "end": 14.065001, "punctuated_word": "installation", "speaker": 0, "speaker_confidence": 0.9628906, "start": 13.565001, "word": "installation" }, { "confidence": 0.9819336, "end": 14.365, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9628906, "start": 14.125, "word": "and" }, { "confidence": 0.99316406, "end": 14.605, "punctuated_word": "near", "speaker": 0, "speaker_confidence": 0.9628906, "start": 14.365, "word": "near" }, { "confidence": 0.9980469, "end": 14.844999, "punctuated_word": "native", "speaker": 0, "speaker_confidence": 0.9628906, "start": 14.605, "word": "native" }, { "confidence": 0.9975586, "end": 15.344999, "punctuated_word": "performance.", "speaker": 0, "speaker_confidence": 0.9628906, "start": 14.844999, "word": "performance" }, { "confidence": 1, "end": 15.75, "punctuated_word": "That", "speaker": 0, "speaker_confidence": 0.87890625, "start": 15.51, "word": "that" }, { "confidence": 1, "end": 15.83, "punctuated_word": "world", "speaker": 0, "speaker_confidence": 0.87890625, "start": 15.75, "word": "world" }, { "confidence": 0.99902344, "end": 16.23, "punctuated_word": "became", "speaker": 0, "speaker_confidence": 0.87890625, "start": 15.83, "word": "became" }, { "confidence": 0.99902344, "end": 16.31, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.87890625, "start": 16.23, "word": "a" }, { "confidence": 1, "end": 16.710001, "punctuated_word": "reality", "speaker": 0, "speaker_confidence": 0.87890625, "start": 16.31, "word": "reality" }, { "confidence": 0.9970703, "end": 17.03, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.87890625, "start": 16.710001, "word": "in" }, { "confidence": 0.9589844, "end": 17.43, "punctuated_word": "December", "speaker": 0, "speaker_confidence": 0.87890625, "start": 17.03, "word": "december" }, { "confidence": 0.78149414, "end": 17.93, "punctuated_word": "2019,", "speaker": 0, "speaker_confidence": 0.87890625, "start": 17.43, "word": "2019" }, { "confidence": 0.99902344, "end": 18.39, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.87890625, "start": 18.23, "word": "when" }, { "confidence": 0.8913574, "end": 18.89, "punctuated_word": "WebAssembly", "speaker": 0, "speaker_confidence": 0.87890625, "start": 18.39, "word": "webassembly" }, { "confidence": 0.9970703, "end": 19.43, "punctuated_word": "became", "speaker": 0, "speaker_confidence": 0.87890625, "start": 19.19, "word": "became" }, { "confidence": 0.9970703, "end": 19.59, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.87890625, "start": 19.43, "word": "an" }, { "confidence": 0.99902344, "end": 19.99, "punctuated_word": "official", "speaker": 0, "speaker_confidence": 0.87890625, "start": 19.59, "word": "official" }, { "confidence": 0.66748047, "end": 20.310001, "punctuated_word": "w", "speaker": 0, "speaker_confidence": 0.87890625, "start": 19.99, "word": "w" }, { "confidence": 0.72558594, "end": 20.55, "punctuated_word": "three", "speaker": 0, "speaker_confidence": 0.87890625, "start": 20.310001, "word": "three" }, { "confidence": 0.9135742, "end": 20.79, "punctuated_word": "c", "speaker": 0, "speaker_confidence": 0.87890625, "start": 20.55, "word": "c" }, { "confidence": 0.9909668, "end": 21.29, "punctuated_word": "standard.", "speaker": 0, "speaker_confidence": 0.87890625, "start": 20.79, "word": "standard" }, { "confidence": 0.99609375, "end": 21.51, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.87890625, "start": 21.35, "word": "it" }, { "confidence": 0.99902344, "end": 21.83, "punctuated_word": "includes", "speaker": 0, "speaker_confidence": 0.87890625, "start": 21.51, "word": "includes" }, { "confidence": 1, "end": 21.99, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.87890625, "start": 21.83, "word": "a" }, { "confidence": 0.99902344, "end": 22.15, "punctuated_word": "low", "speaker": 0, "speaker_confidence": 0.87890625, "start": 21.99, "word": "low" }, { "confidence": 0.9980469, "end": 22.425, "punctuated_word": "level", "speaker": 0, "speaker_confidence": 0.87890625, "start": 22.15, "word": "level" }, { "confidence": 0.984375, "end": 22.904999, "punctuated_word": "language", "speaker": 0, "speaker_confidence": 0.87890625, "start": 22.505, "word": "language" }, { "confidence": 0.91503906, "end": 23.144999, "punctuated_word": "similar", "speaker": 0, "speaker_confidence": 0.87890625, "start": 22.904999, "word": "similar" }, { "confidence": 0.99902344, "end": 23.384998, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.87890625, "start": 23.144999, "word": "to" }, { "confidence": 0.59521484, "end": 23.785, "punctuated_word": "Assembly", "speaker": 0, "speaker_confidence": 0.87890625, "start": 23.384998, "word": "assembly" }, { "confidence": 0.7080078, "end": 24.025, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.87890625, "start": 23.785, "word": "that" }, { "confidence": 0.9980469, "end": 24.185, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.87890625, "start": 24.025, "word": "can" }, { "confidence": 0.99902344, "end": 24.345, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.87890625, "start": 24.185, "word": "be" }, { "confidence": 0.9970703, "end": 24.824999, "punctuated_word": "represented", "speaker": 0, "speaker_confidence": 0.87890625, "start": 24.345, "word": "represented" }, { "confidence": 1, "end": 24.984999, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.87890625, "start": 24.824999, "word": "with" }, { "confidence": 0.93310547, "end": 25.484999, "punctuated_word": "text,", "speaker": 0, "speaker_confidence": 0.87890625, "start": 24.984999, "word": "text" }, { "confidence": 0.99609375, "end": 25.785, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.87890625, "start": 25.544998, "word": "then" }, { "confidence": 0.6123047, "end": 26.025, "punctuated_word": "convert", "speaker": 0, "speaker_confidence": 0.87890625, "start": 25.785, "word": "convert" }, { "confidence": 0.98291016, "end": 26.105, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.87890625, "start": 26.025, "word": "it" }, { "confidence": 0.99316406, "end": 26.345, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.87890625, "start": 26.105, "word": "to" }, { "confidence": 0.99902344, "end": 26.425, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.93652344, "start": 26.345, "word": "a" }, { "confidence": 1, "end": 26.904999, "punctuated_word": "binary", "speaker": 0, "speaker_confidence": 0.93652344, "start": 26.425, "word": "binary" }, { "confidence": 1, "end": 27.305, "punctuated_word": "format", "speaker": 0, "speaker_confidence": 0.93652344, "start": 26.904999, "word": "format" }, { "confidence": 0.9951172, "end": 27.384998, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.93652344, "start": 27.305, "word": "that" }, { "confidence": 1, "end": 27.704998, "punctuated_word": "runs", "speaker": 0, "speaker_confidence": 0.93652344, "start": 27.384998, "word": "runs" }, { "confidence": 1, "end": 27.785, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.93652344, "start": 27.704998, "word": "on" }, { "confidence": 0.99902344, "end": 28.025, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.93652344, "start": 27.785, "word": "all" }, { "confidence": 1, "end": 28.345, "punctuated_word": "modern", "speaker": 0, "speaker_confidence": 0.93652344, "start": 28.025, "word": "modern" }, { "confidence": 0.9995117, "end": 28.845, "punctuated_word": "browsers.", "speaker": 0, "speaker_confidence": 0.93652344, "start": 28.345, "word": "browsers" }, { "confidence": 0.9995117, "end": 29.384998, "punctuated_word": "However,", "speaker": 0, "speaker_confidence": 0.93652344, "start": 28.984999, "word": "however" }, { "confidence": 1, "end": 29.625, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.93652344, "start": 29.384998, "word": "you" }, { "confidence": 1, "end": 29.785, "punctuated_word": "won't", "speaker": 0, "speaker_confidence": 0.93652344, "start": 29.625, "word": "won't" }, { "confidence": 0.99902344, "end": 30.105, "punctuated_word": "actually", "speaker": 0, "speaker_confidence": 0.93652344, "start": 29.785, "word": "actually" }, { "confidence": 1, "end": 30.345, "punctuated_word": "write", "speaker": 0, "speaker_confidence": 0.93652344, "start": 30.105, "word": "write" }, { "confidence": 1, "end": 30.505, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.93652344, "start": 30.345, "word": "this" }, { "confidence": 1, "end": 30.744999, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.93652344, "start": 30.505, "word": "code" }, { "confidence": 0.9890137, "end": 31.244999, "punctuated_word": "directly,", "speaker": 0, "speaker_confidence": 0.93652344, "start": 30.744999, "word": "directly" }, { "confidence": 0.6801758, "end": 31.57, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.93652344, "start": 31.33, "word": "but" }, { "confidence": 0.96972656, "end": 31.81, "punctuated_word": "rather", "speaker": 0, "speaker_confidence": 0.93652344, "start": 31.57, "word": "rather" }, { "confidence": 0.9506836, "end": 31.89, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.93652344, "start": 31.81, "word": "use" }, { "confidence": 0.9980469, "end": 32.13, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.93652344, "start": 31.89, "word": "it" }, { "confidence": 0.99902344, "end": 32.37, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.93652344, "start": 32.13, "word": "as" }, { "confidence": 0.99902344, "end": 32.53, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.93652344, "start": 32.37, "word": "a" }, { "confidence": 0.9980469, "end": 33.03, "punctuated_word": "compilation", "speaker": 0, "speaker_confidence": 0.93652344, "start": 32.53, "word": "compilation" }, { "confidence": 1, "end": 33.57, "punctuated_word": "target", "speaker": 0, "speaker_confidence": 0.93652344, "start": 33.17, "word": "target" }, { "confidence": 0.9970703, "end": 33.81, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.93652344, "start": 33.57, "word": "for" }, { "confidence": 0.99902344, "end": 34.29, "punctuated_word": "programs", "speaker": 0, "speaker_confidence": 0.93652344, "start": 33.81, "word": "programs" }, { "confidence": 1, "end": 34.53, "punctuated_word": "written", "speaker": 0, "speaker_confidence": 0.93652344, "start": 34.29, "word": "written" }, { "confidence": 0.9970703, "end": 34.69, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.93652344, "start": 34.53, "word": "in" }, { "confidence": 1, "end": 34.93, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.93652344, "start": 34.69, "word": "other" }, { "confidence": 1, "end": 35.43, "punctuated_word": "languages.", "speaker": 0, "speaker_confidence": 0.93652344, "start": 34.93, "word": "languages" }, { "confidence": 1, "end": 35.81, "punctuated_word": "For", "speaker": 0, "speaker_confidence": 0.93652344, "start": 35.65, "word": "for" }, { "confidence": 1, "end": 36.29, "punctuated_word": "example,", "speaker": 0, "speaker_confidence": 0.93652344, "start": 35.81, "word": "example" }, { "confidence": 1, "end": 36.45, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.93652344, "start": 36.29, "word": "you" }, { "confidence": 1, "end": 36.61, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 0.93652344, "start": 36.45, "word": "might" }, { "confidence": 1, "end": 36.85, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.93652344, "start": 36.61, "word": "build" }, { "confidence": 0.99902344, "end": 36.93, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.93652344, "start": 36.85, "word": "a" }, { "confidence": 1, "end": 37.09, "punctuated_word": "game", "speaker": 0, "speaker_confidence": 0.7167969, "start": 36.93, "word": "game" }, { "confidence": 0.9970703, "end": 37.33, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.7167969, "start": 37.09, "word": "with" }, { "confidence": 0.86279297, "end": 37.81, "punctuated_word": "Unity", "speaker": 0, "speaker_confidence": 0.7167969, "start": 37.33, "word": "unity" }, { "confidence": 0.9267578, "end": 37.97, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7167969, "start": 37.81, "word": "and" }, { "confidence": 0.5776367, "end": 38.21, "punctuated_word": "c", "speaker": 0, "speaker_confidence": 0.7167969, "start": 37.97, "word": "c" }, { "confidence": 0.5756836, "end": 38.675, "punctuated_word": "sharp,", "speaker": 0, "speaker_confidence": 0.7167969, "start": 38.21, "word": "sharp" }, { "confidence": 0.8232422, "end": 39.075, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7167969, "start": 38.835, "word": "and" }, { "confidence": 0.9921875, "end": 39.315, "punctuated_word": "compile", "speaker": 0, "speaker_confidence": 0.7167969, "start": 39.075, "word": "compile" }, { "confidence": 0.9970703, "end": 39.395, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.70458984, "start": 39.315, "word": "it" }, { "confidence": 0.9980469, "end": 39.635, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.70458984, "start": 39.395, "word": "to" }, { "confidence": 0.9016113, "end": 40.135, "punctuated_word": "WebAssembly", "speaker": 0, "speaker_confidence": 0.70458984, "start": 39.635, "word": "webassembly" }, { "confidence": 0.5878906, "end": 40.355, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.70458984, "start": 40.195, "word": "where" }, { "confidence": 0.99902344, "end": 40.515, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.70458984, "start": 40.355, "word": "it" }, { "confidence": 0.99902344, "end": 40.675, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.70458984, "start": 40.515, "word": "can" }, { "confidence": 0.99902344, "end": 40.835, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.70458984, "start": 40.675, "word": "be" }, { "confidence": 1, "end": 41.235, "punctuated_word": "delivered", "speaker": 0, "speaker_confidence": 0.70458984, "start": 40.835, "word": "delivered" }, { "confidence": 1, "end": 41.315, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.70458984, "start": 41.235, "word": "in" }, { "confidence": 0.99121094, "end": 41.475, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7714844, "start": 41.315, "word": "the" }, { "confidence": 0.99853516, "end": 41.975, "punctuated_word": "browser.", "speaker": 0, "speaker_confidence": 0.7714844, "start": 41.475, "word": "browser" }, { "confidence": 0.92944336, "end": 42.274998, "punctuated_word": "Now,", "speaker": 0, "speaker_confidence": 0.7714844, "start": 42.035, "word": "now" }, { "confidence": 0.9975586, "end": 42.434998, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.7714844, "start": 42.274998, "word": "it's" }, { "confidence": 1, "end": 42.754997, "punctuated_word": "important", "speaker": 0, "speaker_confidence": 0.7714844, "start": 42.434998, "word": "important" }, { "confidence": 0.99902344, "end": 42.915, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7714844, "start": 42.754997, "word": "to" }, { "confidence": 0.99902344, "end": 43.155, "punctuated_word": "note", "speaker": 0, "speaker_confidence": 0.7714844, "start": 42.915, "word": "note" }, { "confidence": 0.97265625, "end": 43.315, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7714844, "start": 43.155, "word": "that" }, { "confidence": 0.99853516, "end": 43.475, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.7714844, "start": 43.315, "word": "it's" }, { "confidence": 1, "end": 43.635, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.7714844, "start": 43.475, "word": "not" }, { "confidence": 1, "end": 44.035, "punctuated_word": "intended", "speaker": 0, "speaker_confidence": 0.7714844, "start": 43.635, "word": "intended" }, { "confidence": 1, "end": 44.195, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7714844, "start": 44.035, "word": "to" }, { "confidence": 1, "end": 44.675, "punctuated_word": "replace", "speaker": 0, "speaker_confidence": 0.7714844, "start": 44.195, "word": "replace" }, { "confidence": 0.9663086, "end": 45.175, "punctuated_word": "JavaScript.", "speaker": 0, "speaker_confidence": 0.7714844, "start": 44.675, "word": "javascript" }, { "confidence": 0.99902344, "end": 45.475, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.7714844, "start": 45.315, "word": "in" }, { "confidence": 0.9951172, "end": 45.635, "punctuated_word": "fact,", "speaker": 0, "speaker_confidence": 0.7714844, "start": 45.475, "word": "fact" }, { "confidence": 0.9863281, "end": 45.84, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7714844, "start": 45.635, "word": "the" }, { "confidence": 0.83935547, "end": 46, "punctuated_word": "2", "speaker": 0, "speaker_confidence": 0.7714844, "start": 45.84, "word": "2" }, { "confidence": 0.9716797, "end": 46.08, "punctuated_word": "work", "speaker": 0, "speaker_confidence": 0.7714844, "start": 46, "word": "work" }, { "confidence": 0.9980469, "end": 46.16, "punctuated_word": "well", "speaker": 0, "speaker_confidence": 0.7714844, "start": 46.08, "word": "well" }, { "confidence": 1, "end": 46.24, "punctuated_word": "together", "speaker": 0, "speaker_confidence": 0.81640625, "start": 46.16, "word": "together" }, { "confidence": 0.97314453, "end": 46.74, "punctuated_word": "side", "speaker": 0, "speaker_confidence": 0.81640625, "start": 46.24, "word": "side" }, { "confidence": 0.99902344, "end": 47.12, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.81640625, "start": 46.96, "word": "by" }, { "confidence": 0.99853516, "end": 47.62, "punctuated_word": "side.", "speaker": 0, "speaker_confidence": 0.81640625, "start": 47.12, "word": "side" }, { "confidence": 0.99348956, "end": 48.08, "punctuated_word": "Figma,", "speaker": 0, "speaker_confidence": 0.81640625, "start": 47.68, "word": "figma" }, { "confidence": 0.99902344, "end": 48.32, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.81640625, "start": 48.08, "word": "for" }, { "confidence": 0.9975586, "end": 48.8, "punctuated_word": "example,", "speaker": 0, "speaker_confidence": 0.81640625, "start": 48.32, "word": "example" }, { "confidence": 0.9970703, "end": 49.12, "punctuated_word": "uses", "speaker": 0, "speaker_confidence": 0.81640625, "start": 48.8, "word": "uses" }, { "confidence": 0.9316406, "end": 49.52, "punctuated_word": "React", "speaker": 0, "speaker_confidence": 0.81640625, "start": 49.12, "word": "react" }, { "confidence": 0.60253906, "end": 49.92, "punctuated_word": "JS", "speaker": 0, "speaker_confidence": 0.81640625, "start": 49.52, "word": "js" }, { "confidence": 0.9863281, "end": 50.16, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.81640625, "start": 49.92, "word": "for" }, { "confidence": 0.97509766, "end": 50.4, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.81640625, "start": 50.16, "word": "its" }, { "confidence": 0.99902344, "end": 50.64, "punctuated_word": "outer", "speaker": 0, "speaker_confidence": 0.81640625, "start": 50.4, "word": "outer" }, { "confidence": 0.9350586, "end": 51.14, "punctuated_word": "UI.", "speaker": 0, "speaker_confidence": 0.81640625, "start": 50.64, "word": "ui" }, { "confidence": 0.9873047, "end": 51.44, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.81640625, "start": 51.2, "word": "then" }, { "confidence": 0.56591797, "end": 51.52, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.81640625, "start": 51.44, "word": "on" }, { "confidence": 0.99902344, "end": 51.68, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.81640625, "start": 51.52, "word": "the" }, { "confidence": 0.99658203, "end": 52.16, "punctuated_word": "inside,", "speaker": 0, "speaker_confidence": 0.81640625, "start": 51.68, "word": "inside" }, { "confidence": 1, "end": 52.239998, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.81640625, "start": 52.16, "word": "you" }, { "confidence": 0.99902344, "end": 52.4, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.7324219, "start": 52.239998, "word": "have" }, { "confidence": 0.9970703, "end": 52.56, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7324219, "start": 52.4, "word": "a" }, { "confidence": 0.99902344, "end": 52.8, "punctuated_word": "high", "speaker": 0, "speaker_confidence": 0.7324219, "start": 52.56, "word": "high" }, { "confidence": 0.9604492, "end": 53.28, "punctuated_word": "performance", "speaker": 0, "speaker_confidence": 0.7324219, "start": 52.8, "word": "performance" }, { "confidence": 0.87841797, "end": 53.52, "punctuated_word": "c", "speaker": 0, "speaker_confidence": 0.7324219, "start": 53.28, "word": "c" }, { "confidence": 0.90283203, "end": 53.76, "punctuated_word": "plus", "speaker": 0, "speaker_confidence": 0.7324219, "start": 53.52, "word": "plus" }, { "confidence": 0.98291016, "end": 54.08, "punctuated_word": "plus", "speaker": 0, "speaker_confidence": 0.7324219, "start": 53.76, "word": "plus" }, { "confidence": 0.9892578, "end": 54.4, "punctuated_word": "design", "speaker": 0, "speaker_confidence": 0.7324219, "start": 54.08, "word": "design" }, { "confidence": 1, "end": 54.655, "punctuated_word": "tool", "speaker": 0, "speaker_confidence": 0.7324219, "start": 54.4, "word": "tool" }, { "confidence": 0.9970703, "end": 54.975, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7324219, "start": 54.655, "word": "that" }, { "confidence": 0.9970703, "end": 55.135, "punctuated_word": "feels", "speaker": 0, "speaker_confidence": 0.7324219, "start": 54.975, "word": "feels" }, { "confidence": 0.9980469, "end": 55.535, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.7324219, "start": 55.135, "word": "just" }, { "confidence": 0.9980469, "end": 55.614998, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.64941406, "start": 55.535, "word": "as" }, { "confidence": 0.9980469, "end": 55.934998, "punctuated_word": "fast", "speaker": 0, "speaker_confidence": 0.64941406, "start": 55.614998, "word": "fast" }, { "confidence": 0.99902344, "end": 56.094997, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.64941406, "start": 55.934998, "word": "as" }, { "confidence": 0.99316406, "end": 56.495, "punctuated_word": "native", "speaker": 0, "speaker_confidence": 0.64941406, "start": 56.094997, "word": "native" }, { "confidence": 0.99853516, "end": 56.995, "punctuated_word": "software.", "speaker": 0, "speaker_confidence": 0.64941406, "start": 56.495, "word": "software" }, { "confidence": 1, "end": 57.215, "punctuated_word": "As", "speaker": 0, "speaker_confidence": 0.64941406, "start": 57.055, "word": "as" }, { "confidence": 1, "end": 57.375, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.64941406, "start": 57.215, "word": "a" }, { "confidence": 0.9995117, "end": 57.855, "punctuated_word": "developer,", "speaker": 0, "speaker_confidence": 0.64941406, "start": 57.375, "word": "developer" }, { "confidence": 1, "end": 58.094997, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.64941406, "start": 57.855, "word": "there" }, { "confidence": 0.99609375, "end": 58.175, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.64941406, "start": 58.094997, "word": "are" }, { "confidence": 1, "end": 58.335, "punctuated_word": "many", "speaker": 0, "speaker_confidence": 0.7524414, "start": 58.175, "word": "many" }, { "confidence": 0.9951172, "end": 58.574997, "punctuated_word": "different", "speaker": 0, "speaker_confidence": 0.7524414, "start": 58.335, "word": "different" }, { "confidence": 1, "end": 58.815, "punctuated_word": "ways", "speaker": 0, "speaker_confidence": 0.7524414, "start": 58.574997, "word": "ways" }, { "confidence": 0.9970703, "end": 58.894997, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7524414, "start": 58.815, "word": "you" }, { "confidence": 1, "end": 59.055, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7524414, "start": 58.894997, "word": "can" }, { "confidence": 1, "end": 59.295, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.7524414, "start": 59.055, "word": "build" }, { "confidence": 1, "end": 59.454998, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7524414, "start": 59.295, "word": "a" }, { "confidence": 0.86083984, "end": 59.954998, "punctuated_word": "WebAssembly", "speaker": 0, "speaker_confidence": 0.7524414, "start": 59.454998, "word": "webassembly" }, { "confidence": 0.97314453, "end": 60.335, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.7524414, "start": 60.015, "word": "app" }, { "confidence": 0.6958008, "end": 60.574997, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.7524414, "start": 60.335, "word": "with" }, { "confidence": 1, "end": 60.815, "punctuated_word": "many", "speaker": 0, "speaker_confidence": 0.7524414, "start": 60.574997, "word": "many" }, { "confidence": 1, "end": 61.055, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.7524414, "start": 60.815, "word": "more" }, { "confidence": 1, "end": 61.295, "punctuated_word": "under", "speaker": 0, "speaker_confidence": 0.7524414, "start": 61.055, "word": "under" }, { "confidence": 0.9921875, "end": 61.795, "punctuated_word": "development.", "speaker": 0, "speaker_confidence": 0.7524414, "start": 61.295, "word": "development" }, { "confidence": 0.76660156, "end": 62.015, "punctuated_word": "One", "speaker": 0, "speaker_confidence": 0.7524414, "start": 61.855, "word": "one" }, { "confidence": 1, "end": 62.094997, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7524414, "start": 62.015, "word": "of" }, { "confidence": 1, "end": 62.175, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7524414, "start": 62.094997, "word": "the" }, { "confidence": 0.99902344, "end": 62.495, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 0.8847656, "start": 62.175, "word": "most" }, { "confidence": 1, "end": 62.815, "punctuated_word": "popular", "speaker": 0, "speaker_confidence": 0.8847656, "start": 62.495, "word": "popular" }, { "confidence": 1, "end": 63.23, "punctuated_word": "tools", "speaker": 0, "speaker_confidence": 0.8847656, "start": 62.815, "word": "tools" }, { "confidence": 0.31445312, "end": 63.47, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8847656, "start": 63.31, "word": "is" }, { "confidence": 0.84287107, "end": 63.97, "punctuated_word": "Emscripten,", "speaker": 0, "speaker_confidence": 0.8847656, "start": 63.47, "word": "emscripten" }, { "confidence": 0.9970703, "end": 64.35, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.8847656, "start": 64.19, "word": "which" }, { "confidence": 0.9951172, "end": 64.59, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.8847656, "start": 64.35, "word": "can" }, { "confidence": 0.99902344, "end": 64.99, "punctuated_word": "convert", "speaker": 0, "speaker_confidence": 0.8847656, "start": 64.59, "word": "convert" }, { "confidence": 0.87890625, "end": 65.15, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8847656, "start": 64.99, "word": "a" }, { "confidence": 0.86279297, "end": 65.39, "punctuated_word": "c", "speaker": 0, "speaker_confidence": 0.8847656, "start": 65.15, "word": "c" }, { "confidence": 0.9902344, "end": 65.63, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.8847656, "start": 65.39, "word": "or" }, { "confidence": 0.8935547, "end": 65.79, "punctuated_word": "c", "speaker": 0, "speaker_confidence": 0.8847656, "start": 65.63, "word": "c" }, { "confidence": 0.9790039, "end": 66.11, "punctuated_word": "plus", "speaker": 0, "speaker_confidence": 0.8847656, "start": 65.79, "word": "plus" }, { "confidence": 0.99316406, "end": 66.35, "punctuated_word": "plus", "speaker": 0, "speaker_confidence": 0.8847656, "start": 66.11, "word": "plus" }, { "confidence": 0.9951172, "end": 66.67, "punctuated_word": "program", "speaker": 0, "speaker_confidence": 0.8847656, "start": 66.35, "word": "program" }, { "confidence": 0.9980469, "end": 66.909996, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8847656, "start": 66.67, "word": "to" }, { "confidence": 0.78792316, "end": 67.409996, "punctuated_word": "WebAssembly,", "speaker": 0, "speaker_confidence": 0.8847656, "start": 66.909996, "word": "webassembly" }, { "confidence": 0.99902344, "end": 67.87, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.8847656, "start": 67.71, "word": "as" }, { "confidence": 1, "end": 68.03, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8847656, "start": 67.87, "word": "it" }, { "confidence": 1, "end": 68.19, "punctuated_word": "did", "speaker": 0, "speaker_confidence": 0.8847656, "start": 68.03, "word": "did" }, { "confidence": 0.99902344, "end": 68.35, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.8847656, "start": 68.19, "word": "by" }, { "confidence": 0.9970703, "end": 68.75, "punctuated_word": "bringing", "speaker": 0, "speaker_confidence": 0.8847656, "start": 68.35, "word": "bringing" }, { "confidence": 0.9876302, "end": 69.229996, "punctuated_word": "AutoCAD", "speaker": 0, "speaker_confidence": 0.8847656, "start": 68.75, "word": "autocad" }, { "confidence": 0.9970703, "end": 69.39, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8847656, "start": 69.229996, "word": "to" }, { "confidence": 1, "end": 69.55, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8847656, "start": 69.39, "word": "the" }, { "confidence": 0.953125, "end": 69.71, "punctuated_word": "web,", "speaker": 0, "speaker_confidence": 0.8847656, "start": 69.55, "word": "web" }, { "confidence": 1, "end": 69.95, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.8847656, "start": 69.71, "word": "which" }, { "confidence": 0.99902344, "end": 70.11, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8847656, "start": 69.95, "word": "is" }, { "confidence": 0.9970703, "end": 70.27, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8847656, "start": 70.11, "word": "a" }, { "confidence": 0.9970703, "end": 70.51, "punctuated_word": "30", "speaker": 0, "speaker_confidence": 0.8847656, "start": 70.27, "word": "30" }, { "confidence": 0.9980469, "end": 70.67, "punctuated_word": "year", "speaker": 0, "speaker_confidence": 0.8847656, "start": 70.51, "word": "year" }, { "confidence": 0.99902344, "end": 70.83, "punctuated_word": "old", "speaker": 0, "speaker_confidence": 0.8847656, "start": 70.67, "word": "old" }, { "confidence": 0.99902344, "end": 70.99, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.8847656, "start": 70.83, "word": "code" }, { "confidence": 0.7602539, "end": 71.49, "punctuated_word": "base.", "speaker": 0, "speaker_confidence": 0.8847656, "start": 70.99, "word": "base" }, { "confidence": 0.9770508, "end": 72.11, "punctuated_word": "No", "speaker": 0, "speaker_confidence": 0, "start": 71.71, "word": "no" }, { "confidence": 0.9921875, "end": 72.61, "punctuated_word": "way.", "speaker": 0, "speaker_confidence": 0, "start": 72.11, "word": "way" }, { "confidence": 0.9658203, "end": 73.555, "punctuated_word": "One", "speaker": 0, "speaker_confidence": 0.359375, "start": 73.395, "word": "one" }, { "confidence": 1, "end": 73.595, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.359375, "start": 73.555, "word": "of" }, { "confidence": 1, "end": 73.635, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.359375, "start": 73.595, "word": "the" }, { "confidence": 0.99902344, "end": 73.875, "punctuated_word": "best", "speaker": 0, "speaker_confidence": 0.359375, "start": 73.635, "word": "best" }, { "confidence": 0.99902344, "end": 74.115, "punctuated_word": "ways", "speaker": 0, "speaker_confidence": 0.359375, "start": 73.875, "word": "ways" }, { "confidence": 1, "end": 74.195, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.359375, "start": 74.115, "word": "to" }, { "confidence": 1, "end": 74.354996, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.8046875, "start": 74.195, "word": "get" }, { "confidence": 1, "end": 74.674995, "punctuated_word": "started", "speaker": 0, "speaker_confidence": 0.8046875, "start": 74.354996, "word": "started" }, { "confidence": 0.9980469, "end": 74.915, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8046875, "start": 74.674995, "word": "is" }, { "confidence": 1, "end": 75.075, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.8046875, "start": 74.915, "word": "with" }, { "confidence": 0.9296875, "end": 75.575, "punctuated_word": "AssemblyScript,", "speaker": 0, "speaker_confidence": 0.8046875, "start": 75.075, "word": "assemblyscript" }, { "confidence": 1, "end": 76.034996, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.8046875, "start": 75.795, "word": "which" }, { "confidence": 1, "end": 76.195, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8046875, "start": 76.034996, "word": "is" }, { "confidence": 0.9941406, "end": 76.354996, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8046875, "start": 76.195, "word": "a" }, { "confidence": 1, "end": 76.674995, "punctuated_word": "language", "speaker": 0, "speaker_confidence": 0.8046875, "start": 76.354996, "word": "language" }, { "confidence": 0.99902344, "end": 76.835, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8046875, "start": 76.674995, "word": "that" }, { "confidence": 1, "end": 77.075, "punctuated_word": "looks", "speaker": 0, "speaker_confidence": 0.8046875, "start": 76.835, "word": "looks" }, { "confidence": 0.99902344, "end": 77.315, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.8046875, "start": 77.075, "word": "like" }, { "confidence": 0.86588544, "end": 77.795, "punctuated_word": "TypeScript,", "speaker": 0, "speaker_confidence": 0.8046875, "start": 77.315, "word": "typescript" }, { "confidence": 0.99902344, "end": 78.034996, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.8046875, "start": 77.795, "word": "but" }, { "confidence": 0.9946289, "end": 78.435, "punctuated_word": "compiles", "speaker": 0, "speaker_confidence": 0.8046875, "start": 78.034996, "word": "compiles" }, { "confidence": 0.9970703, "end": 78.595, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8046875, "start": 78.435, "word": "to" }, { "confidence": 0.97509766, "end": 79.095, "punctuated_word": "WebAssembly.", "speaker": 0, "speaker_confidence": 0.8046875, "start": 78.595, "word": "webassembly" }, { "confidence": 0.99902344, "end": 79.315, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.8198242, "start": 79.235, "word": "we" }, { "confidence": 0.99902344, "end": 79.555, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.8198242, "start": 79.315, "word": "can" }, { "confidence": 0.9980469, "end": 79.795, "punctuated_word": "easily", "speaker": 0, "speaker_confidence": 0.8198242, "start": 79.555, "word": "easily" }, { "confidence": 0.99902344, "end": 80.034996, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 0.8198242, "start": 79.795, "word": "start" }, { "confidence": 0.9873047, "end": 80.195, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8198242, "start": 80.034996, "word": "a" }, { "confidence": 0.9873047, "end": 80.354996, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.8198242, "start": 80.195, "word": "new" }, { "confidence": 0.93359375, "end": 80.854996, "punctuated_word": "AssemblyScript", "speaker": 0, "speaker_confidence": 0.8198242, "start": 80.354996, "word": "assemblyscript" }, { "confidence": 0.69091797, "end": 81.520004, "punctuated_word": "Project", "speaker": 0, "speaker_confidence": 0.8198242, "start": 81.12, "word": "project" }, { "confidence": 0.55908203, "end": 81.76, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.8198242, "start": 81.520004, "word": "using" }, { "confidence": 0.8540039, "end": 82.16, "punctuated_word": "Node", "speaker": 0, "speaker_confidence": 0.8198242, "start": 81.76, "word": "node" }, { "confidence": 0.49609375, "end": 82.48, "punctuated_word": "JS", "speaker": 0, "speaker_confidence": 0.8198242, "start": 82.16, "word": "js" }, { "confidence": 0.7597656, "end": 82.72, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8198242, "start": 82.48, "word": "and" }, { "confidence": 0.8014323, "end": 83.22, "punctuated_word": "NPM,", "speaker": 0, "speaker_confidence": 0.8198242, "start": 82.72, "word": "npm" }, { "confidence": 0.8491211, "end": 83.6, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.8198242, "start": 83.36, "word": "then" }, { "confidence": 0.9589844, "end": 83.68, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.8198242, "start": 83.6, "word": "we'll" }, { "confidence": 0.9951172, "end": 83.840004, "punctuated_word": "write", "speaker": 0, "speaker_confidence": 0.96875, "start": 83.68, "word": "write" }, { "confidence": 0.9980469, "end": 84, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.96875, "start": 83.840004, "word": "our" }, { "confidence": 0.5517578, "end": 84.24, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 0.96875, "start": 84, "word": "first" }, { "confidence": 0.93188477, "end": 84.74, "punctuated_word": "WebAssembly", "speaker": 0, "speaker_confidence": 0.96875, "start": 84.24, "word": "webassembly" }, { "confidence": 0.97802734, "end": 85.36, "punctuated_word": "module", "speaker": 0, "speaker_confidence": 0.96875, "start": 84.88, "word": "module" }, { "confidence": 0.97314453, "end": 85.520004, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.96875, "start": 85.36, "word": "in" }, { "confidence": 0.99609375, "end": 85.68, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.96875, "start": 85.520004, "word": "the" }, { "confidence": 0.93603516, "end": 86.08, "punctuated_word": "index", "speaker": 0, "speaker_confidence": 0.96875, "start": 85.68, "word": "index" }, { "confidence": 0.77441406, "end": 86.32, "punctuated_word": "TS", "speaker": 0, "speaker_confidence": 0.96875, "start": 86.08, "word": "ts" }, { "confidence": 0.9941406, "end": 86.82, "punctuated_word": "file.", "speaker": 0, "speaker_confidence": 0.96875, "start": 86.32, "word": "file" }, { "confidence": 0.99902344, "end": 87.28, "punctuated_word": "Unlike", "speaker": 0, "speaker_confidence": 0.96875, "start": 86.88, "word": "unlike" }, { "confidence": 0.97314453, "end": 87.78, "punctuated_word": "JavaScript,", "speaker": 0, "speaker_confidence": 0.96875, "start": 87.28, "word": "javascript" }, { "confidence": 1, "end": 88.16, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.96875, "start": 87.92, "word": "a" }, { "confidence": 0.99609375, "end": 88.66, "punctuated_word": "dynamic", "speaker": 0, "speaker_confidence": 0.96875, "start": 88.16, "word": "dynamic" }, { "confidence": 0.96435547, "end": 89.2, "punctuated_word": "interpreted", "speaker": 0, "speaker_confidence": 0.96875, "start": 88.72, "word": "interpreted" }, { "confidence": 0.9975586, "end": 89.7, "punctuated_word": "language,", "speaker": 0, "speaker_confidence": 0.96875, "start": 89.2, "word": "language" }, { "confidence": 0.9975586, "end": 90.42, "punctuated_word": "WebAssembly", "speaker": 0, "speaker_confidence": 0.96875, "start": 89.92, "word": "webassembly" }, { "confidence": 0.99902344, "end": 90.72, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.96875, "start": 90.56, "word": "is" }, { "confidence": 0.9980469, "end": 90.905, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.96875, "start": 90.72, "word": "a" }, { "confidence": 0.7709961, "end": 91.385, "punctuated_word": "static", "speaker": 0, "speaker_confidence": 0.96875, "start": 90.985, "word": "static" }, { "confidence": 0.8598633, "end": 91.784996, "punctuated_word": "compiled", "speaker": 0, "speaker_confidence": 0.96875, "start": 91.385, "word": "compiled" }, { "confidence": 0.7661133, "end": 92.185, "punctuated_word": "language,", "speaker": 0, "speaker_confidence": 0.96875, "start": 91.784996, "word": "language" }, { "confidence": 0.99902344, "end": 92.505, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.96875, "start": 92.185, "word": "with" }, { "confidence": 1, "end": 92.825, "punctuated_word": "strict", "speaker": 0, "speaker_confidence": 0.96875, "start": 92.505, "word": "strict" }, { "confidence": 0.9980469, "end": 93.065, "punctuated_word": "type", "speaker": 0, "speaker_confidence": 0.96875, "start": 92.825, "word": "type" }, { "confidence": 0.99853516, "end": 93.565, "punctuated_word": "guarantees.", "speaker": 0, "speaker_confidence": 0.96875, "start": 93.065, "word": "guarantees" }, { "confidence": 1, "end": 93.865, "punctuated_word": "For", "speaker": 0, "speaker_confidence": 0.96875, "start": 93.705, "word": "for" }, { "confidence": 0.99853516, "end": 94.365, "punctuated_word": "example,", "speaker": 0, "speaker_confidence": 0.96875, "start": 93.865, "word": "example" }, { "confidence": 0.99902344, "end": 94.665, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.96875, "start": 94.424995, "word": "our" }, { "confidence": 1, "end": 94.905, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.96875, "start": 94.665, "word": "code" }, { "confidence": 1, "end": 95.145, "punctuated_word": "can't", "speaker": 0, "speaker_confidence": 0.96875, "start": 94.905, "word": "can't" }, { "confidence": 1, "end": 95.385, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.96875, "start": 95.145, "word": "use" }, { "confidence": 0.9980469, "end": 95.545, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.96875, "start": 95.385, "word": "the" }, { "confidence": 0.94921875, "end": 95.784996, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 0.96875, "start": 95.545, "word": "any" }, { "confidence": 0.99072266, "end": 96.185, "punctuated_word": "type.", "speaker": 0, "speaker_confidence": 0.96875, "start": 95.784996, "word": "type" }, { "confidence": 0.99902344, "end": 96.345, "punctuated_word": "When", "speaker": 0, "speaker_confidence": 0.96875, "start": 96.185, "word": "when" }, { "confidence": 1, "end": 96.424995, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.96875, "start": 96.345, "word": "it" }, { "confidence": 1, "end": 96.665, "punctuated_word": "comes", "speaker": 0, "speaker_confidence": 0.9433594, "start": 96.424995, "word": "comes" }, { "confidence": 0.99902344, "end": 96.825, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9433594, "start": 96.665, "word": "to" }, { "confidence": 0.99902344, "end": 97.305, "punctuated_word": "numbers,", "speaker": 0, "speaker_confidence": 0.9433594, "start": 96.825, "word": "numbers" }, { "confidence": 1, "end": 97.545, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.9433594, "start": 97.305, "word": "we" }, { "confidence": 1, "end": 97.705, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.9433594, "start": 97.545, "word": "need" }, { "confidence": 1, "end": 97.865, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9433594, "start": 97.705, "word": "to" }, { "confidence": 1, "end": 98.365, "punctuated_word": "specify", "speaker": 0, "speaker_confidence": 0.9433594, "start": 97.865, "word": "specify" }, { "confidence": 1, "end": 98.585, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9433594, "start": 98.424995, "word": "a" }, { "confidence": 0.87841797, "end": 99.065, "punctuated_word": "32", "speaker": 0, "speaker_confidence": 0.9433594, "start": 98.585, "word": "32" }, { "confidence": 0.97998047, "end": 99.305, "punctuated_word": "bit", "speaker": 0, "speaker_confidence": 0.9433594, "start": 99.065, "word": "bit" }, { "confidence": 0.98828125, "end": 99.805, "punctuated_word": "integer", "speaker": 0, "speaker_confidence": 0.9433594, "start": 99.305, "word": "integer" }, { "confidence": 0.77685547, "end": 100.025, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.9433594, "start": 99.865, "word": "or" }, { "confidence": 0.9892578, "end": 100.104996, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9433594, "start": 100.025, "word": "a" }, { "confidence": 0.93847656, "end": 100.585, "punctuated_word": "64", "speaker": 0, "speaker_confidence": 0.9433594, "start": 100.104996, "word": "64" }, { "confidence": 0.99316406, "end": 100.89, "punctuated_word": "bit", "speaker": 0, "speaker_confidence": 0.9433594, "start": 100.585, "word": "bit" }, { "confidence": 0.9404297, "end": 101.21, "punctuated_word": "floating", "speaker": 0, "speaker_confidence": 0.9433594, "start": 100.97, "word": "floating" }, { "confidence": 0.9807129, "end": 101.53, "punctuated_word": "point.", "speaker": 0, "speaker_confidence": 0.9433594, "start": 101.21, "word": "point" }, { "confidence": 0.99902344, "end": 101.77, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.9433594, "start": 101.53, "word": "in" }, { "confidence": 0.9995117, "end": 102.09, "punctuated_word": "addition,", "speaker": 0, "speaker_confidence": 0.9433594, "start": 101.77, "word": "addition" }, { "confidence": 0.9980469, "end": 102.25, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.9433594, "start": 102.09, "word": "we" }, { "confidence": 1, "end": 102.49, "punctuated_word": "can't", "speaker": 0, "speaker_confidence": 0.9433594, "start": 102.25, "word": "can't" }, { "confidence": 0.99902344, "end": 102.729996, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.9433594, "start": 102.49, "word": "use" }, { "confidence": 0.9970703, "end": 103.13, "punctuated_word": "dynamic", "speaker": 0, "speaker_confidence": 0.9433594, "start": 102.729996, "word": "dynamic" }, { "confidence": 0.8701172, "end": 103.63, "punctuated_word": "objects.", "speaker": 0, "speaker_confidence": 0.9433594, "start": 103.13, "word": "objects" }, { "confidence": 0.9914551, "end": 104.17, "punctuated_word": "Instead,", "speaker": 0, "speaker_confidence": 0.9433594, "start": 103.85, "word": "instead" }, { "confidence": 1, "end": 104.33, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.9433594, "start": 104.17, "word": "we" }, { "confidence": 0.9941406, "end": 104.57, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.9433594, "start": 104.33, "word": "use" }, { "confidence": 0.9614258, "end": 104.89, "punctuated_word": "maps", "speaker": 0, "speaker_confidence": 0.9433594, "start": 104.57, "word": "maps" }, { "confidence": 0.61376953, "end": 105.13, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.9433594, "start": 104.89, "word": "where" }, { "confidence": 0.99902344, "end": 105.21, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.9433594, "start": 105.13, "word": "we" }, { "confidence": 0.99902344, "end": 105.37, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9433594, "start": 105.21, "word": "can" }, { "confidence": 0.9970703, "end": 105.77, "punctuated_word": "strongly", "speaker": 0, "speaker_confidence": 0.9433594, "start": 105.37, "word": "strongly" }, { "confidence": 1, "end": 106.01, "punctuated_word": "type", "speaker": 0, "speaker_confidence": 0.9433594, "start": 105.77, "word": "type" }, { "confidence": 0.9892578, "end": 106.17, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9433594, "start": 106.01, "word": "the" }, { "confidence": 1, "end": 106.33, "punctuated_word": "key", "speaker": 0, "speaker_confidence": 0.9433594, "start": 106.17, "word": "key" }, { "confidence": 0.99902344, "end": 106.57, "punctuated_word": "value", "speaker": 0, "speaker_confidence": 0.9433594, "start": 106.33, "word": "value" }, { "confidence": 0.99853516, "end": 107.05, "punctuated_word": "pairs.", "speaker": 0, "speaker_confidence": 0.9433594, "start": 106.57, "word": "pairs" }, { "confidence": 1, "end": 107.29, "punctuated_word": "Once", "speaker": 0, "speaker_confidence": 0.9433594, "start": 107.05, "word": "once" }, { "confidence": 0.99658203, "end": 107.37, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.9433594, "start": 107.29, "word": "we're" }, { "confidence": 1, "end": 107.61, "punctuated_word": "happy", "speaker": 0, "speaker_confidence": 0.9433594, "start": 107.37, "word": "happy" }, { "confidence": 1, "end": 107.77, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.9433594, "start": 107.61, "word": "with" }, { "confidence": 1, "end": 107.93, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.9433594, "start": 107.77, "word": "our" }, { "confidence": 0.99853516, "end": 108.25, "punctuated_word": "code,", "speaker": 0, "speaker_confidence": 0.9433594, "start": 107.93, "word": "code" }, { "confidence": 1, "end": 108.33, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.79833984, "start": 108.25, "word": "we" }, { "confidence": 0.99902344, "end": 108.49, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.79833984, "start": 108.33, "word": "can" }, { "confidence": 0.99121094, "end": 108.729996, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.79833984, "start": 108.49, "word": "then" }, { "confidence": 0.9980469, "end": 109.05, "punctuated_word": "compile", "speaker": 0, "speaker_confidence": 0.79833984, "start": 108.729996, "word": "compile" }, { "confidence": 1, "end": 109.21, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.79833984, "start": 109.05, "word": "it" }, { "confidence": 1, "end": 109.369995, "punctuated_word": "down", "speaker": 0, "speaker_confidence": 0.79833984, "start": 109.21, "word": "down" }, { "confidence": 0.9980469, "end": 109.53, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.79833984, "start": 109.369995, "word": "to" }, { "confidence": 0.9873047, "end": 109.69, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.79833984, "start": 109.53, "word": "a" }, { "confidence": 0.97021484, "end": 110.095, "punctuated_word": "binary,", "speaker": 0, "speaker_confidence": 0.79833984, "start": 109.69, "word": "binary" }, { "confidence": 0.99902344, "end": 110.415, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.79833984, "start": 110.255005, "word": "which" }, { "confidence": 1, "end": 110.575005, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.79833984, "start": 110.415, "word": "is" }, { "confidence": 0.99902344, "end": 110.655, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.79833984, "start": 110.575005, "word": "a" }, { "confidence": 1, "end": 111.055, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 0.79833984, "start": 110.655, "word": "file" }, { "confidence": 0.9951172, "end": 111.295, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.79833984, "start": 111.055, "word": "that" }, { "confidence": 0.99902344, "end": 111.615, "punctuated_word": "ends", "speaker": 0, "speaker_confidence": 0.79833984, "start": 111.295, "word": "ends" }, { "confidence": 0.96777344, "end": 111.775, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.79833984, "start": 111.615, "word": "in" }, { "confidence": 0.7362671, "end": 112.275, "punctuated_word": "dotwasm.", "speaker": 0, "speaker_confidence": 0.79833984, "start": 111.775, "word": "dotwasm" }, { "confidence": 0.99902344, "end": 112.655, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.79833984, "start": 112.495, "word": "we" }, { "confidence": 0.9980469, "end": 112.815, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.79833984, "start": 112.655, "word": "can" }, { "confidence": 0.99316406, "end": 112.975, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 0.79833984, "start": 112.815, "word": "now" }, { "confidence": 1, "end": 113.135, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.7519531, "start": 112.975, "word": "run" }, { "confidence": 1, "end": 113.295, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.7519531, "start": 113.135, "word": "this" }, { "confidence": 1, "end": 113.775, "punctuated_word": "binary", "speaker": 0, "speaker_confidence": 0.7519531, "start": 113.295, "word": "binary" }, { "confidence": 1, "end": 113.855, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7519531, "start": 113.775, "word": "in" }, { "confidence": 1, "end": 114.015, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7519531, "start": 113.855, "word": "the" }, { "confidence": 0.93603516, "end": 114.515, "punctuated_word": "browser,", "speaker": 0, "speaker_confidence": 0.7519531, "start": 114.015, "word": "browser" }, { "confidence": 0.9980469, "end": 114.895004, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.7519531, "start": 114.655, "word": "open" }, { "confidence": 0.99121094, "end": 115.055, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.7519531, "start": 114.895004, "word": "an" }, { "confidence": 0.88964844, "end": 115.555, "punctuated_word": "HTML", "speaker": 0, "speaker_confidence": 0.7519531, "start": 115.055, "word": "html" }, { "confidence": 0.98461914, "end": 116.095, "punctuated_word": "page,", "speaker": 0, "speaker_confidence": 0.7519531, "start": 115.615, "word": "page" }, { "confidence": 1, "end": 116.175, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.83691406, "start": 116.095, "word": "and" }, { "confidence": 0.984375, "end": 116.335, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.83691406, "start": 116.175, "word": "then" }, { "confidence": 0.98095703, "end": 116.575005, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.83691406, "start": 116.335, "word": "use" }, { "confidence": 1, "end": 116.735, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.83691406, "start": 116.575005, "word": "the" }, { "confidence": 0.828125, "end": 117.235, "punctuated_word": "WebAssembly", "speaker": 0, "speaker_confidence": 0.83691406, "start": 116.735, "word": "webassembly" }, { "confidence": 0.97998047, "end": 117.955, "punctuated_word": "API", "speaker": 0, "speaker_confidence": 0.83691406, "start": 117.455, "word": "api" }, { "confidence": 0.99902344, "end": 118.335, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.83691406, "start": 118.095, "word": "to" }, { "confidence": 0.9980469, "end": 118.835, "punctuated_word": "instantiate", "speaker": 0, "speaker_confidence": 0.83691406, "start": 118.335, "word": "instantiate" }, { "confidence": 0.99902344, "end": 119.475, "punctuated_word": "streaming.", "speaker": 0, "speaker_confidence": 0.83691406, "start": 118.975, "word": "streaming" }, { "confidence": 0.9980469, "end": 120.03, "punctuated_word": "Simply", "speaker": 0, "speaker_confidence": 0.83691406, "start": 119.79, "word": "simply" }, { "confidence": 0.99902344, "end": 120.189995, "punctuated_word": "fetch", "speaker": 0, "speaker_confidence": 0.83691406, "start": 120.03, "word": "fetch" }, { "confidence": 1, "end": 120.43, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.83691406, "start": 120.189995, "word": "the" }, { "confidence": 0.9638672, "end": 120.93, "punctuated_word": "binary,", "speaker": 0, "speaker_confidence": 0.83691406, "start": 120.43, "word": "binary" }, { "confidence": 0.9707031, "end": 121.149994, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.83691406, "start": 120.99, "word": "and" }, { "confidence": 0.9863281, "end": 121.31, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.83691406, "start": 121.149994, "word": "when" }, { "confidence": 1, "end": 121.39, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6147461, "start": 121.31, "word": "the" }, { "confidence": 0.9970703, "end": 121.869995, "punctuated_word": "promise", "speaker": 0, "speaker_confidence": 0.6147461, "start": 121.39, "word": "promise" }, { "confidence": 0.95751953, "end": 122.35, "punctuated_word": "resolves,", "speaker": 0, "speaker_confidence": 0.6147461, "start": 121.869995, "word": "resolves" }, { "confidence": 1, "end": 122.509995, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.6147461, "start": 122.35, "word": "do" }, { "confidence": 1, "end": 122.829994, "punctuated_word": "something", "speaker": 0, "speaker_confidence": 0.6147461, "start": 122.509995, "word": "something" }, { "confidence": 1, "end": 122.99, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.6147461, "start": 122.829994, "word": "with" }, { "confidence": 0.99902344, "end": 123.49, "punctuated_word": "it.", "speaker": 0, "speaker_confidence": 0.6147461, "start": 122.99, "word": "it" }, { "confidence": 0.99902344, "end": 123.71, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.9140625, "start": 123.63, "word": "this" }, { "confidence": 0.9970703, "end": 123.869995, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.9140625, "start": 123.71, "word": "has" }, { "confidence": 1, "end": 124.03, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.9140625, "start": 123.869995, "word": "been" }, { "confidence": 0.8391113, "end": 124.53, "punctuated_word": "WebAssembly", "speaker": 0, "speaker_confidence": 0.9140625, "start": 124.03, "word": "webassembly" }, { "confidence": 0.9482422, "end": 124.909996, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9140625, "start": 124.67, "word": "in" }, { "confidence": 0.9658203, "end": 125.31, "punctuated_word": "100", "speaker": 0, "speaker_confidence": 0.9140625, "start": 124.909996, "word": "100" }, { "confidence": 0.9748535, "end": 125.71, "punctuated_word": "seconds.", "speaker": 0, "speaker_confidence": 0.9140625, "start": 125.31, "word": "seconds" }, { "confidence": 0.99902344, "end": 125.869995, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.9140625, "start": 125.71, "word": "if" }, { "confidence": 1, "end": 126.03, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.9140625, "start": 125.869995, "word": "you" }, { "confidence": 0.8432617, "end": 126.189995, "punctuated_word": "wanna", "speaker": 0, "speaker_confidence": 0.9140625, "start": 126.03, "word": "wanna" }, { "confidence": 0.9980469, "end": 126.43, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.9140625, "start": 126.189995, "word": "see" }, { "confidence": 1, "end": 126.509995, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9140625, "start": 126.43, "word": "a" }, { "confidence": 1, "end": 126.75, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.9140625, "start": 126.509995, "word": "more" }, { "confidence": 1, "end": 127.229996, "punctuated_word": "in-depth", "speaker": 0, "speaker_confidence": 0.9140625, "start": 126.75, "word": "in-depth" }, { "confidence": 1, "end": 127.549995, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.9140625, "start": 127.229996, "word": "video" }, { "confidence": 1, "end": 127.63, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.9140625, "start": 127.549995, "word": "on" }, { "confidence": 1, "end": 127.869995, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.9140625, "start": 127.63, "word": "this" }, { "confidence": 0.99853516, "end": 128.26999, "punctuated_word": "topic,", "speaker": 0, "speaker_confidence": 0.9140625, "start": 127.869995, "word": "topic" }, { "confidence": 1, "end": 128.51, "punctuated_word": "please", "speaker": 0, "speaker_confidence": 0.9140625, "start": 128.26999, "word": "please" }, { "confidence": 1, "end": 128.67, "punctuated_word": "let", "speaker": 0, "speaker_confidence": 0.9140625, "start": 128.51, "word": "let" }, { "confidence": 1, "end": 128.75, "punctuated_word": "me", "speaker": 0, "speaker_confidence": 0.8125, "start": 128.67, "word": "me" }, { "confidence": 1, "end": 128.91, "punctuated_word": "know", "speaker": 0, "speaker_confidence": 0.8125, "start": 128.75, "word": "know" }, { "confidence": 0.99316406, "end": 129.06999, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8125, "start": 128.91, "word": "in" }, { "confidence": 1, "end": 129.15, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8125, "start": 129.06999, "word": "the" }, { "confidence": 0.82250977, "end": 129.615, "punctuated_word": "comments,", "speaker": 0, "speaker_confidence": 0.8125, "start": 129.15, "word": "comments" }, { "confidence": 0.9892578, "end": 129.88725, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8125, "start": 129.615, "word": "and" }, { "confidence": 1, "end": 130.1595, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.8125, "start": 129.88725, "word": "make" }, { "confidence": 1, "end": 130.43176, "punctuated_word": "sure", "speaker": 0, "speaker_confidence": 0.8125, "start": 130.1595, "word": "sure" }, { "confidence": 0.99902344, "end": 130.70401, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8125, "start": 130.43176, "word": "to" }, { "confidence": 1, "end": 130.97626, "punctuated_word": "subscribe", "speaker": 0, "speaker_confidence": 0.8125, "start": 130.70401, "word": "subscribe" }, { "confidence": 0.9428711, "end": 131.2485, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8125, "start": 130.97626, "word": "and" }, { "confidence": 1, "end": 131.52075, "punctuated_word": "hit", "speaker": 0, "speaker_confidence": 0.8125, "start": 131.2485, "word": "hit" }, { "confidence": 1, "end": 131.793, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8125, "start": 131.52075, "word": "the" }, { "confidence": 0.9667969, "end": 132.06526, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.8125, "start": 131.793, "word": "like" }, { "confidence": 1, "end": 132.33751, "punctuated_word": "button.", "speaker": 0, "speaker_confidence": 0.8125, "start": 132.06526, "word": "button" }, { "confidence": 1, "end": 132.60976, "punctuated_word": "Thanks", "speaker": 0, "speaker_confidence": 0.8125, "start": 132.33751, "word": "thanks" }, { "confidence": 1, "end": 132.882, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.8125, "start": 132.60976, "word": "for" }, { "confidence": 0.9536133, "end": 133.15425, "punctuated_word": "watching,", "speaker": 0, "speaker_confidence": 0.8125, "start": 132.882, "word": "watching" }, { "confidence": 1, "end": 133.42651, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8125, "start": 133.15425, "word": "and" }, { "confidence": 1, "end": 133.69876, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.8125, "start": 133.42651, "word": "i" }, { "confidence": 1, "end": 133.97101, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.8125, "start": 133.69876, "word": "will" }, { "confidence": 1, "end": 134.24326, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.8125, "start": 133.97101, "word": "see" }, { "confidence": 1, "end": 134.5155, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.8125, "start": 134.24326, "word": "you" }, { "confidence": 1, "end": 134.78775, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8125, "start": 134.5155, "word": "in" }, { "confidence": 1, "end": 135.06001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8125, "start": 134.78775, "word": "the" }, { "confidence": 1, "end": 135.33226, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.8125, "start": 135.06001, "word": "next" }, { "confidence": 0.9926758, "end": 135.6045, "punctuated_word": "one.", "speaker": 0, "speaker_confidence": 0.8125, "start": 135.33226, "word": "one" } ] } ], "detected_language": "", "language_confidence": 0, "search": null } ], "summary": { "result": "success", "short": "The speaker discusses the benefits of Web reminded for building web applications with multiple languages and recommends using AssemblyScript for dynamic interpreted code. They also suggest building a Web reminded app using advised builds and Emscripten for dynamic objects. The speaker emphasizes the importance of setting a 32 bit integer or 64 bit floating point for dynamic objects and recommends Emscripten for dynamic interpreted code." }, "utterances": null } }
downloads\Web_Assembly_(WASM)_in_100_Seconds.wav
https://www.youtube.com/watch?v=cbB3QEwWMlA
Web Assembly (WASM) in 100 Seconds
822,377
Fireship
187
Blockchain networks are virtually unhackable, but crypto exchanges not so much. In 2016, hackers stole 4.5 billion in BTC from the Bitfinex exchange - in 2022 they were busted trying to launder the money. Let's take a look at security on crypto exchanges. #crypto #hacking #TheCodeReport 🔗 Resources DOJ Documents https://www.justice.gov/opa/pr/two-arrested-alleged-conspiracy-launder-45-billion-stolen-cryptocurrency Bitfinex hack https://en.wikipedia.org/wiki/2016_Bitfinex_hack Blockchain in 100 Seconds https://youtu.be/qF7dkrce-mQ 🔥 Get More Content - Upgrade to PRO Upgrade to Fireship PRO at https://fireship.io/pro Use code lORhwXd2 for 25% off your first payment. 🎨 My Editor Settings - Atom One Dark - vscode-icons - Fira Code Font 🔖 Topics Covered - 2016 Bitfinex hack - Arrest of Ilya Lichtenstein and Heather Morgan - How does bitcoin get hacked - Are crypto exchanges safe? - Cold wallet vs Hot wallet - Multi-signature wallets - RazzleKhan rapper
{ "metadata": { "channels": 1, "created": "2024-02-04T13:42:38.557Z", "duration": 186.92062, "model_info": { "30089e05-99d1-4376-b32e-c263170674af": { "arch": "nova-2", "name": "2-general-nova", "version": "2024-01-09.29447" } }, "models": [ "30089e05-99d1-4376-b32e-c263170674af" ], "request_id": "63f890b6-2819-403f-bc9e-df6e1b6bba6d", "sha256": "120d0ae5cac8ff353ff96f518f036685ac2b26a312c8a8217811558de06ade28", "summary_info": { "input_tokens": 840, "model_uuid": "67875a7f-c9c4-48a0-aa55-5bdb8a91c34a", "output_tokens": 69 }, "transaction_key": "deprecated", "warnings": null }, "results": { "channels": [ { "alternatives": [ { "confidence": 0.9980469, "entities": null, "paragraphs": { "paragraphs": [ { "end": 29.025, "num_words": 91, "sentences": [ { "end": 6.7999997, "start": 1.4399999, "text": "It is February 10th, 2022, and you're watching the code report, the most trusted name in tech news." }, { "end": 15.555, "start": 6.7999997, "text": "The neat thing about cryptocurrency is that it's trustless, and that means when you put your hard earned paycheck from Wendy's into a crypto exchange and somebody steals it, you'll probably never get that money back." }, { "end": 19.150002, "start": 15.555, "text": "But 10uously, it's not an anonymous safe haven for criminals either." }, { "end": 20.51, "start": 19.150002, "text": "Your classic lose lose." }, { "end": 29.025, "start": 20.51, "text": "Back in 2016, somebody stole a 120 some Bitcoin's worth $71,000,000 from the Bitfinex exchange by accessing the private keys of users." } ], "speaker": 0, "start": 1.4399999 }, { "end": 55.66, "num_words": 86, "sentences": [ { "end": 35.6, "start": 29.025, "text": "Today, those Bitcoins are worth $4,500,000,000 making the hackers some of the richest people on the planet, but there's just one problem." }, { "end": 40.655, "start": 35.739998, "text": "Bitcoin is a giant public ledger, and you can't move your money around without the feds watching your every move." }, { "end": 48.035, "start": 40.655, "text": "And last week, they recovered 94,000 of the stolen Bitcoins, and arrested the husband and wife duo of Ilya Lichtenstein and Heather Morgan." }, { "end": 51.74, "start": 48.094997, "text": "Ladies and gentlemen, We got him." }, { "end": 55.66, "start": 52.52, "text": "The saddest part of the story is that Heather was an up and coming rapper." } ], "speaker": 0, "start": 29.025 }, { "end": 70.68, "num_words": 51, "sentences": [ { "end": 58.46, "start": 55.72, "text": "This song is for the entrepreneurs and hackers." }, { "end": 60.075, "start": 58.775, "text": "All at Russell Collins." }, { "end": 61.675003, "start": 60.135002, "text": "The Versace better win." }, { "end": 64.315, "start": 61.815002, "text": "Come real far, but don't know where I'm headed." }, { "end": 70.68, "start": 64.455, "text": "Mother At least now, she does know where Tizhetit, the couple is facing up to 20 years in prison for attempting to launder the stolen Bitcoin." } ], "speaker": 0, "start": 55.72 }, { "end": 111.845, "num_words": 168, "sentences": [ { "end": 88.04, "start": 70.68, "text": "It's not clear if they're the ones that actually performed the hack back in 2016 though, documents from the Department of Justice break down how they would move the currency with a diverse array of transactions, like purchasing altcoins and NFTs is and then breaking everything down into thousands of smaller transactions where the funds would eventually flow into a business that could fund Heather's music videos." }, { "end": 92.905, "start": 88.04, "text": "They get an a for effort, but Bitcoin's not like a gold bar that you can Meltdown and Sell on the black market." }, { "end": 96.024994, "start": 92.905, "text": "On the bright side though, many of my favorite rappers have done time in prison." }, { "end": 104.99, "start": 96.024994, "text": "Another big question here is will the original owners be able to recover their funds, Bitfinex already attempted to make customers whole by crediting them with a different token when the hack occurred." }, { "end": 111.845, "start": 104.99, "text": "They are working with the Department of this, but it will likely be a very long and complicated process before anyone gets their Bitcoin back, if it happens at all." } ], "speaker": 0, "start": 70.68 }, { "end": 127.665, "num_words": 62, "sentences": [ { "end": 113.125, "start": 111.845, "text": "But what about your Bitcoin?" }, { "end": 114.8, "start": 113.125, "text": "Is it safe in an exchange right now?" }, { "end": 118.9, "start": 114.96001, "text": "Well, the blockchain network itself is virtually unhackable with current technology." }, { "end": 121.68, "start": 118.96001, "text": "Crypto exchanges on the other hand are very much hackable." }, { "end": 127.665, "start": 121.68, "text": "The thing about cryptocurrency Vee is that when someone obtains your private key, they have access to all of your money and can send it wherever they want." } ], "speaker": 0, "start": 111.845 }, { "end": 170.1, "num_words": 160, "sentences": [ { "end": 134.09001, "start": 127.665, "text": "There's no central authority to detect or stop fraudulent transactions, but they do implement other measures to keep your token safe." }, { "end": 138.43001, "start": 134.09001, "text": "1 is multi signature wallets that require multiple private keys to send a transaction." }, { "end": 153.47, "start": 138.73001, "text": "The other thing they do is try to keep as much crypto in cold storage as possible, there are 2 types of crypto wallets, a hot wallet, which is always connected to the Internet and ready to send transactions and the other is a cold wallet, which is offline and generally used for long term storage of your money." }, { "end": 157.09001, "start": 153.47, "text": "A cold wallet can only be hacked if you have physical possession of the device." }, { "end": 170.1, "start": 157.245, "text": "Exchanges like Coinbase keep 90% of your crypto in cold storage, and because they're a big centralized authority, if they ever got hacked, they'd have enough money to pay everybody off, there are stories of crypto exchanges being hacked all the time, but it is pretty safe for most people today." } ], "speaker": 0, "start": 127.665 }, { "end": 185.83556, "num_words": 74, "sentences": [ { "end": 181.735, "start": 170.1, "text": "But if you're really attached to your tokens, the safest thing to do is get them out of an exchange into your own cold storage wallet, then move out of the city and learn how to grow your own food, dig a bunker on your property, and store the wallet there alongside your gold and ammo." }, { "end": 183.015, "start": 181.735, "text": "This has been the Code Report." }, { "end": 185.83556, "start": 183.015, "text": "Thanks for watching, and I will see you in the next one." } ], "speaker": 0, "start": 170.1 } ], "transcript": "\nSpeaker 0: It is February 10th, 2022, and you're watching the code report, the most trusted name in tech news. The neat thing about cryptocurrency is that it's trustless, and that means when you put your hard earned paycheck from Wendy's into a crypto exchange and somebody steals it, you'll probably never get that money back. But 10uously, it's not an anonymous safe haven for criminals either. Your classic lose lose. Back in 2016, somebody stole a 120 some Bitcoin's worth $71,000,000 from the Bitfinex exchange by accessing the private keys of users.\n\nToday, those Bitcoins are worth $4,500,000,000 making the hackers some of the richest people on the planet, but there's just one problem. Bitcoin is a giant public ledger, and you can't move your money around without the feds watching your every move. And last week, they recovered 94,000 of the stolen Bitcoins, and arrested the husband and wife duo of Ilya Lichtenstein and Heather Morgan. Ladies and gentlemen, We got him. The saddest part of the story is that Heather was an up and coming rapper.\n\nThis song is for the entrepreneurs and hackers. All at Russell Collins. The Versace better win. Come real far, but don't know where I'm headed. Mother At least now, she does know where Tizhetit, the couple is facing up to 20 years in prison for attempting to launder the stolen Bitcoin.\n\nIt's not clear if they're the ones that actually performed the hack back in 2016 though, documents from the Department of Justice break down how they would move the currency with a diverse array of transactions, like purchasing altcoins and NFTs is and then breaking everything down into thousands of smaller transactions where the funds would eventually flow into a business that could fund Heather's music videos. They get an a for effort, but Bitcoin's not like a gold bar that you can Meltdown and Sell on the black market. On the bright side though, many of my favorite rappers have done time in prison. Another big question here is will the original owners be able to recover their funds, Bitfinex already attempted to make customers whole by crediting them with a different token when the hack occurred. They are working with the Department of this, but it will likely be a very long and complicated process before anyone gets their Bitcoin back, if it happens at all.\n\nBut what about your Bitcoin? Is it safe in an exchange right now? Well, the blockchain network itself is virtually unhackable with current technology. Crypto exchanges on the other hand are very much hackable. The thing about cryptocurrency Vee is that when someone obtains your private key, they have access to all of your money and can send it wherever they want.\n\nThere's no central authority to detect or stop fraudulent transactions, but they do implement other measures to keep your token safe. 1 is multi signature wallets that require multiple private keys to send a transaction. The other thing they do is try to keep as much crypto in cold storage as possible, there are 2 types of crypto wallets, a hot wallet, which is always connected to the Internet and ready to send transactions and the other is a cold wallet, which is offline and generally used for long term storage of your money. A cold wallet can only be hacked if you have physical possession of the device. Exchanges like Coinbase keep 90% of your crypto in cold storage, and because they're a big centralized authority, if they ever got hacked, they'd have enough money to pay everybody off, there are stories of crypto exchanges being hacked all the time, but it is pretty safe for most people today.\n\nBut if you're really attached to your tokens, the safest thing to do is get them out of an exchange into your own cold storage wallet, then move out of the city and learn how to grow your own food, dig a bunker on your property, and store the wallet there alongside your gold and ammo. This has been the Code Report. Thanks for watching, and I will see you in the next one." }, "summaries": null, "topics": [ { "end_word": 156, "start_word": 0, "text": "It is February 10th, 2022, and you're watching the code report, the most trusted name in tech news. The neat thing about cryptocurrency is that it's trustless, and that means when you put your hard earned paycheck from Wendy's into a crypto exchange and somebody steals it, you'll probably never get that money back. But 10uously, it's not an anonymous safe haven for criminals either. Your classic lose lose. Back in 2016, somebody stole a 120 some Bitcoin's worth $71,000,000 from the Bitfinex exchange by accessing the private keys of users. Today, those Bitcoins are worth $4,500,000,000 making the hackers some of the richest people on the planet, but there's just one problem. Bitcoin is a giant public ledger, and you can't move your money around without the feds watching your every move. And last week, they recovered 94,000 of the stolen Bitcoins, and arrested the husband and wife duo of Ilya Lichtenstein and Heather Morgan.", "topics": [ { "confidence": 0.9970802, "topic": "cryptocurrency" }, { "confidence": 0.11179565, "topic": "banking" } ] }, { "end_word": 189, "start_word": 156, "text": "Ladies and gentlemen, We got him. The saddest part of the story is that Heather was an up and coming rapper. This song is for the entrepreneurs and hackers. All at Russell Collins.", "topics": [] }, { "end_word": 674, "start_word": 189, "text": "The Versace better win. Come real far, but don't know where I'm headed. Mother At least now, she does know where Tizhetit, the couple is facing up to 20 years in prison for attempting to launder the stolen Bitcoin. It's not clear if they're the ones that actually performed the hack back in 2016 though, documents from the Department of Justice break down how they would move the currency with a diverse array of transactions, like purchasing altcoins and NFTs is and then breaking everything down into thousands of smaller transactions where the funds would eventually flow into a business that could fund Heather's music videos. They get an a for effort, but Bitcoin's not like a gold bar that you can Meltdown and Sell on the black market. On the bright side though, many of my favorite rappers have done time in prison. Another big question here is will the original owners be able to recover their funds, Bitfinex already attempted to make customers whole by crediting them with a different token when the hack occurred. They are working with the Department of this, but it will likely be a very long and complicated process before anyone gets their Bitcoin back, if it happens at all. But what about your Bitcoin? Is it safe in an exchange right now? Well, the blockchain network itself is virtually unhackable with current technology. Crypto exchanges on the other hand are very much hackable. The thing about cryptocurrency Vee is that when someone obtains your private key, they have access to all of your money and can send it wherever they want. There's no central authority to detect or stop fraudulent transactions, but they do implement other measures to keep your token safe. 1 is multi signature wallets that require multiple private keys to send a transaction. The other thing they do is try to keep as much crypto in cold storage as possible, there are 2 types of crypto wallets, a hot wallet, which is always connected to the Internet and ready to send transactions and the other is a cold wallet, which is offline and generally used for long term storage of your money. A cold wallet can only be hacked if you have physical possession of the device. Exchanges like Coinbase keep 90% of your crypto in cold storage, and because they're a big centralized authority, if they ever got hacked, they'd have enough money to pay everybody off, there are stories of crypto exchanges being hacked all the time, but it is pretty safe for most people today. But if you're really attached to your tokens, the safest thing to do is get them out of an exchange into your own cold storage wallet, then move out of the city and learn how to grow your own food, dig a bunker on your property, and store the wallet there alongside your gold and ammo.", "topics": [ { "confidence": 0.99607974, "topic": "cryptocurrency" }, { "confidence": 0.29653835, "topic": "prison" }, { "confidence": 0.11050449, "topic": "security" }, { "confidence": 0.01767336, "topic": "candy" } ] }, { "end_word": 692, "start_word": 674, "text": "This has been the Code Report. Thanks for watching, and I will see you in the next one.", "topics": [] } ], "transcript": "It is February 10th, 2022, and you're watching the code report, the most trusted name in tech news. The neat thing about cryptocurrency is that it's trustless, and that means when you put your hard earned paycheck from Wendy's into a crypto exchange and somebody steals it, you'll probably never get that money back. But 10uously, it's not an anonymous safe haven for criminals either. Your classic lose lose. Back in 2016, somebody stole a 120 some Bitcoin's worth $71,000,000 from the Bitfinex exchange by accessing the private keys of users. Today, those Bitcoins are worth $4,500,000,000 making the hackers some of the richest people on the planet, but there's just one problem. Bitcoin is a giant public ledger, and you can't move your money around without the feds watching your every move. And last week, they recovered 94,000 of the stolen Bitcoins, and arrested the husband and wife duo of Ilya Lichtenstein and Heather Morgan. Ladies and gentlemen, We got him. The saddest part of the story is that Heather was an up and coming rapper. This song is for the entrepreneurs and hackers. All at Russell Collins. The Versace better win. Come real far, but don't know where I'm headed. Mother At least now, she does know where Tizhetit, the couple is facing up to 20 years in prison for attempting to launder the stolen Bitcoin. It's not clear if they're the ones that actually performed the hack back in 2016 though, documents from the Department of Justice break down how they would move the currency with a diverse array of transactions, like purchasing altcoins and NFTs is and then breaking everything down into thousands of smaller transactions where the funds would eventually flow into a business that could fund Heather's music videos. They get an a for effort, but Bitcoin's not like a gold bar that you can Meltdown and Sell on the black market. On the bright side though, many of my favorite rappers have done time in prison. Another big question here is will the original owners be able to recover their funds, Bitfinex already attempted to make customers whole by crediting them with a different token when the hack occurred. They are working with the Department of this, but it will likely be a very long and complicated process before anyone gets their Bitcoin back, if it happens at all. But what about your Bitcoin? Is it safe in an exchange right now? Well, the blockchain network itself is virtually unhackable with current technology. Crypto exchanges on the other hand are very much hackable. The thing about cryptocurrency Vee is that when someone obtains your private key, they have access to all of your money and can send it wherever they want. There's no central authority to detect or stop fraudulent transactions, but they do implement other measures to keep your token safe. 1 is multi signature wallets that require multiple private keys to send a transaction. The other thing they do is try to keep as much crypto in cold storage as possible, there are 2 types of crypto wallets, a hot wallet, which is always connected to the Internet and ready to send transactions and the other is a cold wallet, which is offline and generally used for long term storage of your money. A cold wallet can only be hacked if you have physical possession of the device. Exchanges like Coinbase keep 90% of your crypto in cold storage, and because they're a big centralized authority, if they ever got hacked, they'd have enough money to pay everybody off, there are stories of crypto exchanges being hacked all the time, but it is pretty safe for most people today. But if you're really attached to your tokens, the safest thing to do is get them out of an exchange into your own cold storage wallet, then move out of the city and learn how to grow your own food, dig a bunker on your property, and store the wallet there alongside your gold and ammo. This has been the Code Report. Thanks for watching, and I will see you in the next one.", "translations": null, "words": [ { "confidence": 0.5029297, "end": 1.68, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.6621094, "start": 1.4399999, "word": "it" }, { "confidence": 0.9980469, "end": 1.8399999, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.6621094, "start": 1.68, "word": "is" }, { "confidence": 1, "end": 2.32, "punctuated_word": "February", "speaker": 0, "speaker_confidence": 0.6621094, "start": 1.8399999, "word": "february" }, { "confidence": 0.9124349, "end": 2.72, "punctuated_word": "10th,", "speaker": 0, "speaker_confidence": 0.6621094, "start": 2.32, "word": "10th" }, { "confidence": 0.75097656, "end": 3.22, "punctuated_word": "2022,", "speaker": 0, "speaker_confidence": 0.6621094, "start": 2.72, "word": "2022" }, { "confidence": 1, "end": 3.6799998, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6621094, "start": 3.52, "word": "and" }, { "confidence": 0.86743164, "end": 4, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.6621094, "start": 3.6799998, "word": "you're" }, { "confidence": 0.99902344, "end": 4.3199997, "punctuated_word": "watching", "speaker": 0, "speaker_confidence": 0.6621094, "start": 4, "word": "watching" }, { "confidence": 0.9790039, "end": 4.48, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6621094, "start": 4.3199997, "word": "the" }, { "confidence": 0.9707031, "end": 4.7999997, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.6621094, "start": 4.48, "word": "code" }, { "confidence": 0.7340088, "end": 5.12, "punctuated_word": "report,", "speaker": 0, "speaker_confidence": 0.6621094, "start": 4.7999997, "word": "report" }, { "confidence": 0.99902344, "end": 5.2, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5800781, "start": 5.12, "word": "the" }, { "confidence": 1, "end": 5.44, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 0.5800781, "start": 5.2, "word": "most" }, { "confidence": 1, "end": 5.8399997, "punctuated_word": "trusted", "speaker": 0, "speaker_confidence": 0.5800781, "start": 5.44, "word": "trusted" }, { "confidence": 1, "end": 6.08, "punctuated_word": "name", "speaker": 0, "speaker_confidence": 0.5800781, "start": 5.8399997, "word": "name" }, { "confidence": 0.9970703, "end": 6.24, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.5800781, "start": 6.08, "word": "in" }, { "confidence": 0.9614258, "end": 6.48, "punctuated_word": "tech", "speaker": 0, "speaker_confidence": 0.5800781, "start": 6.24, "word": "tech" }, { "confidence": 0.9995117, "end": 6.7999997, "punctuated_word": "news.", "speaker": 0, "speaker_confidence": 0.5800781, "start": 6.48, "word": "news" }, { "confidence": 0.9970703, "end": 6.96, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.5800781, "start": 6.7999997, "word": "the" }, { "confidence": 0.98828125, "end": 7.12, "punctuated_word": "neat", "speaker": 0, "speaker_confidence": 0.5800781, "start": 6.96, "word": "neat" }, { "confidence": 0.99902344, "end": 7.2, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.7519531, "start": 7.12, "word": "thing" }, { "confidence": 0.9970703, "end": 7.555, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.7519531, "start": 7.2, "word": "about" }, { "confidence": 0.984375, "end": 8.195, "punctuated_word": "cryptocurrency", "speaker": 0, "speaker_confidence": 0.7519531, "start": 7.7949996, "word": "cryptocurrency" }, { "confidence": 0.99316406, "end": 8.434999, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7519531, "start": 8.195, "word": "is" }, { "confidence": 1, "end": 8.514999, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7519531, "start": 8.434999, "word": "that" }, { "confidence": 0.99658203, "end": 8.755, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.7519531, "start": 8.514999, "word": "it's" }, { "confidence": 0.93147784, "end": 9.235, "punctuated_word": "trustless,", "speaker": 0, "speaker_confidence": 0.7519531, "start": 8.755, "word": "trustless" }, { "confidence": 0.99902344, "end": 9.474999, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 9.235, "word": "and" }, { "confidence": 1, "end": 9.555, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 9.474999, "word": "that" }, { "confidence": 1, "end": 9.795, "punctuated_word": "means", "speaker": 0, "speaker_confidence": 1, "start": 9.555, "word": "means" }, { "confidence": 0.98291016, "end": 9.955, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 1, "start": 9.795, "word": "when" }, { "confidence": 1, "end": 10.035, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 9.955, "word": "you" }, { "confidence": 1, "end": 10.195, "punctuated_word": "put", "speaker": 0, "speaker_confidence": 1, "start": 10.035, "word": "put" }, { "confidence": 0.9951172, "end": 10.434999, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 1, "start": 10.195, "word": "your" }, { "confidence": 0.9980469, "end": 10.674999, "punctuated_word": "hard", "speaker": 0, "speaker_confidence": 1, "start": 10.434999, "word": "hard" }, { "confidence": 0.9951172, "end": 10.835, "punctuated_word": "earned", "speaker": 0, "speaker_confidence": 1, "start": 10.674999, "word": "earned" }, { "confidence": 0.9951172, "end": 11.155, "punctuated_word": "paycheck", "speaker": 0, "speaker_confidence": 1, "start": 10.835, "word": "paycheck" }, { "confidence": 1, "end": 11.3949995, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 1, "start": 11.155, "word": "from" }, { "confidence": 0.9975586, "end": 11.715, "punctuated_word": "Wendy's", "speaker": 0, "speaker_confidence": 1, "start": 11.3949995, "word": "wendy's" }, { "confidence": 0.9980469, "end": 11.875, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 1, "start": 11.715, "word": "into" }, { "confidence": 0.99609375, "end": 12.035, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 11.875, "word": "a" }, { "confidence": 0.96435547, "end": 12.434999, "punctuated_word": "crypto", "speaker": 0, "speaker_confidence": 1, "start": 12.035, "word": "crypto" }, { "confidence": 0.98095703, "end": 12.834999, "punctuated_word": "exchange", "speaker": 0, "speaker_confidence": 1, "start": 12.434999, "word": "exchange" }, { "confidence": 0.79003906, "end": 13.075, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 12.834999, "word": "and" }, { "confidence": 1, "end": 13.3949995, "punctuated_word": "somebody", "speaker": 0, "speaker_confidence": 1, "start": 13.075, "word": "somebody" }, { "confidence": 1, "end": 13.635, "punctuated_word": "steals", "speaker": 0, "speaker_confidence": 1, "start": 13.3949995, "word": "steals" }, { "confidence": 0.9951172, "end": 13.955, "punctuated_word": "it,", "speaker": 0, "speaker_confidence": 1, "start": 13.635, "word": "it" }, { "confidence": 0.99902344, "end": 14.195, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 1, "start": 13.955, "word": "you'll" }, { "confidence": 0.99902344, "end": 14.514999, "punctuated_word": "probably", "speaker": 0, "speaker_confidence": 1, "start": 14.195, "word": "probably" }, { "confidence": 0.9970703, "end": 14.674999, "punctuated_word": "never", "speaker": 0, "speaker_confidence": 1, "start": 14.514999, "word": "never" }, { "confidence": 0.99316406, "end": 14.834999, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 1, "start": 14.674999, "word": "get" }, { "confidence": 0.99316406, "end": 14.995, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 14.834999, "word": "that" }, { "confidence": 0.9980469, "end": 15.235, "punctuated_word": "money", "speaker": 0, "speaker_confidence": 1, "start": 14.995, "word": "money" }, { "confidence": 0.8630371, "end": 15.555, "punctuated_word": "back.", "speaker": 0, "speaker_confidence": 1, "start": 15.235, "word": "back" }, { "confidence": 0.83251953, "end": 16.055, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 1, "start": 15.555, "word": "but" }, { "confidence": 0.66935223, "end": 16.67, "punctuated_word": "10uously,", "speaker": 0, "speaker_confidence": 1, "start": 16.19, "word": "10uously" }, { "confidence": 0.99902344, "end": 16.91, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 1, "start": 16.67, "word": "it's" }, { "confidence": 1, "end": 17.15, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 1, "start": 16.91, "word": "not" }, { "confidence": 0.9941406, "end": 17.310001, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 17.15, "word": "an" }, { "confidence": 1, "end": 17.79, "punctuated_word": "anonymous", "speaker": 0, "speaker_confidence": 1, "start": 17.310001, "word": "anonymous" }, { "confidence": 0.99902344, "end": 17.95, "punctuated_word": "safe", "speaker": 0, "speaker_confidence": 1, "start": 17.79, "word": "safe" }, { "confidence": 0.9980469, "end": 18.19, "punctuated_word": "haven", "speaker": 0, "speaker_confidence": 1, "start": 17.95, "word": "haven" }, { "confidence": 1, "end": 18.35, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 18.19, "word": "for" }, { "confidence": 1, "end": 18.75, "punctuated_word": "criminals", "speaker": 0, "speaker_confidence": 1, "start": 18.35, "word": "criminals" }, { "confidence": 0.93066406, "end": 19.150002, "punctuated_word": "either.", "speaker": 0, "speaker_confidence": 1, "start": 18.75, "word": "either" }, { "confidence": 0.76171875, "end": 19.39, "punctuated_word": "Your", "speaker": 0, "speaker_confidence": 1, "start": 19.150002, "word": "your" }, { "confidence": 0.9980469, "end": 19.79, "punctuated_word": "classic", "speaker": 0, "speaker_confidence": 1, "start": 19.39, "word": "classic" }, { "confidence": 0.9667969, "end": 20.03, "punctuated_word": "lose", "speaker": 0, "speaker_confidence": 1, "start": 19.79, "word": "lose" }, { "confidence": 0.9921875, "end": 20.51, "punctuated_word": "lose.", "speaker": 0, "speaker_confidence": 1, "start": 20.03, "word": "lose" }, { "confidence": 0.9658203, "end": 20.75, "punctuated_word": "Back", "speaker": 0, "speaker_confidence": 1, "start": 20.51, "word": "back" }, { "confidence": 0.9951172, "end": 20.91, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 20.75, "word": "in" }, { "confidence": 0.97094727, "end": 21.41, "punctuated_word": "2016,", "speaker": 0, "speaker_confidence": 1, "start": 20.91, "word": "2016" }, { "confidence": 0.9980469, "end": 22.11, "punctuated_word": "somebody", "speaker": 0, "speaker_confidence": 1, "start": 21.79, "word": "somebody" }, { "confidence": 1, "end": 22.43, "punctuated_word": "stole", "speaker": 0, "speaker_confidence": 1, "start": 22.11, "word": "stole" }, { "confidence": 0.80322266, "end": 22.59, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 22.43, "word": "a" }, { "confidence": 0.72216797, "end": 23.09, "punctuated_word": "120", "speaker": 0, "speaker_confidence": 1, "start": 22.59, "word": "120" }, { "confidence": 0.8154297, "end": 23.505, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 1, "start": 23.345, "word": "some" }, { "confidence": 0.6739502, "end": 23.984999, "punctuated_word": "Bitcoin's", "speaker": 0, "speaker_confidence": 1, "start": 23.505, "word": "bitcoin's" }, { "confidence": 0.99121094, "end": 24.484999, "punctuated_word": "worth", "speaker": 0, "speaker_confidence": 1, "start": 23.984999, "word": "worth" }, { "confidence": 0.9973958, "end": 25.505, "punctuated_word": "$71,000,000", "speaker": 0, "speaker_confidence": 1, "start": 25.105, "word": "$71,000,000" }, { "confidence": 1, "end": 25.744999, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 1, "start": 25.505, "word": "from" }, { "confidence": 0.9980469, "end": 25.824999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 25.744999, "word": "the" }, { "confidence": 0.9503581, "end": 26.324999, "punctuated_word": "Bitfinex", "speaker": 0, "speaker_confidence": 1, "start": 25.824999, "word": "bitfinex" }, { "confidence": 0.76464844, "end": 26.865, "punctuated_word": "exchange", "speaker": 0, "speaker_confidence": 1, "start": 26.465, "word": "exchange" }, { "confidence": 0.9790039, "end": 27.185, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 1, "start": 26.865, "word": "by" }, { "confidence": 0.99902344, "end": 27.585, "punctuated_word": "accessing", "speaker": 0, "speaker_confidence": 1, "start": 27.185, "word": "accessing" }, { "confidence": 0.99902344, "end": 27.744999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 27.585, "word": "the" }, { "confidence": 0.99902344, "end": 28.064999, "punctuated_word": "private", "speaker": 0, "speaker_confidence": 1, "start": 27.744999, "word": "private" }, { "confidence": 0.99902344, "end": 28.305, "punctuated_word": "keys", "speaker": 0, "speaker_confidence": 1, "start": 28.064999, "word": "keys" }, { "confidence": 0.99902344, "end": 28.544998, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 28.305, "word": "of" }, { "confidence": 0.9995117, "end": 29.025, "punctuated_word": "users.", "speaker": 0, "speaker_confidence": 1, "start": 28.544998, "word": "users" }, { "confidence": 0.9926758, "end": 29.425, "punctuated_word": "Today,", "speaker": 0, "speaker_confidence": 1, "start": 29.025, "word": "today" }, { "confidence": 0.99902344, "end": 29.585, "punctuated_word": "those", "speaker": 0, "speaker_confidence": 1, "start": 29.425, "word": "those" }, { "confidence": 0.96875, "end": 29.984999, "punctuated_word": "Bitcoins", "speaker": 0, "speaker_confidence": 1, "start": 29.585, "word": "bitcoins" }, { "confidence": 0.9970703, "end": 30.144999, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 1, "start": 29.984999, "word": "are" }, { "confidence": 1, "end": 30.384998, "punctuated_word": "worth", "speaker": 0, "speaker_confidence": 1, "start": 30.144999, "word": "worth" }, { "confidence": 0.99664307, "end": 30.884998, "punctuated_word": "$4,500,000,000", "speaker": 0, "speaker_confidence": 1, "start": 30.384998, "word": "$4,500,000,000" }, { "confidence": 0.9980469, "end": 32.22, "punctuated_word": "making", "speaker": 0, "speaker_confidence": 1, "start": 31.98, "word": "making" }, { "confidence": 0.9560547, "end": 32.38, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 32.22, "word": "the" }, { "confidence": 0.9741211, "end": 32.7, "punctuated_word": "hackers", "speaker": 0, "speaker_confidence": 1, "start": 32.38, "word": "hackers" }, { "confidence": 0.94384766, "end": 32.86, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 1, "start": 32.7, "word": "some" }, { "confidence": 0.99902344, "end": 32.94, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.3959961, "start": 32.86, "word": "of" }, { "confidence": 0.99902344, "end": 33.02, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.3959961, "start": 32.94, "word": "the" }, { "confidence": 0.9980469, "end": 33.34, "punctuated_word": "richest", "speaker": 0, "speaker_confidence": 0.3959961, "start": 33.02, "word": "richest" }, { "confidence": 1, "end": 33.66, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.3959961, "start": 33.34, "word": "people" }, { "confidence": 0.99902344, "end": 33.739998, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.3959961, "start": 33.66, "word": "on" }, { "confidence": 1, "end": 33.82, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8339844, "start": 33.739998, "word": "the" }, { "confidence": 0.8474121, "end": 34.3, "punctuated_word": "planet,", "speaker": 0, "speaker_confidence": 0.8339844, "start": 33.82, "word": "planet" }, { "confidence": 0.9941406, "end": 34.46, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.8339844, "start": 34.3, "word": "but" }, { "confidence": 0.9875488, "end": 34.7, "punctuated_word": "there's", "speaker": 0, "speaker_confidence": 0.8339844, "start": 34.46, "word": "there's" }, { "confidence": 0.99902344, "end": 34.94, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.8339844, "start": 34.7, "word": "just" }, { "confidence": 0.984375, "end": 35.1, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.8339844, "start": 34.94, "word": "one" }, { "confidence": 0.9069824, "end": 35.6, "punctuated_word": "problem.", "speaker": 0, "speaker_confidence": 0.8339844, "start": 35.1, "word": "problem" }, { "confidence": 0.99121094, "end": 36.22, "punctuated_word": "Bitcoin", "speaker": 0, "speaker_confidence": 0.8339844, "start": 35.739998, "word": "bitcoin" }, { "confidence": 0.99902344, "end": 36.38, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8339844, "start": 36.22, "word": "is" }, { "confidence": 0.99902344, "end": 36.54, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8339844, "start": 36.38, "word": "a" }, { "confidence": 0.99902344, "end": 36.86, "punctuated_word": "giant", "speaker": 0, "speaker_confidence": 0.8339844, "start": 36.54, "word": "giant" }, { "confidence": 0.99902344, "end": 37.18, "punctuated_word": "public", "speaker": 0, "speaker_confidence": 0.8339844, "start": 36.86, "word": "public" }, { "confidence": 0.7524414, "end": 37.579998, "punctuated_word": "ledger,", "speaker": 0, "speaker_confidence": 0.8339844, "start": 37.18, "word": "ledger" }, { "confidence": 1, "end": 37.739998, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8339844, "start": 37.579998, "word": "and" }, { "confidence": 1, "end": 37.82, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.66259766, "start": 37.739998, "word": "you" }, { "confidence": 0.9995117, "end": 37.98, "punctuated_word": "can't", "speaker": 0, "speaker_confidence": 0.66259766, "start": 37.82, "word": "can't" }, { "confidence": 1, "end": 38.22, "punctuated_word": "move", "speaker": 0, "speaker_confidence": 0.66259766, "start": 37.98, "word": "move" }, { "confidence": 0.99902344, "end": 38.38, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.66259766, "start": 38.22, "word": "your" }, { "confidence": 1, "end": 38.62, "punctuated_word": "money", "speaker": 0, "speaker_confidence": 0.66259766, "start": 38.38, "word": "money" }, { "confidence": 1, "end": 38.94, "punctuated_word": "around", "speaker": 0, "speaker_confidence": 0.66259766, "start": 38.62, "word": "around" }, { "confidence": 0.9970703, "end": 39.18, "punctuated_word": "without", "speaker": 0, "speaker_confidence": 0.66259766, "start": 38.94, "word": "without" }, { "confidence": 0.9970703, "end": 39.34, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.66259766, "start": 39.18, "word": "the" }, { "confidence": 0.5878906, "end": 39.66, "punctuated_word": "feds", "speaker": 0, "speaker_confidence": 0.66259766, "start": 39.34, "word": "feds" }, { "confidence": 0.9980469, "end": 39.9, "punctuated_word": "watching", "speaker": 0, "speaker_confidence": 0.66259766, "start": 39.66, "word": "watching" }, { "confidence": 0.99316406, "end": 40.14, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.66259766, "start": 39.9, "word": "your" }, { "confidence": 0.9970703, "end": 40.379997, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 0.66259766, "start": 40.14, "word": "every" }, { "confidence": 0.9645996, "end": 40.655, "punctuated_word": "move.", "speaker": 0, "speaker_confidence": 0.66259766, "start": 40.379997, "word": "move" }, { "confidence": 0.2980957, "end": 40.895, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.59375, "start": 40.655, "word": "and" }, { "confidence": 0.99316406, "end": 41.055, "punctuated_word": "last", "speaker": 0, "speaker_confidence": 0.59375, "start": 40.895, "word": "last" }, { "confidence": 0.95458984, "end": 41.295, "punctuated_word": "week,", "speaker": 0, "speaker_confidence": 0.59375, "start": 41.055, "word": "week" }, { "confidence": 0.99902344, "end": 41.535, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.59375, "start": 41.295, "word": "they" }, { "confidence": 0.9980469, "end": 42.015, "punctuated_word": "recovered", "speaker": 0, "speaker_confidence": 0.59375, "start": 41.535, "word": "recovered" }, { "confidence": 0.9664714, "end": 42.515, "punctuated_word": "94,000", "speaker": 0, "speaker_confidence": 0.59375, "start": 42.015, "word": "94,000" }, { "confidence": 0.9980469, "end": 42.975, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.65527344, "start": 42.895, "word": "of" }, { "confidence": 0.99902344, "end": 43.135, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.65527344, "start": 42.975, "word": "the" }, { "confidence": 0.99902344, "end": 43.454998, "punctuated_word": "stolen", "speaker": 0, "speaker_confidence": 0.65527344, "start": 43.135, "word": "stolen" }, { "confidence": 0.5800781, "end": 43.934998, "punctuated_word": "Bitcoins,", "speaker": 0, "speaker_confidence": 0.65527344, "start": 43.454998, "word": "bitcoins" }, { "confidence": 0.99902344, "end": 44.175, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.65527344, "start": 43.934998, "word": "and" }, { "confidence": 1, "end": 44.574997, "punctuated_word": "arrested", "speaker": 0, "speaker_confidence": 0.65527344, "start": 44.175, "word": "arrested" }, { "confidence": 0.9970703, "end": 44.655, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.65527344, "start": 44.574997, "word": "the" }, { "confidence": 1, "end": 44.975, "punctuated_word": "husband", "speaker": 0, "speaker_confidence": 0.65527344, "start": 44.655, "word": "husband" }, { "confidence": 0.99121094, "end": 45.055, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7685547, "start": 44.975, "word": "and" }, { "confidence": 1, "end": 45.295, "punctuated_word": "wife", "speaker": 0, "speaker_confidence": 0.7685547, "start": 45.055, "word": "wife" }, { "confidence": 0.9951172, "end": 45.695, "punctuated_word": "duo", "speaker": 0, "speaker_confidence": 0.7685547, "start": 45.295, "word": "duo" }, { "confidence": 0.97998047, "end": 45.934998, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7685547, "start": 45.695, "word": "of" }, { "confidence": 0.7015381, "end": 46.254997, "punctuated_word": "Ilya", "speaker": 0, "speaker_confidence": 0.7685547, "start": 45.934998, "word": "ilya" }, { "confidence": 0.9046224, "end": 46.754997, "punctuated_word": "Lichtenstein", "speaker": 0, "speaker_confidence": 0.7685547, "start": 46.254997, "word": "lichtenstein" }, { "confidence": 0.9667969, "end": 47.215, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7685547, "start": 47.055, "word": "and" }, { "confidence": 1, "end": 47.535, "punctuated_word": "Heather", "speaker": 0, "speaker_confidence": 0.7685547, "start": 47.215, "word": "heather" }, { "confidence": 0.9946289, "end": 48.035, "punctuated_word": "Morgan.", "speaker": 0, "speaker_confidence": 0.7685547, "start": 47.535, "word": "morgan" }, { "confidence": 0.99902344, "end": 48.414997, "punctuated_word": "Ladies", "speaker": 0, "speaker_confidence": 0.068359375, "start": 48.094997, "word": "ladies" }, { "confidence": 0.9941406, "end": 48.574997, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.068359375, "start": 48.414997, "word": "and" }, { "confidence": 0.9470215, "end": 49.074997, "punctuated_word": "gentlemen,", "speaker": 0, "speaker_confidence": 0.068359375, "start": 48.574997, "word": "gentlemen" }, { "confidence": 0.99902344, "end": 50.440002, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.068359375, "start": 50.2, "word": "we" }, { "confidence": 0.9980469, "end": 50.940002, "punctuated_word": "got", "speaker": 0, "speaker_confidence": 0.068359375, "start": 50.440002, "word": "got" }, { "confidence": 0.7619629, "end": 51.74, "punctuated_word": "him.", "speaker": 0, "speaker_confidence": 0.068359375, "start": 51.24, "word": "him" }, { "confidence": 0.6660156, "end": 52.600002, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.7734375, "start": 52.52, "word": "the" }, { "confidence": 0.9995117, "end": 52.920002, "punctuated_word": "saddest", "speaker": 0, "speaker_confidence": 0.7734375, "start": 52.600002, "word": "saddest" }, { "confidence": 1, "end": 53.08, "punctuated_word": "part", "speaker": 0, "speaker_confidence": 0.7734375, "start": 52.920002, "word": "part" }, { "confidence": 1, "end": 53.16, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7734375, "start": 53.08, "word": "of" }, { "confidence": 0.8647461, "end": 53.32, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7734375, "start": 53.16, "word": "the" }, { "confidence": 1, "end": 53.64, "punctuated_word": "story", "speaker": 0, "speaker_confidence": 0.7734375, "start": 53.32, "word": "story" }, { "confidence": 0.9980469, "end": 53.8, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7734375, "start": 53.64, "word": "is" }, { "confidence": 1, "end": 54.04, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7734375, "start": 53.8, "word": "that" }, { "confidence": 0.9980469, "end": 54.28, "punctuated_word": "Heather", "speaker": 0, "speaker_confidence": 0.7734375, "start": 54.04, "word": "heather" }, { "confidence": 0.9980469, "end": 54.52, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.7734375, "start": 54.28, "word": "was" }, { "confidence": 0.9980469, "end": 54.68, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.7734375, "start": 54.52, "word": "an" }, { "confidence": 0.99316406, "end": 54.84, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.7734375, "start": 54.68, "word": "up" }, { "confidence": 0.99609375, "end": 54.920002, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7734375, "start": 54.84, "word": "and" }, { "confidence": 0.99609375, "end": 55.16, "punctuated_word": "coming", "speaker": 0, "speaker_confidence": 0.7734375, "start": 54.920002, "word": "coming" }, { "confidence": 0.9909668, "end": 55.66, "punctuated_word": "rapper.", "speaker": 0, "speaker_confidence": 0.7734375, "start": 55.16, "word": "rapper" }, { "confidence": 0.86328125, "end": 56.04, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0, "start": 55.72, "word": "this" }, { "confidence": 0.99609375, "end": 56.28, "punctuated_word": "song", "speaker": 0, "speaker_confidence": 0, "start": 56.04, "word": "song" }, { "confidence": 0.9580078, "end": 56.52, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0, "start": 56.28, "word": "is" }, { "confidence": 0.98535156, "end": 56.84, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0, "start": 56.52, "word": "for" }, { "confidence": 0.97998047, "end": 57.16, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0, "start": 56.84, "word": "the" }, { "confidence": 0.99316406, "end": 57.66, "punctuated_word": "entrepreneurs", "speaker": 0, "speaker_confidence": 0, "start": 57.16, "word": "entrepreneurs" }, { "confidence": 0.99121094, "end": 57.96, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0, "start": 57.72, "word": "and" }, { "confidence": 0.70739746, "end": 58.46, "punctuated_word": "hackers.", "speaker": 0, "speaker_confidence": 0, "start": 57.96, "word": "hackers" }, { "confidence": 0.50878906, "end": 58.855003, "punctuated_word": "All", "speaker": 0, "speaker_confidence": 0, "start": 58.775, "word": "all" }, { "confidence": 0.61865234, "end": 59.095, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0, "start": 58.855003, "word": "at" }, { "confidence": 0.47680664, "end": 59.575, "punctuated_word": "Russell", "speaker": 0, "speaker_confidence": 0.022460938, "start": 59.095, "word": "russell" }, { "confidence": 0.513916, "end": 60.075, "punctuated_word": "Collins.", "speaker": 0, "speaker_confidence": 0.022460938, "start": 59.575, "word": "collins" }, { "confidence": 0.81640625, "end": 60.295002, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.022460938, "start": 60.135002, "word": "the" }, { "confidence": 0.99902344, "end": 60.775, "punctuated_word": "Versace", "speaker": 0, "speaker_confidence": 0.022460938, "start": 60.295002, "word": "versace" }, { "confidence": 0.7421875, "end": 61.175003, "punctuated_word": "better", "speaker": 0, "speaker_confidence": 0.022460938, "start": 60.775, "word": "better" }, { "confidence": 0.98217773, "end": 61.675003, "punctuated_word": "win.", "speaker": 0, "speaker_confidence": 0.022460938, "start": 61.175003, "word": "win" }, { "confidence": 0.9526367, "end": 62.135002, "punctuated_word": "Come", "speaker": 0, "speaker_confidence": 0.022460938, "start": 61.815002, "word": "come" }, { "confidence": 0.9873047, "end": 62.455, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 0.022460938, "start": 62.135002, "word": "real" }, { "confidence": 0.7338867, "end": 62.775, "punctuated_word": "far,", "speaker": 0, "speaker_confidence": 0.022460938, "start": 62.455, "word": "far" }, { "confidence": 0.95947266, "end": 63.015003, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.022460938, "start": 62.775, "word": "but" }, { "confidence": 0.99853516, "end": 63.175003, "punctuated_word": "don't", "speaker": 0, "speaker_confidence": 0.022460938, "start": 63.015003, "word": "don't" }, { "confidence": 0.9970703, "end": 63.415, "punctuated_word": "know", "speaker": 0, "speaker_confidence": 0.022460938, "start": 63.175003, "word": "know" }, { "confidence": 0.99902344, "end": 63.655003, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.022460938, "start": 63.415, "word": "where" }, { "confidence": 0.99658203, "end": 63.815002, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.022460938, "start": 63.655003, "word": "i'm" }, { "confidence": 0.9199219, "end": 64.315, "punctuated_word": "headed.", "speaker": 0, "speaker_confidence": 0.022460938, "start": 63.815002, "word": "headed" }, { "confidence": 0.6928711, "end": 64.615005, "punctuated_word": "Mother", "speaker": 0, "speaker_confidence": 0.0078125, "start": 64.455, "word": "mother" }, { "confidence": 0.99902344, "end": 64.855, "punctuated_word": "At", "speaker": 0, "speaker_confidence": 0.0078125, "start": 64.775, "word": "at" }, { "confidence": 0.99902344, "end": 65.095, "punctuated_word": "least", "speaker": 0, "speaker_confidence": 0.8510742, "start": 64.855, "word": "least" }, { "confidence": 0.8186035, "end": 65.255005, "punctuated_word": "now,", "speaker": 0, "speaker_confidence": 0.8510742, "start": 65.095, "word": "now" }, { "confidence": 0.99902344, "end": 65.415, "punctuated_word": "she", "speaker": 0, "speaker_confidence": 0.8510742, "start": 65.255005, "word": "she" }, { "confidence": 0.9970703, "end": 65.575005, "punctuated_word": "does", "speaker": 0, "speaker_confidence": 0.8510742, "start": 65.415, "word": "does" }, { "confidence": 0.99609375, "end": 65.735, "punctuated_word": "know", "speaker": 0, "speaker_confidence": 0.8510742, "start": 65.575005, "word": "know" }, { "confidence": 0.9951172, "end": 65.96, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.8510742, "start": 65.735, "word": "where" }, { "confidence": 0.43631998, "end": 66.36, "punctuated_word": "Tizhetit,", "speaker": 0, "speaker_confidence": 0.8510742, "start": 65.96, "word": "tizhetit" }, { "confidence": 0.9980469, "end": 66.44, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8510742, "start": 66.36, "word": "the" }, { "confidence": 0.99902344, "end": 66.84, "punctuated_word": "couple", "speaker": 0, "speaker_confidence": 0.8510742, "start": 66.44, "word": "couple" }, { "confidence": 0.91259766, "end": 66.92, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8510742, "start": 66.84, "word": "is" }, { "confidence": 0.99902344, "end": 67.24, "punctuated_word": "facing", "speaker": 0, "speaker_confidence": 0.8510742, "start": 66.92, "word": "facing" }, { "confidence": 0.99902344, "end": 67.479996, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.8510742, "start": 67.24, "word": "up" }, { "confidence": 0.9970703, "end": 67.64, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8510742, "start": 67.479996, "word": "to" }, { "confidence": 0.99609375, "end": 67.799995, "punctuated_word": "20", "speaker": 0, "speaker_confidence": 0.8964844, "start": 67.64, "word": "20" }, { "confidence": 0.99902344, "end": 68.04, "punctuated_word": "years", "speaker": 0, "speaker_confidence": 0.8964844, "start": 67.799995, "word": "years" }, { "confidence": 0.9716797, "end": 68.2, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8964844, "start": 68.04, "word": "in" }, { "confidence": 1, "end": 68.52, "punctuated_word": "prison", "speaker": 0, "speaker_confidence": 0.8964844, "start": 68.2, "word": "prison" }, { "confidence": 0.9707031, "end": 68.76, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.8964844, "start": 68.52, "word": "for" }, { "confidence": 0.99902344, "end": 69.159996, "punctuated_word": "attempting", "speaker": 0, "speaker_confidence": 0.8964844, "start": 68.76, "word": "attempting" }, { "confidence": 1, "end": 69.4, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8964844, "start": 69.159996, "word": "to" }, { "confidence": 0.9880371, "end": 69.72, "punctuated_word": "launder", "speaker": 0, "speaker_confidence": 0.8964844, "start": 69.4, "word": "launder" }, { "confidence": 0.99609375, "end": 69.88, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8964844, "start": 69.72, "word": "the" }, { "confidence": 1, "end": 70.2, "punctuated_word": "stolen", "speaker": 0, "speaker_confidence": 0.8964844, "start": 69.88, "word": "stolen" }, { "confidence": 0.861084, "end": 70.68, "punctuated_word": "Bitcoin.", "speaker": 0, "speaker_confidence": 0.8964844, "start": 70.2, "word": "bitcoin" }, { "confidence": 0.99902344, "end": 70.84, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.8964844, "start": 70.68, "word": "it's" }, { "confidence": 1, "end": 71, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.8964844, "start": 70.84, "word": "not" }, { "confidence": 0.99902344, "end": 71.24, "punctuated_word": "clear", "speaker": 0, "speaker_confidence": 0.8964844, "start": 71, "word": "clear" }, { "confidence": 0.9951172, "end": 71.32, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.8964844, "start": 71.24, "word": "if" }, { "confidence": 0.9645996, "end": 71.479996, "punctuated_word": "they're", "speaker": 0, "speaker_confidence": 0.8964844, "start": 71.32, "word": "they're" }, { "confidence": 0.9951172, "end": 71.56, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6225586, "start": 71.479996, "word": "the" }, { "confidence": 0.9970703, "end": 71.799995, "punctuated_word": "ones", "speaker": 0, "speaker_confidence": 0.6225586, "start": 71.56, "word": "ones" }, { "confidence": 0.99609375, "end": 71.88, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.6225586, "start": 71.799995, "word": "that" }, { "confidence": 0.9951172, "end": 72.28, "punctuated_word": "actually", "speaker": 0, "speaker_confidence": 0.6225586, "start": 71.88, "word": "actually" }, { "confidence": 0.60302734, "end": 72.6, "punctuated_word": "performed", "speaker": 0, "speaker_confidence": 0.6225586, "start": 72.28, "word": "performed" }, { "confidence": 0.97802734, "end": 72.68, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6225586, "start": 72.6, "word": "the" }, { "confidence": 0.9970703, "end": 72.975, "punctuated_word": "hack", "speaker": 0, "speaker_confidence": 0.6225586, "start": 72.68, "word": "hack" }, { "confidence": 0.78759766, "end": 73.055, "punctuated_word": "back", "speaker": 0, "speaker_confidence": 0.72802734, "start": 72.975, "word": "back" }, { "confidence": 0.9790039, "end": 73.215, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.72802734, "start": 73.055, "word": "in" }, { "confidence": 0.99121094, "end": 73.715, "punctuated_word": "2016", "speaker": 0, "speaker_confidence": 0.72802734, "start": 73.215, "word": "2016" }, { "confidence": 0.77563477, "end": 74.095, "punctuated_word": "though,", "speaker": 0, "speaker_confidence": 0.72802734, "start": 73.775, "word": "though" }, { "confidence": 1, "end": 74.494995, "punctuated_word": "documents", "speaker": 0, "speaker_confidence": 0.72802734, "start": 74.095, "word": "documents" }, { "confidence": 0.99902344, "end": 74.575, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.72802734, "start": 74.494995, "word": "from" }, { "confidence": 0.9970703, "end": 74.735, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7114258, "start": 74.575, "word": "the" }, { "confidence": 0.7631836, "end": 75.055, "punctuated_word": "Department", "speaker": 0, "speaker_confidence": 0.7114258, "start": 74.735, "word": "department" }, { "confidence": 0.99609375, "end": 75.215, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7114258, "start": 75.055, "word": "of" }, { "confidence": 0.99902344, "end": 75.615, "punctuated_word": "Justice", "speaker": 0, "speaker_confidence": 0.7114258, "start": 75.215, "word": "justice" }, { "confidence": 0.57421875, "end": 75.854996, "punctuated_word": "break", "speaker": 0, "speaker_confidence": 0.7114258, "start": 75.615, "word": "break" }, { "confidence": 0.9980469, "end": 76.095, "punctuated_word": "down", "speaker": 0, "speaker_confidence": 0.7114258, "start": 75.854996, "word": "down" }, { "confidence": 0.99902344, "end": 76.174995, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.9321289, "start": 76.095, "word": "how" }, { "confidence": 0.99902344, "end": 76.335, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.9321289, "start": 76.174995, "word": "they" }, { "confidence": 0.99902344, "end": 76.575, "punctuated_word": "would", "speaker": 0, "speaker_confidence": 0.9321289, "start": 76.335, "word": "would" }, { "confidence": 1, "end": 76.735, "punctuated_word": "move", "speaker": 0, "speaker_confidence": 0.9321289, "start": 76.575, "word": "move" }, { "confidence": 0.99902344, "end": 76.895, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9321289, "start": 76.735, "word": "the" }, { "confidence": 1, "end": 77.295, "punctuated_word": "currency", "speaker": 0, "speaker_confidence": 0.9321289, "start": 76.895, "word": "currency" }, { "confidence": 0.9980469, "end": 77.534996, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.9321289, "start": 77.295, "word": "with" }, { "confidence": 1, "end": 77.695, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9321289, "start": 77.534996, "word": "a" }, { "confidence": 0.99902344, "end": 78.095, "punctuated_word": "diverse", "speaker": 0, "speaker_confidence": 0.9321289, "start": 77.695, "word": "diverse" }, { "confidence": 1, "end": 78.415, "punctuated_word": "array", "speaker": 0, "speaker_confidence": 0.9321289, "start": 78.095, "word": "array" }, { "confidence": 0.99902344, "end": 78.655, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9321289, "start": 78.415, "word": "of" }, { "confidence": 0.8901367, "end": 79.155, "punctuated_word": "transactions,", "speaker": 0, "speaker_confidence": 0.9321289, "start": 78.655, "word": "transactions" }, { "confidence": 1, "end": 79.615, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.9321289, "start": 79.375, "word": "like" }, { "confidence": 0.97265625, "end": 80.015, "punctuated_word": "purchasing", "speaker": 0, "speaker_confidence": 0.9321289, "start": 79.615, "word": "purchasing" }, { "confidence": 0.7597656, "end": 80.494995, "punctuated_word": "altcoins", "speaker": 0, "speaker_confidence": 0.9321289, "start": 80.015, "word": "altcoins" }, { "confidence": 0.9863281, "end": 80.735, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9321289, "start": 80.494995, "word": "and" }, { "confidence": 0.96940106, "end": 81.16, "punctuated_word": "NFTs", "speaker": 0, "speaker_confidence": 0.9321289, "start": 80.735, "word": "nfts" }, { "confidence": 0.5214844, "end": 81.32001, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9321289, "start": 81.16, "word": "is" }, { "confidence": 0.6879883, "end": 81.48, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9321289, "start": 81.32001, "word": "and" }, { "confidence": 0.8701172, "end": 81.560005, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.9321289, "start": 81.48, "word": "then" }, { "confidence": 0.9980469, "end": 81.880005, "punctuated_word": "breaking", "speaker": 0, "speaker_confidence": 0.9321289, "start": 81.560005, "word": "breaking" }, { "confidence": 0.99902344, "end": 82.28001, "punctuated_word": "everything", "speaker": 0, "speaker_confidence": 0.9321289, "start": 81.880005, "word": "everything" }, { "confidence": 1, "end": 82.520004, "punctuated_word": "down", "speaker": 0, "speaker_confidence": 0.9321289, "start": 82.28001, "word": "down" }, { "confidence": 0.99609375, "end": 82.840004, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.9321289, "start": 82.520004, "word": "into" }, { "confidence": 0.6484375, "end": 83.240005, "punctuated_word": "thousands", "speaker": 0, "speaker_confidence": 0.9321289, "start": 82.840004, "word": "thousands" }, { "confidence": 0.99902344, "end": 83.4, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9321289, "start": 83.240005, "word": "of" }, { "confidence": 0.99902344, "end": 83.8, "punctuated_word": "smaller", "speaker": 0, "speaker_confidence": 0.9321289, "start": 83.4, "word": "smaller" }, { "confidence": 1, "end": 84.3, "punctuated_word": "transactions", "speaker": 0, "speaker_confidence": 0.9321289, "start": 83.8, "word": "transactions" }, { "confidence": 0.5551758, "end": 84.600006, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.9321289, "start": 84.44, "word": "where" }, { "confidence": 1, "end": 84.68, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8671875, "start": 84.600006, "word": "the" }, { "confidence": 0.99902344, "end": 84.920006, "punctuated_word": "funds", "speaker": 0, "speaker_confidence": 0.8671875, "start": 84.68, "word": "funds" }, { "confidence": 0.9980469, "end": 85.16, "punctuated_word": "would", "speaker": 0, "speaker_confidence": 0.8671875, "start": 84.920006, "word": "would" }, { "confidence": 0.99902344, "end": 85.48, "punctuated_word": "eventually", "speaker": 0, "speaker_confidence": 0.8671875, "start": 85.16, "word": "eventually" }, { "confidence": 1, "end": 85.72, "punctuated_word": "flow", "speaker": 0, "speaker_confidence": 0.8671875, "start": 85.48, "word": "flow" }, { "confidence": 0.99902344, "end": 85.96001, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.8671875, "start": 85.72, "word": "into" }, { "confidence": 0.99902344, "end": 86.12, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8671875, "start": 85.96001, "word": "a" }, { "confidence": 1, "end": 86.44, "punctuated_word": "business", "speaker": 0, "speaker_confidence": 0.8671875, "start": 86.12, "word": "business" }, { "confidence": 0.9970703, "end": 86.520004, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8671875, "start": 86.44, "word": "that" }, { "confidence": 0.9760742, "end": 86.76, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.8671875, "start": 86.520004, "word": "could" }, { "confidence": 0.99902344, "end": 86.920006, "punctuated_word": "fund", "speaker": 0, "speaker_confidence": 0.8671875, "start": 86.76, "word": "fund" }, { "confidence": 0.9941406, "end": 87.32001, "punctuated_word": "Heather's", "speaker": 0, "speaker_confidence": 0.8671875, "start": 86.920006, "word": "heather's" }, { "confidence": 0.9892578, "end": 87.560005, "punctuated_word": "music", "speaker": 0, "speaker_confidence": 0.8671875, "start": 87.32001, "word": "music" }, { "confidence": 0.99853516, "end": 88.04, "punctuated_word": "videos.", "speaker": 0, "speaker_confidence": 0.8671875, "start": 87.560005, "word": "videos" }, { "confidence": 0.99902344, "end": 88.200005, "punctuated_word": "They", "speaker": 0, "speaker_confidence": 0.8671875, "start": 88.04, "word": "they" }, { "confidence": 0.9951172, "end": 88.36, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.8671875, "start": 88.200005, "word": "get" }, { "confidence": 0.9951172, "end": 88.520004, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.8671875, "start": 88.36, "word": "an" }, { "confidence": 0.97998047, "end": 88.68, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8671875, "start": 88.520004, "word": "a" }, { "confidence": 0.9980469, "end": 88.76, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.8671875, "start": 88.68, "word": "for" }, { "confidence": 0.9848633, "end": 89.16, "punctuated_word": "effort,", "speaker": 0, "speaker_confidence": 0.6357422, "start": 88.76, "word": "effort" }, { "confidence": 1, "end": 89.4, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.6357422, "start": 89.16, "word": "but" }, { "confidence": 0.7873535, "end": 89.8, "punctuated_word": "Bitcoin's", "speaker": 0, "speaker_confidence": 0.6357422, "start": 89.4, "word": "bitcoin's" }, { "confidence": 0.99609375, "end": 89.96001, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.6357422, "start": 89.8, "word": "not" }, { "confidence": 0.97509766, "end": 90.12, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.6357422, "start": 89.96001, "word": "like" }, { "confidence": 0.99609375, "end": 90.200005, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6357422, "start": 90.12, "word": "a" }, { "confidence": 0.9980469, "end": 90.44, "punctuated_word": "gold", "speaker": 0, "speaker_confidence": 0.6357422, "start": 90.200005, "word": "gold" }, { "confidence": 0.99902344, "end": 90.600006, "punctuated_word": "bar", "speaker": 0, "speaker_confidence": 0.6357422, "start": 90.44, "word": "bar" }, { "confidence": 0.9902344, "end": 90.76, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.6357422, "start": 90.600006, "word": "that" }, { "confidence": 0.98828125, "end": 90.840004, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.6035156, "start": 90.76, "word": "you" }, { "confidence": 0.9741211, "end": 91.145, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.6035156, "start": 90.840004, "word": "can" }, { "confidence": 0.7421875, "end": 91.625, "punctuated_word": "Meltdown", "speaker": 0, "speaker_confidence": 0.6035156, "start": 91.145, "word": "meltdown" }, { "confidence": 0.8833008, "end": 91.865, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6035156, "start": 91.625, "word": "and" }, { "confidence": 0.6274414, "end": 92.104996, "punctuated_word": "Sell", "speaker": 0, "speaker_confidence": 0.6035156, "start": 91.865, "word": "sell" }, { "confidence": 0.9892578, "end": 92.185, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.48535156, "start": 92.104996, "word": "on" }, { "confidence": 0.99902344, "end": 92.34499, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.48535156, "start": 92.185, "word": "the" }, { "confidence": 0.98828125, "end": 92.585, "punctuated_word": "black", "speaker": 0, "speaker_confidence": 0.48535156, "start": 92.34499, "word": "black" }, { "confidence": 0.8288574, "end": 92.905, "punctuated_word": "market.", "speaker": 0, "speaker_confidence": 0.48535156, "start": 92.585, "word": "market" }, { "confidence": 0.9951172, "end": 93.064995, "punctuated_word": "On", "speaker": 0, "speaker_confidence": 1, "start": 92.905, "word": "on" }, { "confidence": 0.99902344, "end": 93.145, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 93.064995, "word": "the" }, { "confidence": 1, "end": 93.384995, "punctuated_word": "bright", "speaker": 0, "speaker_confidence": 1, "start": 93.145, "word": "bright" }, { "confidence": 1, "end": 93.545, "punctuated_word": "side", "speaker": 0, "speaker_confidence": 1, "start": 93.384995, "word": "side" }, { "confidence": 0.89404297, "end": 93.865, "punctuated_word": "though,", "speaker": 0, "speaker_confidence": 1, "start": 93.545, "word": "though" }, { "confidence": 1, "end": 94.024994, "punctuated_word": "many", "speaker": 0, "speaker_confidence": 1, "start": 93.865, "word": "many" }, { "confidence": 1, "end": 94.185, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 94.024994, "word": "of" }, { "confidence": 1, "end": 94.34499, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 1, "start": 94.185, "word": "my" }, { "confidence": 1, "end": 94.66499, "punctuated_word": "favorite", "speaker": 0, "speaker_confidence": 1, "start": 94.34499, "word": "favorite" }, { "confidence": 1, "end": 95.064995, "punctuated_word": "rappers", "speaker": 0, "speaker_confidence": 1, "start": 94.66499, "word": "rappers" }, { "confidence": 0.99902344, "end": 95.225, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 1, "start": 95.064995, "word": "have" }, { "confidence": 1, "end": 95.384995, "punctuated_word": "done", "speaker": 0, "speaker_confidence": 1, "start": 95.225, "word": "done" }, { "confidence": 1, "end": 95.545, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 1, "start": 95.384995, "word": "time" }, { "confidence": 1, "end": 95.704994, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 95.545, "word": "in" }, { "confidence": 1, "end": 96.024994, "punctuated_word": "prison.", "speaker": 0, "speaker_confidence": 1, "start": 95.704994, "word": "prison" }, { "confidence": 0.99902344, "end": 96.34499, "punctuated_word": "Another", "speaker": 0, "speaker_confidence": 1, "start": 96.024994, "word": "another" }, { "confidence": 1, "end": 96.585, "punctuated_word": "big", "speaker": 0, "speaker_confidence": 1, "start": 96.34499, "word": "big" }, { "confidence": 1, "end": 96.905, "punctuated_word": "question", "speaker": 0, "speaker_confidence": 1, "start": 96.585, "word": "question" }, { "confidence": 0.99902344, "end": 97.145, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 1, "start": 96.905, "word": "here" }, { "confidence": 0.96875, "end": 97.30499, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 97.145, "word": "is" }, { "confidence": 0.7084961, "end": 97.545, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 1, "start": 97.30499, "word": "will" }, { "confidence": 1, "end": 97.625, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 97.545, "word": "the" }, { "confidence": 1, "end": 98.024994, "punctuated_word": "original", "speaker": 0, "speaker_confidence": 1, "start": 97.625, "word": "original" }, { "confidence": 1, "end": 98.424995, "punctuated_word": "owners", "speaker": 0, "speaker_confidence": 1, "start": 98.024994, "word": "owners" }, { "confidence": 0.99902344, "end": 98.66499, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 1, "start": 98.424995, "word": "be" }, { "confidence": 1, "end": 98.825, "punctuated_word": "able", "speaker": 0, "speaker_confidence": 1, "start": 98.66499, "word": "able" }, { "confidence": 0.99902344, "end": 98.98499, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 98.825, "word": "to" }, { "confidence": 1, "end": 99.39, "punctuated_word": "recover", "speaker": 0, "speaker_confidence": 1, "start": 98.98499, "word": "recover" }, { "confidence": 0.99902344, "end": 99.63, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 1, "start": 99.39, "word": "their" }, { "confidence": 0.97436523, "end": 99.95, "punctuated_word": "funds,", "speaker": 0, "speaker_confidence": 1, "start": 99.63, "word": "funds" }, { "confidence": 0.9900716, "end": 100.45, "punctuated_word": "Bitfinex", "speaker": 0, "speaker_confidence": 1, "start": 99.95, "word": "bitfinex" }, { "confidence": 0.9970703, "end": 100.909996, "punctuated_word": "already", "speaker": 0, "speaker_confidence": 1, "start": 100.67, "word": "already" }, { "confidence": 0.99902344, "end": 101.229996, "punctuated_word": "attempted", "speaker": 0, "speaker_confidence": 1, "start": 100.909996, "word": "attempted" }, { "confidence": 1, "end": 101.39, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 101.229996, "word": "to" }, { "confidence": 1, "end": 101.63, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 1, "start": 101.39, "word": "make" }, { "confidence": 0.99902344, "end": 102.03, "punctuated_word": "customers", "speaker": 0, "speaker_confidence": 1, "start": 101.63, "word": "customers" }, { "confidence": 0.9970703, "end": 102.43, "punctuated_word": "whole", "speaker": 0, "speaker_confidence": 1, "start": 102.03, "word": "whole" }, { "confidence": 0.9951172, "end": 102.59, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.703125, "start": 102.43, "word": "by" }, { "confidence": 1, "end": 102.99, "punctuated_word": "crediting", "speaker": 0, "speaker_confidence": 0.703125, "start": 102.59, "word": "crediting" }, { "confidence": 1, "end": 103.15, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.703125, "start": 102.99, "word": "them" }, { "confidence": 1, "end": 103.31, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.703125, "start": 103.15, "word": "with" }, { "confidence": 1, "end": 103.47, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.703125, "start": 103.31, "word": "a" }, { "confidence": 1, "end": 103.71, "punctuated_word": "different", "speaker": 0, "speaker_confidence": 0.703125, "start": 103.47, "word": "different" }, { "confidence": 1, "end": 104.03, "punctuated_word": "token", "speaker": 0, "speaker_confidence": 0.703125, "start": 103.71, "word": "token" }, { "confidence": 1, "end": 104.27, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.703125, "start": 104.03, "word": "when" }, { "confidence": 0.99902344, "end": 104.35, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.703125, "start": 104.27, "word": "the" }, { "confidence": 1, "end": 104.59, "punctuated_word": "hack", "speaker": 0, "speaker_confidence": 0.703125, "start": 104.35, "word": "hack" }, { "confidence": 0.99853516, "end": 104.99, "punctuated_word": "occurred.", "speaker": 0, "speaker_confidence": 0.703125, "start": 104.59, "word": "occurred" }, { "confidence": 0.99902344, "end": 105.07, "punctuated_word": "They", "speaker": 0, "speaker_confidence": 1, "start": 104.99, "word": "they" }, { "confidence": 1, "end": 105.229996, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 1, "start": 105.07, "word": "are" }, { "confidence": 0.99902344, "end": 105.47, "punctuated_word": "working", "speaker": 0, "speaker_confidence": 1, "start": 105.229996, "word": "working" }, { "confidence": 0.9970703, "end": 105.55, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 105.47, "word": "with" }, { "confidence": 0.96972656, "end": 105.71, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 105.55, "word": "the" }, { "confidence": 0.91259766, "end": 106.03, "punctuated_word": "Department", "speaker": 0, "speaker_confidence": 1, "start": 105.71, "word": "department" }, { "confidence": 0.97998047, "end": 106.405, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 106.03, "word": "of" }, { "confidence": 0.88720703, "end": 106.645, "punctuated_word": "this,", "speaker": 0, "speaker_confidence": 1, "start": 106.485, "word": "this" }, { "confidence": 0.97509766, "end": 106.765, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 1, "start": 106.645, "word": "but" }, { "confidence": 0.99316406, "end": 106.885, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 106.765, "word": "it" }, { "confidence": 0.99902344, "end": 107.125, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 1, "start": 106.885, "word": "will" }, { "confidence": 1, "end": 107.445, "punctuated_word": "likely", "speaker": 0, "speaker_confidence": 1, "start": 107.125, "word": "likely" }, { "confidence": 1, "end": 107.604996, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 1, "start": 107.445, "word": "be" }, { "confidence": 0.99902344, "end": 107.685, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 107.604996, "word": "a" }, { "confidence": 1, "end": 107.845, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 1, "start": 107.685, "word": "very" }, { "confidence": 1, "end": 108.085, "punctuated_word": "long", "speaker": 0, "speaker_confidence": 1, "start": 107.845, "word": "long" }, { "confidence": 1, "end": 108.325, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 108.085, "word": "and" }, { "confidence": 1, "end": 108.805, "punctuated_word": "complicated", "speaker": 0, "speaker_confidence": 1, "start": 108.325, "word": "complicated" }, { "confidence": 1, "end": 109.205, "punctuated_word": "process", "speaker": 0, "speaker_confidence": 1, "start": 108.805, "word": "process" }, { "confidence": 0.99902344, "end": 109.525, "punctuated_word": "before", "speaker": 0, "speaker_confidence": 1, "start": 109.205, "word": "before" }, { "confidence": 1, "end": 109.845, "punctuated_word": "anyone", "speaker": 0, "speaker_confidence": 1, "start": 109.525, "word": "anyone" }, { "confidence": 0.99902344, "end": 110.085, "punctuated_word": "gets", "speaker": 0, "speaker_confidence": 1, "start": 109.845, "word": "gets" }, { "confidence": 0.99902344, "end": 110.244995, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 1, "start": 110.085, "word": "their" }, { "confidence": 0.78515625, "end": 110.565, "punctuated_word": "Bitcoin", "speaker": 0, "speaker_confidence": 1, "start": 110.244995, "word": "bitcoin" }, { "confidence": 0.8630371, "end": 110.885, "punctuated_word": "back,", "speaker": 0, "speaker_confidence": 1, "start": 110.565, "word": "back" }, { "confidence": 1, "end": 111.045, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 1, "start": 110.885, "word": "if" }, { "confidence": 1, "end": 111.205, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 111.045, "word": "it" }, { "confidence": 1, "end": 111.445, "punctuated_word": "happens", "speaker": 0, "speaker_confidence": 1, "start": 111.205, "word": "happens" }, { "confidence": 1, "end": 111.604996, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 1, "start": 111.445, "word": "at" }, { "confidence": 0.9592285, "end": 111.845, "punctuated_word": "all.", "speaker": 0, "speaker_confidence": 1, "start": 111.604996, "word": "all" }, { "confidence": 0.9980469, "end": 112.085, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 1, "start": 111.845, "word": "but" }, { "confidence": 0.74316406, "end": 112.244995, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 1, "start": 112.085, "word": "what" }, { "confidence": 1, "end": 112.485, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 1, "start": 112.244995, "word": "about" }, { "confidence": 0.99902344, "end": 112.725, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 1, "start": 112.485, "word": "your" }, { "confidence": 0.8815918, "end": 113.125, "punctuated_word": "Bitcoin?", "speaker": 0, "speaker_confidence": 1, "start": 112.725, "word": "bitcoin" }, { "confidence": 0.9970703, "end": 113.284996, "punctuated_word": "Is", "speaker": 0, "speaker_confidence": 1, "start": 113.125, "word": "is" }, { "confidence": 1, "end": 113.445, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 113.284996, "word": "it" }, { "confidence": 1, "end": 113.604996, "punctuated_word": "safe", "speaker": 0, "speaker_confidence": 1, "start": 113.445, "word": "safe" }, { "confidence": 0.6875, "end": 113.845, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 113.604996, "word": "in" }, { "confidence": 0.9941406, "end": 113.924995, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 113.845, "word": "an" }, { "confidence": 0.99902344, "end": 114.325, "punctuated_word": "exchange", "speaker": 0, "speaker_confidence": 1, "start": 113.924995, "word": "exchange" }, { "confidence": 1, "end": 114.485, "punctuated_word": "right", "speaker": 0, "speaker_confidence": 1, "start": 114.325, "word": "right" }, { "confidence": 0.99902344, "end": 114.8, "punctuated_word": "now?", "speaker": 0, "speaker_confidence": 1, "start": 114.485, "word": "now" }, { "confidence": 0.97436523, "end": 115.200005, "punctuated_word": "Well,", "speaker": 0, "speaker_confidence": 1, "start": 114.96001, "word": "well" }, { "confidence": 0.9970703, "end": 115.44, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 115.200005, "word": "the" }, { "confidence": 0.9633789, "end": 115.840004, "punctuated_word": "blockchain", "speaker": 0, "speaker_confidence": 1, "start": 115.44, "word": "blockchain" }, { "confidence": 0.99902344, "end": 116.240005, "punctuated_word": "network", "speaker": 0, "speaker_confidence": 1, "start": 115.840004, "word": "network" }, { "confidence": 0.9980469, "end": 116.64, "punctuated_word": "itself", "speaker": 0, "speaker_confidence": 1, "start": 116.240005, "word": "itself" }, { "confidence": 0.99609375, "end": 116.880005, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 116.64, "word": "is" }, { "confidence": 0.99902344, "end": 117.36, "punctuated_word": "virtually", "speaker": 0, "speaker_confidence": 1, "start": 116.880005, "word": "virtually" }, { "confidence": 0.99576825, "end": 117.86, "punctuated_word": "unhackable", "speaker": 0, "speaker_confidence": 1, "start": 117.36, "word": "unhackable" }, { "confidence": 0.99902344, "end": 118, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 117.920006, "word": "with" }, { "confidence": 0.99902344, "end": 118.4, "punctuated_word": "current", "speaker": 0, "speaker_confidence": 1, "start": 118, "word": "current" }, { "confidence": 0.99121094, "end": 118.9, "punctuated_word": "technology.", "speaker": 0, "speaker_confidence": 1, "start": 118.4, "word": "technology" }, { "confidence": 0.98828125, "end": 119.28001, "punctuated_word": "Crypto", "speaker": 0, "speaker_confidence": 1, "start": 118.96001, "word": "crypto" }, { "confidence": 0.9248047, "end": 119.76, "punctuated_word": "exchanges", "speaker": 0, "speaker_confidence": 1, "start": 119.28001, "word": "exchanges" }, { "confidence": 0.5307617, "end": 119.920006, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 1, "start": 119.76, "word": "on" }, { "confidence": 0.9980469, "end": 120, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8496094, "start": 119.920006, "word": "the" }, { "confidence": 1, "end": 120.16, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.8496094, "start": 120, "word": "other" }, { "confidence": 1, "end": 120.48, "punctuated_word": "hand", "speaker": 0, "speaker_confidence": 0.8496094, "start": 120.16, "word": "hand" }, { "confidence": 0.7973633, "end": 120.72, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.8496094, "start": 120.48, "word": "are" }, { "confidence": 1, "end": 120.96001, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 0.8496094, "start": 120.72, "word": "very" }, { "confidence": 1, "end": 121.200005, "punctuated_word": "much", "speaker": 0, "speaker_confidence": 0.8496094, "start": 120.96001, "word": "much" }, { "confidence": 0.9977214, "end": 121.68, "punctuated_word": "hackable.", "speaker": 0, "speaker_confidence": 0.8496094, "start": 121.200005, "word": "hackable" }, { "confidence": 0.98095703, "end": 121.840004, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.8496094, "start": 121.68, "word": "the" }, { "confidence": 0.99902344, "end": 121.920006, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.8496094, "start": 121.840004, "word": "thing" }, { "confidence": 1, "end": 122.240005, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.8496094, "start": 121.920006, "word": "about" }, { "confidence": 0.99121094, "end": 122.740005, "punctuated_word": "cryptocurrency", "speaker": 0, "speaker_confidence": 0.8496094, "start": 122.240005, "word": "cryptocurrency" }, { "confidence": 0.38189697, "end": 123.025, "punctuated_word": "Vee", "speaker": 0, "speaker_confidence": 0.8496094, "start": 122.865, "word": "vee" }, { "confidence": 0.57910156, "end": 123.185, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.87402344, "start": 123.025, "word": "is" }, { "confidence": 0.9980469, "end": 123.265, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.87402344, "start": 123.185, "word": "that" }, { "confidence": 0.96875, "end": 123.345, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.87402344, "start": 123.265, "word": "when" }, { "confidence": 1, "end": 123.744995, "punctuated_word": "someone", "speaker": 0, "speaker_confidence": 0.87402344, "start": 123.345, "word": "someone" }, { "confidence": 1, "end": 124.064995, "punctuated_word": "obtains", "speaker": 0, "speaker_confidence": 0.87402344, "start": 123.744995, "word": "obtains" }, { "confidence": 0.9970703, "end": 124.225, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.87402344, "start": 124.064995, "word": "your" }, { "confidence": 0.9980469, "end": 124.545, "punctuated_word": "private", "speaker": 0, "speaker_confidence": 0.87402344, "start": 124.225, "word": "private" }, { "confidence": 0.9904785, "end": 124.784996, "punctuated_word": "key,", "speaker": 0, "speaker_confidence": 0.87402344, "start": 124.545, "word": "key" }, { "confidence": 1, "end": 124.945, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.87402344, "start": 124.784996, "word": "they" }, { "confidence": 1, "end": 125.185, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.87402344, "start": 124.945, "word": "have" }, { "confidence": 1, "end": 125.505, "punctuated_word": "access", "speaker": 0, "speaker_confidence": 0.87402344, "start": 125.185, "word": "access" }, { "confidence": 1, "end": 125.665, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.87402344, "start": 125.505, "word": "to" }, { "confidence": 1, "end": 125.825, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.87402344, "start": 125.665, "word": "all" }, { "confidence": 0.9873047, "end": 125.985, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.87402344, "start": 125.825, "word": "of" }, { "confidence": 1, "end": 126.064995, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.87402344, "start": 125.985, "word": "your" }, { "confidence": 1, "end": 126.465, "punctuated_word": "money", "speaker": 0, "speaker_confidence": 0.87402344, "start": 126.064995, "word": "money" }, { "confidence": 0.89990234, "end": 126.545, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.87402344, "start": 126.465, "word": "and" }, { "confidence": 1, "end": 126.704994, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.87402344, "start": 126.545, "word": "can" }, { "confidence": 1, "end": 126.865, "punctuated_word": "send", "speaker": 0, "speaker_confidence": 0.87402344, "start": 126.704994, "word": "send" }, { "confidence": 1, "end": 126.945, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 126.865, "word": "it" }, { "confidence": 0.99902344, "end": 127.265, "punctuated_word": "wherever", "speaker": 0, "speaker_confidence": 1, "start": 126.945, "word": "wherever" }, { "confidence": 1, "end": 127.345, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 1, "start": 127.265, "word": "they" }, { "confidence": 0.99853516, "end": 127.665, "punctuated_word": "want.", "speaker": 0, "speaker_confidence": 1, "start": 127.345, "word": "want" }, { "confidence": 0.9890137, "end": 127.905, "punctuated_word": "There's", "speaker": 0, "speaker_confidence": 1, "start": 127.665, "word": "there's" }, { "confidence": 1, "end": 127.985, "punctuated_word": "no", "speaker": 0, "speaker_confidence": 1, "start": 127.905, "word": "no" }, { "confidence": 1, "end": 128.385, "punctuated_word": "central", "speaker": 0, "speaker_confidence": 1, "start": 127.985, "word": "central" }, { "confidence": 1, "end": 128.86499, "punctuated_word": "authority", "speaker": 0, "speaker_confidence": 1, "start": 128.385, "word": "authority" }, { "confidence": 0.99902344, "end": 129.025, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 128.86499, "word": "to" }, { "confidence": 1, "end": 129.425, "punctuated_word": "detect", "speaker": 0, "speaker_confidence": 1, "start": 129.025, "word": "detect" }, { "confidence": 0.9951172, "end": 129.665, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 1, "start": 129.425, "word": "or" }, { "confidence": 1, "end": 129.985, "punctuated_word": "stop", "speaker": 0, "speaker_confidence": 1, "start": 129.665, "word": "stop" }, { "confidence": 1, "end": 130.485, "punctuated_word": "fraudulent", "speaker": 0, "speaker_confidence": 1, "start": 129.985, "word": "fraudulent" }, { "confidence": 0.9055176, "end": 131.23001, "punctuated_word": "transactions,", "speaker": 0, "speaker_confidence": 1, "start": 130.73001, "word": "transactions" }, { "confidence": 0.8310547, "end": 131.53001, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 1, "start": 131.37001, "word": "but" }, { "confidence": 0.9921875, "end": 131.69, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 1, "start": 131.53001, "word": "they" }, { "confidence": 1, "end": 131.85, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 1, "start": 131.69, "word": "do" }, { "confidence": 1, "end": 132.25, "punctuated_word": "implement", "speaker": 0, "speaker_confidence": 1, "start": 131.85, "word": "implement" }, { "confidence": 1, "end": 132.49, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 1, "start": 132.25, "word": "other" }, { "confidence": 1, "end": 132.89001, "punctuated_word": "measures", "speaker": 0, "speaker_confidence": 1, "start": 132.49, "word": "measures" }, { "confidence": 1, "end": 133.13, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 132.89001, "word": "to" }, { "confidence": 1, "end": 133.29001, "punctuated_word": "keep", "speaker": 0, "speaker_confidence": 1, "start": 133.13, "word": "keep" }, { "confidence": 1, "end": 133.45001, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 1, "start": 133.29001, "word": "your" }, { "confidence": 0.61083984, "end": 133.77, "punctuated_word": "token", "speaker": 0, "speaker_confidence": 1, "start": 133.45001, "word": "token" }, { "confidence": 0.9941406, "end": 134.09001, "punctuated_word": "safe.", "speaker": 0, "speaker_confidence": 1, "start": 133.77, "word": "safe" }, { "confidence": 0.6328125, "end": 134.33, "punctuated_word": "1", "speaker": 0, "speaker_confidence": 1, "start": 134.09001, "word": "1" }, { "confidence": 0.97509766, "end": 134.57, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 134.33, "word": "is" }, { "confidence": 0.81933594, "end": 134.89001, "punctuated_word": "multi", "speaker": 0, "speaker_confidence": 1, "start": 134.57, "word": "multi" }, { "confidence": 1, "end": 135.29001, "punctuated_word": "signature", "speaker": 0, "speaker_confidence": 1, "start": 134.89001, "word": "signature" }, { "confidence": 0.9980469, "end": 135.77, "punctuated_word": "wallets", "speaker": 0, "speaker_confidence": 1, "start": 135.29001, "word": "wallets" }, { "confidence": 0.99609375, "end": 136.01001, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 135.77, "word": "that" }, { "confidence": 1, "end": 136.33, "punctuated_word": "require", "speaker": 0, "speaker_confidence": 1, "start": 136.01001, "word": "require" }, { "confidence": 1, "end": 136.73001, "punctuated_word": "multiple", "speaker": 0, "speaker_confidence": 1, "start": 136.33, "word": "multiple" }, { "confidence": 1, "end": 137.05, "punctuated_word": "private", "speaker": 0, "speaker_confidence": 1, "start": 136.73001, "word": "private" }, { "confidence": 1, "end": 137.37001, "punctuated_word": "keys", "speaker": 0, "speaker_confidence": 1, "start": 137.05, "word": "keys" }, { "confidence": 1, "end": 137.53001, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 137.37001, "word": "to" }, { "confidence": 1, "end": 137.77, "punctuated_word": "send", "speaker": 0, "speaker_confidence": 1, "start": 137.53001, "word": "send" }, { "confidence": 1, "end": 137.93001, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 137.77, "word": "a" }, { "confidence": 0.9995117, "end": 138.43001, "punctuated_word": "transaction.", "speaker": 0, "speaker_confidence": 1, "start": 137.93001, "word": "transaction" }, { "confidence": 1, "end": 138.81001, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 1, "start": 138.73001, "word": "the" }, { "confidence": 1, "end": 138.97, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 1, "start": 138.81001, "word": "other" }, { "confidence": 1, "end": 139.21, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 1, "start": 138.97, "word": "thing" }, { "confidence": 0.99902344, "end": 139.37001, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 1, "start": 139.21, "word": "they" }, { "confidence": 1, "end": 139.61, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 1, "start": 139.37001, "word": "do" }, { "confidence": 0.99316406, "end": 139.85, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 139.61, "word": "is" }, { "confidence": 0.9980469, "end": 140.01001, "punctuated_word": "try", "speaker": 0, "speaker_confidence": 1, "start": 139.85, "word": "try" }, { "confidence": 0.97265625, "end": 140.195, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 140.01001, "word": "to" }, { "confidence": 0.9819336, "end": 140.35501, "punctuated_word": "keep", "speaker": 0, "speaker_confidence": 1, "start": 140.195, "word": "keep" }, { "confidence": 0.99316406, "end": 140.595, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 1, "start": 140.35501, "word": "as" }, { "confidence": 1, "end": 140.675, "punctuated_word": "much", "speaker": 0, "speaker_confidence": 1, "start": 140.595, "word": "much" }, { "confidence": 0.99121094, "end": 141.15501, "punctuated_word": "crypto", "speaker": 0, "speaker_confidence": 1, "start": 140.675, "word": "crypto" }, { "confidence": 0.9902344, "end": 141.395, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 141.15501, "word": "in" }, { "confidence": 0.9980469, "end": 141.71501, "punctuated_word": "cold", "speaker": 0, "speaker_confidence": 1, "start": 141.395, "word": "cold" }, { "confidence": 0.99902344, "end": 142.035, "punctuated_word": "storage", "speaker": 0, "speaker_confidence": 1, "start": 141.71501, "word": "storage" }, { "confidence": 0.9633789, "end": 142.195, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 1, "start": 142.035, "word": "as" }, { "confidence": 0.87597656, "end": 142.695, "punctuated_word": "possible,", "speaker": 0, "speaker_confidence": 1, "start": 142.195, "word": "possible" }, { "confidence": 0.9980469, "end": 142.99501, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 1, "start": 142.755, "word": "there" }, { "confidence": 1, "end": 143.15501, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 1, "start": 142.99501, "word": "are" }, { "confidence": 0.84277344, "end": 143.315, "punctuated_word": "2", "speaker": 0, "speaker_confidence": 1, "start": 143.15501, "word": "2" }, { "confidence": 1, "end": 143.475, "punctuated_word": "types", "speaker": 0, "speaker_confidence": 1, "start": 143.315, "word": "types" }, { "confidence": 1, "end": 143.63501, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 143.475, "word": "of" }, { "confidence": 0.9873047, "end": 143.955, "punctuated_word": "crypto", "speaker": 0, "speaker_confidence": 1, "start": 143.63501, "word": "crypto" }, { "confidence": 0.8430176, "end": 144.43501, "punctuated_word": "wallets,", "speaker": 0, "speaker_confidence": 1, "start": 143.955, "word": "wallets" }, { "confidence": 0.9951172, "end": 144.675, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 144.43501, "word": "a" }, { "confidence": 0.99316406, "end": 144.835, "punctuated_word": "hot", "speaker": 0, "speaker_confidence": 1, "start": 144.675, "word": "hot" }, { "confidence": 0.9729004, "end": 145.235, "punctuated_word": "wallet,", "speaker": 0, "speaker_confidence": 1, "start": 144.835, "word": "wallet" }, { "confidence": 0.9970703, "end": 145.395, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 1, "start": 145.235, "word": "which" }, { "confidence": 0.99609375, "end": 145.55501, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 145.395, "word": "is" }, { "confidence": 0.99902344, "end": 145.79501, "punctuated_word": "always", "speaker": 0, "speaker_confidence": 1, "start": 145.55501, "word": "always" }, { "confidence": 0.99609375, "end": 146.115, "punctuated_word": "connected", "speaker": 0, "speaker_confidence": 1, "start": 145.79501, "word": "connected" }, { "confidence": 0.99609375, "end": 146.195, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 146.115, "word": "to" }, { "confidence": 0.9863281, "end": 146.35501, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 146.195, "word": "the" }, { "confidence": 0.9301758, "end": 146.835, "punctuated_word": "Internet", "speaker": 0, "speaker_confidence": 1, "start": 146.35501, "word": "internet" }, { "confidence": 0.9472656, "end": 147.07501, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 146.835, "word": "and" }, { "confidence": 0.9902344, "end": 147.315, "punctuated_word": "ready", "speaker": 0, "speaker_confidence": 1, "start": 147.07501, "word": "ready" }, { "confidence": 0.96875, "end": 147.395, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 147.315, "word": "to" }, { "confidence": 0.85498047, "end": 147.63, "punctuated_word": "send", "speaker": 0, "speaker_confidence": 1, "start": 147.395, "word": "send" }, { "confidence": 0.9707031, "end": 148.29001, "punctuated_word": "transactions", "speaker": 0, "speaker_confidence": 1, "start": 147.79001, "word": "transactions" }, { "confidence": 0.6196289, "end": 148.75, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 148.51001, "word": "and" }, { "confidence": 0.99902344, "end": 148.83, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 148.75, "word": "the" }, { "confidence": 0.99902344, "end": 149.07, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 1, "start": 148.83, "word": "other" }, { "confidence": 0.98535156, "end": 149.23001, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 149.07, "word": "is" }, { "confidence": 1, "end": 149.39, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 149.23001, "word": "a" }, { "confidence": 0.99609375, "end": 149.63, "punctuated_word": "cold", "speaker": 0, "speaker_confidence": 1, "start": 149.39, "word": "cold" }, { "confidence": 0.9772949, "end": 150.03, "punctuated_word": "wallet,", "speaker": 0, "speaker_confidence": 1, "start": 149.63, "word": "wallet" }, { "confidence": 1, "end": 150.19, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.78515625, "start": 150.03, "word": "which" }, { "confidence": 1, "end": 150.35, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.78515625, "start": 150.19, "word": "is" }, { "confidence": 0.9980469, "end": 150.85, "punctuated_word": "offline", "speaker": 0, "speaker_confidence": 0.78515625, "start": 150.35, "word": "offline" }, { "confidence": 0.9350586, "end": 151.15001, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.78515625, "start": 150.99, "word": "and" }, { "confidence": 0.9980469, "end": 151.55, "punctuated_word": "generally", "speaker": 0, "speaker_confidence": 0.78515625, "start": 151.15001, "word": "generally" }, { "confidence": 0.99902344, "end": 151.79001, "punctuated_word": "used", "speaker": 0, "speaker_confidence": 0.78515625, "start": 151.55, "word": "used" }, { "confidence": 1, "end": 152.03, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.78515625, "start": 151.79001, "word": "for" }, { "confidence": 0.6855469, "end": 152.27, "punctuated_word": "long", "speaker": 0, "speaker_confidence": 0.78515625, "start": 152.03, "word": "long" }, { "confidence": 0.99609375, "end": 152.51001, "punctuated_word": "term", "speaker": 0, "speaker_confidence": 0.78515625, "start": 152.27, "word": "term" }, { "confidence": 1, "end": 152.91, "punctuated_word": "storage", "speaker": 0, "speaker_confidence": 0.78515625, "start": 152.51001, "word": "storage" }, { "confidence": 1, "end": 152.99, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8154297, "start": 152.91, "word": "of" }, { "confidence": 1, "end": 153.15001, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.8154297, "start": 152.99, "word": "your" }, { "confidence": 0.9995117, "end": 153.47, "punctuated_word": "money.", "speaker": 0, "speaker_confidence": 0.8154297, "start": 153.15001, "word": "money" }, { "confidence": 0.99902344, "end": 153.63, "punctuated_word": "A", "speaker": 0, "speaker_confidence": 0.8154297, "start": 153.47, "word": "a" }, { "confidence": 0.99902344, "end": 153.87001, "punctuated_word": "cold", "speaker": 0, "speaker_confidence": 0.8154297, "start": 153.63, "word": "cold" }, { "confidence": 0.99902344, "end": 154.11, "punctuated_word": "wallet", "speaker": 0, "speaker_confidence": 0.8154297, "start": 153.87001, "word": "wallet" }, { "confidence": 1, "end": 154.27, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.8154297, "start": 154.11, "word": "can" }, { "confidence": 1, "end": 154.51001, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.8154297, "start": 154.27, "word": "only" }, { "confidence": 1, "end": 154.67, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.8154297, "start": 154.51001, "word": "be" }, { "confidence": 1, "end": 154.99, "punctuated_word": "hacked", "speaker": 0, "speaker_confidence": 0.8154297, "start": 154.67, "word": "hacked" }, { "confidence": 0.9970703, "end": 155.15001, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.8154297, "start": 154.99, "word": "if" }, { "confidence": 1, "end": 155.31, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.8154297, "start": 155.15001, "word": "you" }, { "confidence": 1, "end": 155.47, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.8154297, "start": 155.31, "word": "have" }, { "confidence": 1, "end": 155.87001, "punctuated_word": "physical", "speaker": 0, "speaker_confidence": 0.8154297, "start": 155.47, "word": "physical" }, { "confidence": 1, "end": 156.35, "punctuated_word": "possession", "speaker": 0, "speaker_confidence": 0.8154297, "start": 155.87001, "word": "possession" }, { "confidence": 1, "end": 156.51001, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8154297, "start": 156.35, "word": "of" }, { "confidence": 1, "end": 156.59001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 156.51001, "word": "the" }, { "confidence": 0.9980469, "end": 157.09001, "punctuated_word": "device.", "speaker": 0, "speaker_confidence": 1, "start": 156.59001, "word": "device" }, { "confidence": 0.99902344, "end": 157.64499, "punctuated_word": "Exchanges", "speaker": 0, "speaker_confidence": 1, "start": 157.245, "word": "exchanges" }, { "confidence": 0.93847656, "end": 157.805, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 157.64499, "word": "like" }, { "confidence": 0.97314453, "end": 158.305, "punctuated_word": "Coinbase", "speaker": 0, "speaker_confidence": 1, "start": 157.805, "word": "coinbase" }, { "confidence": 0.9741211, "end": 158.605, "punctuated_word": "keep", "speaker": 0, "speaker_confidence": 1, "start": 158.36499, "word": "keep" }, { "confidence": 0.9355469, "end": 159.105, "punctuated_word": "90%", "speaker": 0, "speaker_confidence": 1, "start": 158.605, "word": "90%" }, { "confidence": 0.99902344, "end": 159.405, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 159.245, "word": "of" }, { "confidence": 1, "end": 159.56499, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 1, "start": 159.405, "word": "your" }, { "confidence": 0.9760742, "end": 159.885, "punctuated_word": "crypto", "speaker": 0, "speaker_confidence": 1, "start": 159.56499, "word": "crypto" }, { "confidence": 0.99121094, "end": 160.125, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 159.885, "word": "in" }, { "confidence": 0.9980469, "end": 160.36499, "punctuated_word": "cold", "speaker": 0, "speaker_confidence": 1, "start": 160.125, "word": "cold" }, { "confidence": 0.7519531, "end": 160.84499, "punctuated_word": "storage,", "speaker": 0, "speaker_confidence": 1, "start": 160.36499, "word": "storage" }, { "confidence": 0.99902344, "end": 161.08499, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 160.84499, "word": "and" }, { "confidence": 0.98535156, "end": 161.245, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 1, "start": 161.08499, "word": "because" }, { "confidence": 0.9926758, "end": 161.48499, "punctuated_word": "they're", "speaker": 0, "speaker_confidence": 1, "start": 161.245, "word": "they're" }, { "confidence": 0.99609375, "end": 161.56499, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 161.48499, "word": "a" }, { "confidence": 1, "end": 161.72499, "punctuated_word": "big", "speaker": 0, "speaker_confidence": 1, "start": 161.56499, "word": "big" }, { "confidence": 0.9921875, "end": 162.20499, "punctuated_word": "centralized", "speaker": 0, "speaker_confidence": 1, "start": 161.72499, "word": "centralized" }, { "confidence": 0.9848633, "end": 162.685, "punctuated_word": "authority,", "speaker": 0, "speaker_confidence": 1, "start": 162.20499, "word": "authority" }, { "confidence": 0.9980469, "end": 162.84499, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 1, "start": 162.685, "word": "if" }, { "confidence": 1, "end": 162.92499, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 1, "start": 162.84499, "word": "they" }, { "confidence": 1, "end": 163.165, "punctuated_word": "ever", "speaker": 0, "speaker_confidence": 1, "start": 162.92499, "word": "ever" }, { "confidence": 1, "end": 163.325, "punctuated_word": "got", "speaker": 0, "speaker_confidence": 1, "start": 163.165, "word": "got" }, { "confidence": 0.9609375, "end": 163.64499, "punctuated_word": "hacked,", "speaker": 0, "speaker_confidence": 1, "start": 163.325, "word": "hacked" }, { "confidence": 0.99560547, "end": 163.885, "punctuated_word": "they'd", "speaker": 0, "speaker_confidence": 1, "start": 163.64499, "word": "they'd" }, { "confidence": 1, "end": 164.045, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 1, "start": 163.885, "word": "have" }, { "confidence": 1, "end": 164.20499, "punctuated_word": "enough", "speaker": 0, "speaker_confidence": 1, "start": 164.045, "word": "enough" }, { "confidence": 1, "end": 164.605, "punctuated_word": "money", "speaker": 0, "speaker_confidence": 1, "start": 164.20499, "word": "money" }, { "confidence": 0.99902344, "end": 164.765, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 164.605, "word": "to" }, { "confidence": 1, "end": 164.92499, "punctuated_word": "pay", "speaker": 0, "speaker_confidence": 1, "start": 164.765, "word": "pay" }, { "confidence": 1, "end": 165.38, "punctuated_word": "everybody", "speaker": 0, "speaker_confidence": 1, "start": 164.92499, "word": "everybody" }, { "confidence": 0.80249023, "end": 165.62001, "punctuated_word": "off,", "speaker": 0, "speaker_confidence": 1, "start": 165.38, "word": "off" }, { "confidence": 0.99902344, "end": 165.78, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 1, "start": 165.62001, "word": "there" }, { "confidence": 0.99902344, "end": 165.86, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 1, "start": 165.78, "word": "are" }, { "confidence": 0.99902344, "end": 166.1, "punctuated_word": "stories", "speaker": 0, "speaker_confidence": 1, "start": 165.86, "word": "stories" }, { "confidence": 0.99902344, "end": 166.34001, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 166.1, "word": "of" }, { "confidence": 0.9760742, "end": 166.58, "punctuated_word": "crypto", "speaker": 0, "speaker_confidence": 1, "start": 166.34001, "word": "crypto" }, { "confidence": 0.9921875, "end": 166.98001, "punctuated_word": "exchanges", "speaker": 0, "speaker_confidence": 1, "start": 166.58, "word": "exchanges" }, { "confidence": 1, "end": 167.22, "punctuated_word": "being", "speaker": 0, "speaker_confidence": 1, "start": 166.98001, "word": "being" }, { "confidence": 1, "end": 167.46, "punctuated_word": "hacked", "speaker": 0, "speaker_confidence": 1, "start": 167.22, "word": "hacked" }, { "confidence": 1, "end": 167.62001, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 1, "start": 167.46, "word": "all" }, { "confidence": 0.99902344, "end": 167.70001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 167.62001, "word": "the" }, { "confidence": 0.9951172, "end": 168.02, "punctuated_word": "time,", "speaker": 0, "speaker_confidence": 1, "start": 167.70001, "word": "time" }, { "confidence": 0.99121094, "end": 168.18001, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 1, "start": 168.02, "word": "but" }, { "confidence": 0.99902344, "end": 168.34001, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 168.18001, "word": "it" }, { "confidence": 0.99902344, "end": 168.5, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 168.34001, "word": "is" }, { "confidence": 1, "end": 168.66, "punctuated_word": "pretty", "speaker": 0, "speaker_confidence": 1, "start": 168.5, "word": "pretty" }, { "confidence": 1, "end": 168.98001, "punctuated_word": "safe", "speaker": 0, "speaker_confidence": 1, "start": 168.66, "word": "safe" }, { "confidence": 1, "end": 169.14, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 168.98001, "word": "for" }, { "confidence": 1, "end": 169.38, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 1, "start": 169.14, "word": "most" }, { "confidence": 1, "end": 169.62001, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 1, "start": 169.38, "word": "people" }, { "confidence": 0.9633789, "end": 170.1, "punctuated_word": "today.", "speaker": 0, "speaker_confidence": 1, "start": 169.62001, "word": "today" }, { "confidence": 0.99316406, "end": 170.26001, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.6142578, "start": 170.1, "word": "but" }, { "confidence": 0.9790039, "end": 170.34001, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.6142578, "start": 170.26001, "word": "if" }, { "confidence": 0.9995117, "end": 170.5, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.6142578, "start": 170.34001, "word": "you're" }, { "confidence": 1, "end": 170.74, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 0.6142578, "start": 170.5, "word": "really" }, { "confidence": 1, "end": 171.06, "punctuated_word": "attached", "speaker": 0, "speaker_confidence": 0.6142578, "start": 170.74, "word": "attached" }, { "confidence": 0.9980469, "end": 171.14, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6142578, "start": 171.06, "word": "to" }, { "confidence": 1, "end": 171.3, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.70996094, "start": 171.14, "word": "your" }, { "confidence": 0.99853516, "end": 171.78, "punctuated_word": "tokens,", "speaker": 0, "speaker_confidence": 0.70996094, "start": 171.3, "word": "tokens" }, { "confidence": 1, "end": 171.86, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.70996094, "start": 171.78, "word": "the" }, { "confidence": 1, "end": 172.18001, "punctuated_word": "safest", "speaker": 0, "speaker_confidence": 0.70996094, "start": 171.86, "word": "safest" }, { "confidence": 1, "end": 172.42, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.70996094, "start": 172.18001, "word": "thing" }, { "confidence": 1, "end": 172.5, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.70996094, "start": 172.42, "word": "to" }, { "confidence": 1, "end": 172.66, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.70996094, "start": 172.5, "word": "do" }, { "confidence": 0.99902344, "end": 172.82, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.70996094, "start": 172.66, "word": "is" }, { "confidence": 0.9921875, "end": 172.98001, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.70996094, "start": 172.82, "word": "get" }, { "confidence": 0.99902344, "end": 173.14, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.70996094, "start": 172.98001, "word": "them" }, { "confidence": 0.99902344, "end": 173.3, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.70996094, "start": 173.14, "word": "out" }, { "confidence": 0.99902344, "end": 173.38, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7763672, "start": 173.3, "word": "of" }, { "confidence": 0.99902344, "end": 173.62001, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.7763672, "start": 173.38, "word": "an" }, { "confidence": 0.9980469, "end": 173.94, "punctuated_word": "exchange", "speaker": 0, "speaker_confidence": 0.7763672, "start": 173.62001, "word": "exchange" }, { "confidence": 0.6894531, "end": 174.18001, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.7763672, "start": 173.94, "word": "into" }, { "confidence": 0.84277344, "end": 174.375, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.7763672, "start": 174.18001, "word": "your" }, { "confidence": 0.87841797, "end": 174.615, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 0.7763672, "start": 174.455, "word": "own" }, { "confidence": 0.8803711, "end": 174.855, "punctuated_word": "cold", "speaker": 0, "speaker_confidence": 0.7763672, "start": 174.615, "word": "cold" }, { "confidence": 0.99902344, "end": 175.255, "punctuated_word": "storage", "speaker": 0, "speaker_confidence": 0.7763672, "start": 174.855, "word": "storage" }, { "confidence": 0.89990234, "end": 175.575, "punctuated_word": "wallet,", "speaker": 0, "speaker_confidence": 0.7763672, "start": 175.255, "word": "wallet" }, { "confidence": 0.9970703, "end": 175.735, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.7763672, "start": 175.575, "word": "then" }, { "confidence": 0.99902344, "end": 175.895, "punctuated_word": "move", "speaker": 0, "speaker_confidence": 0.7763672, "start": 175.735, "word": "move" }, { "confidence": 0.99902344, "end": 175.975, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.7763672, "start": 175.895, "word": "out" }, { "confidence": 0.9873047, "end": 176.055, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.5620117, "start": 175.975, "word": "of" }, { "confidence": 1, "end": 176.135, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5620117, "start": 176.055, "word": "the" }, { "confidence": 1, "end": 176.455, "punctuated_word": "city", "speaker": 0, "speaker_confidence": 0.5620117, "start": 176.135, "word": "city" }, { "confidence": 0.94140625, "end": 176.615, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.5620117, "start": 176.455, "word": "and" }, { "confidence": 1, "end": 176.855, "punctuated_word": "learn", "speaker": 0, "speaker_confidence": 0.5620117, "start": 176.615, "word": "learn" }, { "confidence": 0.99902344, "end": 176.935, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.5620117, "start": 176.855, "word": "how" }, { "confidence": 0.99902344, "end": 177.015, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.75390625, "start": 176.935, "word": "to" }, { "confidence": 0.99902344, "end": 177.255, "punctuated_word": "grow", "speaker": 0, "speaker_confidence": 0.75390625, "start": 177.015, "word": "grow" }, { "confidence": 0.99902344, "end": 177.415, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.75390625, "start": 177.255, "word": "your" }, { "confidence": 0.99902344, "end": 177.575, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 0.75390625, "start": 177.415, "word": "own" }, { "confidence": 0.9135742, "end": 177.815, "punctuated_word": "food,", "speaker": 0, "speaker_confidence": 0.75390625, "start": 177.575, "word": "food" }, { "confidence": 1, "end": 178.055, "punctuated_word": "dig", "speaker": 0, "speaker_confidence": 0.75390625, "start": 177.815, "word": "dig" }, { "confidence": 0.99902344, "end": 178.135, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.75390625, "start": 178.055, "word": "a" }, { "confidence": 0.99902344, "end": 178.455, "punctuated_word": "bunker", "speaker": 0, "speaker_confidence": 0.75390625, "start": 178.135, "word": "bunker" }, { "confidence": 0.99902344, "end": 178.535, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.75390625, "start": 178.455, "word": "on" }, { "confidence": 1, "end": 178.695, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.75390625, "start": 178.535, "word": "your" }, { "confidence": 0.9628906, "end": 179.095, "punctuated_word": "property,", "speaker": 0, "speaker_confidence": 0.75390625, "start": 178.695, "word": "property" }, { "confidence": 1, "end": 179.255, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.75390625, "start": 179.095, "word": "and" }, { "confidence": 1, "end": 179.575, "punctuated_word": "store", "speaker": 0, "speaker_confidence": 0.75390625, "start": 179.255, "word": "store" }, { "confidence": 1, "end": 179.655, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.80859375, "start": 179.575, "word": "the" }, { "confidence": 1, "end": 179.895, "punctuated_word": "wallet", "speaker": 0, "speaker_confidence": 0.80859375, "start": 179.655, "word": "wallet" }, { "confidence": 0.99902344, "end": 180.295, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.80859375, "start": 179.895, "word": "there" }, { "confidence": 0.87841797, "end": 180.775, "punctuated_word": "alongside", "speaker": 0, "speaker_confidence": 0.80859375, "start": 180.295, "word": "alongside" }, { "confidence": 0.9970703, "end": 181.015, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.80859375, "start": 180.775, "word": "your" }, { "confidence": 0.99902344, "end": 181.255, "punctuated_word": "gold", "speaker": 0, "speaker_confidence": 0.80859375, "start": 181.015, "word": "gold" }, { "confidence": 0.99902344, "end": 181.415, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.80859375, "start": 181.255, "word": "and" }, { "confidence": 1, "end": 181.735, "punctuated_word": "ammo.", "speaker": 0, "speaker_confidence": 0.80859375, "start": 181.415, "word": "ammo" }, { "confidence": 1, "end": 181.895, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.80859375, "start": 181.735, "word": "this" }, { "confidence": 0.99902344, "end": 182.055, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.80859375, "start": 181.895, "word": "has" }, { "confidence": 1, "end": 182.295, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.80859375, "start": 182.055, "word": "been" }, { "confidence": 0.9951172, "end": 182.375, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.80859375, "start": 182.295, "word": "the" }, { "confidence": 0.9902344, "end": 182.615, "punctuated_word": "Code", "speaker": 0, "speaker_confidence": 0.80859375, "start": 182.375, "word": "code" }, { "confidence": 0.99658203, "end": 183.015, "punctuated_word": "Report.", "speaker": 0, "speaker_confidence": 0.80859375, "start": 182.615, "word": "report" }, { "confidence": 1, "end": 183.255, "punctuated_word": "Thanks", "speaker": 0, "speaker_confidence": 0.80859375, "start": 183.015, "word": "thanks" }, { "confidence": 0.9902344, "end": 183.41556, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.80859375, "start": 183.255, "word": "for" }, { "confidence": 0.92333984, "end": 183.89555, "punctuated_word": "watching,", "speaker": 0, "speaker_confidence": 0.80859375, "start": 183.49556, "word": "watching" }, { "confidence": 1, "end": 184.13556, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.80859375, "start": 183.89555, "word": "and" }, { "confidence": 1, "end": 184.21556, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.80859375, "start": 184.13556, "word": "i" }, { "confidence": 1, "end": 184.45555, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.80859375, "start": 184.21556, "word": "will" }, { "confidence": 1, "end": 184.61555, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.80859375, "start": 184.45555, "word": "see" }, { "confidence": 1, "end": 184.85556, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.80859375, "start": 184.61555, "word": "you" }, { "confidence": 1, "end": 185.01556, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.80859375, "start": 184.85556, "word": "in" }, { "confidence": 1, "end": 185.09555, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.80859375, "start": 185.01556, "word": "the" }, { "confidence": 1, "end": 185.33556, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.80859375, "start": 185.09555, "word": "next" }, { "confidence": 0.99316406, "end": 185.83556, "punctuated_word": "one.", "speaker": 0, "speaker_confidence": 0.80859375, "start": 185.33556, "word": "one" } ] } ], "detected_language": "", "language_confidence": 0, "search": null } ], "summary": { "result": "success", "short": "The transcript discusses the safety of cryptocurrency, including the challenges of moving it around during a recent hack. The process of recovering funds from stolen Bitcoin is long and complicated, but it is not like a gold bar. The process of keeping blockchain wallets secure is also discussed, including the use of multi-signature wallets and cold storage." }, "utterances": null } }
downloads\What_happens_if_you_hack_45_billion_BTC__The_Code_Report.wav
https://www.youtube.com/watch?v=KPyeJ5J2a7A
What happens if you hack 4.5 billion BTC? // The Code Report
223,566
Fireship
225
What will the future of AI programming look like with tools like ChatGPT and GitHub Copilot? Let's take a look at how machine learning could change the daily lives of developers in the near future. #ai #tech #TheCodeReport 💬 Chat with Me on Discord https://discord.gg/fireship 🔗 Resources ChatGPT Demo https://openai.com/blog/chatgpt Codex CLI https://github.com/microsoft/Codex-CLI Tech Trends to Watch in 2023 https://youtu.be/1v_TEnpqHXE 🔥 Get More Content - Upgrade to PRO Upgrade at https://fireship.io/pro Use code YT25 for 25% off PRO access 🎨 My Editor Settings - Atom One Dark - vscode-icons - Fira Code Font 🔖 Topics Covered - How will ChatGPT affect programmers? - Is AI going to replace software engineers? - The future of AI programming tools? - Universal AI programming language - Using AI from the command line
{ "metadata": { "channels": 1, "created": "2024-02-04T13:29:25.215Z", "duration": 225.32643, "model_info": { "30089e05-99d1-4376-b32e-c263170674af": { "arch": "nova-2", "name": "2-general-nova", "version": "2024-01-09.29447" } }, "models": [ "30089e05-99d1-4376-b32e-c263170674af" ], "request_id": "8e3a0dfd-f91b-499a-b138-ef1af493a94c", "sha256": "d78fb8544a6e605e673a51974ea5b631463846ac8f86894604135dd85bb4170e", "summary_info": { "input_tokens": 976, "model_uuid": "67875a7f-c9c4-48a0-aa55-5bdb8a91c34a", "output_tokens": 105 }, "transaction_key": "deprecated", "warnings": null }, "results": { "channels": [ { "alternatives": [ { "confidence": 0.9980469, "entities": null, "paragraphs": { "paragraphs": [ { "end": 21.810001, "num_words": 70, "sentences": [ { "end": 5.2799997, "start": 1.52, "text": "It is December 8, 2022, and you're watching the Code Report." }, { "end": 7.2799997, "start": 5.2799997, "text": "I've been trying to warn you about this for years." }, { "end": 9.955, "start": 7.2799997, "text": "Artificial intelligence is coming to replace programmers." }, { "end": 18.43, "start": 10.355, "text": "Over the last few days, the world has been freaking out over chat GPT, a new demo from OpenAI that can write and analyze code among many other things." }, { "end": 21.810001, "start": 18.43, "text": "The tool itself is very impressive, but it's not going to replace programmers." } ], "speaker": 0, "start": 1.52 }, { "end": 50.785, "num_words": 102, "sentences": [ { "end": 30.475, "start": 21.95, "text": "It can really only solve trivial problems like GitHub Copilot, and often it provides answers that are just flat wrong but look correct to someone without the proper domain knowledge." }, { "end": 36.88, "start": 30.475, "text": "It's already been banned by Stack Overflow because the site has been flooded with people posting AI answers on topics they know nothing about." }, { "end": 45.644997, "start": 36.88, "text": "More than anything, I think ChatGPT is an existential threat to tools like Google and Stack Overflow because it's a much faster way to answers to basic programming problems." }, { "end": 48.605, "start": 45.644997, "text": "What's crazy though is that this is just a general purpose tool." }, { "end": 50.785, "start": 48.605, "text": "It's not even designed for programming specifically." } ], "speaker": 0, "start": 21.95 }, { "end": 73, "num_words": 84, "sentences": [ { "end": 55.12, "start": 50.844997, "text": "Now just imagine what will happen when this technology focused on replacing programmers." }, { "end": 57.84, "start": 55.26, "text": "Here's how I think it might play out over the next few years." }, { "end": 61.739998, "start": 57.9, "text": "1st, AI will start to take over as the decision maker on your actual machine." }, { "end": 65.955, "start": 61.739998, "text": "Microsoft has already developed codec cli to bring AI to the command line." }, { "end": 73, "start": 65.955, "text": "Instead of learning Linux in the near future, you should be able to just tell AI what you want, and it will run all the necessary commands for you automatically." } ], "speaker": 0, "start": 50.844997 }, { "end": 100.645, "num_words": 110, "sentences": [ { "end": 75.46, "start": 73.3, "text": "That technology is essentially already here." }, { "end": 81.715, "start": 75.46, "text": "What I expect to happen next is that AI will start to build out entire projects for you based on the requirements that you give it." }, { "end": 89.77, "start": 81.715, "text": "Kind of like test driven development, where all you do is write some basic testing code, then AI installs all the packages, creates all the files, and writes all the code for you." }, { "end": 93.21, "start": 89.77, "text": "It'll be able to run the app itself, find any errors, and correct them." }, { "end": 100.645, "start": 93.21, "text": "Eventually, it will get so good that you don't even have to worry about the code it writes, and this will lead to a whole new class of artificial development environments." } ], "speaker": 0, "start": 73.3 }, { "end": 138.985, "num_words": 137, "sentences": [ { "end": 104.865, "start": 100.784996, "text": "Copilot has already been very successful, but it's just the beginning of this brave new world." }, { "end": 113.29, "start": 104.865, "text": "For front end development, I would expect these tools to look kind of like Figma, but with extra controls to make everything interconnected and interactive to work on any app platform." }, { "end": 119.715, "start": 113.29, "text": "On the back end, we might have something that looks like a diagram or flowchart that describes a bunch of API endpoints or microservices." }, { "end": 131.565, "start": 120.255, "text": "Now all of this will be integrated into a single environment, allowing the AI to infer the database models and resources needed to execute the project, and not just make it work, but also optimize it in every way imaginable." }, { "end": 138.985, "start": 131.785, "text": "In a matter of seconds, it could generate the project in multiple different languages with multiple different frameworks to figure out which one performs the best." } ], "speaker": 0, "start": 100.784996 }, { "end": 147.185, "num_words": 30, "sentences": [ { "end": 139.69, "start": 138.985, "text": "Actually, no." }, { "end": 140.09, "start": 139.69, "text": "It." }, { "end": 144.43001, "start": 140.09, "text": "It could create its own brand new JavaScript framework that is perfectly optimized for your requirements." }, { "end": 145.29001, "start": 144.65001, "text": "Actually, no." }, { "end": 147.185, "start": 145.29001, "text": "Why would we even need JavaScript at that point?" } ], "speaker": 0, "start": 138.985 }, { "end": 167.705, "num_words": 68, "sentences": [ { "end": 149.505, "start": 147.265, "text": "Programming languages are just for dumb monkeys." }, { "end": 152.625, "start": 149.505, "text": "AI will be able to write a raw executable straight from machine code." }, { "end": 158.92, "start": 152.625, "text": "It can come up with its own perfectly optimized on the fly, then write comprehensive documentation about it in any language." }, { "end": 163.225, "start": 158.92, "text": "Ultimately, what I think this might lead to is a universal AI driven programming language." }, { "end": 167.705, "start": 163.46501, "text": "A single deterministic language that turns every human into a coding god." } ], "speaker": 0, "start": 147.265 }, { "end": 199.15, "num_words": 132, "sentences": [ { "end": 177.66, "start": 167.705, "text": "By simply describing your vision, the AI will figure out how to arrange the ones and zeros to make it a In fact, when we get our neural links, we won't even have to write anything down, we can just think it and it will appear." }, { "end": 184.065, "start": 177.66, "text": "Now, I realize neural link has killed almost all the monkeys and pigs that tried it, but when they open up human trials in 6 months, I'm gonna be first in line." }, { "end": 189.36499, "start": 184.065, "text": "This language will be so undeniably powerful that virtually everything else in the world becomes obsolete overnight." }, { "end": 193.95, "start": 189.425, "text": "The World will still need engineers to solve problems, but writing code will not be one of their responsibilities." }, { "end": 199.15, "start": 194.33, "text": "It'll become an esoteric skill that only weirdos take the time to learn, kind of like celestial navigation." } ], "speaker": 0, "start": 167.705 }, { "end": 215.87, "num_words": 80, "sentences": [ { "end": 201.355, "start": 199.37, "text": "I, for for 1, think this is an awesome outcome." }, { "end": 203.035, "start": 201.355, "text": "Writing code is just a means to an end." }, { "end": 206.55501, "start": 203.035, "text": "The reason I learned to write code in the first place was because I wanted to build cool stuff." }, { "end": 212.51, "start": 206.55501, "text": "If AI can can help me build cool stuff faster without the need to learn a new JavaScript framework every week, then I will gladly bend the knee." }, { "end": 215.87, "start": 212.51, "text": "On second thought though, it's very possible that none of this will ever happen." } ], "speaker": 0, "start": 199.37 }, { "end": 224.715, "num_words": 38, "sentences": [ { "end": 220.69499, "start": 215.87, "text": "I wouldn't be surprised at all if we're still writing JavaScript and C plus plus code 50 years from now." }, { "end": 224.715, "start": 220.69499, "text": "This has been the code report, thanks for watching, and I will see you in the next one." } ], "speaker": 0, "start": 215.87 } ], "transcript": "\nSpeaker 0: It is December 8, 2022, and you're watching the Code Report. I've been trying to warn you about this for years. Artificial intelligence is coming to replace programmers. Over the last few days, the world has been freaking out over chat GPT, a new demo from OpenAI that can write and analyze code among many other things. The tool itself is very impressive, but it's not going to replace programmers.\n\nIt can really only solve trivial problems like GitHub Copilot, and often it provides answers that are just flat wrong but look correct to someone without the proper domain knowledge. It's already been banned by Stack Overflow because the site has been flooded with people posting AI answers on topics they know nothing about. More than anything, I think ChatGPT is an existential threat to tools like Google and Stack Overflow because it's a much faster way to answers to basic programming problems. What's crazy though is that this is just a general purpose tool. It's not even designed for programming specifically.\n\nNow just imagine what will happen when this technology focused on replacing programmers. Here's how I think it might play out over the next few years. 1st, AI will start to take over as the decision maker on your actual machine. Microsoft has already developed codec cli to bring AI to the command line. Instead of learning Linux in the near future, you should be able to just tell AI what you want, and it will run all the necessary commands for you automatically.\n\nThat technology is essentially already here. What I expect to happen next is that AI will start to build out entire projects for you based on the requirements that you give it. Kind of like test driven development, where all you do is write some basic testing code, then AI installs all the packages, creates all the files, and writes all the code for you. It'll be able to run the app itself, find any errors, and correct them. Eventually, it will get so good that you don't even have to worry about the code it writes, and this will lead to a whole new class of artificial development environments.\n\nCopilot has already been very successful, but it's just the beginning of this brave new world. For front end development, I would expect these tools to look kind of like Figma, but with extra controls to make everything interconnected and interactive to work on any app platform. On the back end, we might have something that looks like a diagram or flowchart that describes a bunch of API endpoints or microservices. Now all of this will be integrated into a single environment, allowing the AI to infer the database models and resources needed to execute the project, and not just make it work, but also optimize it in every way imaginable. In a matter of seconds, it could generate the project in multiple different languages with multiple different frameworks to figure out which one performs the best.\n\nActually, no. It. It could create its own brand new JavaScript framework that is perfectly optimized for your requirements. Actually, no. Why would we even need JavaScript at that point?\n\nProgramming languages are just for dumb monkeys. AI will be able to write a raw executable straight from machine code. It can come up with its own perfectly optimized on the fly, then write comprehensive documentation about it in any language. Ultimately, what I think this might lead to is a universal AI driven programming language. A single deterministic language that turns every human into a coding god.\n\nBy simply describing your vision, the AI will figure out how to arrange the ones and zeros to make it a In fact, when we get our neural links, we won't even have to write anything down, we can just think it and it will appear. Now, I realize neural link has killed almost all the monkeys and pigs that tried it, but when they open up human trials in 6 months, I'm gonna be first in line. This language will be so undeniably powerful that virtually everything else in the world becomes obsolete overnight. The World will still need engineers to solve problems, but writing code will not be one of their responsibilities. It'll become an esoteric skill that only weirdos take the time to learn, kind of like celestial navigation.\n\nI, for for 1, think this is an awesome outcome. Writing code is just a means to an end. The reason I learned to write code in the first place was because I wanted to build cool stuff. If AI can can help me build cool stuff faster without the need to learn a new JavaScript framework every week, then I will gladly bend the knee. On second thought though, it's very possible that none of this will ever happen.\n\nI wouldn't be surprised at all if we're still writing JavaScript and C plus plus code 50 years from now. This has been the code report, thanks for watching, and I will see you in the next one." }, "summaries": null, "topics": [ { "end_word": 124, "start_word": 0, "text": "It is December 8, 2022, and you're watching the Code Report. I've been trying to warn you about this for years. Artificial intelligence is coming to replace programmers. Over the last few days, the world has been freaking out over chat GPT, a new demo from OpenAI that can write and analyze code among many other things. The tool itself is very impressive, but it's not going to replace programmers. It can really only solve trivial problems like GitHub Copilot, and often it provides answers that are just flat wrong but look correct to someone without the proper domain knowledge. It's already been banned by Stack Overflow because the site has been flooded with people posting AI answers on topics they know nothing about.", "topics": [ { "confidence": 0.41812202, "topic": "artificial intelligence" }, { "confidence": 0.41177723, "topic": "software development" }, { "confidence": 0.113062054, "topic": "software" }, { "confidence": 0.02788272, "topic": "computer science" }, { "confidence": 0.0054539135, "topic": "machine learning" } ] }, { "end_word": 153, "start_word": 124, "text": "More than anything, I think ChatGPT is an existential threat to tools like Google and Stack Overflow because it's a much faster way to answers to basic programming problems.", "topics": [] }, { "end_word": 477, "start_word": 153, "text": "What's crazy though is that this is just a general purpose tool. It's not even designed for programming specifically. Now just imagine what will happen when this technology focused on replacing programmers. Here's how I think it might play out over the next few years. 1st, AI will start to take over as the decision maker on your actual machine. Microsoft has already developed codec cli to bring AI to the command line. Instead of learning Linux in the near future, you should be able to just tell AI what you want, and it will run all the necessary commands for you automatically. That technology is essentially already here. What I expect to happen next is that AI will start to build out entire projects for you based on the requirements that you give it. Kind of like test driven development, where all you do is write some basic testing code, then AI installs all the packages, creates all the files, and writes all the code for you. It'll be able to run the app itself, find any errors, and correct them. Eventually, it will get so good that you don't even have to worry about the code it writes, and this will lead to a whole new class of artificial development environments. Copilot has already been very successful, but it's just the beginning of this brave new world. For front end development, I would expect these tools to look kind of like Figma, but with extra controls to make everything interconnected and interactive to work on any app platform. On the back end, we might have something that looks like a diagram or flowchart that describes a bunch of API endpoints or microservices. Now all of this will be integrated into a single environment, allowing the AI to infer the database models and resources needed to execute the project, and not just make it work, but also optimize it in every way imaginable.", "topics": [ { "confidence": 0.8842828, "topic": "databases" }, { "confidence": 0.52777994, "topic": "modeling" }, { "confidence": 0.37194523, "topic": "software development" }, { "confidence": 0.22769286, "topic": "visualization" }, { "confidence": 0.15494466, "topic": "artificial intelligence" }, { "confidence": 0.1401668, "topic": "computer science" }, { "confidence": 0.083335266, "topic": "machine learning" }, { "confidence": 0.067171246, "topic": "software" }, { "confidence": 0.06578017, "topic": "technology" }, { "confidence": 0.060908645, "topic": "data management" }, { "confidence": 0.04123964, "topic": "graphic design" }, { "confidence": 0.036143817, "topic": "programming" }, { "confidence": 0.017301593, "topic": "robotics" } ] }, { "end_word": 533, "start_word": 477, "text": "In a matter of seconds, it could generate the project in multiple different languages with multiple different frameworks to figure out which one performs the best. Actually, no. It. It could create its own brand new JavaScript framework that is perfectly optimized for your requirements. Actually, no. Why would we even need JavaScript at that point?", "topics": [] }, { "end_word": 799, "start_word": 533, "text": "Programming languages are just for dumb monkeys. AI will be able to write a raw executable straight from machine code. It can come up with its own perfectly optimized on the fly, then write comprehensive documentation about it in any language. Ultimately, what I think this might lead to is a universal AI driven programming language. A single deterministic language that turns every human into a coding god. By simply describing your vision, the AI will figure out how to arrange the ones and zeros to make it a In fact, when we get our neural links, we won't even have to write anything down, we can just think it and it will appear. Now, I realize neural link has killed almost all the monkeys and pigs that tried it, but when they open up human trials in 6 months, I'm gonna be first in line. This language will be so undeniably powerful that virtually everything else in the world becomes obsolete overnight. The World will still need engineers to solve problems, but writing code will not be one of their responsibilities. It'll become an esoteric skill that only weirdos take the time to learn, kind of like celestial navigation. I, for for 1, think this is an awesome outcome. Writing code is just a means to an end. The reason I learned to write code in the first place was because I wanted to build cool stuff. If AI can can help me build cool stuff faster without the need to learn a new JavaScript framework every week, then I will gladly bend the knee.", "topics": [ { "confidence": 0.5147132, "topic": "artificial intelligence" }, { "confidence": 0.42793924, "topic": "languages" }, { "confidence": 0.26942995, "topic": "neural networks" }, { "confidence": 0.072271354, "topic": "writing" }, { "confidence": 0.062479604, "topic": "programming" }, { "confidence": 0.048471235, "topic": "robotics" }, { "confidence": 0.031570815, "topic": "machine learning" } ] }, { "end_word": 851, "start_word": 799, "text": "On second thought though, it's very possible that none of this will ever happen. I wouldn't be surprised at all if we're still writing JavaScript and C plus plus code 50 years from now. This has been the code report, thanks for watching, and I will see you in the next one.", "topics": [] } ], "transcript": "It is December 8, 2022, and you're watching the Code Report. I've been trying to warn you about this for years. Artificial intelligence is coming to replace programmers. Over the last few days, the world has been freaking out over chat GPT, a new demo from OpenAI that can write and analyze code among many other things. The tool itself is very impressive, but it's not going to replace programmers. It can really only solve trivial problems like GitHub Copilot, and often it provides answers that are just flat wrong but look correct to someone without the proper domain knowledge. It's already been banned by Stack Overflow because the site has been flooded with people posting AI answers on topics they know nothing about. More than anything, I think ChatGPT is an existential threat to tools like Google and Stack Overflow because it's a much faster way to answers to basic programming problems. What's crazy though is that this is just a general purpose tool. It's not even designed for programming specifically. Now just imagine what will happen when this technology focused on replacing programmers. Here's how I think it might play out over the next few years. 1st, AI will start to take over as the decision maker on your actual machine. Microsoft has already developed codec cli to bring AI to the command line. Instead of learning Linux in the near future, you should be able to just tell AI what you want, and it will run all the necessary commands for you automatically. That technology is essentially already here. What I expect to happen next is that AI will start to build out entire projects for you based on the requirements that you give it. Kind of like test driven development, where all you do is write some basic testing code, then AI installs all the packages, creates all the files, and writes all the code for you. It'll be able to run the app itself, find any errors, and correct them. Eventually, it will get so good that you don't even have to worry about the code it writes, and this will lead to a whole new class of artificial development environments. Copilot has already been very successful, but it's just the beginning of this brave new world. For front end development, I would expect these tools to look kind of like Figma, but with extra controls to make everything interconnected and interactive to work on any app platform. On the back end, we might have something that looks like a diagram or flowchart that describes a bunch of API endpoints or microservices. Now all of this will be integrated into a single environment, allowing the AI to infer the database models and resources needed to execute the project, and not just make it work, but also optimize it in every way imaginable. In a matter of seconds, it could generate the project in multiple different languages with multiple different frameworks to figure out which one performs the best. Actually, no. It. It could create its own brand new JavaScript framework that is perfectly optimized for your requirements. Actually, no. Why would we even need JavaScript at that point? Programming languages are just for dumb monkeys. AI will be able to write a raw executable straight from machine code. It can come up with its own perfectly optimized on the fly, then write comprehensive documentation about it in any language. Ultimately, what I think this might lead to is a universal AI driven programming language. A single deterministic language that turns every human into a coding god. By simply describing your vision, the AI will figure out how to arrange the ones and zeros to make it a In fact, when we get our neural links, we won't even have to write anything down, we can just think it and it will appear. Now, I realize neural link has killed almost all the monkeys and pigs that tried it, but when they open up human trials in 6 months, I'm gonna be first in line. This language will be so undeniably powerful that virtually everything else in the world becomes obsolete overnight. The World will still need engineers to solve problems, but writing code will not be one of their responsibilities. It'll become an esoteric skill that only weirdos take the time to learn, kind of like celestial navigation. I, for for 1, think this is an awesome outcome. Writing code is just a means to an end. The reason I learned to write code in the first place was because I wanted to build cool stuff. If AI can can help me build cool stuff faster without the need to learn a new JavaScript framework every week, then I will gladly bend the knee. On second thought though, it's very possible that none of this will ever happen. I wouldn't be surprised at all if we're still writing JavaScript and C plus plus code 50 years from now. This has been the code report, thanks for watching, and I will see you in the next one.", "translations": null, "words": [ { "confidence": 0.97998047, "end": 1.68, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.5854492, "start": 1.52, "word": "it" }, { "confidence": 0.9941406, "end": 1.92, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.5854492, "start": 1.68, "word": "is" }, { "confidence": 0.9902344, "end": 2.32, "punctuated_word": "December", "speaker": 0, "speaker_confidence": 0.5854492, "start": 1.92, "word": "december" }, { "confidence": 0.85498047, "end": 2.72, "punctuated_word": "8,", "speaker": 0, "speaker_confidence": 0.5854492, "start": 2.32, "word": "8" }, { "confidence": 0.8586426, "end": 3.22, "punctuated_word": "2022,", "speaker": 0, "speaker_confidence": 0.5854492, "start": 2.72, "word": "2022" }, { "confidence": 0.9980469, "end": 3.84, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.5854492, "start": 3.52, "word": "and" }, { "confidence": 0.9897461, "end": 4.08, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.5854492, "start": 3.84, "word": "you're" }, { "confidence": 1, "end": 4.48, "punctuated_word": "watching", "speaker": 0, "speaker_confidence": 0.5854492, "start": 4.08, "word": "watching" }, { "confidence": 0.59472656, "end": 4.64, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5854492, "start": 4.48, "word": "the" }, { "confidence": 0.5703125, "end": 4.88, "punctuated_word": "Code", "speaker": 0, "speaker_confidence": 0.5854492, "start": 4.64, "word": "code" }, { "confidence": 0.8630371, "end": 5.2799997, "punctuated_word": "Report.", "speaker": 0, "speaker_confidence": 0.5854492, "start": 4.88, "word": "report" }, { "confidence": 0.9892578, "end": 5.52, "punctuated_word": "I've", "speaker": 0, "speaker_confidence": 0.5854492, "start": 5.2799997, "word": "i've" }, { "confidence": 1, "end": 5.68, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.5854492, "start": 5.52, "word": "been" }, { "confidence": 0.99902344, "end": 5.92, "punctuated_word": "trying", "speaker": 0, "speaker_confidence": 0.5854492, "start": 5.68, "word": "trying" }, { "confidence": 0.99902344, "end": 6, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.5854492, "start": 5.92, "word": "to" }, { "confidence": 1, "end": 6.16, "punctuated_word": "warn", "speaker": 0, "speaker_confidence": 0.6225586, "start": 6, "word": "warn" }, { "confidence": 0.99902344, "end": 6.3199997, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.6225586, "start": 6.16, "word": "you" }, { "confidence": 0.9980469, "end": 6.56, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.6225586, "start": 6.3199997, "word": "about" }, { "confidence": 0.99902344, "end": 6.7999997, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.6225586, "start": 6.56, "word": "this" }, { "confidence": 0.99902344, "end": 6.8799996, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.6225586, "start": 6.7999997, "word": "for" }, { "confidence": 0.98706055, "end": 7.2799997, "punctuated_word": "years.", "speaker": 0, "speaker_confidence": 0.6225586, "start": 6.8799996, "word": "years" }, { "confidence": 0.7636719, "end": 7.7799997, "punctuated_word": "Artificial", "speaker": 0, "speaker_confidence": 0.6225586, "start": 7.2799997, "word": "artificial" }, { "confidence": 0.83740234, "end": 8.4, "punctuated_word": "intelligence", "speaker": 0, "speaker_confidence": 0.6225586, "start": 7.9199996, "word": "intelligence" }, { "confidence": 0.98828125, "end": 8.559999, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.6225586, "start": 8.4, "word": "is" }, { "confidence": 0.9980469, "end": 8.96, "punctuated_word": "coming", "speaker": 0, "speaker_confidence": 0.6225586, "start": 8.559999, "word": "coming" }, { "confidence": 0.96972656, "end": 9.2, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6225586, "start": 8.96, "word": "to" }, { "confidence": 0.9741211, "end": 9.599999, "punctuated_word": "replace", "speaker": 0, "speaker_confidence": 0.6225586, "start": 9.2, "word": "replace" }, { "confidence": 0.8269043, "end": 9.955, "punctuated_word": "programmers.", "speaker": 0, "speaker_confidence": 0.6225586, "start": 9.599999, "word": "programmers" }, { "confidence": 0.9980469, "end": 10.515, "punctuated_word": "Over", "speaker": 0, "speaker_confidence": 0.74658203, "start": 10.355, "word": "over" }, { "confidence": 1, "end": 10.595, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.74658203, "start": 10.515, "word": "the" }, { "confidence": 1, "end": 10.835, "punctuated_word": "last", "speaker": 0, "speaker_confidence": 0.74658203, "start": 10.595, "word": "last" }, { "confidence": 1, "end": 11.075, "punctuated_word": "few", "speaker": 0, "speaker_confidence": 0.74658203, "start": 10.835, "word": "few" }, { "confidence": 0.99316406, "end": 11.3949995, "punctuated_word": "days,", "speaker": 0, "speaker_confidence": 0.74658203, "start": 11.075, "word": "days" }, { "confidence": 1, "end": 11.555, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.74658203, "start": 11.3949995, "word": "the" }, { "confidence": 1, "end": 11.795, "punctuated_word": "world", "speaker": 0, "speaker_confidence": 0.74658203, "start": 11.555, "word": "world" }, { "confidence": 0.9941406, "end": 11.955, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.74658203, "start": 11.795, "word": "has" }, { "confidence": 1, "end": 12.115, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.74658203, "start": 11.955, "word": "been" }, { "confidence": 1, "end": 12.514999, "punctuated_word": "freaking", "speaker": 0, "speaker_confidence": 0.74658203, "start": 12.115, "word": "freaking" }, { "confidence": 1, "end": 12.755, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.74658203, "start": 12.514999, "word": "out" }, { "confidence": 0.99902344, "end": 13.075, "punctuated_word": "over", "speaker": 0, "speaker_confidence": 0.74658203, "start": 12.755, "word": "over" }, { "confidence": 0.48706055, "end": 13.3949995, "punctuated_word": "chat", "speaker": 0, "speaker_confidence": 0.74658203, "start": 13.075, "word": "chat" }, { "confidence": 0.8100586, "end": 13.8949995, "punctuated_word": "GPT,", "speaker": 0, "speaker_confidence": 0.74658203, "start": 13.3949995, "word": "gpt" }, { "confidence": 0.9980469, "end": 14.195, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.74658203, "start": 14.035, "word": "a" }, { "confidence": 1, "end": 14.355, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.74658203, "start": 14.195, "word": "new" }, { "confidence": 1, "end": 14.594999, "punctuated_word": "demo", "speaker": 0, "speaker_confidence": 0.74658203, "start": 14.355, "word": "demo" }, { "confidence": 1, "end": 14.835, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.74658203, "start": 14.594999, "word": "from" }, { "confidence": 0.76708984, "end": 15.335, "punctuated_word": "OpenAI", "speaker": 0, "speaker_confidence": 0.74658203, "start": 14.835, "word": "openai" }, { "confidence": 0.96240234, "end": 15.795, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.74658203, "start": 15.555, "word": "that" }, { "confidence": 1, "end": 15.955, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.74658203, "start": 15.795, "word": "can" }, { "confidence": 0.9980469, "end": 16.195, "punctuated_word": "write", "speaker": 0, "speaker_confidence": 0.74658203, "start": 15.955, "word": "write" }, { "confidence": 0.9970703, "end": 16.435, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.74658203, "start": 16.195, "word": "and" }, { "confidence": 0.9980469, "end": 16.915, "punctuated_word": "analyze", "speaker": 0, "speaker_confidence": 0.74658203, "start": 16.435, "word": "analyze" }, { "confidence": 1, "end": 17.235, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.74658203, "start": 16.915, "word": "code" }, { "confidence": 0.8852539, "end": 17.555, "punctuated_word": "among", "speaker": 0, "speaker_confidence": 0.74658203, "start": 17.235, "word": "among" }, { "confidence": 0.9980469, "end": 17.795, "punctuated_word": "many", "speaker": 0, "speaker_confidence": 0.74658203, "start": 17.555, "word": "many" }, { "confidence": 0.99902344, "end": 18.11, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.74658203, "start": 17.795, "word": "other" }, { "confidence": 0.68273926, "end": 18.43, "punctuated_word": "things.", "speaker": 0, "speaker_confidence": 0.74658203, "start": 18.19, "word": "things" }, { "confidence": 0.99902344, "end": 18.59, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.5654297, "start": 18.43, "word": "the" }, { "confidence": 1, "end": 18.83, "punctuated_word": "tool", "speaker": 0, "speaker_confidence": 0.5654297, "start": 18.59, "word": "tool" }, { "confidence": 0.99902344, "end": 19.150002, "punctuated_word": "itself", "speaker": 0, "speaker_confidence": 0.5654297, "start": 18.83, "word": "itself" }, { "confidence": 1, "end": 19.310001, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.5654297, "start": 19.150002, "word": "is" }, { "confidence": 1, "end": 19.550001, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 0.5654297, "start": 19.310001, "word": "very" }, { "confidence": 0.9719238, "end": 20.050001, "punctuated_word": "impressive,", "speaker": 0, "speaker_confidence": 0.5654297, "start": 19.550001, "word": "impressive" }, { "confidence": 1, "end": 20.27, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.5654297, "start": 20.11, "word": "but" }, { "confidence": 1, "end": 20.51, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.5654297, "start": 20.27, "word": "it's" }, { "confidence": 1, "end": 20.59, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.5654297, "start": 20.51, "word": "not" }, { "confidence": 0.9980469, "end": 20.75, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.5654297, "start": 20.59, "word": "going" }, { "confidence": 0.99902344, "end": 20.91, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.5654297, "start": 20.75, "word": "to" }, { "confidence": 1, "end": 21.310001, "punctuated_word": "replace", "speaker": 0, "speaker_confidence": 0.5654297, "start": 20.91, "word": "replace" }, { "confidence": 0.9995117, "end": 21.810001, "punctuated_word": "programmers.", "speaker": 0, "speaker_confidence": 0.5654297, "start": 21.310001, "word": "programmers" }, { "confidence": 0.99609375, "end": 22.11, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.7597656, "start": 21.95, "word": "it" }, { "confidence": 1, "end": 22.27, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7597656, "start": 22.11, "word": "can" }, { "confidence": 0.984375, "end": 22.51, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 0.7597656, "start": 22.27, "word": "really" }, { "confidence": 1, "end": 22.75, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.7597656, "start": 22.51, "word": "only" }, { "confidence": 1, "end": 22.990002, "punctuated_word": "solve", "speaker": 0, "speaker_confidence": 0.7597656, "start": 22.75, "word": "solve" }, { "confidence": 0.99902344, "end": 23.470001, "punctuated_word": "trivial", "speaker": 0, "speaker_confidence": 0.7597656, "start": 22.990002, "word": "trivial" }, { "confidence": 1, "end": 23.87, "punctuated_word": "problems", "speaker": 0, "speaker_confidence": 0.7597656, "start": 23.470001, "word": "problems" }, { "confidence": 0.8959961, "end": 24.11, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.7597656, "start": 23.87, "word": "like" }, { "confidence": 0.9160156, "end": 24.43, "punctuated_word": "GitHub", "speaker": 0, "speaker_confidence": 0.7597656, "start": 24.11, "word": "github" }, { "confidence": 0.8876953, "end": 24.93, "punctuated_word": "Copilot,", "speaker": 0, "speaker_confidence": 0.7597656, "start": 24.43, "word": "copilot" }, { "confidence": 1, "end": 25.23, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7597656, "start": 24.99, "word": "and" }, { "confidence": 0.9863281, "end": 25.470001, "punctuated_word": "often", "speaker": 0, "speaker_confidence": 0.7597656, "start": 25.23, "word": "often" }, { "confidence": 0.8286133, "end": 25.630001, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.7597656, "start": 25.470001, "word": "it" }, { "confidence": 0.99902344, "end": 25.95, "punctuated_word": "provides", "speaker": 0, "speaker_confidence": 0.7597656, "start": 25.630001, "word": "provides" }, { "confidence": 0.9941406, "end": 26.27, "punctuated_word": "answers", "speaker": 0, "speaker_confidence": 0.7597656, "start": 25.95, "word": "answers" }, { "confidence": 1, "end": 26.43, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7597656, "start": 26.27, "word": "that" }, { "confidence": 0.99902344, "end": 26.51, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.7597656, "start": 26.43, "word": "are" }, { "confidence": 0.99609375, "end": 26.75, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.7597656, "start": 26.51, "word": "just" }, { "confidence": 0.9838867, "end": 26.955, "punctuated_word": "flat", "speaker": 0, "speaker_confidence": 0.7597656, "start": 26.75, "word": "flat" }, { "confidence": 0.7915039, "end": 27.515, "punctuated_word": "wrong", "speaker": 0, "speaker_confidence": 0.7597656, "start": 27.275, "word": "wrong" }, { "confidence": 0.6123047, "end": 27.914999, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.7597656, "start": 27.515, "word": "but" }, { "confidence": 0.99121094, "end": 28.075, "punctuated_word": "look", "speaker": 0, "speaker_confidence": 0.7597656, "start": 27.914999, "word": "look" }, { "confidence": 0.9951172, "end": 28.475, "punctuated_word": "correct", "speaker": 0, "speaker_confidence": 0.7597656, "start": 28.075, "word": "correct" }, { "confidence": 0.9980469, "end": 28.635, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7597656, "start": 28.475, "word": "to" }, { "confidence": 1, "end": 28.875, "punctuated_word": "someone", "speaker": 0, "speaker_confidence": 0.7597656, "start": 28.635, "word": "someone" }, { "confidence": 0.99902344, "end": 29.115, "punctuated_word": "without", "speaker": 0, "speaker_confidence": 0.7597656, "start": 28.875, "word": "without" }, { "confidence": 0.9980469, "end": 29.275, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7597656, "start": 29.115, "word": "the" }, { "confidence": 1, "end": 29.595, "punctuated_word": "proper", "speaker": 0, "speaker_confidence": 0.7597656, "start": 29.275, "word": "proper" }, { "confidence": 1, "end": 29.994999, "punctuated_word": "domain", "speaker": 0, "speaker_confidence": 0.7597656, "start": 29.595, "word": "domain" }, { "confidence": 0.9995117, "end": 30.475, "punctuated_word": "knowledge.", "speaker": 0, "speaker_confidence": 0.7597656, "start": 29.994999, "word": "knowledge" }, { "confidence": 0.9995117, "end": 30.635, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.7597656, "start": 30.475, "word": "it's" }, { "confidence": 1, "end": 30.955, "punctuated_word": "already", "speaker": 0, "speaker_confidence": 0.7597656, "start": 30.635, "word": "already" }, { "confidence": 0.99902344, "end": 31.115, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.7597656, "start": 30.955, "word": "been" }, { "confidence": 1, "end": 31.355, "punctuated_word": "banned", "speaker": 0, "speaker_confidence": 0.7597656, "start": 31.115, "word": "banned" }, { "confidence": 1, "end": 31.515, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.7597656, "start": 31.355, "word": "by" }, { "confidence": 0.9760742, "end": 31.755, "punctuated_word": "Stack", "speaker": 0, "speaker_confidence": 0.7597656, "start": 31.515, "word": "stack" }, { "confidence": 0.98999023, "end": 32.254997, "punctuated_word": "Overflow", "speaker": 0, "speaker_confidence": 0.7597656, "start": 31.755, "word": "overflow" }, { "confidence": 0.9291992, "end": 32.635, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.7597656, "start": 32.315, "word": "because" }, { "confidence": 0.9902344, "end": 32.715, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7597656, "start": 32.635, "word": "the" }, { "confidence": 0.9716797, "end": 32.955, "punctuated_word": "site", "speaker": 0, "speaker_confidence": 0.7597656, "start": 32.715, "word": "site" }, { "confidence": 0.99902344, "end": 33.035, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.66503906, "start": 32.955, "word": "has" }, { "confidence": 1, "end": 33.195, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.66503906, "start": 33.035, "word": "been" }, { "confidence": 1, "end": 33.595, "punctuated_word": "flooded", "speaker": 0, "speaker_confidence": 0.66503906, "start": 33.195, "word": "flooded" }, { "confidence": 0.9980469, "end": 33.835, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.66503906, "start": 33.595, "word": "with" }, { "confidence": 1, "end": 34.155, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.66503906, "start": 33.835, "word": "people" }, { "confidence": 1, "end": 34.555, "punctuated_word": "posting", "speaker": 0, "speaker_confidence": 0.66503906, "start": 34.155, "word": "posting" }, { "confidence": 0.9921875, "end": 34.795, "punctuated_word": "AI", "speaker": 0, "speaker_confidence": 0.66503906, "start": 34.555, "word": "ai" }, { "confidence": 0.99316406, "end": 35.2, "punctuated_word": "answers", "speaker": 0, "speaker_confidence": 0.66503906, "start": 34.795, "word": "answers" }, { "confidence": 0.9980469, "end": 35.600002, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.66503906, "start": 35.36, "word": "on" }, { "confidence": 0.9980469, "end": 35.920002, "punctuated_word": "topics", "speaker": 0, "speaker_confidence": 0.66503906, "start": 35.600002, "word": "topics" }, { "confidence": 0.99316406, "end": 36, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.66503906, "start": 35.920002, "word": "they" }, { "confidence": 0.99902344, "end": 36.16, "punctuated_word": "know", "speaker": 0, "speaker_confidence": 0.85302734, "start": 36, "word": "know" }, { "confidence": 1, "end": 36.48, "punctuated_word": "nothing", "speaker": 0, "speaker_confidence": 0.85302734, "start": 36.16, "word": "nothing" }, { "confidence": 1, "end": 36.88, "punctuated_word": "about.", "speaker": 0, "speaker_confidence": 0.85302734, "start": 36.48, "word": "about" }, { "confidence": 1, "end": 37.12, "punctuated_word": "More", "speaker": 0, "speaker_confidence": 0.85302734, "start": 36.88, "word": "more" }, { "confidence": 0.9970703, "end": 37.28, "punctuated_word": "than", "speaker": 0, "speaker_confidence": 0.85302734, "start": 37.12, "word": "than" }, { "confidence": 0.9941406, "end": 37.68, "punctuated_word": "anything,", "speaker": 0, "speaker_confidence": 0.85302734, "start": 37.28, "word": "anything" }, { "confidence": 0.99902344, "end": 37.760002, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.85302734, "start": 37.68, "word": "i" }, { "confidence": 0.99902344, "end": 38, "punctuated_word": "think", "speaker": 0, "speaker_confidence": 0.85302734, "start": 37.760002, "word": "think" }, { "confidence": 0.6349284, "end": 38.5, "punctuated_word": "ChatGPT", "speaker": 0, "speaker_confidence": 0.85302734, "start": 38, "word": "chatgpt" }, { "confidence": 0.99609375, "end": 38.96, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.85302734, "start": 38.8, "word": "is" }, { "confidence": 0.99609375, "end": 39.12, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.85302734, "start": 38.96, "word": "an" }, { "confidence": 0.9951172, "end": 39.62, "punctuated_word": "existential", "speaker": 0, "speaker_confidence": 0.85302734, "start": 39.12, "word": "existential" }, { "confidence": 0.9980469, "end": 40, "punctuated_word": "threat", "speaker": 0, "speaker_confidence": 0.85302734, "start": 39.68, "word": "threat" }, { "confidence": 0.9941406, "end": 40.16, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.85302734, "start": 40, "word": "to" }, { "confidence": 0.9980469, "end": 40.48, "punctuated_word": "tools", "speaker": 0, "speaker_confidence": 0.85302734, "start": 40.16, "word": "tools" }, { "confidence": 0.9951172, "end": 40.72, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.85302734, "start": 40.48, "word": "like" }, { "confidence": 0.99609375, "end": 40.96, "punctuated_word": "Google", "speaker": 0, "speaker_confidence": 0.85302734, "start": 40.72, "word": "google" }, { "confidence": 0.99609375, "end": 41.120003, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.85302734, "start": 40.96, "word": "and" }, { "confidence": 0.98535156, "end": 41.440002, "punctuated_word": "Stack", "speaker": 0, "speaker_confidence": 0.85302734, "start": 41.120003, "word": "stack" }, { "confidence": 0.9885254, "end": 41.940002, "punctuated_word": "Overflow", "speaker": 0, "speaker_confidence": 0.85302734, "start": 41.440002, "word": "overflow" }, { "confidence": 0.7602539, "end": 42.24, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.85302734, "start": 42, "word": "because" }, { "confidence": 0.9946289, "end": 42.4, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.85302734, "start": 42.24, "word": "it's" }, { "confidence": 0.9951172, "end": 42.56, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.85302734, "start": 42.4, "word": "a" }, { "confidence": 0.9941406, "end": 42.8, "punctuated_word": "much", "speaker": 0, "speaker_confidence": 0.85302734, "start": 42.56, "word": "much" }, { "confidence": 0.9873047, "end": 43.12, "punctuated_word": "faster", "speaker": 0, "speaker_confidence": 0.85302734, "start": 42.8, "word": "faster" }, { "confidence": 0.9819336, "end": 43.28, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 0.85302734, "start": 43.12, "word": "way" }, { "confidence": 0.8569336, "end": 43.565, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.85302734, "start": 43.28, "word": "to" }, { "confidence": 0.9941406, "end": 44.045, "punctuated_word": "answers", "speaker": 0, "speaker_confidence": 0.85302734, "start": 43.725, "word": "answers" }, { "confidence": 0.99902344, "end": 44.285, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.85302734, "start": 44.045, "word": "to" }, { "confidence": 0.9604492, "end": 44.684998, "punctuated_word": "basic", "speaker": 0, "speaker_confidence": 0.85302734, "start": 44.285, "word": "basic" }, { "confidence": 0.9970703, "end": 45.164997, "punctuated_word": "programming", "speaker": 0, "speaker_confidence": 0.85302734, "start": 44.684998, "word": "programming" }, { "confidence": 0.99853516, "end": 45.644997, "punctuated_word": "problems.", "speaker": 0, "speaker_confidence": 0.85302734, "start": 45.164997, "word": "problems" }, { "confidence": 0.99609375, "end": 45.885, "punctuated_word": "What's", "speaker": 0, "speaker_confidence": 0.85302734, "start": 45.644997, "word": "what's" }, { "confidence": 1, "end": 46.204998, "punctuated_word": "crazy", "speaker": 0, "speaker_confidence": 0.85302734, "start": 45.885, "word": "crazy" }, { "confidence": 0.84277344, "end": 46.445, "punctuated_word": "though", "speaker": 0, "speaker_confidence": 0.85302734, "start": 46.204998, "word": "though" }, { "confidence": 0.73095703, "end": 46.684998, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.85302734, "start": 46.445, "word": "is" }, { "confidence": 0.9980469, "end": 46.765, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.85302734, "start": 46.684998, "word": "that" }, { "confidence": 0.9873047, "end": 47.004997, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.85302734, "start": 46.765, "word": "this" }, { "confidence": 0.9970703, "end": 47.085, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.85302734, "start": 47.004997, "word": "is" }, { "confidence": 0.9980469, "end": 47.324997, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.85302734, "start": 47.085, "word": "just" }, { "confidence": 0.99902344, "end": 47.565, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.85302734, "start": 47.324997, "word": "a" }, { "confidence": 1, "end": 47.805, "punctuated_word": "general", "speaker": 0, "speaker_confidence": 0.85302734, "start": 47.565, "word": "general" }, { "confidence": 1, "end": 48.204998, "punctuated_word": "purpose", "speaker": 0, "speaker_confidence": 0.85302734, "start": 47.805, "word": "purpose" }, { "confidence": 0.94873047, "end": 48.605, "punctuated_word": "tool.", "speaker": 0, "speaker_confidence": 0.85302734, "start": 48.204998, "word": "tool" }, { "confidence": 0.9995117, "end": 48.765, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.85302734, "start": 48.605, "word": "it's" }, { "confidence": 1, "end": 48.925, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.85302734, "start": 48.765, "word": "not" }, { "confidence": 1, "end": 49.164997, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 0.85302734, "start": 48.925, "word": "even" }, { "confidence": 0.9970703, "end": 49.485, "punctuated_word": "designed", "speaker": 0, "speaker_confidence": 0.85302734, "start": 49.164997, "word": "designed" }, { "confidence": 0.99902344, "end": 49.725, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.85302734, "start": 49.485, "word": "for" }, { "confidence": 0.99902344, "end": 50.225, "punctuated_word": "programming", "speaker": 0, "speaker_confidence": 0.85302734, "start": 49.725, "word": "programming" }, { "confidence": 0.9501953, "end": 50.785, "punctuated_word": "specifically.", "speaker": 0, "speaker_confidence": 0.85302734, "start": 50.285, "word": "specifically" }, { "confidence": 0.99609375, "end": 51.004997, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.85302734, "start": 50.844997, "word": "now" }, { "confidence": 0.6503906, "end": 51.245, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.85302734, "start": 51.004997, "word": "just" }, { "confidence": 0.99902344, "end": 51.484997, "punctuated_word": "imagine", "speaker": 0, "speaker_confidence": 0.85302734, "start": 51.245, "word": "imagine" }, { "confidence": 0.99902344, "end": 51.725, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.85302734, "start": 51.484997, "word": "what" }, { "confidence": 0.99902344, "end": 51.885, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.85302734, "start": 51.725, "word": "will" }, { "confidence": 1, "end": 52.285, "punctuated_word": "happen", "speaker": 0, "speaker_confidence": 0.85302734, "start": 51.885, "word": "happen" }, { "confidence": 0.99609375, "end": 52.524998, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.85302734, "start": 52.285, "word": "when" }, { "confidence": 0.9980469, "end": 52.684998, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.85302734, "start": 52.524998, "word": "this" }, { "confidence": 1, "end": 53.184998, "punctuated_word": "technology", "speaker": 0, "speaker_confidence": 0.85302734, "start": 52.684998, "word": "technology" }, { "confidence": 0.7241211, "end": 53.82, "punctuated_word": "focused", "speaker": 0, "speaker_confidence": 0.85302734, "start": 53.5, "word": "focused" }, { "confidence": 0.99902344, "end": 54.06, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.85302734, "start": 53.82, "word": "on" }, { "confidence": 1, "end": 54.56, "punctuated_word": "replacing", "speaker": 0, "speaker_confidence": 0.85302734, "start": 54.06, "word": "replacing" }, { "confidence": 1, "end": 55.12, "punctuated_word": "programmers.", "speaker": 0, "speaker_confidence": 0.85302734, "start": 54.62, "word": "programmers" }, { "confidence": 0.9995117, "end": 55.5, "punctuated_word": "Here's", "speaker": 0, "speaker_confidence": 0.85302734, "start": 55.26, "word": "here's" }, { "confidence": 0.9970703, "end": 55.66, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.85302734, "start": 55.5, "word": "how" }, { "confidence": 0.9970703, "end": 55.74, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.60791016, "start": 55.66, "word": "i" }, { "confidence": 1, "end": 55.9, "punctuated_word": "think", "speaker": 0, "speaker_confidence": 0.60791016, "start": 55.74, "word": "think" }, { "confidence": 0.99902344, "end": 55.98, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.60791016, "start": 55.9, "word": "it" }, { "confidence": 0.99609375, "end": 56.22, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 0.60791016, "start": 55.98, "word": "might" }, { "confidence": 0.99902344, "end": 56.38, "punctuated_word": "play", "speaker": 0, "speaker_confidence": 0.60791016, "start": 56.22, "word": "play" }, { "confidence": 0.99902344, "end": 56.62, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.60791016, "start": 56.38, "word": "out" }, { "confidence": 0.99902344, "end": 56.78, "punctuated_word": "over", "speaker": 0, "speaker_confidence": 0.60791016, "start": 56.62, "word": "over" }, { "confidence": 1, "end": 56.94, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.60791016, "start": 56.78, "word": "the" }, { "confidence": 1, "end": 57.1, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.60791016, "start": 56.94, "word": "next" }, { "confidence": 0.99902344, "end": 57.34, "punctuated_word": "few", "speaker": 0, "speaker_confidence": 0.60791016, "start": 57.1, "word": "few" }, { "confidence": 0.99853516, "end": 57.84, "punctuated_word": "years.", "speaker": 0, "speaker_confidence": 0.60791016, "start": 57.34, "word": "years" }, { "confidence": 0.89404297, "end": 58.22, "punctuated_word": "1st,", "speaker": 0, "speaker_confidence": 0.60791016, "start": 57.9, "word": "1st" }, { "confidence": 0.99609375, "end": 58.46, "punctuated_word": "AI", "speaker": 0, "speaker_confidence": 0.60791016, "start": 58.22, "word": "ai" }, { "confidence": 0.99902344, "end": 58.62, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.60791016, "start": 58.46, "word": "will" }, { "confidence": 1, "end": 58.78, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 0.60791016, "start": 58.62, "word": "start" }, { "confidence": 0.9970703, "end": 58.94, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.60791016, "start": 58.78, "word": "to" }, { "confidence": 0.9980469, "end": 59.1, "punctuated_word": "take", "speaker": 0, "speaker_confidence": 0.60791016, "start": 58.94, "word": "take" }, { "confidence": 0.9980469, "end": 59.42, "punctuated_word": "over", "speaker": 0, "speaker_confidence": 0.60791016, "start": 59.1, "word": "over" }, { "confidence": 0.9980469, "end": 59.66, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.8691406, "start": 59.42, "word": "as" }, { "confidence": 0.9980469, "end": 59.82, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8691406, "start": 59.66, "word": "the" }, { "confidence": 1, "end": 60.14, "punctuated_word": "decision", "speaker": 0, "speaker_confidence": 0.8691406, "start": 59.82, "word": "decision" }, { "confidence": 0.9980469, "end": 60.46, "punctuated_word": "maker", "speaker": 0, "speaker_confidence": 0.8691406, "start": 60.14, "word": "maker" }, { "confidence": 0.9980469, "end": 60.62, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8691406, "start": 60.46, "word": "on" }, { "confidence": 0.99902344, "end": 60.86, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.8691406, "start": 60.62, "word": "your" }, { "confidence": 0.9941406, "end": 61.26, "punctuated_word": "actual", "speaker": 0, "speaker_confidence": 0.8691406, "start": 60.86, "word": "actual" }, { "confidence": 0.9995117, "end": 61.739998, "punctuated_word": "machine.", "speaker": 0, "speaker_confidence": 0.8691406, "start": 61.26, "word": "machine" }, { "confidence": 0.9921875, "end": 62.22, "punctuated_word": "Microsoft", "speaker": 0, "speaker_confidence": 0.8691406, "start": 61.739998, "word": "microsoft" }, { "confidence": 0.90478516, "end": 62.38, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.8691406, "start": 62.22, "word": "has" }, { "confidence": 0.9902344, "end": 62.62, "punctuated_word": "already", "speaker": 0, "speaker_confidence": 0.8691406, "start": 62.38, "word": "already" }, { "confidence": 0.6796875, "end": 62.995, "punctuated_word": "developed", "speaker": 0, "speaker_confidence": 0.8691406, "start": 62.62, "word": "developed" }, { "confidence": 0.5522461, "end": 63.475, "punctuated_word": "codec", "speaker": 0, "speaker_confidence": 0.8691406, "start": 63.235, "word": "codec" }, { "confidence": 0.68359375, "end": 63.975, "punctuated_word": "cli", "speaker": 0, "speaker_confidence": 0.8691406, "start": 63.475, "word": "cli" }, { "confidence": 0.9770508, "end": 64.275, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8691406, "start": 64.115, "word": "to" }, { "confidence": 0.99902344, "end": 64.674995, "punctuated_word": "bring", "speaker": 0, "speaker_confidence": 0.8691406, "start": 64.275, "word": "bring" }, { "confidence": 0.99609375, "end": 64.994995, "punctuated_word": "AI", "speaker": 0, "speaker_confidence": 0.8691406, "start": 64.674995, "word": "ai" }, { "confidence": 0.99902344, "end": 65.155, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8691406, "start": 64.994995, "word": "to" }, { "confidence": 1, "end": 65.315, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8691406, "start": 65.155, "word": "the" }, { "confidence": 0.9980469, "end": 65.555, "punctuated_word": "command", "speaker": 0, "speaker_confidence": 0.8691406, "start": 65.315, "word": "command" }, { "confidence": 0.99853516, "end": 65.955, "punctuated_word": "line.", "speaker": 0, "speaker_confidence": 0.8691406, "start": 65.555, "word": "line" }, { "confidence": 0.99902344, "end": 66.275, "punctuated_word": "Instead", "speaker": 0, "speaker_confidence": 0.8691406, "start": 65.955, "word": "instead" }, { "confidence": 1, "end": 66.354996, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8691406, "start": 66.275, "word": "of" }, { "confidence": 0.93115234, "end": 66.674995, "punctuated_word": "learning", "speaker": 0, "speaker_confidence": 0.8691406, "start": 66.354996, "word": "learning" }, { "confidence": 0.9970703, "end": 67.075, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 0.8691406, "start": 66.674995, "word": "linux" }, { "confidence": 0.8457031, "end": 67.235, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8691406, "start": 67.075, "word": "in" }, { "confidence": 0.99902344, "end": 67.315, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8691406, "start": 67.235, "word": "the" }, { "confidence": 1, "end": 67.555, "punctuated_word": "near", "speaker": 0, "speaker_confidence": 0.8691406, "start": 67.315, "word": "near" }, { "confidence": 0.9995117, "end": 68.034996, "punctuated_word": "future,", "speaker": 0, "speaker_confidence": 0.8691406, "start": 67.555, "word": "future" }, { "confidence": 0.99902344, "end": 68.195, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.8691406, "start": 68.034996, "word": "you" }, { "confidence": 1, "end": 68.435, "punctuated_word": "should", "speaker": 0, "speaker_confidence": 0.8691406, "start": 68.195, "word": "should" }, { "confidence": 0.99902344, "end": 68.515, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.8691406, "start": 68.435, "word": "be" }, { "confidence": 0.99902344, "end": 68.674995, "punctuated_word": "able", "speaker": 0, "speaker_confidence": 0.83740234, "start": 68.515, "word": "able" }, { "confidence": 0.99902344, "end": 68.835, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.83740234, "start": 68.674995, "word": "to" }, { "confidence": 0.9921875, "end": 69.075, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.83740234, "start": 68.835, "word": "just" }, { "confidence": 0.99902344, "end": 69.315, "punctuated_word": "tell", "speaker": 0, "speaker_confidence": 0.83740234, "start": 69.075, "word": "tell" }, { "confidence": 0.9873047, "end": 69.555, "punctuated_word": "AI", "speaker": 0, "speaker_confidence": 0.83740234, "start": 69.315, "word": "ai" }, { "confidence": 0.99902344, "end": 69.795, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.83740234, "start": 69.555, "word": "what" }, { "confidence": 0.9980469, "end": 69.875, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.83740234, "start": 69.795, "word": "you" }, { "confidence": 0.87524414, "end": 70.275, "punctuated_word": "want,", "speaker": 0, "speaker_confidence": 0.83740234, "start": 69.875, "word": "want" }, { "confidence": 0.9941406, "end": 70.435, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.83740234, "start": 70.275, "word": "and" }, { "confidence": 0.9921875, "end": 70.515, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.83740234, "start": 70.435, "word": "it" }, { "confidence": 0.98828125, "end": 70.674995, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.83740234, "start": 70.515, "word": "will" }, { "confidence": 0.8881836, "end": 70.82, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.83740234, "start": 70.674995, "word": "run" }, { "confidence": 0.8251953, "end": 71.14, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.83740234, "start": 70.9, "word": "all" }, { "confidence": 0.99316406, "end": 71.22, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.83740234, "start": 71.14, "word": "the" }, { "confidence": 1, "end": 71.7, "punctuated_word": "necessary", "speaker": 0, "speaker_confidence": 0.83740234, "start": 71.22, "word": "necessary" }, { "confidence": 1, "end": 72.02, "punctuated_word": "commands", "speaker": 0, "speaker_confidence": 0.83740234, "start": 71.7, "word": "commands" }, { "confidence": 0.99902344, "end": 72.26, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.83740234, "start": 72.02, "word": "for" }, { "confidence": 0.99902344, "end": 72.5, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.83740234, "start": 72.26, "word": "you" }, { "confidence": 0.9555664, "end": 73, "punctuated_word": "automatically.", "speaker": 0, "speaker_confidence": 0.83740234, "start": 72.5, "word": "automatically" }, { "confidence": 0.8574219, "end": 73.54, "punctuated_word": "That", "speaker": 0, "speaker_confidence": 0.83740234, "start": 73.3, "word": "that" }, { "confidence": 0.9243164, "end": 74.04, "punctuated_word": "technology", "speaker": 0, "speaker_confidence": 0.83740234, "start": 73.54, "word": "technology" }, { "confidence": 1, "end": 74.34, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.83740234, "start": 74.1, "word": "is" }, { "confidence": 0.9873047, "end": 74.82, "punctuated_word": "essentially", "speaker": 0, "speaker_confidence": 0.83740234, "start": 74.34, "word": "essentially" }, { "confidence": 0.9980469, "end": 75.06, "punctuated_word": "already", "speaker": 0, "speaker_confidence": 0.83740234, "start": 74.82, "word": "already" }, { "confidence": 0.9975586, "end": 75.46, "punctuated_word": "here.", "speaker": 0, "speaker_confidence": 0.83740234, "start": 75.06, "word": "here" }, { "confidence": 1, "end": 75.62, "punctuated_word": "What", "speaker": 0, "speaker_confidence": 0.83740234, "start": 75.46, "word": "what" }, { "confidence": 0.99902344, "end": 75.78, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.83740234, "start": 75.62, "word": "i" }, { "confidence": 1, "end": 76.1, "punctuated_word": "expect", "speaker": 0, "speaker_confidence": 0.83740234, "start": 75.78, "word": "expect" }, { "confidence": 1, "end": 76.18, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.83740234, "start": 76.1, "word": "to" }, { "confidence": 1, "end": 76.5, "punctuated_word": "happen", "speaker": 0, "speaker_confidence": 0.83740234, "start": 76.18, "word": "happen" }, { "confidence": 0.99902344, "end": 76.9, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.83740234, "start": 76.5, "word": "next" }, { "confidence": 0.9301758, "end": 77.06, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.50341797, "start": 76.9, "word": "is" }, { "confidence": 1, "end": 77.3, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.50341797, "start": 77.06, "word": "that" }, { "confidence": 0.99902344, "end": 77.62, "punctuated_word": "AI", "speaker": 0, "speaker_confidence": 0.50341797, "start": 77.3, "word": "ai" }, { "confidence": 0.9980469, "end": 77.86, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.50341797, "start": 77.62, "word": "will" }, { "confidence": 1, "end": 78.1, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 0.50341797, "start": 77.86, "word": "start" }, { "confidence": 0.99902344, "end": 78.18, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.50341797, "start": 78.1, "word": "to" }, { "confidence": 1, "end": 78.34, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.6567383, "start": 78.18, "word": "build" }, { "confidence": 0.99902344, "end": 78.58, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.6567383, "start": 78.34, "word": "out" }, { "confidence": 0.99902344, "end": 79.06, "punctuated_word": "entire", "speaker": 0, "speaker_confidence": 0.6567383, "start": 78.58, "word": "entire" }, { "confidence": 0.99902344, "end": 79.46, "punctuated_word": "projects", "speaker": 0, "speaker_confidence": 0.6567383, "start": 79.06, "word": "projects" }, { "confidence": 0.9970703, "end": 79.62, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.6567383, "start": 79.46, "word": "for" }, { "confidence": 0.9980469, "end": 80.115, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.6567383, "start": 79.62, "word": "you" }, { "confidence": 0.9892578, "end": 80.354996, "punctuated_word": "based", "speaker": 0, "speaker_confidence": 0.6567383, "start": 80.195, "word": "based" }, { "confidence": 1, "end": 80.515, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.6567383, "start": 80.354996, "word": "on" }, { "confidence": 0.99609375, "end": 80.595, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.76708984, "start": 80.515, "word": "the" }, { "confidence": 0.9980469, "end": 81.075, "punctuated_word": "requirements", "speaker": 0, "speaker_confidence": 0.76708984, "start": 80.595, "word": "requirements" }, { "confidence": 0.99902344, "end": 81.155, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.76708984, "start": 81.075, "word": "that" }, { "confidence": 1, "end": 81.314995, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.76708984, "start": 81.155, "word": "you" }, { "confidence": 0.9892578, "end": 81.475, "punctuated_word": "give", "speaker": 0, "speaker_confidence": 0.76708984, "start": 81.314995, "word": "give" }, { "confidence": 0.829834, "end": 81.715, "punctuated_word": "it.", "speaker": 0, "speaker_confidence": 0.76708984, "start": 81.475, "word": "it" }, { "confidence": 0.9970703, "end": 81.875, "punctuated_word": "Kind", "speaker": 0, "speaker_confidence": 0.76708984, "start": 81.715, "word": "kind" }, { "confidence": 0.9902344, "end": 82.034996, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.76708984, "start": 81.875, "word": "of" }, { "confidence": 0.98828125, "end": 82.195, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.76708984, "start": 82.034996, "word": "like" }, { "confidence": 0.97802734, "end": 82.435, "punctuated_word": "test", "speaker": 0, "speaker_confidence": 0.76708984, "start": 82.195, "word": "test" }, { "confidence": 0.99609375, "end": 82.674995, "punctuated_word": "driven", "speaker": 0, "speaker_confidence": 0.76708984, "start": 82.435, "word": "driven" }, { "confidence": 0.7780762, "end": 83.174995, "punctuated_word": "development,", "speaker": 0, "speaker_confidence": 0.76708984, "start": 82.674995, "word": "development" }, { "confidence": 0.99902344, "end": 83.555, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.76708984, "start": 83.314995, "word": "where" }, { "confidence": 0.99902344, "end": 83.715, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.76708984, "start": 83.555, "word": "all" }, { "confidence": 1, "end": 83.875, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.76708984, "start": 83.715, "word": "you" }, { "confidence": 1, "end": 84.034996, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.76708984, "start": 83.875, "word": "do" }, { "confidence": 1, "end": 84.195, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.76708984, "start": 84.034996, "word": "is" }, { "confidence": 0.9970703, "end": 84.354996, "punctuated_word": "write", "speaker": 0, "speaker_confidence": 0.76708984, "start": 84.195, "word": "write" }, { "confidence": 0.99902344, "end": 84.515, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.76708984, "start": 84.354996, "word": "some" }, { "confidence": 0.99902344, "end": 84.835, "punctuated_word": "basic", "speaker": 0, "speaker_confidence": 0.76708984, "start": 84.515, "word": "basic" }, { "confidence": 0.9980469, "end": 85.155, "punctuated_word": "testing", "speaker": 0, "speaker_confidence": 0.76708984, "start": 84.835, "word": "testing" }, { "confidence": 0.8745117, "end": 85.555, "punctuated_word": "code,", "speaker": 0, "speaker_confidence": 0.76708984, "start": 85.155, "word": "code" }, { "confidence": 0.9980469, "end": 85.875, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.76708984, "start": 85.555, "word": "then" }, { "confidence": 0.9941406, "end": 86.274994, "punctuated_word": "AI", "speaker": 0, "speaker_confidence": 0.76708984, "start": 85.875, "word": "ai" }, { "confidence": 0.99609375, "end": 86.595, "punctuated_word": "installs", "speaker": 0, "speaker_confidence": 0.76708984, "start": 86.274994, "word": "installs" }, { "confidence": 0.99902344, "end": 86.755, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.76708984, "start": 86.595, "word": "all" }, { "confidence": 0.9970703, "end": 86.915, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.76708984, "start": 86.755, "word": "the" }, { "confidence": 0.9980469, "end": 87.395, "punctuated_word": "packages,", "speaker": 0, "speaker_confidence": 0.76708984, "start": 86.915, "word": "packages" }, { "confidence": 0.9892578, "end": 87.715, "punctuated_word": "creates", "speaker": 0, "speaker_confidence": 0.76708984, "start": 87.395, "word": "creates" }, { "confidence": 1, "end": 87.875, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.76708984, "start": 87.715, "word": "all" }, { "confidence": 0.99902344, "end": 87.954994, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.61376953, "start": 87.875, "word": "the" }, { "confidence": 0.89990234, "end": 88.354996, "punctuated_word": "files,", "speaker": 0, "speaker_confidence": 0.61376953, "start": 87.954994, "word": "files" }, { "confidence": 1, "end": 88.515, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.61376953, "start": 88.354996, "word": "and" }, { "confidence": 0.9633789, "end": 88.81, "punctuated_word": "writes", "speaker": 0, "speaker_confidence": 0.61376953, "start": 88.515, "word": "writes" }, { "confidence": 0.92578125, "end": 88.97, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.61376953, "start": 88.81, "word": "all" }, { "confidence": 0.9970703, "end": 89.13, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.61376953, "start": 88.97, "word": "the" }, { "confidence": 0.99902344, "end": 89.29, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.61376953, "start": 89.13, "word": "code" }, { "confidence": 0.98291016, "end": 89.45, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.61376953, "start": 89.29, "word": "for" }, { "confidence": 0.9458008, "end": 89.77, "punctuated_word": "you.", "speaker": 0, "speaker_confidence": 0.61376953, "start": 89.45, "word": "you" }, { "confidence": 0.9741211, "end": 90.009995, "punctuated_word": "It'll", "speaker": 0, "speaker_confidence": 0.61376953, "start": 89.77, "word": "it'll" }, { "confidence": 1, "end": 90.09, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.61376953, "start": 90.009995, "word": "be" }, { "confidence": 1, "end": 90.329994, "punctuated_word": "able", "speaker": 0, "speaker_confidence": 0.61376953, "start": 90.09, "word": "able" }, { "confidence": 0.99902344, "end": 90.409996, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8203125, "start": 90.329994, "word": "to" }, { "confidence": 1, "end": 90.649994, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.8203125, "start": 90.409996, "word": "run" }, { "confidence": 1, "end": 90.729996, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8203125, "start": 90.649994, "word": "the" }, { "confidence": 0.99902344, "end": 90.89, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.8203125, "start": 90.729996, "word": "app" }, { "confidence": 0.9658203, "end": 91.369995, "punctuated_word": "itself,", "speaker": 0, "speaker_confidence": 0.8203125, "start": 90.89, "word": "itself" }, { "confidence": 0.98828125, "end": 91.61, "punctuated_word": "find", "speaker": 0, "speaker_confidence": 0.8203125, "start": 91.369995, "word": "find" }, { "confidence": 0.9980469, "end": 91.93, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 0.8203125, "start": 91.61, "word": "any" }, { "confidence": 0.7570801, "end": 92.329994, "punctuated_word": "errors,", "speaker": 0, "speaker_confidence": 0.8203125, "start": 91.93, "word": "errors" }, { "confidence": 1, "end": 92.49, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8203125, "start": 92.329994, "word": "and" }, { "confidence": 1, "end": 92.81, "punctuated_word": "correct", "speaker": 0, "speaker_confidence": 0.8203125, "start": 92.49, "word": "correct" }, { "confidence": 0.99609375, "end": 93.21, "punctuated_word": "them.", "speaker": 0, "speaker_confidence": 0.8203125, "start": 92.81, "word": "them" }, { "confidence": 0.8845215, "end": 93.61, "punctuated_word": "Eventually,", "speaker": 0, "speaker_confidence": 0.8203125, "start": 93.21, "word": "eventually" }, { "confidence": 0.9980469, "end": 93.689995, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8203125, "start": 93.61, "word": "it" }, { "confidence": 0.99902344, "end": 93.85, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.8203125, "start": 93.689995, "word": "will" }, { "confidence": 1, "end": 94.009995, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.8203125, "start": 93.85, "word": "get" }, { "confidence": 1, "end": 94.25, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.8203125, "start": 94.009995, "word": "so" }, { "confidence": 1, "end": 94.57, "punctuated_word": "good", "speaker": 0, "speaker_confidence": 0.8203125, "start": 94.25, "word": "good" }, { "confidence": 0.9448242, "end": 94.729996, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8203125, "start": 94.57, "word": "that" }, { "confidence": 0.99902344, "end": 94.81, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.8203125, "start": 94.729996, "word": "you" }, { "confidence": 0.9995117, "end": 94.97, "punctuated_word": "don't", "speaker": 0, "speaker_confidence": 0.8203125, "start": 94.81, "word": "don't" }, { "confidence": 0.9980469, "end": 95.29, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 0.8203125, "start": 94.97, "word": "even" }, { "confidence": 0.99902344, "end": 95.45, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.8203125, "start": 95.29, "word": "have" }, { "confidence": 0.99902344, "end": 95.53, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8203125, "start": 95.45, "word": "to" }, { "confidence": 1, "end": 95.77, "punctuated_word": "worry", "speaker": 0, "speaker_confidence": 0.8203125, "start": 95.53, "word": "worry" }, { "confidence": 0.99902344, "end": 96.009995, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.8203125, "start": 95.77, "word": "about" }, { "confidence": 0.99609375, "end": 96.09, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8203125, "start": 96.009995, "word": "the" }, { "confidence": 0.99902344, "end": 96.329994, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.8203125, "start": 96.09, "word": "code" }, { "confidence": 0.9951172, "end": 96.409996, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8203125, "start": 96.329994, "word": "it" }, { "confidence": 0.7817383, "end": 96.89, "punctuated_word": "writes,", "speaker": 0, "speaker_confidence": 0.8203125, "start": 96.409996, "word": "writes" }, { "confidence": 0.9980469, "end": 97.049995, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8203125, "start": 96.89, "word": "and" }, { "confidence": 0.9970703, "end": 97.21, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.8203125, "start": 97.049995, "word": "this" }, { "confidence": 0.99316406, "end": 97.369995, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.8203125, "start": 97.21, "word": "will" }, { "confidence": 0.9941406, "end": 97.61, "punctuated_word": "lead", "speaker": 0, "speaker_confidence": 0.8203125, "start": 97.369995, "word": "lead" }, { "confidence": 0.99121094, "end": 97.689995, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.47802734, "start": 97.61, "word": "to" }, { "confidence": 0.9536133, "end": 97.85, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.47802734, "start": 97.689995, "word": "a" }, { "confidence": 0.9970703, "end": 98.09, "punctuated_word": "whole", "speaker": 0, "speaker_confidence": 0.47802734, "start": 97.85, "word": "whole" }, { "confidence": 0.9760742, "end": 98.17, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.47802734, "start": 98.09, "word": "new" }, { "confidence": 0.86035156, "end": 98.465, "punctuated_word": "class", "speaker": 0, "speaker_confidence": 0.47802734, "start": 98.17, "word": "class" }, { "confidence": 0.48657227, "end": 98.945, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.47802734, "start": 98.704994, "word": "of" }, { "confidence": 0.9970703, "end": 99.445, "punctuated_word": "artificial", "speaker": 0, "speaker_confidence": 0.47802734, "start": 98.945, "word": "artificial" }, { "confidence": 0.99316406, "end": 100.085, "punctuated_word": "development", "speaker": 0, "speaker_confidence": 0.47802734, "start": 99.585, "word": "development" }, { "confidence": 0.9501953, "end": 100.645, "punctuated_word": "environments.", "speaker": 0, "speaker_confidence": 0.47802734, "start": 100.145, "word": "environments" }, { "confidence": 0.9921875, "end": 101.185, "punctuated_word": "Copilot", "speaker": 0, "speaker_confidence": 0.38671875, "start": 100.784996, "word": "copilot" }, { "confidence": 0.94140625, "end": 101.34499, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.38671875, "start": 101.185, "word": "has" }, { "confidence": 1, "end": 101.585, "punctuated_word": "already", "speaker": 0, "speaker_confidence": 0.38671875, "start": 101.34499, "word": "already" }, { "confidence": 1, "end": 101.744995, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.38671875, "start": 101.585, "word": "been" }, { "confidence": 0.99902344, "end": 102.064995, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 0.38671875, "start": 101.744995, "word": "very" }, { "confidence": 0.98291016, "end": 102.545, "punctuated_word": "successful,", "speaker": 0, "speaker_confidence": 0.38671875, "start": 102.064995, "word": "successful" }, { "confidence": 1, "end": 102.704994, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.53808594, "start": 102.545, "word": "but" }, { "confidence": 1, "end": 102.945, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.53808594, "start": 102.704994, "word": "it's" }, { "confidence": 1, "end": 103.104996, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.53808594, "start": 102.945, "word": "just" }, { "confidence": 0.99902344, "end": 103.265, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.53808594, "start": 103.104996, "word": "the" }, { "confidence": 1, "end": 103.66499, "punctuated_word": "beginning", "speaker": 0, "speaker_confidence": 0.53808594, "start": 103.265, "word": "beginning" }, { "confidence": 1, "end": 103.825, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.53808594, "start": 103.66499, "word": "of" }, { "confidence": 1, "end": 103.98499, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.53808594, "start": 103.825, "word": "this" }, { "confidence": 1, "end": 104.30499, "punctuated_word": "brave", "speaker": 0, "speaker_confidence": 0.53808594, "start": 103.98499, "word": "brave" }, { "confidence": 0.9951172, "end": 104.465, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.53808594, "start": 104.30499, "word": "new" }, { "confidence": 0.9995117, "end": 104.865, "punctuated_word": "world.", "speaker": 0, "speaker_confidence": 0.53808594, "start": 104.465, "word": "world" }, { "confidence": 0.99902344, "end": 105.104996, "punctuated_word": "For", "speaker": 0, "speaker_confidence": 0.53808594, "start": 104.865, "word": "for" }, { "confidence": 0.97802734, "end": 105.265, "punctuated_word": "front", "speaker": 0, "speaker_confidence": 0.53808594, "start": 105.104996, "word": "front" }, { "confidence": 0.9326172, "end": 105.424995, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.53808594, "start": 105.265, "word": "end" }, { "confidence": 0.9980469, "end": 105.924995, "punctuated_word": "development,", "speaker": 0, "speaker_confidence": 0.53808594, "start": 105.424995, "word": "development" }, { "confidence": 0.99902344, "end": 106.090004, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.53808594, "start": 106.01, "word": "i" }, { "confidence": 1, "end": 106.25, "punctuated_word": "would", "speaker": 0, "speaker_confidence": 0.53808594, "start": 106.090004, "word": "would" }, { "confidence": 1, "end": 106.41, "punctuated_word": "expect", "speaker": 0, "speaker_confidence": 0.53808594, "start": 106.25, "word": "expect" }, { "confidence": 0.9980469, "end": 106.65, "punctuated_word": "these", "speaker": 0, "speaker_confidence": 0.53808594, "start": 106.41, "word": "these" }, { "confidence": 0.99902344, "end": 106.89, "punctuated_word": "tools", "speaker": 0, "speaker_confidence": 0.53808594, "start": 106.65, "word": "tools" }, { "confidence": 0.99902344, "end": 106.97, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.19873047, "start": 106.89, "word": "to" }, { "confidence": 0.9980469, "end": 107.21, "punctuated_word": "look", "speaker": 0, "speaker_confidence": 0.19873047, "start": 106.97, "word": "look" }, { "confidence": 0.90722656, "end": 107.37, "punctuated_word": "kind", "speaker": 0, "speaker_confidence": 0.19873047, "start": 107.21, "word": "kind" }, { "confidence": 1, "end": 107.45, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.19873047, "start": 107.37, "word": "of" }, { "confidence": 0.9980469, "end": 107.61, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.19873047, "start": 107.45, "word": "like" }, { "confidence": 0.9166667, "end": 108.11, "punctuated_word": "Figma,", "speaker": 0, "speaker_confidence": 0.19873047, "start": 107.61, "word": "figma" }, { "confidence": 0.984375, "end": 108.33, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.77197266, "start": 108.17, "word": "but" }, { "confidence": 0.9980469, "end": 108.57, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.77197266, "start": 108.33, "word": "with" }, { "confidence": 1, "end": 108.89, "punctuated_word": "extra", "speaker": 0, "speaker_confidence": 0.77197266, "start": 108.57, "word": "extra" }, { "confidence": 1, "end": 109.29, "punctuated_word": "controls", "speaker": 0, "speaker_confidence": 0.77197266, "start": 108.89, "word": "controls" }, { "confidence": 0.9980469, "end": 109.45, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.77197266, "start": 109.29, "word": "to" }, { "confidence": 1, "end": 109.61, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.77197266, "start": 109.45, "word": "make" }, { "confidence": 1, "end": 110.11, "punctuated_word": "everything", "speaker": 0, "speaker_confidence": 0.77197266, "start": 109.61, "word": "everything" }, { "confidence": 0.9951172, "end": 110.67, "punctuated_word": "interconnected", "speaker": 0, "speaker_confidence": 0.77197266, "start": 110.17, "word": "interconnected" }, { "confidence": 0.9980469, "end": 111.05, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.77197266, "start": 110.81, "word": "and" }, { "confidence": 1, "end": 111.55, "punctuated_word": "interactive", "speaker": 0, "speaker_confidence": 0.77197266, "start": 111.05, "word": "interactive" }, { "confidence": 0.9873047, "end": 111.93, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.77197266, "start": 111.77, "word": "to" }, { "confidence": 1, "end": 112.09, "punctuated_word": "work", "speaker": 0, "speaker_confidence": 0.77197266, "start": 111.93, "word": "work" }, { "confidence": 1, "end": 112.33, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.77197266, "start": 112.09, "word": "on" }, { "confidence": 0.9980469, "end": 112.57, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 0.77197266, "start": 112.33, "word": "any" }, { "confidence": 0.99609375, "end": 112.81, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.77197266, "start": 112.57, "word": "app" }, { "confidence": 0.9995117, "end": 113.29, "punctuated_word": "platform.", "speaker": 0, "speaker_confidence": 0.77197266, "start": 112.81, "word": "platform" }, { "confidence": 0.9980469, "end": 113.45, "punctuated_word": "On", "speaker": 0, "speaker_confidence": 0.77197266, "start": 113.29, "word": "on" }, { "confidence": 1, "end": 113.61, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.77197266, "start": 113.45, "word": "the" }, { "confidence": 0.9140625, "end": 113.77, "punctuated_word": "back", "speaker": 0, "speaker_confidence": 0.77197266, "start": 113.61, "word": "back" }, { "confidence": 0.9980469, "end": 114.01, "punctuated_word": "end,", "speaker": 0, "speaker_confidence": 0.77197266, "start": 113.77, "word": "end" }, { "confidence": 1, "end": 114.17, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.77197266, "start": 114.01, "word": "we" }, { "confidence": 1, "end": 114.33, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 0.77197266, "start": 114.17, "word": "might" }, { "confidence": 0.99902344, "end": 114.49, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.77197266, "start": 114.33, "word": "have" }, { "confidence": 1, "end": 114.73, "punctuated_word": "something", "speaker": 0, "speaker_confidence": 0.77197266, "start": 114.49, "word": "something" }, { "confidence": 0.99902344, "end": 114.89, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.77197266, "start": 114.73, "word": "that" }, { "confidence": 0.9980469, "end": 115.13, "punctuated_word": "looks", "speaker": 0, "speaker_confidence": 0.77197266, "start": 114.89, "word": "looks" }, { "confidence": 0.9716797, "end": 115.375, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.77197266, "start": 115.13, "word": "like" }, { "confidence": 0.9111328, "end": 115.615, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.77197266, "start": 115.455, "word": "a" }, { "confidence": 1, "end": 115.855, "punctuated_word": "diagram", "speaker": 0, "speaker_confidence": 0.77197266, "start": 115.615, "word": "diagram" }, { "confidence": 0.99609375, "end": 116.255, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.77197266, "start": 115.855, "word": "or" }, { "confidence": 0.89746094, "end": 116.755, "punctuated_word": "flowchart", "speaker": 0, "speaker_confidence": 0.77197266, "start": 116.255, "word": "flowchart" }, { "confidence": 0.86572266, "end": 117.055, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.77197266, "start": 116.815, "word": "that" }, { "confidence": 0.8310547, "end": 117.555, "punctuated_word": "describes", "speaker": 0, "speaker_confidence": 0.77197266, "start": 117.055, "word": "describes" }, { "confidence": 1, "end": 117.695, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.77197266, "start": 117.615, "word": "a" }, { "confidence": 1, "end": 117.935, "punctuated_word": "bunch", "speaker": 0, "speaker_confidence": 0.77197266, "start": 117.695, "word": "bunch" }, { "confidence": 0.9980469, "end": 118.095, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.77197266, "start": 117.935, "word": "of" }, { "confidence": 0.9970703, "end": 118.495, "punctuated_word": "API", "speaker": 0, "speaker_confidence": 0.77197266, "start": 118.095, "word": "api" }, { "confidence": 0.88183594, "end": 118.975, "punctuated_word": "endpoints", "speaker": 0, "speaker_confidence": 0.77197266, "start": 118.495, "word": "endpoints" }, { "confidence": 0.9941406, "end": 119.215, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.77197266, "start": 118.975, "word": "or" }, { "confidence": 0.96516925, "end": 119.715, "punctuated_word": "microservices.", "speaker": 0, "speaker_confidence": 0.77197266, "start": 119.215, "word": "microservices" }, { "confidence": 1, "end": 120.495, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.77197266, "start": 120.255, "word": "now" }, { "confidence": 0.97265625, "end": 120.655, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.77197266, "start": 120.495, "word": "all" }, { "confidence": 0.9667969, "end": 120.735, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.77197266, "start": 120.655, "word": "of" }, { "confidence": 0.95703125, "end": 120.895, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.81152344, "start": 120.735, "word": "this" }, { "confidence": 0.99902344, "end": 121.055, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.81152344, "start": 120.895, "word": "will" }, { "confidence": 0.99902344, "end": 121.215, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.81152344, "start": 121.055, "word": "be" }, { "confidence": 1, "end": 121.695, "punctuated_word": "integrated", "speaker": 0, "speaker_confidence": 0.81152344, "start": 121.215, "word": "integrated" }, { "confidence": 0.9980469, "end": 121.935, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.81152344, "start": 121.695, "word": "into" }, { "confidence": 0.99902344, "end": 122.095, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.81152344, "start": 121.935, "word": "a" }, { "confidence": 0.9970703, "end": 122.415, "punctuated_word": "single", "speaker": 0, "speaker_confidence": 0.81152344, "start": 122.095, "word": "single" }, { "confidence": 0.87402344, "end": 122.915, "punctuated_word": "environment,", "speaker": 0, "speaker_confidence": 0.81152344, "start": 122.415, "word": "environment" }, { "confidence": 0.9838867, "end": 123.44, "punctuated_word": "allowing", "speaker": 0, "speaker_confidence": 0.81152344, "start": 123.12, "word": "allowing" }, { "confidence": 0.9980469, "end": 123.68, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.81152344, "start": 123.44, "word": "the" }, { "confidence": 0.9921875, "end": 123.92, "punctuated_word": "AI", "speaker": 0, "speaker_confidence": 0.81152344, "start": 123.68, "word": "ai" }, { "confidence": 1, "end": 124.08, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.81152344, "start": 123.92, "word": "to" }, { "confidence": 0.99609375, "end": 124.4, "punctuated_word": "infer", "speaker": 0, "speaker_confidence": 0.81152344, "start": 124.08, "word": "infer" }, { "confidence": 0.9980469, "end": 124.56, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.81152344, "start": 124.4, "word": "the" }, { "confidence": 0.9951172, "end": 124.96, "punctuated_word": "database", "speaker": 0, "speaker_confidence": 0.81152344, "start": 124.56, "word": "database" }, { "confidence": 0.99609375, "end": 125.28, "punctuated_word": "models", "speaker": 0, "speaker_confidence": 0.81152344, "start": 124.96, "word": "models" }, { "confidence": 0.99902344, "end": 125.52, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.81152344, "start": 125.28, "word": "and" }, { "confidence": 1, "end": 126.02, "punctuated_word": "resources", "speaker": 0, "speaker_confidence": 0.81152344, "start": 125.52, "word": "resources" }, { "confidence": 1, "end": 126.479996, "punctuated_word": "needed", "speaker": 0, "speaker_confidence": 0.81152344, "start": 126.159996, "word": "needed" }, { "confidence": 1, "end": 126.72, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.81152344, "start": 126.479996, "word": "to" }, { "confidence": 1, "end": 127.119995, "punctuated_word": "execute", "speaker": 0, "speaker_confidence": 0.81152344, "start": 126.72, "word": "execute" }, { "confidence": 0.9980469, "end": 127.28, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.81152344, "start": 127.119995, "word": "the" }, { "confidence": 0.7062988, "end": 127.78, "punctuated_word": "project,", "speaker": 0, "speaker_confidence": 0.81152344, "start": 127.28, "word": "project" }, { "confidence": 0.99902344, "end": 128.08, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.81152344, "start": 127.84, "word": "and" }, { "confidence": 0.99902344, "end": 128.24, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.81152344, "start": 128.08, "word": "not" }, { "confidence": 1, "end": 128.48, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.81152344, "start": 128.24, "word": "just" }, { "confidence": 1, "end": 128.64, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.81152344, "start": 128.48, "word": "make" }, { "confidence": 1, "end": 128.72, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.60009766, "start": 128.64, "word": "it" }, { "confidence": 0.8840332, "end": 129.2, "punctuated_word": "work,", "speaker": 0, "speaker_confidence": 0.60009766, "start": 128.72, "word": "work" }, { "confidence": 1, "end": 129.36, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.60009766, "start": 129.2, "word": "but" }, { "confidence": 0.9970703, "end": 129.84, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.60009766, "start": 129.36, "word": "also" }, { "confidence": 0.9951172, "end": 130.24, "punctuated_word": "optimize", "speaker": 0, "speaker_confidence": 0.60009766, "start": 129.84, "word": "optimize" }, { "confidence": 0.9760742, "end": 130.425, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.60009766, "start": 130.24, "word": "it" }, { "confidence": 0.9716797, "end": 130.74501, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.60009766, "start": 130.505, "word": "in" }, { "confidence": 1, "end": 130.905, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 0.60009766, "start": 130.74501, "word": "every" }, { "confidence": 1, "end": 131.065, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 0.60009766, "start": 130.905, "word": "way" }, { "confidence": 0.9970703, "end": 131.565, "punctuated_word": "imaginable.", "speaker": 0, "speaker_confidence": 0.60009766, "start": 131.065, "word": "imaginable" }, { "confidence": 0.9980469, "end": 132.02501, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.60009766, "start": 131.785, "word": "in" }, { "confidence": 1, "end": 132.105, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.60009766, "start": 132.02501, "word": "a" }, { "confidence": 0.99902344, "end": 132.265, "punctuated_word": "matter", "speaker": 0, "speaker_confidence": 0.66845703, "start": 132.105, "word": "matter" }, { "confidence": 1, "end": 132.425, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.66845703, "start": 132.265, "word": "of" }, { "confidence": 0.99853516, "end": 132.74501, "punctuated_word": "seconds,", "speaker": 0, "speaker_confidence": 0.66845703, "start": 132.425, "word": "seconds" }, { "confidence": 0.99902344, "end": 132.905, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.66845703, "start": 132.74501, "word": "it" }, { "confidence": 0.87890625, "end": 133.065, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.66845703, "start": 132.905, "word": "could" }, { "confidence": 1, "end": 133.38501, "punctuated_word": "generate", "speaker": 0, "speaker_confidence": 0.66845703, "start": 133.065, "word": "generate" }, { "confidence": 0.99609375, "end": 133.545, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.66845703, "start": 133.38501, "word": "the" }, { "confidence": 1, "end": 133.945, "punctuated_word": "project", "speaker": 0, "speaker_confidence": 0.66845703, "start": 133.545, "word": "project" }, { "confidence": 1, "end": 134.185, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.66845703, "start": 133.945, "word": "in" }, { "confidence": 1, "end": 134.505, "punctuated_word": "multiple", "speaker": 0, "speaker_confidence": 0.66845703, "start": 134.185, "word": "multiple" }, { "confidence": 1, "end": 134.905, "punctuated_word": "different", "speaker": 0, "speaker_confidence": 0.66845703, "start": 134.505, "word": "different" }, { "confidence": 1, "end": 135.30501, "punctuated_word": "languages", "speaker": 0, "speaker_confidence": 0.66845703, "start": 134.905, "word": "languages" }, { "confidence": 0.94140625, "end": 135.545, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.66845703, "start": 135.30501, "word": "with" }, { "confidence": 1, "end": 135.865, "punctuated_word": "multiple", "speaker": 0, "speaker_confidence": 0.66845703, "start": 135.545, "word": "multiple" }, { "confidence": 0.99902344, "end": 136.185, "punctuated_word": "different", "speaker": 0, "speaker_confidence": 0.66845703, "start": 135.865, "word": "different" }, { "confidence": 1, "end": 136.685, "punctuated_word": "frameworks", "speaker": 0, "speaker_confidence": 0.66845703, "start": 136.185, "word": "frameworks" }, { "confidence": 0.9970703, "end": 136.985, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6069336, "start": 136.825, "word": "to" }, { "confidence": 1, "end": 137.30501, "punctuated_word": "figure", "speaker": 0, "speaker_confidence": 0.6069336, "start": 136.985, "word": "figure" }, { "confidence": 1, "end": 137.465, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.6069336, "start": 137.30501, "word": "out" }, { "confidence": 1, "end": 137.705, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.6069336, "start": 137.465, "word": "which" }, { "confidence": 0.9873047, "end": 137.945, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.6069336, "start": 137.705, "word": "one" }, { "confidence": 1, "end": 138.345, "punctuated_word": "performs", "speaker": 0, "speaker_confidence": 0.6069336, "start": 137.945, "word": "performs" }, { "confidence": 0.99902344, "end": 138.505, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6069336, "start": 138.345, "word": "the" }, { "confidence": 0.9995117, "end": 138.985, "punctuated_word": "best.", "speaker": 0, "speaker_confidence": 0.6069336, "start": 138.505, "word": "best" }, { "confidence": 0.9482422, "end": 139.225, "punctuated_word": "Actually,", "speaker": 0, "speaker_confidence": 0.6069336, "start": 138.985, "word": "actually" }, { "confidence": 0.91503906, "end": 139.69, "punctuated_word": "no.", "speaker": 0, "speaker_confidence": 0.6069336, "start": 139.225, "word": "no" }, { "confidence": 0.67089844, "end": 140.09, "punctuated_word": "It.", "speaker": 0, "speaker_confidence": 0.6069336, "start": 139.69, "word": "it" }, { "confidence": 0.9970703, "end": 140.17, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.6069336, "start": 140.09, "word": "it" }, { "confidence": 0.94140625, "end": 140.25, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.6069336, "start": 140.17, "word": "could" }, { "confidence": 1, "end": 140.41, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.7026367, "start": 140.25, "word": "create" }, { "confidence": 0.9838867, "end": 140.65001, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.7026367, "start": 140.41, "word": "its" }, { "confidence": 1, "end": 140.81, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 0.7026367, "start": 140.65001, "word": "own" }, { "confidence": 0.99902344, "end": 141.13, "punctuated_word": "brand", "speaker": 0, "speaker_confidence": 0.7026367, "start": 140.81, "word": "brand" }, { "confidence": 0.9970703, "end": 141.29001, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.7026367, "start": 141.13, "word": "new" }, { "confidence": 0.8286133, "end": 141.69, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.7026367, "start": 141.29001, "word": "javascript" }, { "confidence": 0.9921875, "end": 142.09, "punctuated_word": "framework", "speaker": 0, "speaker_confidence": 0.7026367, "start": 141.69, "word": "framework" }, { "confidence": 0.99902344, "end": 142.33, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7026367, "start": 142.09, "word": "that" }, { "confidence": 1, "end": 142.49, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7026367, "start": 142.33, "word": "is" }, { "confidence": 1, "end": 142.99, "punctuated_word": "perfectly", "speaker": 0, "speaker_confidence": 0.7026367, "start": 142.49, "word": "perfectly" }, { "confidence": 1, "end": 143.53, "punctuated_word": "optimized", "speaker": 0, "speaker_confidence": 0.7026367, "start": 143.05, "word": "optimized" }, { "confidence": 1, "end": 143.69, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.7026367, "start": 143.53, "word": "for" }, { "confidence": 1, "end": 143.93001, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.7026367, "start": 143.69, "word": "your" }, { "confidence": 0.99853516, "end": 144.43001, "punctuated_word": "requirements.", "speaker": 0, "speaker_confidence": 0.7026367, "start": 143.93001, "word": "requirements" }, { "confidence": 0.9470215, "end": 144.97, "punctuated_word": "Actually,", "speaker": 0, "speaker_confidence": 0.7026367, "start": 144.65001, "word": "actually" }, { "confidence": 0.9880371, "end": 145.29001, "punctuated_word": "no.", "speaker": 0, "speaker_confidence": 0.7026367, "start": 144.97, "word": "no" }, { "confidence": 1, "end": 145.45, "punctuated_word": "Why", "speaker": 0, "speaker_confidence": 0.7026367, "start": 145.29001, "word": "why" }, { "confidence": 1, "end": 145.61, "punctuated_word": "would", "speaker": 0, "speaker_confidence": 0.7026367, "start": 145.45, "word": "would" }, { "confidence": 1, "end": 145.69, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.7026367, "start": 145.61, "word": "we" }, { "confidence": 1, "end": 145.93001, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 0.7026367, "start": 145.69, "word": "even" }, { "confidence": 1, "end": 146.17, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.7026367, "start": 145.93001, "word": "need" }, { "confidence": 0.97802734, "end": 146.65001, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.7026367, "start": 146.17, "word": "javascript" }, { "confidence": 0.99902344, "end": 146.81, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.7026367, "start": 146.65001, "word": "at" }, { "confidence": 1, "end": 146.89, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7026367, "start": 146.81, "word": "that" }, { "confidence": 0.99560547, "end": 147.185, "punctuated_word": "point?", "speaker": 0, "speaker_confidence": 0.7026367, "start": 146.89, "word": "point" }, { "confidence": 0.9716797, "end": 147.665, "punctuated_word": "Programming", "speaker": 0, "speaker_confidence": 0.75927734, "start": 147.265, "word": "programming" }, { "confidence": 0.99121094, "end": 148.145, "punctuated_word": "languages", "speaker": 0, "speaker_confidence": 0.75927734, "start": 147.665, "word": "languages" }, { "confidence": 0.99902344, "end": 148.385, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.75927734, "start": 148.145, "word": "are" }, { "confidence": 0.99902344, "end": 148.625, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.75927734, "start": 148.385, "word": "just" }, { "confidence": 0.99902344, "end": 148.785, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.75927734, "start": 148.625, "word": "for" }, { "confidence": 0.99902344, "end": 149.025, "punctuated_word": "dumb", "speaker": 0, "speaker_confidence": 0.75927734, "start": 148.785, "word": "dumb" }, { "confidence": 0.9970703, "end": 149.505, "punctuated_word": "monkeys.", "speaker": 0, "speaker_confidence": 0.75927734, "start": 149.025, "word": "monkeys" }, { "confidence": 0.9873047, "end": 149.825, "punctuated_word": "AI", "speaker": 0, "speaker_confidence": 0.75927734, "start": 149.505, "word": "ai" }, { "confidence": 1, "end": 149.905, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.75927734, "start": 149.825, "word": "will" }, { "confidence": 0.99902344, "end": 150.065, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.75927734, "start": 149.905, "word": "be" }, { "confidence": 1, "end": 150.22499, "punctuated_word": "able", "speaker": 0, "speaker_confidence": 0.75927734, "start": 150.065, "word": "able" }, { "confidence": 0.9980469, "end": 150.305, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.75927734, "start": 150.22499, "word": "to" }, { "confidence": 1, "end": 150.465, "punctuated_word": "write", "speaker": 0, "speaker_confidence": 0.75927734, "start": 150.305, "word": "write" }, { "confidence": 0.99902344, "end": 150.625, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.75927734, "start": 150.465, "word": "a" }, { "confidence": 0.99316406, "end": 150.94499, "punctuated_word": "raw", "speaker": 0, "speaker_confidence": 0.75927734, "start": 150.625, "word": "raw" }, { "confidence": 1, "end": 151.44499, "punctuated_word": "executable", "speaker": 0, "speaker_confidence": 0.75927734, "start": 150.94499, "word": "executable" }, { "confidence": 0.9980469, "end": 151.825, "punctuated_word": "straight", "speaker": 0, "speaker_confidence": 0.75927734, "start": 151.58499, "word": "straight" }, { "confidence": 1, "end": 151.985, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.75927734, "start": 151.825, "word": "from" }, { "confidence": 0.99121094, "end": 152.305, "punctuated_word": "machine", "speaker": 0, "speaker_confidence": 0.75927734, "start": 151.985, "word": "machine" }, { "confidence": 0.9941406, "end": 152.625, "punctuated_word": "code.", "speaker": 0, "speaker_confidence": 0.75927734, "start": 152.305, "word": "code" }, { "confidence": 0.9970703, "end": 152.785, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.75927734, "start": 152.625, "word": "it" }, { "confidence": 1, "end": 152.86499, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.75927734, "start": 152.785, "word": "can" }, { "confidence": 1, "end": 153.025, "punctuated_word": "come", "speaker": 0, "speaker_confidence": 0.75927734, "start": 152.86499, "word": "come" }, { "confidence": 0.99902344, "end": 153.105, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.75927734, "start": 153.025, "word": "up" }, { "confidence": 0.99902344, "end": 153.265, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.4091797, "start": 153.105, "word": "with" }, { "confidence": 0.98095703, "end": 153.345, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.4091797, "start": 153.265, "word": "its" }, { "confidence": 0.9970703, "end": 153.58499, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 0.4091797, "start": 153.345, "word": "own" }, { "confidence": 0.99609375, "end": 154.065, "punctuated_word": "perfectly", "speaker": 0, "speaker_confidence": 0.4091797, "start": 153.58499, "word": "perfectly" }, { "confidence": 0.9873047, "end": 154.565, "punctuated_word": "optimized", "speaker": 0, "speaker_confidence": 0.4091797, "start": 154.065, "word": "optimized" }, { "confidence": 0.6147461, "end": 155.07999, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8803711, "start": 155, "word": "on" }, { "confidence": 0.99902344, "end": 155.15999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8803711, "start": 155.07999, "word": "the" }, { "confidence": 0.8215332, "end": 155.65999, "punctuated_word": "fly,", "speaker": 0, "speaker_confidence": 0.8803711, "start": 155.15999, "word": "fly" }, { "confidence": 0.9819336, "end": 156.04, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.8803711, "start": 155.79999, "word": "then" }, { "confidence": 0.9941406, "end": 156.28, "punctuated_word": "write", "speaker": 0, "speaker_confidence": 0.8803711, "start": 156.04, "word": "write" }, { "confidence": 0.99609375, "end": 156.78, "punctuated_word": "comprehensive", "speaker": 0, "speaker_confidence": 0.8803711, "start": 156.28, "word": "comprehensive" }, { "confidence": 0.99902344, "end": 157.42, "punctuated_word": "documentation", "speaker": 0, "speaker_confidence": 0.8803711, "start": 156.92, "word": "documentation" }, { "confidence": 0.99902344, "end": 157.71999, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.8803711, "start": 157.48, "word": "about" }, { "confidence": 0.9970703, "end": 157.95999, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8803711, "start": 157.71999, "word": "it" }, { "confidence": 0.9980469, "end": 158.12, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8803711, "start": 157.95999, "word": "in" }, { "confidence": 1, "end": 158.43999, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 0.8803711, "start": 158.12, "word": "any" }, { "confidence": 1, "end": 158.92, "punctuated_word": "language.", "speaker": 0, "speaker_confidence": 0.8803711, "start": 158.43999, "word": "language" }, { "confidence": 0.9951172, "end": 159.31999, "punctuated_word": "Ultimately,", "speaker": 0, "speaker_confidence": 0.8803711, "start": 158.92, "word": "ultimately" }, { "confidence": 0.9951172, "end": 159.56, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.8803711, "start": 159.31999, "word": "what" }, { "confidence": 0.9970703, "end": 159.64, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.8803711, "start": 159.56, "word": "i" }, { "confidence": 0.99902344, "end": 159.79999, "punctuated_word": "think", "speaker": 0, "speaker_confidence": 0.8803711, "start": 159.64, "word": "think" }, { "confidence": 0.99609375, "end": 159.95999, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.8803711, "start": 159.79999, "word": "this" }, { "confidence": 0.99902344, "end": 160.12, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 0.8803711, "start": 159.95999, "word": "might" }, { "confidence": 0.9980469, "end": 160.35999, "punctuated_word": "lead", "speaker": 0, "speaker_confidence": 0.8803711, "start": 160.12, "word": "lead" }, { "confidence": 0.99121094, "end": 160.68, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8803711, "start": 160.35999, "word": "to" }, { "confidence": 0.9741211, "end": 160.84, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8803711, "start": 160.68, "word": "is" }, { "confidence": 0.99609375, "end": 161.07999, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8803711, "start": 160.84, "word": "a" }, { "confidence": 0.99609375, "end": 161.57999, "punctuated_word": "universal", "speaker": 0, "speaker_confidence": 0.8803711, "start": 161.07999, "word": "universal" }, { "confidence": 0.91845703, "end": 162.04, "punctuated_word": "AI", "speaker": 0, "speaker_confidence": 0.8803711, "start": 161.79999, "word": "ai" }, { "confidence": 0.99121094, "end": 162.43999, "punctuated_word": "driven", "speaker": 0, "speaker_confidence": 0.8803711, "start": 162.04, "word": "driven" }, { "confidence": 0.99121094, "end": 162.92, "punctuated_word": "programming", "speaker": 0, "speaker_confidence": 0.8803711, "start": 162.43999, "word": "programming" }, { "confidence": 0.79589844, "end": 163.225, "punctuated_word": "language.", "speaker": 0, "speaker_confidence": 0.8803711, "start": 162.92, "word": "language" }, { "confidence": 0.99902344, "end": 163.625, "punctuated_word": "A", "speaker": 0, "speaker_confidence": 0.8803711, "start": 163.46501, "word": "a" }, { "confidence": 0.99902344, "end": 163.945, "punctuated_word": "single", "speaker": 0, "speaker_confidence": 0.8803711, "start": 163.625, "word": "single" }, { "confidence": 0.97753906, "end": 164.445, "punctuated_word": "deterministic", "speaker": 0, "speaker_confidence": 0.8803711, "start": 163.945, "word": "deterministic" }, { "confidence": 1, "end": 165.24501, "punctuated_word": "language", "speaker": 0, "speaker_confidence": 0.8803711, "start": 164.74501, "word": "language" }, { "confidence": 0.9741211, "end": 165.46501, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8803711, "start": 165.30501, "word": "that" }, { "confidence": 1, "end": 165.785, "punctuated_word": "turns", "speaker": 0, "speaker_confidence": 0.8803711, "start": 165.46501, "word": "turns" }, { "confidence": 0.9980469, "end": 166.02501, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 0.8803711, "start": 165.785, "word": "every" }, { "confidence": 1, "end": 166.425, "punctuated_word": "human", "speaker": 0, "speaker_confidence": 0.8803711, "start": 166.02501, "word": "human" }, { "confidence": 0.99609375, "end": 166.66501, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.8803711, "start": 166.425, "word": "into" }, { "confidence": 0.99609375, "end": 166.82501, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8803711, "start": 166.66501, "word": "a" }, { "confidence": 0.9941406, "end": 167.225, "punctuated_word": "coding", "speaker": 0, "speaker_confidence": 0.8803711, "start": 166.82501, "word": "coding" }, { "confidence": 0.9067383, "end": 167.705, "punctuated_word": "god.", "speaker": 0, "speaker_confidence": 0.8803711, "start": 167.225, "word": "god" }, { "confidence": 0.77978516, "end": 167.865, "punctuated_word": "By", "speaker": 0, "speaker_confidence": 0.8803711, "start": 167.705, "word": "by" }, { "confidence": 1, "end": 168.265, "punctuated_word": "simply", "speaker": 0, "speaker_confidence": 0.8803711, "start": 167.865, "word": "simply" }, { "confidence": 1, "end": 168.585, "punctuated_word": "describing", "speaker": 0, "speaker_confidence": 0.8803711, "start": 168.265, "word": "describing" }, { "confidence": 0.9980469, "end": 168.82501, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.8803711, "start": 168.585, "word": "your" }, { "confidence": 0.9995117, "end": 169.225, "punctuated_word": "vision,", "speaker": 0, "speaker_confidence": 0.8803711, "start": 168.82501, "word": "vision" }, { "confidence": 0.9970703, "end": 169.38501, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8803711, "start": 169.225, "word": "the" }, { "confidence": 0.98828125, "end": 169.705, "punctuated_word": "AI", "speaker": 0, "speaker_confidence": 0.8803711, "start": 169.38501, "word": "ai" }, { "confidence": 0.99902344, "end": 169.865, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.8803711, "start": 169.705, "word": "will" }, { "confidence": 0.99902344, "end": 170.02501, "punctuated_word": "figure", "speaker": 0, "speaker_confidence": 0.8803711, "start": 169.865, "word": "figure" }, { "confidence": 0.9970703, "end": 170.18501, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.8803711, "start": 170.02501, "word": "out" }, { "confidence": 0.99609375, "end": 170.345, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.8803711, "start": 170.18501, "word": "how" }, { "confidence": 0.99902344, "end": 170.505, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8803711, "start": 170.345, "word": "to" }, { "confidence": 0.9951172, "end": 170.82501, "punctuated_word": "arrange", "speaker": 0, "speaker_confidence": 0.8803711, "start": 170.505, "word": "arrange" }, { "confidence": 0.9892578, "end": 170.985, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8803711, "start": 170.82501, "word": "the" }, { "confidence": 0.77001953, "end": 171.225, "punctuated_word": "ones", "speaker": 0, "speaker_confidence": 0.8803711, "start": 170.985, "word": "ones" }, { "confidence": 0.9248047, "end": 171.46501, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8803711, "start": 171.225, "word": "and" }, { "confidence": 0.8417969, "end": 171.785, "punctuated_word": "zeros", "speaker": 0, "speaker_confidence": 0.8803711, "start": 171.46501, "word": "zeros" }, { "confidence": 0.99316406, "end": 171.945, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8803711, "start": 171.785, "word": "to" }, { "confidence": 0.97998047, "end": 172.10501, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.8803711, "start": 171.945, "word": "make" }, { "confidence": 0.8647461, "end": 172.18501, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8803711, "start": 172.10501, "word": "it" }, { "confidence": 0.7841797, "end": 172.46, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8803711, "start": 172.18501, "word": "a" }, { "confidence": 0.6928711, "end": 172.94, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.8803711, "start": 172.78001, "word": "in" }, { "confidence": 0.98999023, "end": 173.18001, "punctuated_word": "fact,", "speaker": 0, "speaker_confidence": 0.8803711, "start": 172.94, "word": "fact" }, { "confidence": 0.9741211, "end": 173.34001, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.8803711, "start": 173.18001, "word": "when" }, { "confidence": 0.99902344, "end": 173.42001, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.38720703, "start": 173.34001, "word": "we" }, { "confidence": 1, "end": 173.58, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.38720703, "start": 173.42001, "word": "get" }, { "confidence": 0.9941406, "end": 173.74, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.38720703, "start": 173.58, "word": "our" }, { "confidence": 0.93359375, "end": 173.98001, "punctuated_word": "neural", "speaker": 0, "speaker_confidence": 0.38720703, "start": 173.74, "word": "neural" }, { "confidence": 0.9638672, "end": 174.3, "punctuated_word": "links,", "speaker": 0, "speaker_confidence": 0.38720703, "start": 173.98001, "word": "links" }, { "confidence": 1, "end": 174.46, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.38720703, "start": 174.3, "word": "we" }, { "confidence": 0.99853516, "end": 174.62001, "punctuated_word": "won't", "speaker": 0, "speaker_confidence": 0.38720703, "start": 174.46, "word": "won't" }, { "confidence": 0.9980469, "end": 174.78001, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 0.38720703, "start": 174.62001, "word": "even" }, { "confidence": 0.99902344, "end": 174.94, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.38720703, "start": 174.78001, "word": "have" }, { "confidence": 0.99902344, "end": 175.02, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.38720703, "start": 174.94, "word": "to" }, { "confidence": 0.9980469, "end": 175.18001, "punctuated_word": "write", "speaker": 0, "speaker_confidence": 0.42089844, "start": 175.02, "word": "write" }, { "confidence": 0.99609375, "end": 175.58, "punctuated_word": "anything", "speaker": 0, "speaker_confidence": 0.42089844, "start": 175.18001, "word": "anything" }, { "confidence": 0.79467773, "end": 175.90001, "punctuated_word": "down,", "speaker": 0, "speaker_confidence": 0.42089844, "start": 175.58, "word": "down" }, { "confidence": 0.99902344, "end": 175.98001, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.42089844, "start": 175.90001, "word": "we" }, { "confidence": 0.99902344, "end": 176.14, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.42089844, "start": 175.98001, "word": "can" }, { "confidence": 1, "end": 176.3, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.42089844, "start": 176.14, "word": "just" }, { "confidence": 1, "end": 176.54001, "punctuated_word": "think", "speaker": 0, "speaker_confidence": 0.42089844, "start": 176.3, "word": "think" }, { "confidence": 0.9970703, "end": 176.70001, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.42089844, "start": 176.54001, "word": "it" }, { "confidence": 0.90771484, "end": 176.86, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.42089844, "start": 176.70001, "word": "and" }, { "confidence": 1, "end": 176.94, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.4790039, "start": 176.86, "word": "it" }, { "confidence": 1, "end": 177.18001, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.4790039, "start": 176.94, "word": "will" }, { "confidence": 0.9995117, "end": 177.66, "punctuated_word": "appear.", "speaker": 0, "speaker_confidence": 0.4790039, "start": 177.18001, "word": "appear" }, { "confidence": 0.9506836, "end": 177.90001, "punctuated_word": "Now,", "speaker": 0, "speaker_confidence": 0.4790039, "start": 177.66, "word": "now" }, { "confidence": 0.99902344, "end": 177.98001, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.4790039, "start": 177.90001, "word": "i" }, { "confidence": 0.78271484, "end": 178.3, "punctuated_word": "realize", "speaker": 0, "speaker_confidence": 0.4790039, "start": 177.98001, "word": "realize" }, { "confidence": 0.5385742, "end": 178.54001, "punctuated_word": "neural", "speaker": 0, "speaker_confidence": 0.4790039, "start": 178.3, "word": "neural" }, { "confidence": 0.96972656, "end": 178.70001, "punctuated_word": "link", "speaker": 0, "speaker_confidence": 0.4790039, "start": 178.54001, "word": "link" }, { "confidence": 0.91748047, "end": 178.78, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.4790039, "start": 178.70001, "word": "has" }, { "confidence": 1, "end": 179.02, "punctuated_word": "killed", "speaker": 0, "speaker_confidence": 0.4790039, "start": 178.78, "word": "killed" }, { "confidence": 0.984375, "end": 179.26001, "punctuated_word": "almost", "speaker": 0, "speaker_confidence": 0.4790039, "start": 179.02, "word": "almost" }, { "confidence": 0.9980469, "end": 179.42001, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.4790039, "start": 179.26001, "word": "all" }, { "confidence": 0.98828125, "end": 179.5, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.40771484, "start": 179.42001, "word": "the" }, { "confidence": 0.99902344, "end": 179.90001, "punctuated_word": "monkeys", "speaker": 0, "speaker_confidence": 0.40771484, "start": 179.5, "word": "monkeys" }, { "confidence": 0.9741211, "end": 179.98001, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.40771484, "start": 179.90001, "word": "and" }, { "confidence": 0.99121094, "end": 180.22, "punctuated_word": "pigs", "speaker": 0, "speaker_confidence": 0.40771484, "start": 179.98001, "word": "pigs" }, { "confidence": 0.9448242, "end": 180.465, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.40771484, "start": 180.22, "word": "that" }, { "confidence": 0.40771484, "end": 180.705, "punctuated_word": "tried", "speaker": 0, "speaker_confidence": 0.40771484, "start": 180.545, "word": "tried" }, { "confidence": 0.9472656, "end": 180.86499, "punctuated_word": "it,", "speaker": 0, "speaker_confidence": 0.40771484, "start": 180.705, "word": "it" }, { "confidence": 1, "end": 180.94499, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.70654297, "start": 180.86499, "word": "but" }, { "confidence": 0.99902344, "end": 181.105, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.70654297, "start": 180.94499, "word": "when" }, { "confidence": 0.9970703, "end": 181.265, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.70654297, "start": 181.105, "word": "they" }, { "confidence": 0.9980469, "end": 181.50499, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.70654297, "start": 181.265, "word": "open" }, { "confidence": 0.99609375, "end": 181.665, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.70654297, "start": 181.50499, "word": "up" }, { "confidence": 0.9970703, "end": 181.905, "punctuated_word": "human", "speaker": 0, "speaker_confidence": 0.70654297, "start": 181.665, "word": "human" }, { "confidence": 0.9970703, "end": 182.22499, "punctuated_word": "trials", "speaker": 0, "speaker_confidence": 0.70654297, "start": 181.905, "word": "trials" }, { "confidence": 0.99316406, "end": 182.305, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.70654297, "start": 182.22499, "word": "in" }, { "confidence": 0.99121094, "end": 182.545, "punctuated_word": "6", "speaker": 0, "speaker_confidence": 0.70654297, "start": 182.305, "word": "6" }, { "confidence": 0.9848633, "end": 182.94499, "punctuated_word": "months,", "speaker": 0, "speaker_confidence": 0.70654297, "start": 182.545, "word": "months" }, { "confidence": 0.99902344, "end": 183.105, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.70654297, "start": 182.94499, "word": "i'm" }, { "confidence": 0.9111328, "end": 183.345, "punctuated_word": "gonna", "speaker": 0, "speaker_confidence": 0.70654297, "start": 183.105, "word": "gonna" }, { "confidence": 0.9863281, "end": 183.425, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.70654297, "start": 183.345, "word": "be" }, { "confidence": 0.7480469, "end": 183.665, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 0.70654297, "start": 183.425, "word": "first" }, { "confidence": 0.9941406, "end": 183.745, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.70654297, "start": 183.665, "word": "in" }, { "confidence": 0.98828125, "end": 184.065, "punctuated_word": "line.", "speaker": 0, "speaker_confidence": 0.70654297, "start": 183.745, "word": "line" }, { "confidence": 0.7680664, "end": 184.385, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.70654297, "start": 184.065, "word": "this" }, { "confidence": 1, "end": 184.705, "punctuated_word": "language", "speaker": 0, "speaker_confidence": 0.70654297, "start": 184.385, "word": "language" }, { "confidence": 0.9951172, "end": 184.86499, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.70654297, "start": 184.705, "word": "will" }, { "confidence": 0.9970703, "end": 185.025, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.70654297, "start": 184.86499, "word": "be" }, { "confidence": 1, "end": 185.185, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.70654297, "start": 185.025, "word": "so" }, { "confidence": 0.9980469, "end": 185.685, "punctuated_word": "undeniably", "speaker": 0, "speaker_confidence": 0.70654297, "start": 185.185, "word": "undeniably" }, { "confidence": 1, "end": 186.22499, "punctuated_word": "powerful", "speaker": 0, "speaker_confidence": 0.70654297, "start": 185.825, "word": "powerful" }, { "confidence": 0.8183594, "end": 186.465, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.70654297, "start": 186.22499, "word": "that" }, { "confidence": 0.9970703, "end": 186.86499, "punctuated_word": "virtually", "speaker": 0, "speaker_confidence": 0.70654297, "start": 186.465, "word": "virtually" }, { "confidence": 0.9941406, "end": 187.185, "punctuated_word": "everything", "speaker": 0, "speaker_confidence": 0.70654297, "start": 186.86499, "word": "everything" }, { "confidence": 1, "end": 187.345, "punctuated_word": "else", "speaker": 0, "speaker_confidence": 0.70654297, "start": 187.185, "word": "else" }, { "confidence": 0.99902344, "end": 187.50499, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.70654297, "start": 187.345, "word": "in" }, { "confidence": 1, "end": 187.58499, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.70654297, "start": 187.50499, "word": "the" }, { "confidence": 1, "end": 187.905, "punctuated_word": "world", "speaker": 0, "speaker_confidence": 0.70654297, "start": 187.58499, "word": "world" }, { "confidence": 0.99902344, "end": 188.385, "punctuated_word": "becomes", "speaker": 0, "speaker_confidence": 0.70654297, "start": 187.905, "word": "becomes" }, { "confidence": 1, "end": 188.86499, "punctuated_word": "obsolete", "speaker": 0, "speaker_confidence": 0.70654297, "start": 188.385, "word": "obsolete" }, { "confidence": 0.9904785, "end": 189.36499, "punctuated_word": "overnight.", "speaker": 0, "speaker_confidence": 0.70654297, "start": 188.86499, "word": "overnight" }, { "confidence": 0.9941406, "end": 189.61, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.70654297, "start": 189.425, "word": "the" }, { "confidence": 0.9404297, "end": 189.85, "punctuated_word": "World", "speaker": 0, "speaker_confidence": 0.70654297, "start": 189.69, "word": "world" }, { "confidence": 0.96972656, "end": 190.01, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.70654297, "start": 189.85, "word": "will" }, { "confidence": 0.99902344, "end": 190.09, "punctuated_word": "still", "speaker": 0, "speaker_confidence": 0.5942383, "start": 190.01, "word": "still" }, { "confidence": 0.99902344, "end": 190.41, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.5942383, "start": 190.09, "word": "need" }, { "confidence": 0.98291016, "end": 190.81, "punctuated_word": "engineers", "speaker": 0, "speaker_confidence": 0.5942383, "start": 190.41, "word": "engineers" }, { "confidence": 0.99902344, "end": 190.97, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.5942383, "start": 190.81, "word": "to" }, { "confidence": 1, "end": 191.29, "punctuated_word": "solve", "speaker": 0, "speaker_confidence": 0.5942383, "start": 190.97, "word": "solve" }, { "confidence": 0.98706055, "end": 191.77, "punctuated_word": "problems,", "speaker": 0, "speaker_confidence": 0.5942383, "start": 191.29, "word": "problems" }, { "confidence": 1, "end": 192.01, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.5942383, "start": 191.77, "word": "but" }, { "confidence": 1, "end": 192.25, "punctuated_word": "writing", "speaker": 0, "speaker_confidence": 0.5942383, "start": 192.01, "word": "writing" }, { "confidence": 1, "end": 192.57, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.5942383, "start": 192.25, "word": "code" }, { "confidence": 1, "end": 192.65, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.5942383, "start": 192.57, "word": "will" }, { "confidence": 1, "end": 192.81, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.72802734, "start": 192.65, "word": "not" }, { "confidence": 1, "end": 192.97, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.72802734, "start": 192.81, "word": "be" }, { "confidence": 0.9980469, "end": 193.09, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.72802734, "start": 192.97, "word": "one" }, { "confidence": 0.99902344, "end": 193.21, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.72802734, "start": 193.09, "word": "of" }, { "confidence": 1, "end": 193.45, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 0.72802734, "start": 193.21, "word": "their" }, { "confidence": 0.9995117, "end": 193.95, "punctuated_word": "responsibilities.", "speaker": 0, "speaker_confidence": 0.72802734, "start": 193.45, "word": "responsibilities" }, { "confidence": 0.9482422, "end": 194.49, "punctuated_word": "It'll", "speaker": 0, "speaker_confidence": 0.72802734, "start": 194.33, "word": "it'll" }, { "confidence": 0.9980469, "end": 194.81, "punctuated_word": "become", "speaker": 0, "speaker_confidence": 0.72802734, "start": 194.49, "word": "become" }, { "confidence": 0.9980469, "end": 195.05, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.72802734, "start": 194.81, "word": "an" }, { "confidence": 0.99902344, "end": 195.53, "punctuated_word": "esoteric", "speaker": 0, "speaker_confidence": 0.72802734, "start": 195.05, "word": "esoteric" }, { "confidence": 0.9980469, "end": 195.77, "punctuated_word": "skill", "speaker": 0, "speaker_confidence": 0.72802734, "start": 195.53, "word": "skill" }, { "confidence": 0.98535156, "end": 196.01, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.72802734, "start": 195.77, "word": "that" }, { "confidence": 1, "end": 196.25, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.72802734, "start": 196.01, "word": "only" }, { "confidence": 0.99658203, "end": 196.65, "punctuated_word": "weirdos", "speaker": 0, "speaker_confidence": 0.72802734, "start": 196.25, "word": "weirdos" }, { "confidence": 0.99902344, "end": 196.81, "punctuated_word": "take", "speaker": 0, "speaker_confidence": 0.72802734, "start": 196.65, "word": "take" }, { "confidence": 0.9941406, "end": 196.89, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.72802734, "start": 196.81, "word": "the" }, { "confidence": 1, "end": 197.13, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.72802734, "start": 196.89, "word": "time" }, { "confidence": 0.99902344, "end": 197.21, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.72802734, "start": 197.13, "word": "to" }, { "confidence": 0.85375977, "end": 197.53, "punctuated_word": "learn,", "speaker": 0, "speaker_confidence": 0.72802734, "start": 197.21, "word": "learn" }, { "confidence": 0.9863281, "end": 197.77, "punctuated_word": "kind", "speaker": 0, "speaker_confidence": 0.72802734, "start": 197.53, "word": "kind" }, { "confidence": 1, "end": 197.85, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.72802734, "start": 197.77, "word": "of" }, { "confidence": 0.98828125, "end": 198.17, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.72802734, "start": 197.85, "word": "like" }, { "confidence": 0.9790039, "end": 198.65, "punctuated_word": "celestial", "speaker": 0, "speaker_confidence": 0.72802734, "start": 198.17, "word": "celestial" }, { "confidence": 0.99853516, "end": 199.15, "punctuated_word": "navigation.", "speaker": 0, "speaker_confidence": 0.72802734, "start": 198.65, "word": "navigation" }, { "confidence": 0.8125, "end": 199.45, "punctuated_word": "I,", "speaker": 0, "speaker_confidence": 0.33398438, "start": 199.37, "word": "i" }, { "confidence": 0.8173828, "end": 199.595, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.33398438, "start": 199.45, "word": "for" }, { "confidence": 0.41455078, "end": 199.755, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.33398438, "start": 199.675, "word": "for" }, { "confidence": 0.5810547, "end": 199.91501, "punctuated_word": "1,", "speaker": 0, "speaker_confidence": 0.33398438, "start": 199.755, "word": "1" }, { "confidence": 0.8959961, "end": 200.075, "punctuated_word": "think", "speaker": 0, "speaker_confidence": 0.33398438, "start": 199.91501, "word": "think" }, { "confidence": 0.97998047, "end": 200.315, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.33398438, "start": 200.075, "word": "this" }, { "confidence": 0.97314453, "end": 200.475, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.33398438, "start": 200.315, "word": "is" }, { "confidence": 0.99609375, "end": 200.55501, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.6308594, "start": 200.475, "word": "an" }, { "confidence": 0.9980469, "end": 200.875, "punctuated_word": "awesome", "speaker": 0, "speaker_confidence": 0.6308594, "start": 200.55501, "word": "awesome" }, { "confidence": 0.9812012, "end": 201.355, "punctuated_word": "outcome.", "speaker": 0, "speaker_confidence": 0.6308594, "start": 200.875, "word": "outcome" }, { "confidence": 0.9951172, "end": 201.675, "punctuated_word": "Writing", "speaker": 0, "speaker_confidence": 0.6308594, "start": 201.355, "word": "writing" }, { "confidence": 0.9980469, "end": 201.91501, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.6308594, "start": 201.675, "word": "code" }, { "confidence": 1, "end": 201.995, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.6308594, "start": 201.91501, "word": "is" }, { "confidence": 0.99902344, "end": 202.235, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.6308594, "start": 201.995, "word": "just" }, { "confidence": 0.9892578, "end": 202.315, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6308594, "start": 202.235, "word": "a" }, { "confidence": 1, "end": 202.55501, "punctuated_word": "means", "speaker": 0, "speaker_confidence": 0.6308594, "start": 202.315, "word": "means" }, { "confidence": 1, "end": 202.635, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6308594, "start": 202.55501, "word": "to" }, { "confidence": 0.99316406, "end": 202.795, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.6308594, "start": 202.635, "word": "an" }, { "confidence": 0.9995117, "end": 203.035, "punctuated_word": "end.", "speaker": 0, "speaker_confidence": 0.6308594, "start": 202.795, "word": "end" }, { "confidence": 1, "end": 203.195, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.6308594, "start": 203.035, "word": "the" }, { "confidence": 1, "end": 203.435, "punctuated_word": "reason", "speaker": 0, "speaker_confidence": 0.6308594, "start": 203.195, "word": "reason" }, { "confidence": 0.9980469, "end": 203.595, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.6308594, "start": 203.435, "word": "i" }, { "confidence": 0.97265625, "end": 203.755, "punctuated_word": "learned", "speaker": 0, "speaker_confidence": 0.6308594, "start": 203.595, "word": "learned" }, { "confidence": 0.9941406, "end": 203.835, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6308594, "start": 203.755, "word": "to" }, { "confidence": 0.99609375, "end": 204.075, "punctuated_word": "write", "speaker": 0, "speaker_confidence": 0.6308594, "start": 203.835, "word": "write" }, { "confidence": 0.99902344, "end": 204.155, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.6308594, "start": 204.075, "word": "code" }, { "confidence": 0.9980469, "end": 204.315, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.6308594, "start": 204.155, "word": "in" }, { "confidence": 0.99609375, "end": 204.395, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6308594, "start": 204.315, "word": "the" }, { "confidence": 0.65234375, "end": 204.635, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 0.6308594, "start": 204.395, "word": "first" }, { "confidence": 0.99902344, "end": 204.955, "punctuated_word": "place", "speaker": 0, "speaker_confidence": 0.6308594, "start": 204.635, "word": "place" }, { "confidence": 0.97265625, "end": 205.115, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.6308594, "start": 204.955, "word": "was" }, { "confidence": 0.9980469, "end": 205.355, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.6308594, "start": 205.115, "word": "because" }, { "confidence": 0.9941406, "end": 205.435, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.6308594, "start": 205.355, "word": "i" }, { "confidence": 0.96435547, "end": 205.675, "punctuated_word": "wanted", "speaker": 0, "speaker_confidence": 0.6308594, "start": 205.435, "word": "wanted" }, { "confidence": 0.9951172, "end": 205.755, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6308594, "start": 205.675, "word": "to" }, { "confidence": 0.9873047, "end": 205.995, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.6308594, "start": 205.755, "word": "build" }, { "confidence": 0.984375, "end": 206.235, "punctuated_word": "cool", "speaker": 0, "speaker_confidence": 0.6308594, "start": 205.995, "word": "cool" }, { "confidence": 0.98706055, "end": 206.55501, "punctuated_word": "stuff.", "speaker": 0, "speaker_confidence": 0.6308594, "start": 206.235, "word": "stuff" }, { "confidence": 0.8803711, "end": 206.795, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.6308594, "start": 206.55501, "word": "if" }, { "confidence": 0.97509766, "end": 207.035, "punctuated_word": "AI", "speaker": 0, "speaker_confidence": 0.6308594, "start": 206.795, "word": "ai" }, { "confidence": 0.5371094, "end": 207.15, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.6308594, "start": 207.035, "word": "can" }, { "confidence": 0.5439453, "end": 207.31, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.6308594, "start": 207.15, "word": "can" }, { "confidence": 0.9970703, "end": 207.39, "punctuated_word": "help", "speaker": 0, "speaker_confidence": 0.6308594, "start": 207.31, "word": "help" }, { "confidence": 0.9951172, "end": 207.54999, "punctuated_word": "me", "speaker": 0, "speaker_confidence": 0.6308594, "start": 207.39, "word": "me" }, { "confidence": 1, "end": 207.79, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.6308594, "start": 207.54999, "word": "build" }, { "confidence": 0.9980469, "end": 208.03, "punctuated_word": "cool", "speaker": 0, "speaker_confidence": 0.6308594, "start": 207.79, "word": "cool" }, { "confidence": 1, "end": 208.26999, "punctuated_word": "stuff", "speaker": 0, "speaker_confidence": 0.6308594, "start": 208.03, "word": "stuff" }, { "confidence": 1, "end": 208.67, "punctuated_word": "faster", "speaker": 0, "speaker_confidence": 0.6308594, "start": 208.26999, "word": "faster" }, { "confidence": 0.9350586, "end": 208.90999, "punctuated_word": "without", "speaker": 0, "speaker_confidence": 0.6308594, "start": 208.67, "word": "without" }, { "confidence": 1, "end": 208.98999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.53125, "start": 208.90999, "word": "the" }, { "confidence": 1, "end": 209.15, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.53125, "start": 208.98999, "word": "need" }, { "confidence": 1, "end": 209.23, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.53125, "start": 209.15, "word": "to" }, { "confidence": 0.9980469, "end": 209.47, "punctuated_word": "learn", "speaker": 0, "speaker_confidence": 0.53125, "start": 209.23, "word": "learn" }, { "confidence": 0.9970703, "end": 209.54999, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.53125, "start": 209.47, "word": "a" }, { "confidence": 0.99609375, "end": 209.70999, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.53125, "start": 209.54999, "word": "new" }, { "confidence": 0.73291016, "end": 210.11, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.53125, "start": 209.70999, "word": "javascript" }, { "confidence": 0.9873047, "end": 210.51, "punctuated_word": "framework", "speaker": 0, "speaker_confidence": 0.53125, "start": 210.11, "word": "framework" }, { "confidence": 0.9980469, "end": 210.67, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 0.53125, "start": 210.51, "word": "every" }, { "confidence": 0.97436523, "end": 210.98999, "punctuated_word": "week,", "speaker": 0, "speaker_confidence": 0.53125, "start": 210.67, "word": "week" }, { "confidence": 0.9892578, "end": 211.23, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.53125, "start": 210.98999, "word": "then" }, { "confidence": 0.96533203, "end": 211.39, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.53125, "start": 211.23, "word": "i" }, { "confidence": 0.9980469, "end": 211.47, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.53125, "start": 211.39, "word": "will" }, { "confidence": 1, "end": 211.87, "punctuated_word": "gladly", "speaker": 0, "speaker_confidence": 0.53125, "start": 211.47, "word": "gladly" }, { "confidence": 0.9980469, "end": 212.11, "punctuated_word": "bend", "speaker": 0, "speaker_confidence": 0.53125, "start": 211.87, "word": "bend" }, { "confidence": 0.9980469, "end": 212.18999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.53125, "start": 212.11, "word": "the" }, { "confidence": 0.99853516, "end": 212.51, "punctuated_word": "knee.", "speaker": 0, "speaker_confidence": 0.53125, "start": 212.18999, "word": "knee" }, { "confidence": 0.9970703, "end": 212.75, "punctuated_word": "On", "speaker": 0, "speaker_confidence": 0.5239258, "start": 212.51, "word": "on" }, { "confidence": 0.9472656, "end": 212.98999, "punctuated_word": "second", "speaker": 0, "speaker_confidence": 0.5239258, "start": 212.75, "word": "second" }, { "confidence": 0.9707031, "end": 213.15, "punctuated_word": "thought", "speaker": 0, "speaker_confidence": 0.5239258, "start": 212.98999, "word": "thought" }, { "confidence": 0.90234375, "end": 213.47, "punctuated_word": "though,", "speaker": 0, "speaker_confidence": 0.5239258, "start": 213.15, "word": "though" }, { "confidence": 0.99902344, "end": 213.70999, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.5239258, "start": 213.47, "word": "it's" }, { "confidence": 1, "end": 213.95, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 0.5239258, "start": 213.70999, "word": "very" }, { "confidence": 1, "end": 214.43, "punctuated_word": "possible", "speaker": 0, "speaker_confidence": 0.5239258, "start": 213.95, "word": "possible" }, { "confidence": 1, "end": 214.67, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.5239258, "start": 214.43, "word": "that" }, { "confidence": 1, "end": 214.82999, "punctuated_word": "none", "speaker": 0, "speaker_confidence": 0.5239258, "start": 214.67, "word": "none" }, { "confidence": 1, "end": 214.90999, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.48486328, "start": 214.82999, "word": "of" }, { "confidence": 0.9970703, "end": 215.06999, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.48486328, "start": 214.90999, "word": "this" }, { "confidence": 0.99902344, "end": 215.23, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.48486328, "start": 215.06999, "word": "will" }, { "confidence": 0.9980469, "end": 215.47, "punctuated_word": "ever", "speaker": 0, "speaker_confidence": 0.48486328, "start": 215.23, "word": "ever" }, { "confidence": 0.99853516, "end": 215.87, "punctuated_word": "happen.", "speaker": 0, "speaker_confidence": 0.48486328, "start": 215.47, "word": "happen" }, { "confidence": 0.99902344, "end": 215.95, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.48486328, "start": 215.87, "word": "i" }, { "confidence": 0.9995117, "end": 216.18999, "punctuated_word": "wouldn't", "speaker": 0, "speaker_confidence": 0.48486328, "start": 215.95, "word": "wouldn't" }, { "confidence": 0.99902344, "end": 216.34999, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.48486328, "start": 216.18999, "word": "be" }, { "confidence": 0.9970703, "end": 216.775, "punctuated_word": "surprised", "speaker": 0, "speaker_confidence": 0.48486328, "start": 216.34999, "word": "surprised" }, { "confidence": 0.6894531, "end": 216.855, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.55322266, "start": 216.775, "word": "at" }, { "confidence": 0.98828125, "end": 217.015, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.55322266, "start": 216.855, "word": "all" }, { "confidence": 0.8183594, "end": 217.17499, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.55322266, "start": 217.015, "word": "if" }, { "confidence": 0.99853516, "end": 217.25499, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.55322266, "start": 217.17499, "word": "we're" }, { "confidence": 0.99902344, "end": 217.575, "punctuated_word": "still", "speaker": 0, "speaker_confidence": 0.55322266, "start": 217.25499, "word": "still" }, { "confidence": 0.99902344, "end": 217.97499, "punctuated_word": "writing", "speaker": 0, "speaker_confidence": 0.55322266, "start": 217.575, "word": "writing" }, { "confidence": 0.9370117, "end": 218.45499, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.55322266, "start": 217.97499, "word": "javascript" }, { "confidence": 0.9560547, "end": 218.61499, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.55322266, "start": 218.45499, "word": "and" }, { "confidence": 0.8388672, "end": 218.855, "punctuated_word": "C", "speaker": 0, "speaker_confidence": 0.55322266, "start": 218.61499, "word": "c" }, { "confidence": 0.7734375, "end": 219.095, "punctuated_word": "plus", "speaker": 0, "speaker_confidence": 0.55322266, "start": 218.855, "word": "plus" }, { "confidence": 0.97998047, "end": 219.33499, "punctuated_word": "plus", "speaker": 0, "speaker_confidence": 0.55322266, "start": 219.095, "word": "plus" }, { "confidence": 0.97998047, "end": 219.655, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.55322266, "start": 219.33499, "word": "code" }, { "confidence": 0.9506836, "end": 219.97499, "punctuated_word": "50", "speaker": 0, "speaker_confidence": 0.55322266, "start": 219.655, "word": "50" }, { "confidence": 0.99902344, "end": 220.215, "punctuated_word": "years", "speaker": 0, "speaker_confidence": 0.55322266, "start": 219.97499, "word": "years" }, { "confidence": 0.99902344, "end": 220.375, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.14160156, "start": 220.215, "word": "from" }, { "confidence": 0.9941406, "end": 220.69499, "punctuated_word": "now.", "speaker": 0, "speaker_confidence": 0.14160156, "start": 220.375, "word": "now" }, { "confidence": 0.8798828, "end": 220.855, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.14160156, "start": 220.69499, "word": "this" }, { "confidence": 0.9970703, "end": 221.015, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.14160156, "start": 220.855, "word": "has" }, { "confidence": 1, "end": 221.095, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.14160156, "start": 221.015, "word": "been" }, { "confidence": 0.84716797, "end": 221.25499, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.39160156, "start": 221.095, "word": "the" }, { "confidence": 0.6538086, "end": 221.415, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.39160156, "start": 221.25499, "word": "code" }, { "confidence": 0.75805664, "end": 221.89499, "punctuated_word": "report,", "speaker": 0, "speaker_confidence": 0.39160156, "start": 221.415, "word": "report" }, { "confidence": 0.9980469, "end": 222.135, "punctuated_word": "thanks", "speaker": 0, "speaker_confidence": 0.39160156, "start": 221.89499, "word": "thanks" }, { "confidence": 0.99902344, "end": 222.375, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.39160156, "start": 222.135, "word": "for" }, { "confidence": 0.8269043, "end": 222.775, "punctuated_word": "watching,", "speaker": 0, "speaker_confidence": 0.39160156, "start": 222.375, "word": "watching" }, { "confidence": 1, "end": 222.935, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.39160156, "start": 222.775, "word": "and" }, { "confidence": 0.99902344, "end": 223.095, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.39160156, "start": 222.935, "word": "i" }, { "confidence": 0.99902344, "end": 223.25499, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.39160156, "start": 223.095, "word": "will" }, { "confidence": 0.99902344, "end": 223.415, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.39160156, "start": 223.25499, "word": "see" }, { "confidence": 1, "end": 223.655, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.39160156, "start": 223.415, "word": "you" }, { "confidence": 0.99902344, "end": 223.81499, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.39160156, "start": 223.655, "word": "in" }, { "confidence": 1, "end": 223.97499, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.39160156, "start": 223.81499, "word": "the" }, { "confidence": 1, "end": 224.215, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.39160156, "start": 223.97499, "word": "next" }, { "confidence": 0.9909668, "end": 224.715, "punctuated_word": "one.", "speaker": 0, "speaker_confidence": 0.39160156, "start": 224.215, "word": "one" } ] } ], "detected_language": "", "language_confidence": 0, "search": null } ], "summary": { "result": "success", "short": "Speaker 0 discusses the upcoming development cycle for artificial intelligence, which will replace programmers and allow for more efficient development. Speaker 1 predicts that AI will be a universal programming language, with a single deterministic language that will automatically make code into a maturation-ready chip. Speaker 2 warns that AI will become an \" esoteric skill\" that will make developers feel like they are just doing it, and that writing code will become an \" esoteric skill\" that will make developers feel like they are just doing it." }, "utterances": null } }
downloads\What_will_AI_Programming_look_like_in_5_Years.wav
https://www.youtube.com/watch?v=eaedq1Jl2fc
What will AI Programming look like in 5 Years?
585,873
Fireship
151
The Remix React framework is joining forces with Shopify where it will be integrated into its Hydrogen framework. Interestingly, this is a change in direction away from React Server Components (RSC), which were recently adopted by Next.js. #javascript #programming #TheCodeReport 💬 Chat with Me on Discord https://discord.gg/fireship 🔗 Resources Remix announcement https://remix.run/blog/remixing-shopify Shopify breakdown https://shopify.engineering/remix-joins-shopify Next.js 13 https://youtu.be/_w0Ikk4JY7U 🔥 Get More Content - Upgrade to PRO Upgrade at https://fireship.io/pro Use code YT25 for 25% off PRO access 🎨 My Editor Settings - Atom One Dark - vscode-icons - Fira Code Font 🔖 Topics Covered - What is React Remix - Why did Shopify acquire remix? - What is Shopify hydrogen? - Next.js alternatives - React.js news
{ "metadata": { "channels": 1, "created": "2024-02-04T05:17:48.289Z", "duration": 150.6975, "model_info": { "30089e05-99d1-4376-b32e-c263170674af": { "arch": "nova-2", "name": "2-general-nova", "version": "2024-01-09.29447" } }, "models": [ "30089e05-99d1-4376-b32e-c263170674af" ], "request_id": "10349cf7-cb58-4165-8835-a5171bdb9276", "sha256": "e8f3442c17cabe7499b16cdfb737c81620ec925981cf4b8aeca71dafafd2a357", "summary_info": { "input_tokens": 646, "model_uuid": "67875a7f-c9c4-48a0-aa55-5bdb8a91c34a", "output_tokens": 107 }, "transaction_key": "deprecated", "warnings": null }, "results": { "channels": [ { "alternatives": [ { "confidence": 0.9980469, "entities": null, "paragraphs": { "paragraphs": [ { "end": 23.259998, "num_words": 70, "sentences": [ { "end": 5.04, "start": 1.36, "text": "It is Halloween 2022, and you're watching the code report." }, { "end": 9.745, "start": 5.04, "text": "The number one goal of every JavaScript framework developer is to make the world a better place." }, { "end": 11.985001, "start": 9.745, "text": "The second goal is to make tons of money." }, { "end": 18.08, "start": 11.985001, "text": "Unfortunately, this almost never happens, except today, Remix, the React framework, was acquired by Shopify." }, { "end": 23.259998, "start": 18.14, "text": "For those that don't know, Remix is a framework similar to Next JS from the team behind React Router." } ], "speaker": 0, "start": 1.36 }, { "end": 50.47, "num_words": 100, "sentences": [ { "end": 26.064999, "start": 23.259998, "text": "While it only has a small fraction of the actual adoption of Next." }, { "end": 28.965, "start": 26.064999, "text": "Js, it's been highly influential in the React ecosystem." }, { "end": 38.92, "start": 29.105, "text": "Like, many of the features announced in Next 13 last week appear to be inspired by features in Remix like nested layouts, although one could argue that these features have been around forever in PHP frameworks and elsewhere." }, { "end": 44.185, "start": 38.98, "text": "What's interesting though is that less than a year ago, Shopify came out with its own React framework called Hydrogen." }, { "end": 50.47, "start": 44.325, "text": "Like Next 13, Hydrogen uses React server components, which is the React team's official solution for a server side rendering." } ], "speaker": 0, "start": 23.259998 }, { "end": 91.745, "num_words": 148, "sentences": [ { "end": 60.875, "start": 50.47, "text": "Remix, on the other hand, takes an entirely different approach that doesn't rely on React server component now that Shopify is taking over stewardship of Remix, it creates this weird schism around server side rendering in React." }, { "end": 64.09, "start": 60.875, "text": "Like, do React server components totally suck for are they the future?" }, { "end": 79.175, "start": 64.15, "text": "Shopify said, quote, while we're excited for the future of RSC long term, as a critical dependency, it presented a number of challenges that became performance risks for our developers and bottlenecks for our progress, and they also talk about how they want a clear separation between client and server code." }, { "end": 84.73, "start": 79.175, "text": "That makes total sense for Shopify, which has built itself with Ruby on Rails, which has a strong separation of concerns." }, { "end": 91.745, "start": 84.79, "text": "It looks like their plan is to replace server components with Remix over the coming months, but Remix will still remain its own independent open source project." } ], "speaker": 0, "start": 50.47 }, { "end": 129.745, "num_words": 143, "sentences": [ { "end": 94.705, "start": 91.745, "text": "If you're a Remix user, I think this is definitely a good thing." }, { "end": 100.95, "start": 94.705, "text": "Shopify, although its stock is down 75% the last year, is a freight company that will battle test this framework on their platform." }, { "end": 106.07, "start": 101.09, "text": "React server components though are being battle tested by Facebook whose stock is also down about 70%." }, { "end": 118.05, "start": 106.369995, "text": "The reason the stock price is important in for this context is because restricted stock units are a big part of compensation at both Meta and Shopify, and that just feels kind of demoralizing for for the people who are employed to work on these frameworks full time." }, { "end": 129.745, "start": 118.05, "text": "On top of that, it seems like in 2022, people are becoming a lot more open minded about alternative frameworks, like Svelte, and quick looking dank AF right now, but only time will tell if they can become goaded with the sauce." } ], "speaker": 0, "start": 91.745 }, { "end": 149.565, "num_words": 77, "sentences": [ { "end": 135.48999, "start": 129.805, "text": "In fact, I chose Svelte over React to rebuild the Fireship Pro website recently, and I have absolutely no regrets." }, { "end": 139.65, "start": 135.48999, "text": "The website is smaller, faster, and most importantly, it was just way more fun to build." }, { "end": 145.625, "start": 139.65, "text": "In any case, React is not going anywhere anytime soon, and this is just the latest chapter in the great JavaScript framework war." }, { "end": 146.825, "start": 145.625, "text": "This has been the code report." }, { "end": 149.565, "start": 146.825, "text": "Thanks for watching, and I will see you in the next one." } ], "speaker": 0, "start": 129.805 } ], "transcript": "\nSpeaker 0: It is Halloween 2022, and you're watching the code report. The number one goal of every JavaScript framework developer is to make the world a better place. The second goal is to make tons of money. Unfortunately, this almost never happens, except today, Remix, the React framework, was acquired by Shopify. For those that don't know, Remix is a framework similar to Next JS from the team behind React Router.\n\nWhile it only has a small fraction of the actual adoption of Next. Js, it's been highly influential in the React ecosystem. Like, many of the features announced in Next 13 last week appear to be inspired by features in Remix like nested layouts, although one could argue that these features have been around forever in PHP frameworks and elsewhere. What's interesting though is that less than a year ago, Shopify came out with its own React framework called Hydrogen. Like Next 13, Hydrogen uses React server components, which is the React team's official solution for a server side rendering.\n\nRemix, on the other hand, takes an entirely different approach that doesn't rely on React server component now that Shopify is taking over stewardship of Remix, it creates this weird schism around server side rendering in React. Like, do React server components totally suck for are they the future? Shopify said, quote, while we're excited for the future of RSC long term, as a critical dependency, it presented a number of challenges that became performance risks for our developers and bottlenecks for our progress, and they also talk about how they want a clear separation between client and server code. That makes total sense for Shopify, which has built itself with Ruby on Rails, which has a strong separation of concerns. It looks like their plan is to replace server components with Remix over the coming months, but Remix will still remain its own independent open source project.\n\nIf you're a Remix user, I think this is definitely a good thing. Shopify, although its stock is down 75% the last year, is a freight company that will battle test this framework on their platform. React server components though are being battle tested by Facebook whose stock is also down about 70%. The reason the stock price is important in for this context is because restricted stock units are a big part of compensation at both Meta and Shopify, and that just feels kind of demoralizing for for the people who are employed to work on these frameworks full time. On top of that, it seems like in 2022, people are becoming a lot more open minded about alternative frameworks, like Svelte, and quick looking dank AF right now, but only time will tell if they can become goaded with the sauce.\n\nIn fact, I chose Svelte over React to rebuild the Fireship Pro website recently, and I have absolutely no regrets. The website is smaller, faster, and most importantly, it was just way more fun to build. In any case, React is not going anywhere anytime soon, and this is just the latest chapter in the great JavaScript framework war. This has been the code report. Thanks for watching, and I will see you in the next one." }, "summaries": null, "topics": [ { "end_word": 207, "start_word": 0, "text": "It is Halloween 2022, and you're watching the code report. The number one goal of every JavaScript framework developer is to make the world a better place. The second goal is to make tons of money. Unfortunately, this almost never happens, except today, Remix, the React framework, was acquired by Shopify. For those that don't know, Remix is a framework similar to Next JS from the team behind React Router. While it only has a small fraction of the actual adoption of Next. Js, it's been highly influential in the React ecosystem. Like, many of the features announced in Next 13 last week appear to be inspired by features in Remix like nested layouts, although one could argue that these features have been around forever in PHP frameworks and elsewhere. What's interesting though is that less than a year ago, Shopify came out with its own React framework called Hydrogen. Like Next 13, Hydrogen uses React server components, which is the React team's official solution for a server side rendering. Remix, on the other hand, takes an entirely different approach that doesn't rely on React server component now that Shopify is taking over stewardship of Remix, it creates this weird schism around server side rendering in React.", "topics": [] }, { "end_word": 270, "start_word": 207, "text": "Like, do React server components totally suck for are they the future? Shopify said, quote, while we're excited for the future of RSC long term, as a critical dependency, it presented a number of challenges that became performance risks for our developers and bottlenecks for our progress, and they also talk about how they want a clear separation between client and server code.", "topics": [ { "confidence": 0.005708865, "topic": "software development" } ] }, { "end_word": 538, "start_word": 270, "text": "That makes total sense for Shopify, which has built itself with Ruby on Rails, which has a strong separation of concerns. It looks like their plan is to replace server components with Remix over the coming months, but Remix will still remain its own independent open source project. If you're a Remix user, I think this is definitely a good thing. Shopify, although its stock is down 75% the last year, is a freight company that will battle test this framework on their platform. React server components though are being battle tested by Facebook whose stock is also down about 70%. The reason the stock price is important in for this context is because restricted stock units are a big part of compensation at both Meta and Shopify, and that just feels kind of demoralizing for for the people who are employed to work on these frameworks full time. On top of that, it seems like in 2022, people are becoming a lot more open minded about alternative frameworks, like Svelte, and quick looking dank AF right now, but only time will tell if they can become goaded with the sauce. In fact, I chose Svelte over React to rebuild the Fireship Pro website recently, and I have absolutely no regrets. The website is smaller, faster, and most importantly, it was just way more fun to build. In any case, React is not going anywhere anytime soon, and this is just the latest chapter in the great JavaScript framework war. This has been the code report. Thanks for watching, and I will see you in the next one.", "topics": [] } ], "transcript": "It is Halloween 2022, and you're watching the code report. The number one goal of every JavaScript framework developer is to make the world a better place. The second goal is to make tons of money. Unfortunately, this almost never happens, except today, Remix, the React framework, was acquired by Shopify. For those that don't know, Remix is a framework similar to Next JS from the team behind React Router. While it only has a small fraction of the actual adoption of Next. Js, it's been highly influential in the React ecosystem. Like, many of the features announced in Next 13 last week appear to be inspired by features in Remix like nested layouts, although one could argue that these features have been around forever in PHP frameworks and elsewhere. What's interesting though is that less than a year ago, Shopify came out with its own React framework called Hydrogen. Like Next 13, Hydrogen uses React server components, which is the React team's official solution for a server side rendering. Remix, on the other hand, takes an entirely different approach that doesn't rely on React server component now that Shopify is taking over stewardship of Remix, it creates this weird schism around server side rendering in React. Like, do React server components totally suck for are they the future? Shopify said, quote, while we're excited for the future of RSC long term, as a critical dependency, it presented a number of challenges that became performance risks for our developers and bottlenecks for our progress, and they also talk about how they want a clear separation between client and server code. That makes total sense for Shopify, which has built itself with Ruby on Rails, which has a strong separation of concerns. It looks like their plan is to replace server components with Remix over the coming months, but Remix will still remain its own independent open source project. If you're a Remix user, I think this is definitely a good thing. Shopify, although its stock is down 75% the last year, is a freight company that will battle test this framework on their platform. React server components though are being battle tested by Facebook whose stock is also down about 70%. The reason the stock price is important in for this context is because restricted stock units are a big part of compensation at both Meta and Shopify, and that just feels kind of demoralizing for for the people who are employed to work on these frameworks full time. On top of that, it seems like in 2022, people are becoming a lot more open minded about alternative frameworks, like Svelte, and quick looking dank AF right now, but only time will tell if they can become goaded with the sauce. In fact, I chose Svelte over React to rebuild the Fireship Pro website recently, and I have absolutely no regrets. The website is smaller, faster, and most importantly, it was just way more fun to build. In any case, React is not going anywhere anytime soon, and this is just the latest chapter in the great JavaScript framework war. This has been the code report. Thanks for watching, and I will see you in the next one.", "translations": null, "words": [ { "confidence": 0.97265625, "end": 1.5999999, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.48339844, "start": 1.36, "word": "it" }, { "confidence": 0.9941406, "end": 1.8399999, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.48339844, "start": 1.5999999, "word": "is" }, { "confidence": 0.9873047, "end": 2.34, "punctuated_word": "Halloween", "speaker": 0, "speaker_confidence": 0.48339844, "start": 1.8399999, "word": "halloween" }, { "confidence": 0.7800293, "end": 2.98, "punctuated_word": "2022,", "speaker": 0, "speaker_confidence": 0.48339844, "start": 2.48, "word": "2022" }, { "confidence": 0.9941406, "end": 3.52, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.48339844, "start": 3.28, "word": "and" }, { "confidence": 0.92163086, "end": 3.84, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.48339844, "start": 3.52, "word": "you're" }, { "confidence": 0.99902344, "end": 4.24, "punctuated_word": "watching", "speaker": 0, "speaker_confidence": 0.48339844, "start": 3.84, "word": "watching" }, { "confidence": 0.50878906, "end": 4.3199997, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.48339844, "start": 4.24, "word": "the" }, { "confidence": 0.6933594, "end": 4.56, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.48339844, "start": 4.3199997, "word": "code" }, { "confidence": 0.9946289, "end": 5.04, "punctuated_word": "report.", "speaker": 0, "speaker_confidence": 0.48339844, "start": 4.56, "word": "report" }, { "confidence": 0.96533203, "end": 5.2, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.5605469, "start": 5.04, "word": "the" }, { "confidence": 0.9941406, "end": 5.52, "punctuated_word": "number", "speaker": 0, "speaker_confidence": 0.5605469, "start": 5.2, "word": "number" }, { "confidence": 0.81591797, "end": 5.68, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.5605469, "start": 5.52, "word": "one" }, { "confidence": 0.9921875, "end": 5.92, "punctuated_word": "goal", "speaker": 0, "speaker_confidence": 0.5605469, "start": 5.68, "word": "goal" }, { "confidence": 0.9838867, "end": 6.16, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.5605469, "start": 5.92, "word": "of" }, { "confidence": 0.98828125, "end": 6.3999996, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 0.5605469, "start": 6.16, "word": "every" }, { "confidence": 0.8989258, "end": 6.8999996, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.5605469, "start": 6.3999996, "word": "javascript" }, { "confidence": 0.9506836, "end": 7.425, "punctuated_word": "framework", "speaker": 0, "speaker_confidence": 0.5605469, "start": 7.185, "word": "framework" }, { "confidence": 0.9980469, "end": 7.925, "punctuated_word": "developer", "speaker": 0, "speaker_confidence": 0.5605469, "start": 7.425, "word": "developer" }, { "confidence": 0.99609375, "end": 8.225, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.5605469, "start": 7.985, "word": "is" }, { "confidence": 1, "end": 8.385, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.5605469, "start": 8.225, "word": "to" }, { "confidence": 1, "end": 8.625, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.5605469, "start": 8.385, "word": "make" }, { "confidence": 1, "end": 8.705, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.875, "start": 8.625, "word": "the" }, { "confidence": 1, "end": 8.945, "punctuated_word": "world", "speaker": 0, "speaker_confidence": 0.875, "start": 8.705, "word": "world" }, { "confidence": 0.99902344, "end": 9.025, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.875, "start": 8.945, "word": "a" }, { "confidence": 1, "end": 9.264999, "punctuated_word": "better", "speaker": 0, "speaker_confidence": 0.875, "start": 9.025, "word": "better" }, { "confidence": 0.9980469, "end": 9.745, "punctuated_word": "place.", "speaker": 0, "speaker_confidence": 0.875, "start": 9.264999, "word": "place" }, { "confidence": 1, "end": 9.905, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.875, "start": 9.745, "word": "the" }, { "confidence": 0.9160156, "end": 10.225, "punctuated_word": "second", "speaker": 0, "speaker_confidence": 0.875, "start": 9.905, "word": "second" }, { "confidence": 1, "end": 10.545, "punctuated_word": "goal", "speaker": 0, "speaker_confidence": 0.875, "start": 10.225, "word": "goal" }, { "confidence": 1, "end": 10.785, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.875, "start": 10.545, "word": "is" }, { "confidence": 1, "end": 10.945, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.875, "start": 10.785, "word": "to" }, { "confidence": 1, "end": 11.184999, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.875, "start": 10.945, "word": "make" }, { "confidence": 1, "end": 11.344999, "punctuated_word": "tons", "speaker": 0, "speaker_confidence": 0.875, "start": 11.184999, "word": "tons" }, { "confidence": 1, "end": 11.585, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.875, "start": 11.344999, "word": "of" }, { "confidence": 0.9995117, "end": 11.985001, "punctuated_word": "money.", "speaker": 0, "speaker_confidence": 0.875, "start": 11.585, "word": "money" }, { "confidence": 1, "end": 12.485001, "punctuated_word": "Unfortunately,", "speaker": 0, "speaker_confidence": 0.875, "start": 11.985001, "word": "unfortunately" }, { "confidence": 1, "end": 12.865, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.875, "start": 12.705, "word": "this" }, { "confidence": 1, "end": 13.264999, "punctuated_word": "almost", "speaker": 0, "speaker_confidence": 0.875, "start": 12.865, "word": "almost" }, { "confidence": 1, "end": 13.504999, "punctuated_word": "never", "speaker": 0, "speaker_confidence": 0.875, "start": 13.264999, "word": "never" }, { "confidence": 0.7409668, "end": 14.004999, "punctuated_word": "happens,", "speaker": 0, "speaker_confidence": 0.875, "start": 13.504999, "word": "happens" }, { "confidence": 0.99902344, "end": 14.465, "punctuated_word": "except", "speaker": 0, "speaker_confidence": 0.875, "start": 14.065001, "word": "except" }, { "confidence": 0.91137695, "end": 14.865, "punctuated_word": "today,", "speaker": 0, "speaker_confidence": 0.875, "start": 14.465, "word": "today" }, { "confidence": 0.96069336, "end": 15.365, "punctuated_word": "Remix,", "speaker": 0, "speaker_confidence": 0.875, "start": 14.865, "word": "remix" }, { "confidence": 0.99121094, "end": 15.584999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.875, "start": 15.424999, "word": "the" }, { "confidence": 0.94921875, "end": 15.905001, "punctuated_word": "React", "speaker": 0, "speaker_confidence": 0.875, "start": 15.584999, "word": "react" }, { "confidence": 0.8510742, "end": 16.405, "punctuated_word": "framework,", "speaker": 0, "speaker_confidence": 0.875, "start": 15.905001, "word": "framework" }, { "confidence": 0.9165039, "end": 16.859999, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.875, "start": 16.619999, "word": "was" }, { "confidence": 1, "end": 17.259998, "punctuated_word": "acquired", "speaker": 0, "speaker_confidence": 0.875, "start": 16.859999, "word": "acquired" }, { "confidence": 1, "end": 17.58, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.875, "start": 17.259998, "word": "by" }, { "confidence": 0.99641925, "end": 18.08, "punctuated_word": "Shopify.", "speaker": 0, "speaker_confidence": 0.875, "start": 17.58, "word": "shopify" }, { "confidence": 1, "end": 18.38, "punctuated_word": "For", "speaker": 0, "speaker_confidence": 0.875, "start": 18.14, "word": "for" }, { "confidence": 1, "end": 18.539999, "punctuated_word": "those", "speaker": 0, "speaker_confidence": 0.875, "start": 18.38, "word": "those" }, { "confidence": 0.9980469, "end": 18.699999, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.875, "start": 18.539999, "word": "that" }, { "confidence": 1, "end": 18.859999, "punctuated_word": "don't", "speaker": 0, "speaker_confidence": 0.875, "start": 18.699999, "word": "don't" }, { "confidence": 0.99853516, "end": 19.259998, "punctuated_word": "know,", "speaker": 0, "speaker_confidence": 0.875, "start": 18.859999, "word": "know" }, { "confidence": 0.9394531, "end": 19.579998, "punctuated_word": "Remix", "speaker": 0, "speaker_confidence": 0.875, "start": 19.259998, "word": "remix" }, { "confidence": 0.99316406, "end": 19.74, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.875, "start": 19.579998, "word": "is" }, { "confidence": 0.99902344, "end": 19.9, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.875, "start": 19.74, "word": "a" }, { "confidence": 0.9980469, "end": 20.3, "punctuated_word": "framework", "speaker": 0, "speaker_confidence": 0.875, "start": 19.9, "word": "framework" }, { "confidence": 0.99902344, "end": 20.619999, "punctuated_word": "similar", "speaker": 0, "speaker_confidence": 0.875, "start": 20.3, "word": "similar" }, { "confidence": 1, "end": 20.779999, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.875, "start": 20.619999, "word": "to" }, { "confidence": 0.96435547, "end": 21.099998, "punctuated_word": "Next", "speaker": 0, "speaker_confidence": 0.875, "start": 20.779999, "word": "next" }, { "confidence": 0.5097656, "end": 21.419998, "punctuated_word": "JS", "speaker": 0, "speaker_confidence": 0.875, "start": 21.099998, "word": "js" }, { "confidence": 0.98535156, "end": 21.739998, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.875, "start": 21.419998, "word": "from" }, { "confidence": 1, "end": 21.82, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.875, "start": 21.739998, "word": "the" }, { "confidence": 1, "end": 22.14, "punctuated_word": "team", "speaker": 0, "speaker_confidence": 0.875, "start": 21.82, "word": "team" }, { "confidence": 1, "end": 22.46, "punctuated_word": "behind", "speaker": 0, "speaker_confidence": 0.875, "start": 22.14, "word": "behind" }, { "confidence": 0.9790039, "end": 22.859999, "punctuated_word": "React", "speaker": 0, "speaker_confidence": 0.875, "start": 22.46, "word": "react" }, { "confidence": 0.7961426, "end": 23.259998, "punctuated_word": "Router.", "speaker": 0, "speaker_confidence": 0.875, "start": 22.859999, "word": "router" }, { "confidence": 0.99902344, "end": 23.419998, "punctuated_word": "While", "speaker": 0, "speaker_confidence": 0.875, "start": 23.259998, "word": "while" }, { "confidence": 0.99902344, "end": 23.579998, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.875, "start": 23.419998, "word": "it" }, { "confidence": 1, "end": 23.739998, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.875, "start": 23.579998, "word": "only" }, { "confidence": 1, "end": 23.9, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.875, "start": 23.739998, "word": "has" }, { "confidence": 1, "end": 23.98, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.69970703, "start": 23.9, "word": "a" }, { "confidence": 1, "end": 24.3, "punctuated_word": "small", "speaker": 0, "speaker_confidence": 0.69970703, "start": 23.98, "word": "small" }, { "confidence": 1, "end": 24.619999, "punctuated_word": "fraction", "speaker": 0, "speaker_confidence": 0.69970703, "start": 24.3, "word": "fraction" }, { "confidence": 0.9980469, "end": 24.699999, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.69970703, "start": 24.619999, "word": "of" }, { "confidence": 0.9980469, "end": 24.859999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.69970703, "start": 24.699999, "word": "the" }, { "confidence": 0.9873047, "end": 25.185, "punctuated_word": "actual", "speaker": 0, "speaker_confidence": 0.69970703, "start": 24.859999, "word": "actual" }, { "confidence": 0.6064453, "end": 25.465, "punctuated_word": "adoption", "speaker": 0, "speaker_confidence": 0.69970703, "start": 25.265, "word": "adoption" }, { "confidence": 0.99902344, "end": 25.664999, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.69970703, "start": 25.465, "word": "of" }, { "confidence": 0.85913086, "end": 26.064999, "punctuated_word": "Next.", "speaker": 0, "speaker_confidence": 0.69970703, "start": 25.664999, "word": "next" }, { "confidence": 0.9680176, "end": 26.545, "punctuated_word": "Js,", "speaker": 0, "speaker_confidence": 0.69970703, "start": 26.064999, "word": "js" }, { "confidence": 0.99658203, "end": 26.785, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.69970703, "start": 26.545, "word": "it's" }, { "confidence": 1, "end": 26.945, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.69970703, "start": 26.785, "word": "been" }, { "confidence": 1, "end": 27.265, "punctuated_word": "highly", "speaker": 0, "speaker_confidence": 0.69970703, "start": 26.945, "word": "highly" }, { "confidence": 0.99902344, "end": 27.765, "punctuated_word": "influential", "speaker": 0, "speaker_confidence": 0.69970703, "start": 27.265, "word": "influential" }, { "confidence": 1, "end": 27.984999, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.69970703, "start": 27.824999, "word": "in" }, { "confidence": 0.9980469, "end": 28.064999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.88916016, "start": 27.984999, "word": "the" }, { "confidence": 0.96240234, "end": 28.465, "punctuated_word": "React", "speaker": 0, "speaker_confidence": 0.88916016, "start": 28.064999, "word": "react" }, { "confidence": 0.75756836, "end": 28.965, "punctuated_word": "ecosystem.", "speaker": 0, "speaker_confidence": 0.88916016, "start": 28.465, "word": "ecosystem" }, { "confidence": 0.77612305, "end": 29.345, "punctuated_word": "Like,", "speaker": 0, "speaker_confidence": 0.88916016, "start": 29.105, "word": "like" }, { "confidence": 1, "end": 29.505, "punctuated_word": "many", "speaker": 0, "speaker_confidence": 0.88916016, "start": 29.345, "word": "many" }, { "confidence": 0.9980469, "end": 29.664999, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.88916016, "start": 29.505, "word": "of" }, { "confidence": 0.99609375, "end": 29.744999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.88916016, "start": 29.664999, "word": "the" }, { "confidence": 1, "end": 30.064999, "punctuated_word": "features", "speaker": 0, "speaker_confidence": 0.88916016, "start": 29.744999, "word": "features" }, { "confidence": 0.9980469, "end": 30.384998, "punctuated_word": "announced", "speaker": 0, "speaker_confidence": 0.88916016, "start": 30.064999, "word": "announced" }, { "confidence": 0.9819336, "end": 30.544998, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.88916016, "start": 30.384998, "word": "in" }, { "confidence": 0.9140625, "end": 30.785, "punctuated_word": "Next", "speaker": 0, "speaker_confidence": 0.88916016, "start": 30.544998, "word": "next" }, { "confidence": 0.93115234, "end": 31.185, "punctuated_word": "13", "speaker": 0, "speaker_confidence": 0.88916016, "start": 30.785, "word": "13" }, { "confidence": 0.98095703, "end": 31.425, "punctuated_word": "last", "speaker": 0, "speaker_confidence": 0.88916016, "start": 31.185, "word": "last" }, { "confidence": 1, "end": 31.744999, "punctuated_word": "week", "speaker": 0, "speaker_confidence": 0.88916016, "start": 31.425, "word": "week" }, { "confidence": 0.7583008, "end": 31.984999, "punctuated_word": "appear", "speaker": 0, "speaker_confidence": 0.88916016, "start": 31.744999, "word": "appear" }, { "confidence": 0.9941406, "end": 32.065, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.88916016, "start": 31.984999, "word": "to" }, { "confidence": 0.97314453, "end": 32.26, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.88916016, "start": 32.065, "word": "be" }, { "confidence": 0.99316406, "end": 32.66, "punctuated_word": "inspired", "speaker": 0, "speaker_confidence": 0.88916016, "start": 32.34, "word": "inspired" }, { "confidence": 1, "end": 32.739998, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.88916016, "start": 32.66, "word": "by" }, { "confidence": 0.9980469, "end": 33.059998, "punctuated_word": "features", "speaker": 0, "speaker_confidence": 0.88916016, "start": 32.739998, "word": "features" }, { "confidence": 0.9301758, "end": 33.219997, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.88916016, "start": 33.059998, "word": "in" }, { "confidence": 0.94189453, "end": 33.62, "punctuated_word": "Remix", "speaker": 0, "speaker_confidence": 0.88916016, "start": 33.219997, "word": "remix" }, { "confidence": 0.6870117, "end": 33.94, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.88916016, "start": 33.62, "word": "like" }, { "confidence": 0.98535156, "end": 34.26, "punctuated_word": "nested", "speaker": 0, "speaker_confidence": 0.88916016, "start": 33.94, "word": "nested" }, { "confidence": 0.7907715, "end": 34.739998, "punctuated_word": "layouts,", "speaker": 0, "speaker_confidence": 0.88916016, "start": 34.26, "word": "layouts" }, { "confidence": 0.9970703, "end": 34.98, "punctuated_word": "although", "speaker": 0, "speaker_confidence": 0.88916016, "start": 34.739998, "word": "although" }, { "confidence": 0.93115234, "end": 35.14, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.88916016, "start": 34.98, "word": "one" }, { "confidence": 0.9760742, "end": 35.3, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.88916016, "start": 35.14, "word": "could" }, { "confidence": 1, "end": 35.539997, "punctuated_word": "argue", "speaker": 0, "speaker_confidence": 0.88916016, "start": 35.3, "word": "argue" }, { "confidence": 0.9980469, "end": 35.699997, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.88916016, "start": 35.539997, "word": "that" }, { "confidence": 1, "end": 35.94, "punctuated_word": "these", "speaker": 0, "speaker_confidence": 0.88916016, "start": 35.699997, "word": "these" }, { "confidence": 0.99902344, "end": 36.179996, "punctuated_word": "features", "speaker": 0, "speaker_confidence": 0.88916016, "start": 35.94, "word": "features" }, { "confidence": 0.99121094, "end": 36.339996, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.88916016, "start": 36.179996, "word": "have" }, { "confidence": 0.99902344, "end": 36.42, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.88916016, "start": 36.339996, "word": "been" }, { "confidence": 0.9970703, "end": 36.66, "punctuated_word": "around", "speaker": 0, "speaker_confidence": 0.88916016, "start": 36.42, "word": "around" }, { "confidence": 0.99902344, "end": 37.059998, "punctuated_word": "forever", "speaker": 0, "speaker_confidence": 0.88916016, "start": 36.66, "word": "forever" }, { "confidence": 0.97802734, "end": 37.3, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.88916016, "start": 37.059998, "word": "in" }, { "confidence": 0.984375, "end": 37.699997, "punctuated_word": "PHP", "speaker": 0, "speaker_confidence": 0.88916016, "start": 37.3, "word": "php" }, { "confidence": 0.93115234, "end": 38.199997, "punctuated_word": "frameworks", "speaker": 0, "speaker_confidence": 0.88916016, "start": 37.699997, "word": "frameworks" }, { "confidence": 0.97998047, "end": 38.42, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.88916016, "start": 38.26, "word": "and" }, { "confidence": 0.99853516, "end": 38.92, "punctuated_word": "elsewhere.", "speaker": 0, "speaker_confidence": 0.88916016, "start": 38.42, "word": "elsewhere" }, { "confidence": 0.9428711, "end": 39.365, "punctuated_word": "What's", "speaker": 0, "speaker_confidence": 0.88916016, "start": 38.98, "word": "what's" }, { "confidence": 0.31567383, "end": 39.685, "punctuated_word": "interesting", "speaker": 0, "speaker_confidence": 0.88916016, "start": 39.445004, "word": "interesting" }, { "confidence": 0.78466797, "end": 39.845, "punctuated_word": "though", "speaker": 0, "speaker_confidence": 0.88916016, "start": 39.685, "word": "though" }, { "confidence": 0.6333008, "end": 40.005, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.88916016, "start": 39.845, "word": "is" }, { "confidence": 0.99902344, "end": 40.245003, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.88916016, "start": 40.005, "word": "that" }, { "confidence": 0.96533203, "end": 40.325, "punctuated_word": "less", "speaker": 0, "speaker_confidence": 0.88916016, "start": 40.245003, "word": "less" }, { "confidence": 0.9970703, "end": 40.565002, "punctuated_word": "than", "speaker": 0, "speaker_confidence": 0.91015625, "start": 40.325, "word": "than" }, { "confidence": 0.99902344, "end": 40.645, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.91015625, "start": 40.565002, "word": "a" }, { "confidence": 1, "end": 40.805, "punctuated_word": "year", "speaker": 0, "speaker_confidence": 0.91015625, "start": 40.645, "word": "year" }, { "confidence": 0.984375, "end": 41.285, "punctuated_word": "ago,", "speaker": 0, "speaker_confidence": 0.91015625, "start": 40.805, "word": "ago" }, { "confidence": 0.9975586, "end": 41.685, "punctuated_word": "Shopify", "speaker": 0, "speaker_confidence": 0.91015625, "start": 41.285, "word": "shopify" }, { "confidence": 0.9980469, "end": 41.925003, "punctuated_word": "came", "speaker": 0, "speaker_confidence": 0.91015625, "start": 41.685, "word": "came" }, { "confidence": 0.9980469, "end": 42.005, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.91015625, "start": 41.925003, "word": "out" }, { "confidence": 0.99902344, "end": 42.245003, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.91015625, "start": 42.005, "word": "with" }, { "confidence": 0.96240234, "end": 42.405003, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.91015625, "start": 42.245003, "word": "its" }, { "confidence": 0.99902344, "end": 42.645, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 0.91015625, "start": 42.405003, "word": "own" }, { "confidence": 0.90625, "end": 43.045002, "punctuated_word": "React", "speaker": 0, "speaker_confidence": 0.91015625, "start": 42.645, "word": "react" }, { "confidence": 0.9248047, "end": 43.445, "punctuated_word": "framework", "speaker": 0, "speaker_confidence": 0.91015625, "start": 43.045002, "word": "framework" }, { "confidence": 0.9921875, "end": 43.685, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 0.91015625, "start": 43.445, "word": "called" }, { "confidence": 0.9741211, "end": 44.185, "punctuated_word": "Hydrogen.", "speaker": 0, "speaker_confidence": 0.91015625, "start": 43.685, "word": "hydrogen" }, { "confidence": 0.9970703, "end": 44.645, "punctuated_word": "Like", "speaker": 0, "speaker_confidence": 0.91015625, "start": 44.325, "word": "like" }, { "confidence": 0.61376953, "end": 44.885002, "punctuated_word": "Next", "speaker": 0, "speaker_confidence": 0.91015625, "start": 44.645, "word": "next" }, { "confidence": 0.9057617, "end": 45.385002, "punctuated_word": "13,", "speaker": 0, "speaker_confidence": 0.91015625, "start": 44.885002, "word": "13" }, { "confidence": 0.99902344, "end": 45.845, "punctuated_word": "Hydrogen", "speaker": 0, "speaker_confidence": 0.91015625, "start": 45.445, "word": "hydrogen" }, { "confidence": 0.99609375, "end": 46.165, "punctuated_word": "uses", "speaker": 0, "speaker_confidence": 0.91015625, "start": 45.845, "word": "uses" }, { "confidence": 0.97998047, "end": 46.485, "punctuated_word": "React", "speaker": 0, "speaker_confidence": 0.91015625, "start": 46.165, "word": "react" }, { "confidence": 0.65722656, "end": 46.805, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 0.91015625, "start": 46.485, "word": "server" }, { "confidence": 0.8684082, "end": 47.305, "punctuated_word": "components,", "speaker": 0, "speaker_confidence": 0.91015625, "start": 46.805, "word": "components" }, { "confidence": 0.99902344, "end": 47.59, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.91015625, "start": 47.43, "word": "which" }, { "confidence": 1, "end": 47.75, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.91015625, "start": 47.59, "word": "is" }, { "confidence": 0.99902344, "end": 47.83, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.91015625, "start": 47.75, "word": "the" }, { "confidence": 0.9428711, "end": 48.07, "punctuated_word": "React", "speaker": 0, "speaker_confidence": 0.91015625, "start": 47.83, "word": "react" }, { "confidence": 0.9470215, "end": 48.39, "punctuated_word": "team's", "speaker": 0, "speaker_confidence": 0.91015625, "start": 48.07, "word": "team's" }, { "confidence": 1, "end": 48.79, "punctuated_word": "official", "speaker": 0, "speaker_confidence": 0.91015625, "start": 48.39, "word": "official" }, { "confidence": 1, "end": 49.19, "punctuated_word": "solution", "speaker": 0, "speaker_confidence": 0.91015625, "start": 48.79, "word": "solution" }, { "confidence": 0.99902344, "end": 49.43, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.91015625, "start": 49.19, "word": "for" }, { "confidence": 0.52490234, "end": 49.510002, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.91015625, "start": 49.43, "word": "a" }, { "confidence": 0.99609375, "end": 49.75, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 0.91015625, "start": 49.510002, "word": "server" }, { "confidence": 0.9921875, "end": 49.99, "punctuated_word": "side", "speaker": 0, "speaker_confidence": 0.91015625, "start": 49.75, "word": "side" }, { "confidence": 0.86083984, "end": 50.47, "punctuated_word": "rendering.", "speaker": 0, "speaker_confidence": 0.91015625, "start": 49.99, "word": "rendering" }, { "confidence": 0.8869629, "end": 50.79, "punctuated_word": "Remix,", "speaker": 0, "speaker_confidence": 0.91015625, "start": 50.47, "word": "remix" }, { "confidence": 1, "end": 50.95, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.91015625, "start": 50.79, "word": "on" }, { "confidence": 0.9980469, "end": 51.03, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.91015625, "start": 50.95, "word": "the" }, { "confidence": 1, "end": 51.19, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.91015625, "start": 51.03, "word": "other" }, { "confidence": 0.9975586, "end": 51.43, "punctuated_word": "hand,", "speaker": 0, "speaker_confidence": 0.91015625, "start": 51.19, "word": "hand" }, { "confidence": 1, "end": 51.59, "punctuated_word": "takes", "speaker": 0, "speaker_confidence": 0.91015625, "start": 51.43, "word": "takes" }, { "confidence": 0.9970703, "end": 51.75, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.91015625, "start": 51.59, "word": "an" }, { "confidence": 1, "end": 52.15, "punctuated_word": "entirely", "speaker": 0, "speaker_confidence": 0.91015625, "start": 51.75, "word": "entirely" }, { "confidence": 0.9970703, "end": 52.47, "punctuated_word": "different", "speaker": 0, "speaker_confidence": 0.91015625, "start": 52.15, "word": "different" }, { "confidence": 1, "end": 52.87, "punctuated_word": "approach", "speaker": 0, "speaker_confidence": 0.91015625, "start": 52.47, "word": "approach" }, { "confidence": 0.9921875, "end": 53.11, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.91015625, "start": 52.87, "word": "that" }, { "confidence": 1, "end": 53.35, "punctuated_word": "doesn't", "speaker": 0, "speaker_confidence": 0.91015625, "start": 53.11, "word": "doesn't" }, { "confidence": 0.99902344, "end": 53.67, "punctuated_word": "rely", "speaker": 0, "speaker_confidence": 0.91015625, "start": 53.35, "word": "rely" }, { "confidence": 1, "end": 53.83, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.91015625, "start": 53.67, "word": "on" }, { "confidence": 0.9658203, "end": 54.15, "punctuated_word": "React", "speaker": 0, "speaker_confidence": 0.91015625, "start": 53.83, "word": "react" }, { "confidence": 0.70214844, "end": 54.475, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 0.91015625, "start": 54.15, "word": "server" }, { "confidence": 0.78515625, "end": 54.954998, "punctuated_word": "component", "speaker": 0, "speaker_confidence": 0.91015625, "start": 54.555, "word": "component" }, { "confidence": 0.4506836, "end": 55.195, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 0.91015625, "start": 54.954998, "word": "now" }, { "confidence": 0.9941406, "end": 55.434998, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.91015625, "start": 55.195, "word": "that" }, { "confidence": 0.99902344, "end": 55.934998, "punctuated_word": "Shopify", "speaker": 0, "speaker_confidence": 0.91015625, "start": 55.434998, "word": "shopify" }, { "confidence": 0.99902344, "end": 56.155, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.91015625, "start": 55.995, "word": "is" }, { "confidence": 0.99902344, "end": 56.315, "punctuated_word": "taking", "speaker": 0, "speaker_confidence": 0.91015625, "start": 56.155, "word": "taking" }, { "confidence": 0.9980469, "end": 56.555, "punctuated_word": "over", "speaker": 0, "speaker_confidence": 0.91015625, "start": 56.315, "word": "over" }, { "confidence": 0.9970703, "end": 57.055, "punctuated_word": "stewardship", "speaker": 0, "speaker_confidence": 0.91015625, "start": 56.555, "word": "stewardship" }, { "confidence": 0.99902344, "end": 57.274998, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.91015625, "start": 57.114998, "word": "of" }, { "confidence": 0.9421387, "end": 57.774998, "punctuated_word": "Remix,", "speaker": 0, "speaker_confidence": 0.91015625, "start": 57.274998, "word": "remix" }, { "confidence": 0.99609375, "end": 57.995, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.69921875, "start": 57.914997, "word": "it" }, { "confidence": 0.99902344, "end": 58.234997, "punctuated_word": "creates", "speaker": 0, "speaker_confidence": 0.69921875, "start": 57.995, "word": "creates" }, { "confidence": 1, "end": 58.394997, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.69921875, "start": 58.234997, "word": "this" }, { "confidence": 0.99902344, "end": 58.635, "punctuated_word": "weird", "speaker": 0, "speaker_confidence": 0.69921875, "start": 58.394997, "word": "weird" }, { "confidence": 0.9855957, "end": 59.114998, "punctuated_word": "schism", "speaker": 0, "speaker_confidence": 0.69921875, "start": 58.635, "word": "schism" }, { "confidence": 0.99902344, "end": 59.355, "punctuated_word": "around", "speaker": 0, "speaker_confidence": 0.69921875, "start": 59.114998, "word": "around" }, { "confidence": 0.98095703, "end": 59.675, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 0.69921875, "start": 59.355, "word": "server" }, { "confidence": 0.99609375, "end": 59.914997, "punctuated_word": "side", "speaker": 0, "speaker_confidence": 0.69921875, "start": 59.675, "word": "side" }, { "confidence": 1, "end": 60.315, "punctuated_word": "rendering", "speaker": 0, "speaker_confidence": 0.69921875, "start": 59.914997, "word": "rendering" }, { "confidence": 0.7792969, "end": 60.475, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.69921875, "start": 60.315, "word": "in" }, { "confidence": 0.8881836, "end": 60.875, "punctuated_word": "React.", "speaker": 0, "speaker_confidence": 0.69921875, "start": 60.475, "word": "react" }, { "confidence": 0.96435547, "end": 61.114998, "punctuated_word": "Like,", "speaker": 0, "speaker_confidence": 0.69921875, "start": 60.875, "word": "like" }, { "confidence": 0.9951172, "end": 61.355, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.69921875, "start": 61.114998, "word": "do" }, { "confidence": 0.9350586, "end": 61.675, "punctuated_word": "React", "speaker": 0, "speaker_confidence": 0.69921875, "start": 61.355, "word": "react" }, { "confidence": 0.76464844, "end": 61.914997, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 0.69921875, "start": 61.675, "word": "server" }, { "confidence": 0.9873047, "end": 62.315, "punctuated_word": "components", "speaker": 0, "speaker_confidence": 0.69921875, "start": 61.914997, "word": "components" }, { "confidence": 0.99902344, "end": 62.714996, "punctuated_word": "totally", "speaker": 0, "speaker_confidence": 0.69921875, "start": 62.315, "word": "totally" }, { "confidence": 1, "end": 63.11, "punctuated_word": "suck", "speaker": 0, "speaker_confidence": 0.69921875, "start": 62.714996, "word": "suck" }, { "confidence": 0.4794922, "end": 63.27, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.69921875, "start": 63.11, "word": "for" }, { "confidence": 0.8105469, "end": 63.43, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.69921875, "start": 63.27, "word": "are" }, { "confidence": 0.9980469, "end": 63.510002, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.69921875, "start": 63.43, "word": "they" }, { "confidence": 0.9560547, "end": 63.59, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.92871094, "start": 63.510002, "word": "the" }, { "confidence": 0.94799805, "end": 64.09, "punctuated_word": "future?", "speaker": 0, "speaker_confidence": 0.92871094, "start": 63.59, "word": "future" }, { "confidence": 0.9980469, "end": 64.65, "punctuated_word": "Shopify", "speaker": 0, "speaker_confidence": 0.92871094, "start": 64.15, "word": "shopify" }, { "confidence": 0.74438477, "end": 65.03, "punctuated_word": "said,", "speaker": 0, "speaker_confidence": 0.92871094, "start": 64.71, "word": "said" }, { "confidence": 0.9851074, "end": 65.270004, "punctuated_word": "quote,", "speaker": 0, "speaker_confidence": 0.92871094, "start": 65.03, "word": "quote" }, { "confidence": 0.99121094, "end": 65.51, "punctuated_word": "while", "speaker": 0, "speaker_confidence": 0.92871094, "start": 65.270004, "word": "while" }, { "confidence": 0.9951172, "end": 65.75, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.92871094, "start": 65.51, "word": "we're" }, { "confidence": 1, "end": 66.07, "punctuated_word": "excited", "speaker": 0, "speaker_confidence": 0.92871094, "start": 65.75, "word": "excited" }, { "confidence": 1, "end": 66.23, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.92871094, "start": 66.07, "word": "for" }, { "confidence": 0.99902344, "end": 66.39, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.92871094, "start": 66.23, "word": "the" }, { "confidence": 1, "end": 66.71, "punctuated_word": "future", "speaker": 0, "speaker_confidence": 0.92871094, "start": 66.39, "word": "future" }, { "confidence": 0.9970703, "end": 66.87, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.92871094, "start": 66.71, "word": "of" }, { "confidence": 0.7668457, "end": 67.35, "punctuated_word": "RSC", "speaker": 0, "speaker_confidence": 0.92871094, "start": 66.87, "word": "rsc" }, { "confidence": 0.9453125, "end": 67.51, "punctuated_word": "long", "speaker": 0, "speaker_confidence": 0.92871094, "start": 67.35, "word": "long" }, { "confidence": 0.82910156, "end": 67.91, "punctuated_word": "term,", "speaker": 0, "speaker_confidence": 0.92871094, "start": 67.51, "word": "term" }, { "confidence": 0.99902344, "end": 68.07, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.92871094, "start": 67.91, "word": "as" }, { "confidence": 0.99902344, "end": 68.23, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.92871094, "start": 68.07, "word": "a" }, { "confidence": 1, "end": 68.63, "punctuated_word": "critical", "speaker": 0, "speaker_confidence": 0.92871094, "start": 68.23, "word": "critical" }, { "confidence": 0.8984375, "end": 69.13, "punctuated_word": "dependency,", "speaker": 0, "speaker_confidence": 0.92871094, "start": 68.63, "word": "dependency" }, { "confidence": 0.9980469, "end": 69.35, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.92871094, "start": 69.19, "word": "it" }, { "confidence": 0.9980469, "end": 69.75, "punctuated_word": "presented", "speaker": 0, "speaker_confidence": 0.92871094, "start": 69.35, "word": "presented" }, { "confidence": 1, "end": 69.91, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.92871094, "start": 69.75, "word": "a" }, { "confidence": 1, "end": 70.15, "punctuated_word": "number", "speaker": 0, "speaker_confidence": 0.92871094, "start": 69.91, "word": "number" }, { "confidence": 0.99902344, "end": 70.31, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.92871094, "start": 70.15, "word": "of" }, { "confidence": 1, "end": 70.79, "punctuated_word": "challenges", "speaker": 0, "speaker_confidence": 0.92871094, "start": 70.31, "word": "challenges" }, { "confidence": 0.99902344, "end": 70.95, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.92871094, "start": 70.79, "word": "that" }, { "confidence": 0.99902344, "end": 71.35, "punctuated_word": "became", "speaker": 0, "speaker_confidence": 0.92871094, "start": 70.95, "word": "became" }, { "confidence": 0.99902344, "end": 71.83, "punctuated_word": "performance", "speaker": 0, "speaker_confidence": 0.92871094, "start": 71.35, "word": "performance" }, { "confidence": 0.9941406, "end": 72.31, "punctuated_word": "risks", "speaker": 0, "speaker_confidence": 0.92871094, "start": 71.83, "word": "risks" }, { "confidence": 0.99609375, "end": 72.39, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.92871094, "start": 72.31, "word": "for" }, { "confidence": 0.9980469, "end": 72.63, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.92871094, "start": 72.39, "word": "our" }, { "confidence": 0.99316406, "end": 73.095, "punctuated_word": "developers", "speaker": 0, "speaker_confidence": 0.92871094, "start": 72.63, "word": "developers" }, { "confidence": 0.35498047, "end": 73.495, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.92871094, "start": 73.335, "word": "and" }, { "confidence": 0.99780273, "end": 73.975, "punctuated_word": "bottlenecks", "speaker": 0, "speaker_confidence": 0.92871094, "start": 73.495, "word": "bottlenecks" }, { "confidence": 0.9970703, "end": 74.215004, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.92871094, "start": 73.975, "word": "for" }, { "confidence": 0.99902344, "end": 74.375, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.92871094, "start": 74.215004, "word": "our" }, { "confidence": 0.81347656, "end": 74.875, "punctuated_word": "progress,", "speaker": 0, "speaker_confidence": 0.92871094, "start": 74.375, "word": "progress" }, { "confidence": 0.99902344, "end": 75.095, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.92871094, "start": 74.935, "word": "and" }, { "confidence": 0.9980469, "end": 75.175, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.92871094, "start": 75.095, "word": "they" }, { "confidence": 1, "end": 75.415, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.92871094, "start": 75.175, "word": "also" }, { "confidence": 0.94384766, "end": 75.655, "punctuated_word": "talk", "speaker": 0, "speaker_confidence": 0.92871094, "start": 75.415, "word": "talk" }, { "confidence": 1, "end": 75.815, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.92871094, "start": 75.655, "word": "about" }, { "confidence": 0.9970703, "end": 76.055, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.92871094, "start": 75.815, "word": "how" }, { "confidence": 1, "end": 76.215004, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.92871094, "start": 76.055, "word": "they" }, { "confidence": 0.9941406, "end": 76.455, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.92871094, "start": 76.215004, "word": "want" }, { "confidence": 0.97509766, "end": 76.615, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.92871094, "start": 76.455, "word": "a" }, { "confidence": 1, "end": 76.935, "punctuated_word": "clear", "speaker": 0, "speaker_confidence": 0.92871094, "start": 76.615, "word": "clear" }, { "confidence": 0.99902344, "end": 77.435, "punctuated_word": "separation", "speaker": 0, "speaker_confidence": 0.92871094, "start": 76.935, "word": "separation" }, { "confidence": 1, "end": 77.975, "punctuated_word": "between", "speaker": 0, "speaker_confidence": 0.92871094, "start": 77.575005, "word": "between" }, { "confidence": 0.99902344, "end": 78.295, "punctuated_word": "client", "speaker": 0, "speaker_confidence": 0.92871094, "start": 77.975, "word": "client" }, { "confidence": 0.99609375, "end": 78.535, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.92871094, "start": 78.295, "word": "and" }, { "confidence": 0.99902344, "end": 78.855, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 0.92871094, "start": 78.535, "word": "server" }, { "confidence": 0.99194336, "end": 79.175, "punctuated_word": "code.", "speaker": 0, "speaker_confidence": 0.92871094, "start": 78.855, "word": "code" }, { "confidence": 1, "end": 79.335, "punctuated_word": "That", "speaker": 0, "speaker_confidence": 0.92871094, "start": 79.175, "word": "that" }, { "confidence": 0.99902344, "end": 79.575005, "punctuated_word": "makes", "speaker": 0, "speaker_confidence": 0.92871094, "start": 79.335, "word": "makes" }, { "confidence": 1, "end": 79.815, "punctuated_word": "total", "speaker": 0, "speaker_confidence": 0.92871094, "start": 79.575005, "word": "total" }, { "confidence": 1, "end": 79.975, "punctuated_word": "sense", "speaker": 0, "speaker_confidence": 0.92871094, "start": 79.815, "word": "sense" }, { "confidence": 0.99902344, "end": 80.23, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.92871094, "start": 79.975, "word": "for" }, { "confidence": 0.77278644, "end": 80.71001, "punctuated_word": "Shopify,", "speaker": 0, "speaker_confidence": 0.92871094, "start": 80.310005, "word": "shopify" }, { "confidence": 1, "end": 80.950005, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.92871094, "start": 80.71001, "word": "which" }, { "confidence": 0.7392578, "end": 81.03001, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.92871094, "start": 80.950005, "word": "has" }, { "confidence": 0.9941406, "end": 81.270004, "punctuated_word": "built", "speaker": 0, "speaker_confidence": 0.92871094, "start": 81.03001, "word": "built" }, { "confidence": 0.9980469, "end": 81.51, "punctuated_word": "itself", "speaker": 0, "speaker_confidence": 0.92871094, "start": 81.270004, "word": "itself" }, { "confidence": 0.9980469, "end": 81.75, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.92871094, "start": 81.51, "word": "with" }, { "confidence": 0.9951172, "end": 82.07, "punctuated_word": "Ruby", "speaker": 0, "speaker_confidence": 0.92871094, "start": 81.75, "word": "ruby" }, { "confidence": 0.9838867, "end": 82.23, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.92871094, "start": 82.07, "word": "on" }, { "confidence": 0.9309082, "end": 82.630005, "punctuated_word": "Rails,", "speaker": 0, "speaker_confidence": 0.92871094, "start": 82.23, "word": "rails" }, { "confidence": 0.99902344, "end": 82.87, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.92871094, "start": 82.630005, "word": "which" }, { "confidence": 0.99902344, "end": 83.11, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.92871094, "start": 82.87, "word": "has" }, { "confidence": 0.9970703, "end": 83.270004, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.92871094, "start": 83.11, "word": "a" }, { "confidence": 1, "end": 83.590004, "punctuated_word": "strong", "speaker": 0, "speaker_confidence": 0.92871094, "start": 83.270004, "word": "strong" }, { "confidence": 0.99902344, "end": 84.07, "punctuated_word": "separation", "speaker": 0, "speaker_confidence": 0.92871094, "start": 83.590004, "word": "separation" }, { "confidence": 0.9980469, "end": 84.23, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.92871094, "start": 84.07, "word": "of" }, { "confidence": 0.9445801, "end": 84.73, "punctuated_word": "concerns.", "speaker": 0, "speaker_confidence": 0.92871094, "start": 84.23, "word": "concerns" }, { "confidence": 0.9970703, "end": 84.950005, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.92871094, "start": 84.79, "word": "it" }, { "confidence": 0.99902344, "end": 85.03001, "punctuated_word": "looks", "speaker": 0, "speaker_confidence": 0.92871094, "start": 84.950005, "word": "looks" }, { "confidence": 0.9970703, "end": 85.19, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.92871094, "start": 85.03001, "word": "like" }, { "confidence": 0.9951172, "end": 85.350006, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 0.92871094, "start": 85.19, "word": "their" }, { "confidence": 0.99902344, "end": 85.590004, "punctuated_word": "plan", "speaker": 0, "speaker_confidence": 0.92871094, "start": 85.350006, "word": "plan" }, { "confidence": 1, "end": 85.83, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.92871094, "start": 85.590004, "word": "is" }, { "confidence": 0.99902344, "end": 85.91, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.92871094, "start": 85.83, "word": "to" }, { "confidence": 1, "end": 86.23, "punctuated_word": "replace", "speaker": 0, "speaker_confidence": 0.92871094, "start": 85.91, "word": "replace" }, { "confidence": 0.9980469, "end": 86.55, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 0.92871094, "start": 86.23, "word": "server" }, { "confidence": 0.99609375, "end": 86.950005, "punctuated_word": "components", "speaker": 0, "speaker_confidence": 0.92871094, "start": 86.55, "word": "components" }, { "confidence": 0.99902344, "end": 87.19, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.92871094, "start": 86.950005, "word": "with" }, { "confidence": 0.85595703, "end": 87.590004, "punctuated_word": "Remix", "speaker": 0, "speaker_confidence": 0.92871094, "start": 87.19, "word": "remix" }, { "confidence": 0.9921875, "end": 87.75, "punctuated_word": "over", "speaker": 0, "speaker_confidence": 0.92871094, "start": 87.590004, "word": "over" }, { "confidence": 0.99121094, "end": 87.83, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.92871094, "start": 87.75, "word": "the" }, { "confidence": 0.99609375, "end": 88.15, "punctuated_word": "coming", "speaker": 0, "speaker_confidence": 0.92871094, "start": 87.83, "word": "coming" }, { "confidence": 0.93530273, "end": 88.385, "punctuated_word": "months,", "speaker": 0, "speaker_confidence": 0.92871094, "start": 88.15, "word": "months" }, { "confidence": 0.9667969, "end": 88.865005, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.92871094, "start": 88.625, "word": "but" }, { "confidence": 0.69384766, "end": 89.265, "punctuated_word": "Remix", "speaker": 0, "speaker_confidence": 0.92871094, "start": 88.865005, "word": "remix" }, { "confidence": 0.9589844, "end": 89.425, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.92871094, "start": 89.265, "word": "will" }, { "confidence": 0.9790039, "end": 89.585, "punctuated_word": "still", "speaker": 0, "speaker_confidence": 0.92871094, "start": 89.425, "word": "still" }, { "confidence": 0.99902344, "end": 89.825005, "punctuated_word": "remain", "speaker": 0, "speaker_confidence": 0.92871094, "start": 89.585, "word": "remain" }, { "confidence": 0.94140625, "end": 89.985, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.92871094, "start": 89.825005, "word": "its" }, { "confidence": 1, "end": 90.225, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 0.92871094, "start": 89.985, "word": "own" }, { "confidence": 0.99609375, "end": 90.725, "punctuated_word": "independent", "speaker": 0, "speaker_confidence": 0.92871094, "start": 90.225, "word": "independent" }, { "confidence": 0.9633789, "end": 91.025, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.92871094, "start": 90.785, "word": "open" }, { "confidence": 0.9921875, "end": 91.345, "punctuated_word": "source", "speaker": 0, "speaker_confidence": 0.92871094, "start": 91.025, "word": "source" }, { "confidence": 0.9975586, "end": 91.745, "punctuated_word": "project.", "speaker": 0, "speaker_confidence": 0.92871094, "start": 91.345, "word": "project" }, { "confidence": 0.97509766, "end": 91.905, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.8779297, "start": 91.745, "word": "if" }, { "confidence": 0.99365234, "end": 92.145004, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.8779297, "start": 91.905, "word": "you're" }, { "confidence": 0.9951172, "end": 92.225, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8779297, "start": 92.145004, "word": "a" }, { "confidence": 0.91845703, "end": 92.545, "punctuated_word": "Remix", "speaker": 0, "speaker_confidence": 0.8779297, "start": 92.225, "word": "remix" }, { "confidence": 0.9892578, "end": 92.865005, "punctuated_word": "user,", "speaker": 0, "speaker_confidence": 0.8779297, "start": 92.545, "word": "user" }, { "confidence": 1, "end": 93.025, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.8779297, "start": 92.865005, "word": "i" }, { "confidence": 0.99902344, "end": 93.185005, "punctuated_word": "think", "speaker": 0, "speaker_confidence": 0.8779297, "start": 93.025, "word": "think" }, { "confidence": 0.99609375, "end": 93.425, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.8779297, "start": 93.185005, "word": "this" }, { "confidence": 0.99902344, "end": 93.505005, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8779297, "start": 93.425, "word": "is" }, { "confidence": 0.99609375, "end": 93.985, "punctuated_word": "definitely", "speaker": 0, "speaker_confidence": 0.8779297, "start": 93.505005, "word": "definitely" }, { "confidence": 0.99902344, "end": 94.145004, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8779297, "start": 93.985, "word": "a" }, { "confidence": 1, "end": 94.305, "punctuated_word": "good", "speaker": 0, "speaker_confidence": 0.8779297, "start": 94.145004, "word": "good" }, { "confidence": 0.9995117, "end": 94.705, "punctuated_word": "thing.", "speaker": 0, "speaker_confidence": 0.8779297, "start": 94.305, "word": "thing" }, { "confidence": 0.9947917, "end": 95.205, "punctuated_word": "Shopify,", "speaker": 0, "speaker_confidence": 0.8779297, "start": 94.705, "word": "shopify" }, { "confidence": 0.99902344, "end": 95.585, "punctuated_word": "although", "speaker": 0, "speaker_confidence": 0.8779297, "start": 95.345, "word": "although" }, { "confidence": 0.8100586, "end": 95.745, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.8779297, "start": 95.585, "word": "its" }, { "confidence": 0.9980469, "end": 95.985, "punctuated_word": "stock", "speaker": 0, "speaker_confidence": 0.8779297, "start": 95.745, "word": "stock" }, { "confidence": 0.9941406, "end": 96.145004, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8779297, "start": 95.985, "word": "is" }, { "confidence": 0.9980469, "end": 96.385, "punctuated_word": "down", "speaker": 0, "speaker_confidence": 0.8779297, "start": 96.145004, "word": "down" }, { "confidence": 0.86694336, "end": 96.885, "punctuated_word": "75%", "speaker": 0, "speaker_confidence": 0.8779297, "start": 96.385, "word": "75%" }, { "confidence": 0.8828125, "end": 97.265, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8779297, "start": 97.105, "word": "the" }, { "confidence": 0.99902344, "end": 97.505005, "punctuated_word": "last", "speaker": 0, "speaker_confidence": 0.8779297, "start": 97.265, "word": "last" }, { "confidence": 0.9770508, "end": 97.825005, "punctuated_word": "year,", "speaker": 0, "speaker_confidence": 0.8779297, "start": 97.505005, "word": "year" }, { "confidence": 0.9819336, "end": 97.985, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8779297, "start": 97.825005, "word": "is" }, { "confidence": 0.82177734, "end": 98.13, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8779297, "start": 97.985, "word": "a" }, { "confidence": 0.42749023, "end": 98.369995, "punctuated_word": "freight", "speaker": 0, "speaker_confidence": 0.8779297, "start": 98.21, "word": "freight" }, { "confidence": 0.9970703, "end": 98.61, "punctuated_word": "company", "speaker": 0, "speaker_confidence": 0.8779297, "start": 98.369995, "word": "company" }, { "confidence": 0.99902344, "end": 98.85, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8779297, "start": 98.61, "word": "that" }, { "confidence": 1, "end": 99.09, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.8779297, "start": 98.85, "word": "will" }, { "confidence": 1, "end": 99.329994, "punctuated_word": "battle", "speaker": 0, "speaker_confidence": 0.8779297, "start": 99.09, "word": "battle" }, { "confidence": 0.9970703, "end": 99.57, "punctuated_word": "test", "speaker": 0, "speaker_confidence": 0.8779297, "start": 99.329994, "word": "test" }, { "confidence": 0.99902344, "end": 99.729996, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.8779297, "start": 99.57, "word": "this" }, { "confidence": 1, "end": 100.13, "punctuated_word": "framework", "speaker": 0, "speaker_confidence": 0.8779297, "start": 99.729996, "word": "framework" }, { "confidence": 1, "end": 100.28999, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8779297, "start": 100.13, "word": "on" }, { "confidence": 1, "end": 100.45, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 0.8779297, "start": 100.28999, "word": "their" }, { "confidence": 1, "end": 100.95, "punctuated_word": "platform.", "speaker": 0, "speaker_confidence": 0.8779297, "start": 100.45, "word": "platform" }, { "confidence": 0.9951172, "end": 101.329994, "punctuated_word": "React", "speaker": 0, "speaker_confidence": 0.8779297, "start": 101.09, "word": "react" }, { "confidence": 0.76953125, "end": 101.649994, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 0.8779297, "start": 101.329994, "word": "server" }, { "confidence": 0.99121094, "end": 102.049995, "punctuated_word": "components", "speaker": 0, "speaker_confidence": 0.8779297, "start": 101.649994, "word": "components" }, { "confidence": 0.66796875, "end": 102.369995, "punctuated_word": "though", "speaker": 0, "speaker_confidence": 0.8779297, "start": 102.049995, "word": "though" }, { "confidence": 0.9277344, "end": 102.45, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.8779297, "start": 102.369995, "word": "are" }, { "confidence": 1, "end": 102.77, "punctuated_word": "being", "speaker": 0, "speaker_confidence": 0.8779297, "start": 102.45, "word": "being" }, { "confidence": 0.99902344, "end": 103.009995, "punctuated_word": "battle", "speaker": 0, "speaker_confidence": 0.8779297, "start": 102.77, "word": "battle" }, { "confidence": 0.9970703, "end": 103.329994, "punctuated_word": "tested", "speaker": 0, "speaker_confidence": 0.8779297, "start": 103.009995, "word": "tested" }, { "confidence": 1, "end": 103.49, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.8779297, "start": 103.329994, "word": "by" }, { "confidence": 0.9970703, "end": 103.99, "punctuated_word": "Facebook", "speaker": 0, "speaker_confidence": 0.8779297, "start": 103.49, "word": "facebook" }, { "confidence": 0.50878906, "end": 104.369995, "punctuated_word": "whose", "speaker": 0, "speaker_confidence": 0.8779297, "start": 104.049995, "word": "whose" }, { "confidence": 1, "end": 104.61, "punctuated_word": "stock", "speaker": 0, "speaker_confidence": 0.8779297, "start": 104.369995, "word": "stock" }, { "confidence": 1, "end": 104.77, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8779297, "start": 104.61, "word": "is" }, { "confidence": 1, "end": 105.009995, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.8779297, "start": 104.77, "word": "also" }, { "confidence": 1, "end": 105.25, "punctuated_word": "down", "speaker": 0, "speaker_confidence": 0.8779297, "start": 105.009995, "word": "down" }, { "confidence": 1, "end": 105.57, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.8779297, "start": 105.25, "word": "about" }, { "confidence": 0.99560547, "end": 106.07, "punctuated_word": "70%.", "speaker": 0, "speaker_confidence": 0.8779297, "start": 105.57, "word": "70%" }, { "confidence": 0.99902344, "end": 106.53, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.8779297, "start": 106.369995, "word": "the" }, { "confidence": 1, "end": 106.689995, "punctuated_word": "reason", "speaker": 0, "speaker_confidence": 0.8779297, "start": 106.53, "word": "reason" }, { "confidence": 0.9951172, "end": 106.85, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8779297, "start": 106.689995, "word": "the" }, { "confidence": 1, "end": 107.09, "punctuated_word": "stock", "speaker": 0, "speaker_confidence": 0.8779297, "start": 106.85, "word": "stock" }, { "confidence": 0.9970703, "end": 107.329994, "punctuated_word": "price", "speaker": 0, "speaker_confidence": 0.8779297, "start": 107.09, "word": "price" }, { "confidence": 0.9970703, "end": 107.49, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8779297, "start": 107.329994, "word": "is" }, { "confidence": 0.99902344, "end": 107.81, "punctuated_word": "important", "speaker": 0, "speaker_confidence": 0.8779297, "start": 107.49, "word": "important" }, { "confidence": 0.49902344, "end": 107.995, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8779297, "start": 107.81, "word": "in" }, { "confidence": 0.7084961, "end": 108.15501, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.8779297, "start": 107.995, "word": "for" }, { "confidence": 0.9526367, "end": 108.235, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.7626953, "start": 108.15501, "word": "this" }, { "confidence": 0.99902344, "end": 108.735, "punctuated_word": "context", "speaker": 0, "speaker_confidence": 0.7626953, "start": 108.235, "word": "context" }, { "confidence": 0.97509766, "end": 109.035, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7626953, "start": 108.875, "word": "is" }, { "confidence": 0.99902344, "end": 109.275, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.7626953, "start": 109.035, "word": "because" }, { "confidence": 0.99902344, "end": 109.775, "punctuated_word": "restricted", "speaker": 0, "speaker_confidence": 0.7626953, "start": 109.275, "word": "restricted" }, { "confidence": 0.99902344, "end": 109.995, "punctuated_word": "stock", "speaker": 0, "speaker_confidence": 0.7626953, "start": 109.835, "word": "stock" }, { "confidence": 0.99902344, "end": 110.395004, "punctuated_word": "units", "speaker": 0, "speaker_confidence": 0.7626953, "start": 109.995, "word": "units" }, { "confidence": 1, "end": 110.555, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.7626953, "start": 110.395004, "word": "are" }, { "confidence": 1, "end": 110.635, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7626953, "start": 110.555, "word": "a" }, { "confidence": 1, "end": 110.795006, "punctuated_word": "big", "speaker": 0, "speaker_confidence": 0.7626953, "start": 110.635, "word": "big" }, { "confidence": 1, "end": 110.955, "punctuated_word": "part", "speaker": 0, "speaker_confidence": 0.7626953, "start": 110.795006, "word": "part" }, { "confidence": 1, "end": 111.115005, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7626953, "start": 110.955, "word": "of" }, { "confidence": 0.99902344, "end": 111.615005, "punctuated_word": "compensation", "speaker": 0, "speaker_confidence": 0.7626953, "start": 111.115005, "word": "compensation" }, { "confidence": 0.99902344, "end": 112.075005, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.7626953, "start": 111.835, "word": "at" }, { "confidence": 0.99902344, "end": 112.315, "punctuated_word": "both", "speaker": 0, "speaker_confidence": 0.7626953, "start": 112.075005, "word": "both" }, { "confidence": 0.8984375, "end": 112.715004, "punctuated_word": "Meta", "speaker": 0, "speaker_confidence": 0.7626953, "start": 112.315, "word": "meta" }, { "confidence": 0.9980469, "end": 112.955, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7626953, "start": 112.715004, "word": "and" }, { "confidence": 0.8572591, "end": 113.455, "punctuated_word": "Shopify,", "speaker": 0, "speaker_confidence": 0.7626953, "start": 112.955, "word": "shopify" }, { "confidence": 1, "end": 113.595, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.57128906, "start": 113.515, "word": "and" }, { "confidence": 1, "end": 113.755005, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.57128906, "start": 113.595, "word": "that" }, { "confidence": 0.99902344, "end": 113.915, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.57128906, "start": 113.755005, "word": "just" }, { "confidence": 0.99902344, "end": 114.155, "punctuated_word": "feels", "speaker": 0, "speaker_confidence": 0.57128906, "start": 113.915, "word": "feels" }, { "confidence": 0.97314453, "end": 114.315, "punctuated_word": "kind", "speaker": 0, "speaker_confidence": 0.57128906, "start": 114.155, "word": "kind" }, { "confidence": 1, "end": 114.475006, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.57128906, "start": 114.315, "word": "of" }, { "confidence": 1, "end": 114.975006, "punctuated_word": "demoralizing", "speaker": 0, "speaker_confidence": 0.57128906, "start": 114.475006, "word": "demoralizing" }, { "confidence": 0.7368164, "end": 115.25, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.57128906, "start": 115.035, "word": "for" }, { "confidence": 0.88964844, "end": 115.33, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.57128906, "start": 115.25, "word": "for" }, { "confidence": 0.9921875, "end": 115.41, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.77441406, "start": 115.33, "word": "the" }, { "confidence": 1, "end": 115.65, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.77441406, "start": 115.41, "word": "people" }, { "confidence": 0.99902344, "end": 115.73, "punctuated_word": "who", "speaker": 0, "speaker_confidence": 0.77441406, "start": 115.65, "word": "who" }, { "confidence": 1, "end": 115.97, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.77441406, "start": 115.73, "word": "are" }, { "confidence": 1, "end": 116.29, "punctuated_word": "employed", "speaker": 0, "speaker_confidence": 0.77441406, "start": 115.97, "word": "employed" }, { "confidence": 1, "end": 116.45, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.77441406, "start": 116.29, "word": "to" }, { "confidence": 1, "end": 116.53, "punctuated_word": "work", "speaker": 0, "speaker_confidence": 0.77441406, "start": 116.45, "word": "work" }, { "confidence": 1, "end": 116.69, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.77441406, "start": 116.53, "word": "on" }, { "confidence": 0.9980469, "end": 116.93, "punctuated_word": "these", "speaker": 0, "speaker_confidence": 0.77441406, "start": 116.69, "word": "these" }, { "confidence": 1, "end": 117.33, "punctuated_word": "frameworks", "speaker": 0, "speaker_confidence": 0.77441406, "start": 116.93, "word": "frameworks" }, { "confidence": 0.9921875, "end": 117.57, "punctuated_word": "full", "speaker": 0, "speaker_confidence": 0.77441406, "start": 117.33, "word": "full" }, { "confidence": 0.99853516, "end": 118.05, "punctuated_word": "time.", "speaker": 0, "speaker_confidence": 0.77441406, "start": 117.57, "word": "time" }, { "confidence": 0.99902344, "end": 118.21, "punctuated_word": "On", "speaker": 0, "speaker_confidence": 0.77441406, "start": 118.05, "word": "on" }, { "confidence": 1, "end": 118.29, "punctuated_word": "top", "speaker": 0, "speaker_confidence": 0.77441406, "start": 118.21, "word": "top" }, { "confidence": 1, "end": 118.45, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.77441406, "start": 118.29, "word": "of" }, { "confidence": 0.9921875, "end": 118.61, "punctuated_word": "that,", "speaker": 0, "speaker_confidence": 0.77441406, "start": 118.45, "word": "that" }, { "confidence": 0.99902344, "end": 118.77, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.77441406, "start": 118.61, "word": "it" }, { "confidence": 0.99902344, "end": 119.01, "punctuated_word": "seems", "speaker": 0, "speaker_confidence": 0.77441406, "start": 118.77, "word": "seems" }, { "confidence": 0.9951172, "end": 119.17, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.77441406, "start": 119.01, "word": "like" }, { "confidence": 0.96533203, "end": 119.33, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.77441406, "start": 119.17, "word": "in" }, { "confidence": 0.8798828, "end": 119.83, "punctuated_word": "2022,", "speaker": 0, "speaker_confidence": 0.77441406, "start": 119.33, "word": "2022" }, { "confidence": 1, "end": 120.37, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.77441406, "start": 120.13, "word": "people" }, { "confidence": 1, "end": 120.45, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.77441406, "start": 120.37, "word": "are" }, { "confidence": 1, "end": 120.77, "punctuated_word": "becoming", "speaker": 0, "speaker_confidence": 0.77441406, "start": 120.45, "word": "becoming" }, { "confidence": 0.9980469, "end": 120.93, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.77441406, "start": 120.77, "word": "a" }, { "confidence": 1, "end": 121.09, "punctuated_word": "lot", "speaker": 0, "speaker_confidence": 0.77441406, "start": 120.93, "word": "lot" }, { "confidence": 1, "end": 121.33, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.77441406, "start": 121.09, "word": "more" }, { "confidence": 0.99902344, "end": 121.49, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.77441406, "start": 121.33, "word": "open" }, { "confidence": 1, "end": 121.89, "punctuated_word": "minded", "speaker": 0, "speaker_confidence": 0.77441406, "start": 121.49, "word": "minded" }, { "confidence": 0.9980469, "end": 122.21, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.77441406, "start": 121.89, "word": "about" }, { "confidence": 0.99902344, "end": 122.71, "punctuated_word": "alternative", "speaker": 0, "speaker_confidence": 0.77441406, "start": 122.21, "word": "alternative" }, { "confidence": 0.8010254, "end": 123.27, "punctuated_word": "frameworks,", "speaker": 0, "speaker_confidence": 0.77441406, "start": 122.77, "word": "frameworks" }, { "confidence": 0.9921875, "end": 123.729996, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.77441406, "start": 123.41, "word": "like" }, { "confidence": 0.9766846, "end": 124.229996, "punctuated_word": "Svelte,", "speaker": 0, "speaker_confidence": 0.77441406, "start": 123.729996, "word": "svelte" }, { "confidence": 0.296875, "end": 124.845, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.77441406, "start": 124.685, "word": "and" }, { "confidence": 0.90283203, "end": 125.325, "punctuated_word": "quick", "speaker": 0, "speaker_confidence": 0.77441406, "start": 124.845, "word": "quick" }, { "confidence": 0.6972656, "end": 125.564995, "punctuated_word": "looking", "speaker": 0, "speaker_confidence": 0.77441406, "start": 125.325, "word": "looking" }, { "confidence": 0.9941406, "end": 125.884995, "punctuated_word": "dank", "speaker": 0, "speaker_confidence": 0.77441406, "start": 125.564995, "word": "dank" }, { "confidence": 0.7421875, "end": 126.204994, "punctuated_word": "AF", "speaker": 0, "speaker_confidence": 0.77441406, "start": 125.884995, "word": "af" }, { "confidence": 0.9970703, "end": 126.365, "punctuated_word": "right", "speaker": 0, "speaker_confidence": 0.77441406, "start": 126.204994, "word": "right" }, { "confidence": 0.95996094, "end": 126.845, "punctuated_word": "now,", "speaker": 0, "speaker_confidence": 0.77441406, "start": 126.365, "word": "now" }, { "confidence": 0.99902344, "end": 127.085, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.77441406, "start": 126.845, "word": "but" }, { "confidence": 0.9980469, "end": 127.325, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.77441406, "start": 127.085, "word": "only" }, { "confidence": 1, "end": 127.485, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.77441406, "start": 127.325, "word": "time" }, { "confidence": 0.99902344, "end": 127.645, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.77441406, "start": 127.485, "word": "will" }, { "confidence": 1, "end": 127.884995, "punctuated_word": "tell", "speaker": 0, "speaker_confidence": 0.77441406, "start": 127.645, "word": "tell" }, { "confidence": 0.9980469, "end": 128.045, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.77441406, "start": 127.884995, "word": "if" }, { "confidence": 1, "end": 128.205, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.77441406, "start": 128.045, "word": "they" }, { "confidence": 0.99902344, "end": 128.36499, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.77441406, "start": 128.205, "word": "can" }, { "confidence": 0.99609375, "end": 128.685, "punctuated_word": "become", "speaker": 0, "speaker_confidence": 0.77441406, "start": 128.36499, "word": "become" }, { "confidence": 0.92211914, "end": 129.005, "punctuated_word": "goaded", "speaker": 0, "speaker_confidence": 0.77441406, "start": 128.685, "word": "goaded" }, { "confidence": 1, "end": 129.165, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.77441406, "start": 129.005, "word": "with" }, { "confidence": 0.9980469, "end": 129.245, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.71972656, "start": 129.165, "word": "the" }, { "confidence": 0.9995117, "end": 129.745, "punctuated_word": "sauce.", "speaker": 0, "speaker_confidence": 0.71972656, "start": 129.245, "word": "sauce" }, { "confidence": 1, "end": 129.965, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.71972656, "start": 129.805, "word": "in" }, { "confidence": 0.9995117, "end": 130.285, "punctuated_word": "fact,", "speaker": 0, "speaker_confidence": 0.71972656, "start": 129.965, "word": "fact" }, { "confidence": 1, "end": 130.44499, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.71972656, "start": 130.285, "word": "i" }, { "confidence": 0.9892578, "end": 130.765, "punctuated_word": "chose", "speaker": 0, "speaker_confidence": 0.71972656, "start": 130.44499, "word": "chose" }, { "confidence": 0.98551434, "end": 131.08499, "punctuated_word": "Svelte", "speaker": 0, "speaker_confidence": 0.71972656, "start": 130.765, "word": "svelte" }, { "confidence": 0.99609375, "end": 131.325, "punctuated_word": "over", "speaker": 0, "speaker_confidence": 0.71972656, "start": 131.08499, "word": "over" }, { "confidence": 0.984375, "end": 131.645, "punctuated_word": "React", "speaker": 0, "speaker_confidence": 0.71972656, "start": 131.325, "word": "react" }, { "confidence": 0.99902344, "end": 131.805, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.71972656, "start": 131.645, "word": "to" }, { "confidence": 0.9980469, "end": 132.125, "punctuated_word": "rebuild", "speaker": 0, "speaker_confidence": 0.71972656, "start": 131.805, "word": "rebuild" }, { "confidence": 0.89208984, "end": 132.285, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.71972656, "start": 132.125, "word": "the" }, { "confidence": 0.87231445, "end": 132.765, "punctuated_word": "Fireship", "speaker": 0, "speaker_confidence": 0.71972656, "start": 132.285, "word": "fireship" }, { "confidence": 0.94970703, "end": 132.925, "punctuated_word": "Pro", "speaker": 0, "speaker_confidence": 0.71972656, "start": 132.765, "word": "pro" }, { "confidence": 0.9873047, "end": 133.325, "punctuated_word": "website", "speaker": 0, "speaker_confidence": 0.71972656, "start": 132.925, "word": "website" }, { "confidence": 0.9289551, "end": 133.81, "punctuated_word": "recently,", "speaker": 0, "speaker_confidence": 0.71972656, "start": 133.325, "word": "recently" }, { "confidence": 0.35083008, "end": 133.97, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.71972656, "start": 133.81, "word": "and" }, { "confidence": 0.9980469, "end": 134.13, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.71972656, "start": 133.97, "word": "i" }, { "confidence": 0.99316406, "end": 134.29, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.71972656, "start": 134.13, "word": "have" }, { "confidence": 0.99902344, "end": 134.77, "punctuated_word": "absolutely", "speaker": 0, "speaker_confidence": 0.71972656, "start": 134.29, "word": "absolutely" }, { "confidence": 1, "end": 135.01, "punctuated_word": "no", "speaker": 0, "speaker_confidence": 0.71972656, "start": 134.77, "word": "no" }, { "confidence": 0.95996094, "end": 135.48999, "punctuated_word": "regrets.", "speaker": 0, "speaker_confidence": 0.71972656, "start": 135.01, "word": "regrets" }, { "confidence": 1, "end": 135.73, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.71972656, "start": 135.48999, "word": "the" }, { "confidence": 0.99902344, "end": 136.05, "punctuated_word": "website", "speaker": 0, "speaker_confidence": 0.71972656, "start": 135.73, "word": "website" }, { "confidence": 1, "end": 136.20999, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.71972656, "start": 136.05, "word": "is" }, { "confidence": 0.9980469, "end": 136.69, "punctuated_word": "smaller,", "speaker": 0, "speaker_confidence": 0.71972656, "start": 136.20999, "word": "smaller" }, { "confidence": 0.98168945, "end": 137.17, "punctuated_word": "faster,", "speaker": 0, "speaker_confidence": 0.71972656, "start": 136.69, "word": "faster" }, { "confidence": 0.99902344, "end": 137.41, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.71972656, "start": 137.17, "word": "and" }, { "confidence": 0.9199219, "end": 137.56999, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 0.71972656, "start": 137.41, "word": "most" }, { "confidence": 0.9416504, "end": 138.05, "punctuated_word": "importantly,", "speaker": 0, "speaker_confidence": 0.71972656, "start": 137.56999, "word": "importantly" }, { "confidence": 1, "end": 138.20999, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.71972656, "start": 138.05, "word": "it" }, { "confidence": 0.99902344, "end": 138.37, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.71972656, "start": 138.20999, "word": "was" }, { "confidence": 0.9980469, "end": 138.53, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.71972656, "start": 138.37, "word": "just" }, { "confidence": 0.99902344, "end": 138.69, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 0.71972656, "start": 138.53, "word": "way" }, { "confidence": 1, "end": 138.93, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.71972656, "start": 138.69, "word": "more" }, { "confidence": 1, "end": 139.09, "punctuated_word": "fun", "speaker": 0, "speaker_confidence": 0.71972656, "start": 138.93, "word": "fun" }, { "confidence": 0.99902344, "end": 139.17, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7504883, "start": 139.09, "word": "to" }, { "confidence": 0.99902344, "end": 139.65, "punctuated_word": "build.", "speaker": 0, "speaker_confidence": 0.7504883, "start": 139.17, "word": "build" }, { "confidence": 0.9980469, "end": 139.73, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.7504883, "start": 139.65, "word": "in" }, { "confidence": 1, "end": 139.89, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 0.7504883, "start": 139.73, "word": "any" }, { "confidence": 0.9995117, "end": 140.20999, "punctuated_word": "case,", "speaker": 0, "speaker_confidence": 0.7504883, "start": 139.89, "word": "case" }, { "confidence": 0.9526367, "end": 140.53, "punctuated_word": "React", "speaker": 0, "speaker_confidence": 0.7504883, "start": 140.20999, "word": "react" }, { "confidence": 0.99902344, "end": 140.69, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7504883, "start": 140.53, "word": "is" }, { "confidence": 1, "end": 140.84999, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.7504883, "start": 140.69, "word": "not" }, { "confidence": 1, "end": 141.09, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.7504883, "start": 140.84999, "word": "going" }, { "confidence": 0.9980469, "end": 141.48999, "punctuated_word": "anywhere", "speaker": 0, "speaker_confidence": 0.7504883, "start": 141.09, "word": "anywhere" }, { "confidence": 0.8676758, "end": 141.89, "punctuated_word": "anytime", "speaker": 0, "speaker_confidence": 0.7504883, "start": 141.48999, "word": "anytime" }, { "confidence": 0.8991699, "end": 142.13, "punctuated_word": "soon,", "speaker": 0, "speaker_confidence": 0.7504883, "start": 141.89, "word": "soon" }, { "confidence": 1, "end": 142.37, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7504883, "start": 142.13, "word": "and" }, { "confidence": 1, "end": 142.53, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.7504883, "start": 142.37, "word": "this" }, { "confidence": 0.9980469, "end": 142.61, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7504883, "start": 142.53, "word": "is" }, { "confidence": 0.99902344, "end": 142.84999, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.7504883, "start": 142.61, "word": "just" }, { "confidence": 0.99609375, "end": 142.93, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7504883, "start": 142.84999, "word": "the" }, { "confidence": 1, "end": 143.25, "punctuated_word": "latest", "speaker": 0, "speaker_confidence": 0.7504883, "start": 142.93, "word": "latest" }, { "confidence": 1, "end": 143.705, "punctuated_word": "chapter", "speaker": 0, "speaker_confidence": 0.7504883, "start": 143.25, "word": "chapter" }, { "confidence": 0.9716797, "end": 143.865, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7504883, "start": 143.705, "word": "in" }, { "confidence": 0.9951172, "end": 144.02501, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7504883, "start": 143.865, "word": "the" }, { "confidence": 0.97314453, "end": 144.185, "punctuated_word": "great", "speaker": 0, "speaker_confidence": 0.7504883, "start": 144.02501, "word": "great" }, { "confidence": 0.9892578, "end": 144.685, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.7504883, "start": 144.185, "word": "javascript" }, { "confidence": 0.95947266, "end": 145.245, "punctuated_word": "framework", "speaker": 0, "speaker_confidence": 0.7504883, "start": 144.745, "word": "framework" }, { "confidence": 0.9902344, "end": 145.625, "punctuated_word": "war.", "speaker": 0, "speaker_confidence": 0.7504883, "start": 145.30501, "word": "war" }, { "confidence": 1, "end": 145.785, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.7504883, "start": 145.625, "word": "this" }, { "confidence": 0.9970703, "end": 145.945, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.7504883, "start": 145.785, "word": "has" }, { "confidence": 1, "end": 146.02501, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.7504883, "start": 145.945, "word": "been" }, { "confidence": 0.9838867, "end": 146.185, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.47509766, "start": 146.02501, "word": "the" }, { "confidence": 0.93408203, "end": 146.345, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.47509766, "start": 146.185, "word": "code" }, { "confidence": 0.9658203, "end": 146.825, "punctuated_word": "report.", "speaker": 0, "speaker_confidence": 0.47509766, "start": 146.345, "word": "report" }, { "confidence": 1, "end": 147.065, "punctuated_word": "Thanks", "speaker": 0, "speaker_confidence": 0.47509766, "start": 146.825, "word": "thanks" }, { "confidence": 1, "end": 147.225, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.47509766, "start": 147.065, "word": "for" }, { "confidence": 0.8847656, "end": 147.705, "punctuated_word": "watching,", "speaker": 0, "speaker_confidence": 0.47509766, "start": 147.225, "word": "watching" }, { "confidence": 1, "end": 147.865, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.47509766, "start": 147.705, "word": "and" }, { "confidence": 0.9980469, "end": 147.945, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.47509766, "start": 147.865, "word": "i" }, { "confidence": 0.99902344, "end": 148.185, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.47509766, "start": 147.945, "word": "will" }, { "confidence": 0.99902344, "end": 148.345, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.47509766, "start": 148.185, "word": "see" }, { "confidence": 1, "end": 148.505, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.15234375, "start": 148.345, "word": "you" }, { "confidence": 0.99902344, "end": 148.745, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.15234375, "start": 148.505, "word": "in" }, { "confidence": 1, "end": 148.825, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.15234375, "start": 148.745, "word": "the" }, { "confidence": 1, "end": 149.065, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.15234375, "start": 148.825, "word": "next" }, { "confidence": 0.9921875, "end": 149.565, "punctuated_word": "one.", "speaker": 0, "speaker_confidence": 0.15234375, "start": 149.065, "word": "one" } ] } ], "detected_language": "", "language_confidence": 0, "search": null } ], "summary": { "result": "success", "short": "The React framework, which was acquired by Shopify in 2016, uses React server components as the framework's official solution for rendering. Remix uses React server component instead, creating a schism around server side rendering, which is causing bottlenecks for developers. Although the new framework is not yet ready, many developers are becoming more open-minded to alternative frameworks like Svelte and quick looking dank AF. The React framework is not going anywhere anytime soon, and the team is just trying to rebuild the Fireship Pro website." }, "utterances": null } }
downloads\When_your_JavaScript_framework_gets_acquired.wav
https://www.youtube.com/watch?v=HleppfVh8jc
When your JavaScript framework gets acquired
262,358
Fireship
506
Last week I launched a side-hustle business with voice cloning AI, but things are not going well. Learn why most business ideas fail and develop techniques to improve your idea validation process. #tech #business #startups 💬 Chat with Me on Discord https://discord.gg/fireship 🔗 Resources The Art of the Side Hustle https://youtu.be/A4_TFHzqAAg AI startup ideas https://youtu.be/Aa83vRghue4 My Voice Cloning Service https://vocalize.cloud Twitter report of business launch https://twitter.com/fireship_dev/status/1659930105127505920 🔥 Get More Content - Upgrade to PRO Upgrade at https://fireship.io/pro Use code YT25 for 25% off PRO access 🎨 My Editor Settings - Atom One Dark - vscode-icons - Fira Code Font 🔖 Topics Covered - Advice for solo businesses run by programmers - Building in public - Community building and viral marketing techniques - Top reasons businesses fail - Tips for launching a tech startup - How to validate business ideas - Running a software development side-hustle - Charles Bukowski Motivation
{ "metadata": { "channels": 1, "created": "2024-02-04T13:23:37.948Z", "duration": 505.73062, "model_info": { "30089e05-99d1-4376-b32e-c263170674af": { "arch": "nova-2", "name": "2-general-nova", "version": "2024-01-09.29447" } }, "models": [ "30089e05-99d1-4376-b32e-c263170674af" ], "request_id": "7c109477-6726-4097-abb9-2fbccde18052", "sha256": "6a300c7e55b6c6eba4b3d502380f7c74fd75805201d3bd26ce550aab4c1e421b", "summary_info": { "input_tokens": 2432, "model_uuid": "67875a7f-c9c4-48a0-aa55-5bdb8a91c34a", "output_tokens": 101 }, "transaction_key": "deprecated", "warnings": null }, "results": { "channels": [ { "alternatives": [ { "confidence": 0.99902344, "entities": null, "paragraphs": { "paragraphs": [ { "end": 26.21, "num_words": 93, "sentences": [ { "end": 2, "start": 0.16, "text": "This isn't the video I wanted to make today." }, { "end": 6.48, "start": 2, "text": "I thought it was going to be about how I bought a catamaran, quit YouTube, and started sailing around the world." }, { "end": 9.265, "start": 6.48, "text": "Unfortunately though, reality has deviated from my projections." }, { "end": 22.669998, "start": 9.745, "text": "Despite getting 3,121 free tier sign ups and selling 1,000,000 100,000 tokens with $0 in infrastructure cost, thanks to the high risk free tier and a gross profit of $75.90, my side hustle is still failing." }, { "end": 26.21, "start": 22.669998, "text": "And if we can't turn the ship around soon, I'm going to have to take it behind the barn." } ], "speaker": 0, "start": 0.16 }, { "end": 53.274998, "num_words": 92, "sentences": [ { "end": 32.095, "start": 29.215, "text": "I'd expect anyone in this unit to do the same for me." }, { "end": 40.62, "start": 32.095, "text": "In today's video, we'll look at everything that's gone wrong so far, but but more importantly, look at a variety of strategies that you can use to validate ideas and not things up." }, { "end": 42.94, "start": 40.62, "text": "First of all though, why is my side hustle failing?" }, { "end": 49.195, "start": 42.94, "text": "I made a 75.9 dollar profit in the 1st day, which extrapolates to $27,000 in annual cash flow." }, { "end": 53.274998, "start": 49.195, "text": "In addition, the business runs on autopilot, and I haven't had to touch the code since it went live." } ], "speaker": 0, "start": 29.215 }, { "end": 76.770004, "num_words": 93, "sentences": [ { "end": 58.66, "start": 53.274998, "text": "That's great, and I'll likely keep it running indefinitely from here as a zombie project, but here's why I'm not very optimistic." }, { "end": 60.74, "start": 58.88, "text": "My conversion rate was only 0.3%." }, { "end": 66.525, "start": 61.28, "text": "That means I need to get 300 free users to sign up just to get one paid user who's only paying $6.90." }, { "end": 74.21, "start": 67.305, "text": "I'm able to be profitable in the short term because I have this YouTube channel that's like a gravy train with biscuit wheels, but I've already used up that ace in the hole." }, { "end": 76.770004, "start": 74.21, "text": "I've only had 2 additional sales after the initial launch." } ], "speaker": 0, "start": 53.274998 }, { "end": 110.09, "num_words": 146, "sentences": [ { "end": 85.935, "start": 76.770004, "text": "If I wanna keep pursuing this business, I need to either invest a lot of my own time into organic marketing or pay a friendly company like Google or Meta an absurd amount of money to appear on their platform." }, { "end": 89.880005, "start": 85.935, "text": "It depends on the industry, but it can cost 100 of dollars just to get one conversion." }, { "end": 98.755, "start": 89.94, "text": "If you have a product that has a very high lifetime value, it can definitely be worth it to pay for advertising because if you can pay for ads while still being profitable, then there's really no reason not to." }, { "end": 103.795, "start": 98.755, "text": "In my case, though, my product only costs $6.90, which would put me deep in the red with paid ads." }, { "end": 110.09, "start": 103.795, "text": "But the one thing that's more valuable Money is your time, and I don't wanna spend my time standing on the corner twirling a sign for the side hustle." } ], "speaker": 0, "start": 76.770004 }, { "end": 123.34, "num_words": 46, "sentences": [ { "end": 114.58501, "start": 110.09, "text": "Behind almost every successful small business is an extremely passionate and driven founder." }, { "end": 116.425, "start": 114.58501, "text": "If you're going to try, go all the way." }, { "end": 117.705, "start": 116.425, "text": "Otherwise, don't even start." }, { "end": 121.385, "start": 117.705, "text": "This could mean losing girlfriends, wives, relatives, maybe even your mind." }, { "end": 123.34, "start": 121.385, "text": "It could not eating for 3 or 4 days." } ], "speaker": 0, "start": 110.09 }, { "end": 130.06, "num_words": 25, "sentences": [ { "end": 125.02, "start": 123.34, "text": "It could mean freezing on a park bench." }, { "end": 125.9, "start": 125.02, "text": "It could mean jail." }, { "end": 126.8, "start": 125.9, "text": "It could mean derision." }, { "end": 128.64, "start": 127.02, "text": "It could mean mockery, isolation." }, { "end": 130.06, "start": 128.94, "text": "Isolation is the gift." } ], "speaker": 0, "start": 123.34 }, { "end": 144.95, "num_words": 68, "sentences": [ { "end": 133.61499, "start": 130.06, "text": "All the others They're just a test of your endurance, of how much you really want to do it." }, { "end": 138.415, "start": 133.61499, "text": "And you'll do it, despite rejection and the worst odds, and it will be better than anything else you can imagine." }, { "end": 140.39, "start": 138.415, "text": "If you're going Shry, go all the way." }, { "end": 141.75, "start": 140.39, "text": "There's no other feeling like that." }, { "end": 144.95, "start": 141.75, "text": "You will be alone with the gods, and the nights will flame with fire." } ], "speaker": 0, "start": 130.06 }, { "end": 163.87001, "num_words": 81, "sentences": [ { "end": 147.015, "start": 144.95, "text": "You will ride life straight to perfect after." }, { "end": 148.695, "start": 147.015, "text": "It's the only good fight there is." }, { "end": 153.095, "start": 148.695, "text": "If that Bukowski poem doesn't describe how you feel about your project, then it might not be worth your time." }, { "end": 160.25, "start": 153.095, "text": "If I'm being totally honest with myself, I'd much Rather spend my time making content on Fire Ship than I would trying to build up this half assed voice cloning tool." }, { "end": 163.87001, "start": 160.25, "text": "That being said, what could I have done differently to make this project more successful?" } ], "speaker": 0, "start": 144.95 }, { "end": 194.55, "num_words": 123, "sentences": [ { "end": 168.855, "start": 163.93001, "text": "Well, First of all, I only spent 2 days building it, it's not responsive, and has a terrible landing page." }, { "end": 176.83, "start": 168.855, "text": "Any meaningful minimum viable project will take a lot longer this to develop, even when using a highly optimized tech stack like the it or suck it stack." }, { "end": 184.485, "start": 176.83, "text": "Instead of using IBM Carbon as the design system, I'd spend more time creating a unique custom design and have a much more powerful call to action on the home page." }, { "end": 187.75, "start": 184.485, "text": "And I should do a better job describing what the product is in just a few words." }, { "end": 194.55, "start": 187.91, "text": "In addition, you wanna use some kind of analytics to understand how your users are behaving because they're likely using your app in ways you never expected." } ], "speaker": 0, "start": 163.93001 }, { "end": 222.06999, "num_words": 116, "sentences": [ { "end": 203.255, "start": 194.55, "text": "Like, Firebase itself was originally Supposed to be a chat widget kind of like intercom, but they found that developers were putting all kinds of random stuff in it, so they decided to pivot to a real time database." }, { "end": 207.17, "start": 203.395, "text": "Then a few Few years later it's acquired by Google, making them rich beyond their wildest dreams." }, { "end": 209.26999, "start": 207.17, "text": "The founders made their own luck just like Tarantino." }, { "end": 216.255, "start": 209.65, "text": "To really optimize things, you should look at analytics, then do some AB testing with a small subset of users before you invest in a huge launch." }, { "end": 222.06999, "start": 216.255, "text": "And that's especially important if you pay for ads then you really need to optimize that conversion rate, but we're getting ahead of ourselves." } ], "speaker": 0, "start": 194.55 }, { "end": 245.29001, "num_words": 97, "sentences": [ { "end": 227.145, "start": 222.12999, "text": "The big question is how do you even come up with an idea for a side hustle, and then more importantly, validate it?" }, { "end": 228.74501, "start": 227.225, "text": "Good ideas are easy to come by." }, { "end": 236.425, "start": 228.74501, "text": "The problem is that there's a 100,000,000,000 people in the world if you include the outer lands beyond the ice wall, and somebody out there is likely already a millionaire with your idea." }, { "end": 241.21, "start": 236.425, "text": "The fact That someone is already executing your idea is actually a great way to get some early validation." }, { "end": 245.29001, "start": 241.27, "text": "Big companies like Meta do this all the time by stealing features from smaller applications." } ], "speaker": 0, "start": 222.12999 }, { "end": 266.985, "num_words": 87, "sentences": [ { "end": 248.505, "start": 245.67001, "text": "In fact, It's a good sign that someone's already doing your idea." }, { "end": 254.64, "start": 248.505, "text": "You just need to figure out what they're doing wrong or narrow down your target to find a segment of the market where you could doing things better." }, { "end": 256.96, "start": 254.64, "text": "In fact, that's been my approach to this YouTube channel." }, { "end": 259.62, "start": 256.96, "text": "When I started, there were already millions of JavaScript tutorials." }, { "end": 266.985, "start": 259.68, "text": "You might even call it an over saturated market, but I saw an opportunity to create shorter, faster content that I thought developers like me would like." } ], "speaker": 0, "start": 245.67001 }, { "end": 296.19498, "num_words": 126, "sentences": [ { "end": 268.505, "start": 266.985, "text": "Just look at a company like Figma." }, { "end": 276.67, "start": 268.505, "text": "They built a design product that was really only slightly different than things offered by Adobe at the time, but they addressed the most common pain points and made a product that people love." }, { "end": 281.76498, "start": 276.67, "text": "A few years later, Adobe acquires them for $20,000,000,000 just so they could make the product suck again." }, { "end": 291.09998, "start": 281.76498, "text": "Now once you have the general idea of what you want to build, another way to validate it is you build in public, and by that I mean get on social media and tell the world what you're building before you even build it." }, { "end": 296.19498, "start": 291.09998, "text": "What you'll find is that there's a lot of other indie makers doing the same thing that will support you and provide feedback." } ], "speaker": 0, "start": 266.985 }, { "end": 319.61, "num_words": 92, "sentences": [ { "end": 301.05002, "start": 296.19498, "text": "Oh, and by the way, make sure to also follow me on Twitter because I'll be posting extra video content there soon." }, { "end": 305.29, "start": 301.05002, "text": "That's great and all, but what you really need to do is validate the idea with your core audience." }, { "end": 309.355, "start": 305.29, "text": "One product everybody hates but still pays a $100 a year for is Microsoft Word." }, { "end": 316.23502, "start": 309.515, "text": "What you can do is find real people or micro influencers on social media who use this product, but understand its pain points." }, { "end": 319.61, "start": 316.23502, "text": "Follow these people, like their posts, and engage with them on social media." } ], "speaker": 0, "start": 296.19498 }, { "end": 335.98, "num_words": 74, "sentences": [ { "end": 324.65, "start": 319.61, "text": "Once you've gained their trust, you can then reach out with a direct message that's like, hey, I saw you hate Microsoft Word." }, { "end": 327.685, "start": 324.65, "text": "I'm developing this new product that solves x and y pain points." }, { "end": 329.92502, "start": 327.685, "text": "Do you want to be the first one to check it out when it's ready?" }, { "end": 333.225, "start": 329.92502, "text": "This is highly surgical direct marketing, but it's also highly effective." }, { "end": 335.98, "start": 333.34, "text": "And people use it on me for their tech products, and it works." } ], "speaker": 0, "start": 319.61 }, { "end": 357.835, "num_words": 109, "sentences": [ { "end": 337.41998, "start": 335.98, "text": "Because, honestly, it's a win win." }, { "end": 342.325, "start": 337.41998, "text": "If you're creating something that can make my life better, I'd like to know about it, but I'm by not going to click on one of your ads." }, { "end": 350.64, "start": 342.325, "text": "If you get a lot of people excited, that means you're probably on to something, but the reality is that rejection is very common, and you might get rejected a bunch of times even if you Have a good idea." }, { "end": 355.6, "start": 350.64, "text": "So another way to validate your idea is to get a bunch of people to sign up for it before you even build it." }, { "end": 357.835, "start": 355.6, "text": "You'll see startups do this all the time with wait list." } ], "speaker": 0, "start": 335.98 }, { "end": 380.89502, "num_words": 102, "sentences": [ { "end": 364.075, "start": 357.835, "text": "What they'll do is focus on marketing first, put together a bunch of promises, and then build up an email list that they can engage with in the future." }, { "end": 366.235, "start": 364.075, "text": "Do not underestimate the power of an email list." }, { "end": 369.8, "start": 366.235, "text": "Nobody's going to sign up for an email list unless they truly want what you're selling." }, { "end": 376.67502, "start": 369.8, "text": "On top of that, once you have an email list, you can use it to invite people to a Discord rover, and from there, you're directly engaging with your target customers." }, { "end": 380.89502, "start": 376.73502, "text": "You can even give them early access in exchange for feedback about what works and what doesn't." } ], "speaker": 0, "start": 357.835 }, { "end": 410.235, "num_words": 126, "sentences": [ { "end": 385.81, "start": 380.89502, "text": "It's way easier to validate ideas when you have a bunch of collaborators who see the value in your ideas." }, { "end": 392.875, "start": 385.87, "text": "Then as you start actually delivering on your idea, this community will help promote the project because as you created something that adds value to people's lives." }, { "end": 394.235, "start": 392.875, "text": "It's a win win for everybody." }, { "end": 404.35, "start": 394.235, "text": "Sam Altman of Y Combinator and OpenAI said the single most important thing in a startup is to create a product So good that people will tell their friends about it, but you won't know if you have a good product until you actually build it." }, { "end": 410.235, "start": 404.35, "text": "Usually, when I have an idea, I have one core feature, but then a bunch of optional supporting features that I want to add on to it." } ], "speaker": 0, "start": 380.89502 }, { "end": 435.78, "num_words": 103, "sentences": [ { "end": 418.83002, "start": 410.235, "text": "Avoid the temptation to ship a whole bunch of features all at once, instead focus on the core problem to get an MVP out there quickly and some real users who can validate the idea." }, { "end": 421.45, "start": 418.89, "text": "Software development almost never goes according to plan." }, { "end": 427.095, "start": 421.45, "text": "The end result ends up looking different than the initial vision because it's really hard to predict what the end user actually wants." }, { "end": 430.835, "start": 427.155, "text": "Build something lean and focused, get a user, and then build up an empire from there." }, { "end": 435.78, "start": 430.835, "text": "You can also launch on websites like Product Hunt You further validate if people are actually interested in what you're offering." } ], "speaker": 0, "start": 410.235 }, { "end": 461.785, "num_words": 113, "sentences": [ { "end": 440.6, "start": 435.78, "text": "From a technical standpoint, it's usually a good idea to build apps that have as little friction as possible." }, { "end": 446.975, "start": 440.66, "text": "Like with Firebase, I might start with anonymous authentication, so the user doesn't have to enter an email to start using the main features." }, { "end": 450.89502, "start": 446.975, "text": "Then at some later point after they've enjoyed using the app, they can upgrade to a full account." }, { "end": 456.72998, "start": 450.89502, "text": "If If I had a nickel for every time I decided not to use an app just because it had a sign in form, I would have a shitload of nickels." }, { "end": 461.785, "start": 456.78998, "text": "But the bottom line is to try to keep your app minimal, free, and frictionless, list, especially in the early game." } ], "speaker": 0, "start": 435.78 }, { "end": 485.28, "num_words": 100, "sentences": [ { "end": 465.865, "start": 461.785, "text": "Don't even worry about making money, just focus aggressively on making people's lives better." }, { "end": 471.96, "start": 465.865, "text": "In the mid game, after you have a customer base, you can start adding all extra features that your customers want, and charge money for them accordingly." }, { "end": 476.595, "start": 471.96, "text": "And then finally in the late game, you can lobby the government for regulations to crush all the smaller competition." }, { "end": 483.335, "start": 476.915, "text": "Now the final thing I want to say is that even if your side hustle fails like most of them do, you'll have gained a lot by grinding through this process." }, { "end": 485.28, "start": 483.475, "text": "You'll have some new contacts in your rolodex." } ], "speaker": 0, "start": 461.785 }, { "end": 505.26556, "num_words": 91, "sentences": [ { "end": 487.65997, "start": 485.41998, "text": "You'll have a small community of people pulling for you." }, { "end": 491.41998, "start": 487.65997, "text": "You'll have a cool project on your portfolio that can help you get a regular developer job." }, { "end": 494.945, "start": 491.41998, "text": "You'll have a bunch of reusable code that you can use for your next failed project." }, { "end": 502.60556, "start": 494.945, "text": "You'll have a more lean bank account, and finally, you'll have the pride in knowing that you took a risk and tried something that many people dream about, but most are too afraid to ever try." }, { "end": 505.26556, "start": 502.60556, "text": "Thanks for watching, and I will see you in the next one." } ], "speaker": 0, "start": 485.41998 } ], "transcript": "\nSpeaker 0: This isn't the video I wanted to make today. I thought it was going to be about how I bought a catamaran, quit YouTube, and started sailing around the world. Unfortunately though, reality has deviated from my projections. Despite getting 3,121 free tier sign ups and selling 1,000,000 100,000 tokens with $0 in infrastructure cost, thanks to the high risk free tier and a gross profit of $75.90, my side hustle is still failing. And if we can't turn the ship around soon, I'm going to have to take it behind the barn.\n\nI'd expect anyone in this unit to do the same for me. In today's video, we'll look at everything that's gone wrong so far, but but more importantly, look at a variety of strategies that you can use to validate ideas and not things up. First of all though, why is my side hustle failing? I made a 75.9 dollar profit in the 1st day, which extrapolates to $27,000 in annual cash flow. In addition, the business runs on autopilot, and I haven't had to touch the code since it went live.\n\nThat's great, and I'll likely keep it running indefinitely from here as a zombie project, but here's why I'm not very optimistic. My conversion rate was only 0.3%. That means I need to get 300 free users to sign up just to get one paid user who's only paying $6.90. I'm able to be profitable in the short term because I have this YouTube channel that's like a gravy train with biscuit wheels, but I've already used up that ace in the hole. I've only had 2 additional sales after the initial launch.\n\nIf I wanna keep pursuing this business, I need to either invest a lot of my own time into organic marketing or pay a friendly company like Google or Meta an absurd amount of money to appear on their platform. It depends on the industry, but it can cost 100 of dollars just to get one conversion. If you have a product that has a very high lifetime value, it can definitely be worth it to pay for advertising because if you can pay for ads while still being profitable, then there's really no reason not to. In my case, though, my product only costs $6.90, which would put me deep in the red with paid ads. But the one thing that's more valuable Money is your time, and I don't wanna spend my time standing on the corner twirling a sign for the side hustle.\n\nBehind almost every successful small business is an extremely passionate and driven founder. If you're going to try, go all the way. Otherwise, don't even start. This could mean losing girlfriends, wives, relatives, maybe even your mind. It could not eating for 3 or 4 days.\n\nIt could mean freezing on a park bench. It could mean jail. It could mean derision. It could mean mockery, isolation. Isolation is the gift.\n\nAll the others They're just a test of your endurance, of how much you really want to do it. And you'll do it, despite rejection and the worst odds, and it will be better than anything else you can imagine. If you're going Shry, go all the way. There's no other feeling like that. You will be alone with the gods, and the nights will flame with fire.\n\nYou will ride life straight to perfect after. It's the only good fight there is. If that Bukowski poem doesn't describe how you feel about your project, then it might not be worth your time. If I'm being totally honest with myself, I'd much Rather spend my time making content on Fire Ship than I would trying to build up this half assed voice cloning tool. That being said, what could I have done differently to make this project more successful?\n\nWell, First of all, I only spent 2 days building it, it's not responsive, and has a terrible landing page. Any meaningful minimum viable project will take a lot longer this to develop, even when using a highly optimized tech stack like the it or suck it stack. Instead of using IBM Carbon as the design system, I'd spend more time creating a unique custom design and have a much more powerful call to action on the home page. And I should do a better job describing what the product is in just a few words. In addition, you wanna use some kind of analytics to understand how your users are behaving because they're likely using your app in ways you never expected.\n\nLike, Firebase itself was originally Supposed to be a chat widget kind of like intercom, but they found that developers were putting all kinds of random stuff in it, so they decided to pivot to a real time database. Then a few Few years later it's acquired by Google, making them rich beyond their wildest dreams. The founders made their own luck just like Tarantino. To really optimize things, you should look at analytics, then do some AB testing with a small subset of users before you invest in a huge launch. And that's especially important if you pay for ads then you really need to optimize that conversion rate, but we're getting ahead of ourselves.\n\nThe big question is how do you even come up with an idea for a side hustle, and then more importantly, validate it? Good ideas are easy to come by. The problem is that there's a 100,000,000,000 people in the world if you include the outer lands beyond the ice wall, and somebody out there is likely already a millionaire with your idea. The fact That someone is already executing your idea is actually a great way to get some early validation. Big companies like Meta do this all the time by stealing features from smaller applications.\n\nIn fact, It's a good sign that someone's already doing your idea. You just need to figure out what they're doing wrong or narrow down your target to find a segment of the market where you could doing things better. In fact, that's been my approach to this YouTube channel. When I started, there were already millions of JavaScript tutorials. You might even call it an over saturated market, but I saw an opportunity to create shorter, faster content that I thought developers like me would like.\n\nJust look at a company like Figma. They built a design product that was really only slightly different than things offered by Adobe at the time, but they addressed the most common pain points and made a product that people love. A few years later, Adobe acquires them for $20,000,000,000 just so they could make the product suck again. Now once you have the general idea of what you want to build, another way to validate it is you build in public, and by that I mean get on social media and tell the world what you're building before you even build it. What you'll find is that there's a lot of other indie makers doing the same thing that will support you and provide feedback.\n\nOh, and by the way, make sure to also follow me on Twitter because I'll be posting extra video content there soon. That's great and all, but what you really need to do is validate the idea with your core audience. One product everybody hates but still pays a $100 a year for is Microsoft Word. What you can do is find real people or micro influencers on social media who use this product, but understand its pain points. Follow these people, like their posts, and engage with them on social media.\n\nOnce you've gained their trust, you can then reach out with a direct message that's like, hey, I saw you hate Microsoft Word. I'm developing this new product that solves x and y pain points. Do you want to be the first one to check it out when it's ready? This is highly surgical direct marketing, but it's also highly effective. And people use it on me for their tech products, and it works.\n\nBecause, honestly, it's a win win. If you're creating something that can make my life better, I'd like to know about it, but I'm by not going to click on one of your ads. If you get a lot of people excited, that means you're probably on to something, but the reality is that rejection is very common, and you might get rejected a bunch of times even if you Have a good idea. So another way to validate your idea is to get a bunch of people to sign up for it before you even build it. You'll see startups do this all the time with wait list.\n\nWhat they'll do is focus on marketing first, put together a bunch of promises, and then build up an email list that they can engage with in the future. Do not underestimate the power of an email list. Nobody's going to sign up for an email list unless they truly want what you're selling. On top of that, once you have an email list, you can use it to invite people to a Discord rover, and from there, you're directly engaging with your target customers. You can even give them early access in exchange for feedback about what works and what doesn't.\n\nIt's way easier to validate ideas when you have a bunch of collaborators who see the value in your ideas. Then as you start actually delivering on your idea, this community will help promote the project because as you created something that adds value to people's lives. It's a win win for everybody. Sam Altman of Y Combinator and OpenAI said the single most important thing in a startup is to create a product So good that people will tell their friends about it, but you won't know if you have a good product until you actually build it. Usually, when I have an idea, I have one core feature, but then a bunch of optional supporting features that I want to add on to it.\n\nAvoid the temptation to ship a whole bunch of features all at once, instead focus on the core problem to get an MVP out there quickly and some real users who can validate the idea. Software development almost never goes according to plan. The end result ends up looking different than the initial vision because it's really hard to predict what the end user actually wants. Build something lean and focused, get a user, and then build up an empire from there. You can also launch on websites like Product Hunt You further validate if people are actually interested in what you're offering.\n\nFrom a technical standpoint, it's usually a good idea to build apps that have as little friction as possible. Like with Firebase, I might start with anonymous authentication, so the user doesn't have to enter an email to start using the main features. Then at some later point after they've enjoyed using the app, they can upgrade to a full account. If If I had a nickel for every time I decided not to use an app just because it had a sign in form, I would have a shitload of nickels. But the bottom line is to try to keep your app minimal, free, and frictionless, list, especially in the early game.\n\nDon't even worry about making money, just focus aggressively on making people's lives better. In the mid game, after you have a customer base, you can start adding all extra features that your customers want, and charge money for them accordingly. And then finally in the late game, you can lobby the government for regulations to crush all the smaller competition. Now the final thing I want to say is that even if your side hustle fails like most of them do, you'll have gained a lot by grinding through this process. You'll have some new contacts in your rolodex.\n\nYou'll have a small community of people pulling for you. You'll have a cool project on your portfolio that can help you get a regular developer job. You'll have a bunch of reusable code that you can use for your next failed project. You'll have a more lean bank account, and finally, you'll have the pride in knowing that you took a risk and tried something that many people dream about, but most are too afraid to ever try. Thanks for watching, and I will see you in the next one." }, "summaries": null, "topics": [ { "end_word": 74, "start_word": 0, "text": "This isn't the video I wanted to make today. I thought it was going to be about how I bought a catamaran, quit YouTube, and started sailing around the world. Unfortunately though, reality has deviated from my projections. Despite getting 3,121 free tier sign ups and selling 1,000,000 100,000 tokens with $0 in infrastructure cost, thanks to the high risk free tier and a gross profit of $75.90, my side hustle is still failing.", "topics": [ { "confidence": 0.1751512, "topic": "youtube" } ] }, { "end_word": 105, "start_word": 74, "text": "And if we can't turn the ship around soon, I'm going to have to take it behind the barn. I'd expect anyone in this unit to do the same for me.", "topics": [] }, { "end_word": 207, "start_word": 105, "text": "In today's video, we'll look at everything that's gone wrong so far, but but more importantly, look at a variety of strategies that you can use to validate ideas and not things up. First of all though, why is my side hustle failing? I made a 75.9 dollar profit in the 1st day, which extrapolates to $27,000 in annual cash flow. In addition, the business runs on autopilot, and I haven't had to touch the code since it went live. That's great, and I'll likely keep it running indefinitely from here as a zombie project, but here's why I'm not very optimistic.", "topics": [ { "confidence": 0.08208824, "topic": "earnings" }, { "confidence": 0.07801793, "topic": "economics" }, { "confidence": 0.04195865, "topic": "sales" }, { "confidence": 0.020560764, "topic": "revenue" }, { "confidence": 0.006390809, "topic": "finance" } ] }, { "end_word": 437, "start_word": 207, "text": "My conversion rate was only 0.3%. That means I need to get 300 free users to sign up just to get one paid user who's only paying $6.90. I'm able to be profitable in the short term because I have this YouTube channel that's like a gravy train with biscuit wheels, but I've already used up that ace in the hole. I've only had 2 additional sales after the initial launch. If I wanna keep pursuing this business, I need to either invest a lot of my own time into organic marketing or pay a friendly company like Google or Meta an absurd amount of money to appear on their platform. It depends on the industry, but it can cost 100 of dollars just to get one conversion. If you have a product that has a very high lifetime value, it can definitely be worth it to pay for advertising because if you can pay for ads while still being profitable, then there's really no reason not to. In my case, though, my product only costs $6.90, which would put me deep in the red with paid ads. But the one thing that's more valuable Money is your time, and I don't wanna spend my time standing on the corner twirling a sign for the side hustle. Behind almost every successful small business is an extremely passionate and driven founder.", "topics": [ { "confidence": 0.5583316, "topic": "marketing" }, { "confidence": 0.5042763, "topic": "sales" }, { "confidence": 0.38184536, "topic": "business" }, { "confidence": 0.3549105, "topic": "advertising" }, { "confidence": 0.19309156, "topic": "commerce" }, { "confidence": 0.05609293, "topic": "youtube" }, { "confidence": 0.054875467, "topic": "revenue" }, { "confidence": 0.0488596, "topic": "customers" }, { "confidence": 0.03613682, "topic": "customer support" }, { "confidence": 0.008513652, "topic": "purchasing" } ] }, { "end_word": 478, "start_word": 437, "text": "If you're going to try, go all the way. Otherwise, don't even start. This could mean losing girlfriends, wives, relatives, maybe even your mind. It could not eating for 3 or 4 days. It could mean freezing on a park bench.", "topics": [] }, { "end_word": 535, "start_word": 478, "text": "It could mean jail. It could mean derision. It could mean mockery, isolation. Isolation is the gift. All the others They're just a test of your endurance, of how much you really want to do it. And you'll do it, despite rejection and the worst odds, and it will be better than anything else you can imagine.", "topics": [ { "confidence": 0.024138484, "topic": "prison" } ] }, { "end_word": 543, "start_word": 535, "text": "If you're going Shry, go all the way.", "topics": [] }, { "end_word": 629, "start_word": 543, "text": "There's no other feeling like that. You will be alone with the gods, and the nights will flame with fire. You will ride life straight to perfect after. It's the only good fight there is. If that Bukowski poem doesn't describe how you feel about your project, then it might not be worth your time. If I'm being totally honest with myself, I'd much Rather spend my time making content on Fire Ship than I would trying to build up this half assed voice cloning tool.", "topics": [ { "confidence": 0.03933303, "topic": "poetry" }, { "confidence": 0.011618959, "topic": "fiction" }, { "confidence": 0.008868839, "topic": "gods" } ] }, { "end_word": 664, "start_word": 629, "text": "That being said, what could I have done differently to make this project more successful? Well, First of all, I only spent 2 days building it, it's not responsive, and has a terrible landing page.", "topics": [] }, { "end_word": 806, "start_word": 664, "text": "Any meaningful minimum viable project will take a lot longer this to develop, even when using a highly optimized tech stack like the it or suck it stack. Instead of using IBM Carbon as the design system, I'd spend more time creating a unique custom design and have a much more powerful call to action on the home page. And I should do a better job describing what the product is in just a few words. In addition, you wanna use some kind of analytics to understand how your users are behaving because they're likely using your app in ways you never expected. Like, Firebase itself was originally Supposed to be a chat widget kind of like intercom, but they found that developers were putting all kinds of random stuff in it, so they decided to pivot to a real time database.", "topics": [ { "confidence": 0.08254283, "topic": "home improvement" }, { "confidence": 0.017302027, "topic": "graphic design" }, { "confidence": 0.008441282, "topic": "computer science" } ] }, { "end_word": 1074, "start_word": 806, "text": "Then a few Few years later it's acquired by Google, making them rich beyond their wildest dreams. The founders made their own luck just like Tarantino. To really optimize things, you should look at analytics, then do some AB testing with a small subset of users before you invest in a huge launch. And that's especially important if you pay for ads then you really need to optimize that conversion rate, but we're getting ahead of ourselves. The big question is how do you even come up with an idea for a side hustle, and then more importantly, validate it? Good ideas are easy to come by. The problem is that there's a 100,000,000,000 people in the world if you include the outer lands beyond the ice wall, and somebody out there is likely already a millionaire with your idea. The fact That someone is already executing your idea is actually a great way to get some early validation. Big companies like Meta do this all the time by stealing features from smaller applications. In fact, It's a good sign that someone's already doing your idea. You just need to figure out what they're doing wrong or narrow down your target to find a segment of the market where you could doing things better. In fact, that's been my approach to this YouTube channel. When I started, there were already millions of JavaScript tutorials. You might even call it an over saturated market, but I saw an opportunity to create shorter, faster content that I thought developers like me would like. Just look at a company like Figma.", "topics": [ { "confidence": 0.97032756, "topic": "youtube" }, { "confidence": 0.93532056, "topic": "google" }, { "confidence": 0.07609168, "topic": "artificial intelligence" }, { "confidence": 0.074834116, "topic": "advertising" }, { "confidence": 0.049006727, "topic": "machine learning" }, { "confidence": 0.043821886, "topic": "video gaming" }, { "confidence": 0.031425685, "topic": "investing" }, { "confidence": 0.027171893, "topic": "patents" }, { "confidence": 0.018341603, "topic": "marketing" }, { "confidence": 0.018214013, "topic": "intellectual property" }, { "confidence": 0.0056516784, "topic": "streaming" } ] }, { "end_word": 1108, "start_word": 1074, "text": "They built a design product that was really only slightly different than things offered by Adobe at the time, but they addressed the most common pain points and made a product that people love.", "topics": [] }, { "end_word": 1170, "start_word": 1108, "text": "A few years later, Adobe acquires them for $20,000,000,000 just so they could make the product suck again. Now once you have the general idea of what you want to build, another way to validate it is you build in public, and by that I mean get on social media and tell the world what you're building before you even build it.", "topics": [ { "confidence": 0.008433716, "topic": "intellectual property" } ] }, { "end_word": 1249, "start_word": 1170, "text": "What you'll find is that there's a lot of other indie makers doing the same thing that will support you and provide feedback. Oh, and by the way, make sure to also follow me on Twitter because I'll be posting extra video content there soon. That's great and all, but what you really need to do is validate the idea with your core audience. One product everybody hates but still pays a $100 a year for is Microsoft Word.", "topics": [] }, { "end_word": 1433, "start_word": 1249, "text": "What you can do is find real people or micro influencers on social media who use this product, but understand its pain points. Follow these people, like their posts, and engage with them on social media. Once you've gained their trust, you can then reach out with a direct message that's like, hey, I saw you hate Microsoft Word. I'm developing this new product that solves x and y pain points. Do you want to be the first one to check it out when it's ready? This is highly surgical direct marketing, but it's also highly effective. And people use it on me for their tech products, and it works. Because, honestly, it's a win win. If you're creating something that can make my life better, I'd like to know about it, but I'm by not going to click on one of your ads. If you get a lot of people excited, that means you're probably on to something, but the reality is that rejection is very common, and you might get rejected a bunch of times even if you Have a good idea.", "topics": [ { "confidence": 0.5681685, "topic": "social media" }, { "confidence": 0.10416342, "topic": "advertising" }, { "confidence": 0.018965123, "topic": "marketing" }, { "confidence": 0.014182443, "topic": "surgery" }, { "confidence": 0.013960826, "topic": "microsoft" } ] }, { "end_word": 1468, "start_word": 1433, "text": "So another way to validate your idea is to get a bunch of people to sign up for it before you even build it. You'll see startups do this all the time with wait list.", "topics": [] }, { "end_word": 1669, "start_word": 1468, "text": "What they'll do is focus on marketing first, put together a bunch of promises, and then build up an email list that they can engage with in the future. Do not underestimate the power of an email list. Nobody's going to sign up for an email list unless they truly want what you're selling. On top of that, once you have an email list, you can use it to invite people to a Discord rover, and from there, you're directly engaging with your target customers. You can even give them early access in exchange for feedback about what works and what doesn't. It's way easier to validate ideas when you have a bunch of collaborators who see the value in your ideas. Then as you start actually delivering on your idea, this community will help promote the project because as you created something that adds value to people's lives. It's a win win for everybody. Sam Altman of Y Combinator and OpenAI said the single most important thing in a startup is to create a product So good that people will tell their friends about it, but you won't know if you have a good product until you actually build it.", "topics": [ { "confidence": 0.77915555, "topic": "email" }, { "confidence": 0.11548591, "topic": "customer support" }, { "confidence": 0.043013092, "topic": "marketing" }, { "confidence": 0.037274268, "topic": "advertising" }, { "confidence": 0.028065113, "topic": "customers" }, { "confidence": 0.018784598, "topic": "technology" } ] }, { "end_word": 1696, "start_word": 1669, "text": "Usually, when I have an idea, I have one core feature, but then a bunch of optional supporting features that I want to add on to it.", "topics": [] }, { "end_word": 1818, "start_word": 1696, "text": "Avoid the temptation to ship a whole bunch of features all at once, instead focus on the core problem to get an MVP out there quickly and some real users who can validate the idea. Software development almost never goes according to plan. The end result ends up looking different than the initial vision because it's really hard to predict what the end user actually wants. Build something lean and focused, get a user, and then build up an empire from there. You can also launch on websites like Product Hunt You further validate if people are actually interested in what you're offering. From a technical standpoint, it's usually a good idea to build apps that have as little friction as possible.", "topics": [ { "confidence": 0.95580024, "topic": "software development" }, { "confidence": 0.61341625, "topic": "software" }, { "confidence": 0.008904316, "topic": "artificial intelligence" } ] }, { "end_word": 1891, "start_word": 1818, "text": "Like with Firebase, I might start with anonymous authentication, so the user doesn't have to enter an email to start using the main features. Then at some later point after they've enjoyed using the app, they can upgrade to a full account. If If I had a nickel for every time I decided not to use an app just because it had a sign in form, I would have a shitload of nickels.", "topics": [] }, { "end_word": 2004, "start_word": 1891, "text": "But the bottom line is to try to keep your app minimal, free, and frictionless, list, especially in the early game. Don't even worry about making money, just focus aggressively on making people's lives better. In the mid game, after you have a customer base, you can start adding all extra features that your customers want, and charge money for them accordingly. And then finally in the late game, you can lobby the government for regulations to crush all the smaller competition. Now the final thing I want to say is that even if your side hustle fails like most of them do, you'll have gained a lot by grinding through this process.", "topics": [ { "confidence": 0.69156814, "topic": "games" }, { "confidence": 0.3322534, "topic": "customers" }, { "confidence": 0.2851415, "topic": "gambling" }, { "confidence": 0.07951797, "topic": "marketing" }, { "confidence": 0.018436547, "topic": "customer support" } ] }, { "end_word": 2103, "start_word": 2004, "text": "You'll have some new contacts in your rolodex. You'll have a small community of people pulling for you. You'll have a cool project on your portfolio that can help you get a regular developer job. You'll have a bunch of reusable code that you can use for your next failed project. You'll have a more lean bank account, and finally, you'll have the pride in knowing that you took a risk and tried something that many people dream about, but most are too afraid to ever try. Thanks for watching, and I will see you in the next one.", "topics": [] } ], "transcript": "This isn't the video I wanted to make today. I thought it was going to be about how I bought a catamaran, quit YouTube, and started sailing around the world. Unfortunately though, reality has deviated from my projections. Despite getting 3,121 free tier sign ups and selling 1,000,000 100,000 tokens with $0 in infrastructure cost, thanks to the high risk free tier and a gross profit of $75.90, my side hustle is still failing. And if we can't turn the ship around soon, I'm going to have to take it behind the barn. I'd expect anyone in this unit to do the same for me. In today's video, we'll look at everything that's gone wrong so far, but but more importantly, look at a variety of strategies that you can use to validate ideas and not things up. First of all though, why is my side hustle failing? I made a 75.9 dollar profit in the 1st day, which extrapolates to $27,000 in annual cash flow. In addition, the business runs on autopilot, and I haven't had to touch the code since it went live. That's great, and I'll likely keep it running indefinitely from here as a zombie project, but here's why I'm not very optimistic. My conversion rate was only 0.3%. That means I need to get 300 free users to sign up just to get one paid user who's only paying $6.90. I'm able to be profitable in the short term because I have this YouTube channel that's like a gravy train with biscuit wheels, but I've already used up that ace in the hole. I've only had 2 additional sales after the initial launch. If I wanna keep pursuing this business, I need to either invest a lot of my own time into organic marketing or pay a friendly company like Google or Meta an absurd amount of money to appear on their platform. It depends on the industry, but it can cost 100 of dollars just to get one conversion. If you have a product that has a very high lifetime value, it can definitely be worth it to pay for advertising because if you can pay for ads while still being profitable, then there's really no reason not to. In my case, though, my product only costs $6.90, which would put me deep in the red with paid ads. But the one thing that's more valuable Money is your time, and I don't wanna spend my time standing on the corner twirling a sign for the side hustle. Behind almost every successful small business is an extremely passionate and driven founder. If you're going to try, go all the way. Otherwise, don't even start. This could mean losing girlfriends, wives, relatives, maybe even your mind. It could not eating for 3 or 4 days. It could mean freezing on a park bench. It could mean jail. It could mean derision. It could mean mockery, isolation. Isolation is the gift. All the others They're just a test of your endurance, of how much you really want to do it. And you'll do it, despite rejection and the worst odds, and it will be better than anything else you can imagine. If you're going Shry, go all the way. There's no other feeling like that. You will be alone with the gods, and the nights will flame with fire. You will ride life straight to perfect after. It's the only good fight there is. If that Bukowski poem doesn't describe how you feel about your project, then it might not be worth your time. If I'm being totally honest with myself, I'd much Rather spend my time making content on Fire Ship than I would trying to build up this half assed voice cloning tool. That being said, what could I have done differently to make this project more successful? Well, First of all, I only spent 2 days building it, it's not responsive, and has a terrible landing page. Any meaningful minimum viable project will take a lot longer this to develop, even when using a highly optimized tech stack like the it or suck it stack. Instead of using IBM Carbon as the design system, I'd spend more time creating a unique custom design and have a much more powerful call to action on the home page. And I should do a better job describing what the product is in just a few words. In addition, you wanna use some kind of analytics to understand how your users are behaving because they're likely using your app in ways you never expected. Like, Firebase itself was originally Supposed to be a chat widget kind of like intercom, but they found that developers were putting all kinds of random stuff in it, so they decided to pivot to a real time database. Then a few Few years later it's acquired by Google, making them rich beyond their wildest dreams. The founders made their own luck just like Tarantino. To really optimize things, you should look at analytics, then do some AB testing with a small subset of users before you invest in a huge launch. And that's especially important if you pay for ads then you really need to optimize that conversion rate, but we're getting ahead of ourselves. The big question is how do you even come up with an idea for a side hustle, and then more importantly, validate it? Good ideas are easy to come by. The problem is that there's a 100,000,000,000 people in the world if you include the outer lands beyond the ice wall, and somebody out there is likely already a millionaire with your idea. The fact That someone is already executing your idea is actually a great way to get some early validation. Big companies like Meta do this all the time by stealing features from smaller applications. In fact, It's a good sign that someone's already doing your idea. You just need to figure out what they're doing wrong or narrow down your target to find a segment of the market where you could doing things better. In fact, that's been my approach to this YouTube channel. When I started, there were already millions of JavaScript tutorials. You might even call it an over saturated market, but I saw an opportunity to create shorter, faster content that I thought developers like me would like. Just look at a company like Figma. They built a design product that was really only slightly different than things offered by Adobe at the time, but they addressed the most common pain points and made a product that people love. A few years later, Adobe acquires them for $20,000,000,000 just so they could make the product suck again. Now once you have the general idea of what you want to build, another way to validate it is you build in public, and by that I mean get on social media and tell the world what you're building before you even build it. What you'll find is that there's a lot of other indie makers doing the same thing that will support you and provide feedback. Oh, and by the way, make sure to also follow me on Twitter because I'll be posting extra video content there soon. That's great and all, but what you really need to do is validate the idea with your core audience. One product everybody hates but still pays a $100 a year for is Microsoft Word. What you can do is find real people or micro influencers on social media who use this product, but understand its pain points. Follow these people, like their posts, and engage with them on social media. Once you've gained their trust, you can then reach out with a direct message that's like, hey, I saw you hate Microsoft Word. I'm developing this new product that solves x and y pain points. Do you want to be the first one to check it out when it's ready? This is highly surgical direct marketing, but it's also highly effective. And people use it on me for their tech products, and it works. Because, honestly, it's a win win. If you're creating something that can make my life better, I'd like to know about it, but I'm by not going to click on one of your ads. If you get a lot of people excited, that means you're probably on to something, but the reality is that rejection is very common, and you might get rejected a bunch of times even if you Have a good idea. So another way to validate your idea is to get a bunch of people to sign up for it before you even build it. You'll see startups do this all the time with wait list. What they'll do is focus on marketing first, put together a bunch of promises, and then build up an email list that they can engage with in the future. Do not underestimate the power of an email list. Nobody's going to sign up for an email list unless they truly want what you're selling. On top of that, once you have an email list, you can use it to invite people to a Discord rover, and from there, you're directly engaging with your target customers. You can even give them early access in exchange for feedback about what works and what doesn't. It's way easier to validate ideas when you have a bunch of collaborators who see the value in your ideas. Then as you start actually delivering on your idea, this community will help promote the project because as you created something that adds value to people's lives. It's a win win for everybody. Sam Altman of Y Combinator and OpenAI said the single most important thing in a startup is to create a product So good that people will tell their friends about it, but you won't know if you have a good product until you actually build it. Usually, when I have an idea, I have one core feature, but then a bunch of optional supporting features that I want to add on to it. Avoid the temptation to ship a whole bunch of features all at once, instead focus on the core problem to get an MVP out there quickly and some real users who can validate the idea. Software development almost never goes according to plan. The end result ends up looking different than the initial vision because it's really hard to predict what the end user actually wants. Build something lean and focused, get a user, and then build up an empire from there. You can also launch on websites like Product Hunt You further validate if people are actually interested in what you're offering. From a technical standpoint, it's usually a good idea to build apps that have as little friction as possible. Like with Firebase, I might start with anonymous authentication, so the user doesn't have to enter an email to start using the main features. Then at some later point after they've enjoyed using the app, they can upgrade to a full account. If If I had a nickel for every time I decided not to use an app just because it had a sign in form, I would have a shitload of nickels. But the bottom line is to try to keep your app minimal, free, and frictionless, list, especially in the early game. Don't even worry about making money, just focus aggressively on making people's lives better. In the mid game, after you have a customer base, you can start adding all extra features that your customers want, and charge money for them accordingly. And then finally in the late game, you can lobby the government for regulations to crush all the smaller competition. Now the final thing I want to say is that even if your side hustle fails like most of them do, you'll have gained a lot by grinding through this process. You'll have some new contacts in your rolodex. You'll have a small community of people pulling for you. You'll have a cool project on your portfolio that can help you get a regular developer job. You'll have a bunch of reusable code that you can use for your next failed project. You'll have a more lean bank account, and finally, you'll have the pride in knowing that you took a risk and tried something that many people dream about, but most are too afraid to ever try. Thanks for watching, and I will see you in the next one.", "translations": null, "words": [ { "confidence": 0.8671875, "end": 0.32, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.6855469, "start": 0.16, "word": "this" }, { "confidence": 1, "end": 0.48, "punctuated_word": "isn't", "speaker": 0, "speaker_confidence": 0.6855469, "start": 0.32, "word": "isn't" }, { "confidence": 0.99902344, "end": 0.64, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6855469, "start": 0.48, "word": "the" }, { "confidence": 1, "end": 0.96, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.6855469, "start": 0.64, "word": "video" }, { "confidence": 0.9970703, "end": 1.04, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.6855469, "start": 0.96, "word": "i" }, { "confidence": 0.99902344, "end": 1.36, "punctuated_word": "wanted", "speaker": 0, "speaker_confidence": 0.6855469, "start": 1.04, "word": "wanted" }, { "confidence": 1, "end": 1.52, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6855469, "start": 1.36, "word": "to" }, { "confidence": 1, "end": 1.68, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.6855469, "start": 1.52, "word": "make" }, { "confidence": 0.98535156, "end": 2, "punctuated_word": "today.", "speaker": 0, "speaker_confidence": 0.6855469, "start": 1.68, "word": "today" }, { "confidence": 1, "end": 2.1599998, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.6855469, "start": 2, "word": "i" }, { "confidence": 0.99902344, "end": 2.3999999, "punctuated_word": "thought", "speaker": 0, "speaker_confidence": 0.6855469, "start": 2.1599998, "word": "thought" }, { "confidence": 0.99902344, "end": 2.48, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.6855469, "start": 2.3999999, "word": "it" }, { "confidence": 1, "end": 2.6399999, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.6855469, "start": 2.48, "word": "was" }, { "confidence": 0.9980469, "end": 2.8, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.6855469, "start": 2.6399999, "word": "going" }, { "confidence": 0.99902344, "end": 2.8799999, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6855469, "start": 2.8, "word": "to" }, { "confidence": 1, "end": 2.96, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.6855469, "start": 2.8799999, "word": "be" }, { "confidence": 0.9980469, "end": 3.1999998, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.6855469, "start": 2.96, "word": "about" }, { "confidence": 0.99902344, "end": 3.28, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.6855469, "start": 3.1999998, "word": "how" }, { "confidence": 0.99902344, "end": 3.36, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.9121094, "start": 3.28, "word": "i" }, { "confidence": 1, "end": 3.6, "punctuated_word": "bought", "speaker": 0, "speaker_confidence": 0.9121094, "start": 3.36, "word": "bought" }, { "confidence": 1, "end": 3.6799998, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9121094, "start": 3.6, "word": "a" }, { "confidence": 0.95495605, "end": 4.18, "punctuated_word": "catamaran,", "speaker": 0, "speaker_confidence": 0.9121094, "start": 3.6799998, "word": "catamaran" }, { "confidence": 0.9980469, "end": 4.56, "punctuated_word": "quit", "speaker": 0, "speaker_confidence": 0.9121094, "start": 4.3199997, "word": "quit" }, { "confidence": 0.96069336, "end": 4.96, "punctuated_word": "YouTube,", "speaker": 0, "speaker_confidence": 0.9121094, "start": 4.56, "word": "youtube" }, { "confidence": 1, "end": 5.12, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9121094, "start": 4.96, "word": "and" }, { "confidence": 0.9970703, "end": 5.44, "punctuated_word": "started", "speaker": 0, "speaker_confidence": 0.9121094, "start": 5.12, "word": "started" }, { "confidence": 0.99902344, "end": 5.7599998, "punctuated_word": "sailing", "speaker": 0, "speaker_confidence": 0.9121094, "start": 5.44, "word": "sailing" }, { "confidence": 1, "end": 6, "punctuated_word": "around", "speaker": 0, "speaker_confidence": 0.9121094, "start": 5.7599998, "word": "around" }, { "confidence": 0.9980469, "end": 6.08, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9121094, "start": 6, "word": "the" }, { "confidence": 0.9995117, "end": 6.48, "punctuated_word": "world.", "speaker": 0, "speaker_confidence": 0.9121094, "start": 6.08, "word": "world" }, { "confidence": 0.99609375, "end": 6.98, "punctuated_word": "Unfortunately", "speaker": 0, "speaker_confidence": 0.9121094, "start": 6.48, "word": "unfortunately" }, { "confidence": 0.9406738, "end": 7.44, "punctuated_word": "though,", "speaker": 0, "speaker_confidence": 0.9121094, "start": 7.04, "word": "though" }, { "confidence": 0.99902344, "end": 7.9199996, "punctuated_word": "reality", "speaker": 0, "speaker_confidence": 0.9121094, "start": 7.44, "word": "reality" }, { "confidence": 0.99121094, "end": 8.16, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.9121094, "start": 7.9199996, "word": "has" }, { "confidence": 0.9995117, "end": 8.639999, "punctuated_word": "deviated", "speaker": 0, "speaker_confidence": 0.9121094, "start": 8.16, "word": "deviated" }, { "confidence": 0.9951172, "end": 8.8, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.9121094, "start": 8.639999, "word": "from" }, { "confidence": 0.9550781, "end": 8.96, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.9121094, "start": 8.8, "word": "my" }, { "confidence": 0.85180664, "end": 9.265, "punctuated_word": "projections.", "speaker": 0, "speaker_confidence": 0.9121094, "start": 8.96, "word": "projections" }, { "confidence": 0.9970703, "end": 9.985001, "punctuated_word": "Despite", "speaker": 0, "speaker_confidence": 0.9121094, "start": 9.745, "word": "despite" }, { "confidence": 0.7578125, "end": 10.385, "punctuated_word": "getting", "speaker": 0, "speaker_confidence": 0.9121094, "start": 9.985001, "word": "getting" }, { "confidence": 0.9038086, "end": 10.885, "punctuated_word": "3,121", "speaker": 0, "speaker_confidence": 0.9121094, "start": 10.385, "word": "3,121" }, { "confidence": 0.96435547, "end": 12.065001, "punctuated_word": "free", "speaker": 0, "speaker_confidence": 0.9121094, "start": 11.825001, "word": "free" }, { "confidence": 0.9902344, "end": 12.305, "punctuated_word": "tier", "speaker": 0, "speaker_confidence": 0.9121094, "start": 12.065001, "word": "tier" }, { "confidence": 0.99902344, "end": 12.465, "punctuated_word": "sign", "speaker": 0, "speaker_confidence": 0.9121094, "start": 12.305, "word": "sign" }, { "confidence": 0.9316406, "end": 12.945, "punctuated_word": "ups", "speaker": 0, "speaker_confidence": 0.9121094, "start": 12.465, "word": "ups" }, { "confidence": 0.5961914, "end": 13.025001, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9121094, "start": 12.945, "word": "and" }, { "confidence": 0.9980469, "end": 13.505, "punctuated_word": "selling", "speaker": 0, "speaker_confidence": 0.9121094, "start": 13.025001, "word": "selling" }, { "confidence": 0.771582, "end": 13.985001, "punctuated_word": "1,000,000", "speaker": 0, "speaker_confidence": 0.9121094, "start": 13.505, "word": "1,000,000" }, { "confidence": 0.72509766, "end": 14.485001, "punctuated_word": "100,000", "speaker": 0, "speaker_confidence": 0.9121094, "start": 13.985001, "word": "100,000" }, { "confidence": 0.9741211, "end": 15.205, "punctuated_word": "tokens", "speaker": 0, "speaker_confidence": 0.9121094, "start": 14.705, "word": "tokens" }, { "confidence": 0.7792969, "end": 15.665, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.9121094, "start": 15.265, "word": "with" }, { "confidence": 0.8876953, "end": 16.065, "punctuated_word": "$0", "speaker": 0, "speaker_confidence": 0.9121094, "start": 15.665, "word": "$0" }, { "confidence": 0.9140625, "end": 16.225, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9121094, "start": 16.065, "word": "in" }, { "confidence": 0.99609375, "end": 16.725, "punctuated_word": "infrastructure", "speaker": 0, "speaker_confidence": 0.9121094, "start": 16.225, "word": "infrastructure" }, { "confidence": 0.5529785, "end": 17.025, "punctuated_word": "cost,", "speaker": 0, "speaker_confidence": 0.9121094, "start": 16.785, "word": "cost" }, { "confidence": 0.98828125, "end": 17.265, "punctuated_word": "thanks", "speaker": 0, "speaker_confidence": 0.9121094, "start": 17.025, "word": "thanks" }, { "confidence": 0.9716797, "end": 17.345001, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9121094, "start": 17.265, "word": "to" }, { "confidence": 0.88720703, "end": 17.63, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9121094, "start": 17.345001, "word": "the" }, { "confidence": 0.22937012, "end": 17.789999, "punctuated_word": "high", "speaker": 0, "speaker_confidence": 0.9121094, "start": 17.63, "word": "high" }, { "confidence": 0.56152344, "end": 17.949999, "punctuated_word": "risk", "speaker": 0, "speaker_confidence": 0.9121094, "start": 17.789999, "word": "risk" }, { "confidence": 0.98535156, "end": 18.109999, "punctuated_word": "free", "speaker": 0, "speaker_confidence": 0.9121094, "start": 17.949999, "word": "free" }, { "confidence": 0.98535156, "end": 18.189999, "punctuated_word": "tier", "speaker": 0, "speaker_confidence": 0.9121094, "start": 18.109999, "word": "tier" }, { "confidence": 0.7060547, "end": 18.669998, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9121094, "start": 18.189999, "word": "and" }, { "confidence": 0.98828125, "end": 18.75, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.58935547, "start": 18.669998, "word": "a" }, { "confidence": 0.99902344, "end": 19.07, "punctuated_word": "gross", "speaker": 0, "speaker_confidence": 0.58935547, "start": 18.75, "word": "gross" }, { "confidence": 1, "end": 19.31, "punctuated_word": "profit", "speaker": 0, "speaker_confidence": 0.58935547, "start": 19.07, "word": "profit" }, { "confidence": 0.99902344, "end": 19.39, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.58935547, "start": 19.31, "word": "of" }, { "confidence": 0.9381836, "end": 19.89, "punctuated_word": "$75.90,", "speaker": 0, "speaker_confidence": 0.58935547, "start": 19.39, "word": "$75.90" }, { "confidence": 0.99121094, "end": 21.31, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.73828125, "start": 21.07, "word": "my" }, { "confidence": 0.99902344, "end": 21.47, "punctuated_word": "side", "speaker": 0, "speaker_confidence": 0.73828125, "start": 21.31, "word": "side" }, { "confidence": 0.9995117, "end": 21.869999, "punctuated_word": "hustle", "speaker": 0, "speaker_confidence": 0.73828125, "start": 21.47, "word": "hustle" }, { "confidence": 1, "end": 22.029999, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.73828125, "start": 21.869999, "word": "is" }, { "confidence": 1, "end": 22.189999, "punctuated_word": "still", "speaker": 0, "speaker_confidence": 0.73828125, "start": 22.029999, "word": "still" }, { "confidence": 0.90405273, "end": 22.669998, "punctuated_word": "failing.", "speaker": 0, "speaker_confidence": 0.73828125, "start": 22.189999, "word": "failing" }, { "confidence": 0.9980469, "end": 22.829998, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.73828125, "start": 22.669998, "word": "and" }, { "confidence": 0.9970703, "end": 22.989998, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.73828125, "start": 22.829998, "word": "if" }, { "confidence": 1, "end": 23.07, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.73828125, "start": 22.989998, "word": "we" }, { "confidence": 0.9995117, "end": 23.23, "punctuated_word": "can't", "speaker": 0, "speaker_confidence": 0.73828125, "start": 23.07, "word": "can't" }, { "confidence": 1, "end": 23.39, "punctuated_word": "turn", "speaker": 0, "speaker_confidence": 0.73828125, "start": 23.23, "word": "turn" }, { "confidence": 0.96435547, "end": 23.47, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.51660156, "start": 23.39, "word": "the" }, { "confidence": 1, "end": 23.71, "punctuated_word": "ship", "speaker": 0, "speaker_confidence": 0.51660156, "start": 23.47, "word": "ship" }, { "confidence": 1, "end": 23.949999, "punctuated_word": "around", "speaker": 0, "speaker_confidence": 0.51660156, "start": 23.71, "word": "around" }, { "confidence": 0.9904785, "end": 24.349998, "punctuated_word": "soon,", "speaker": 0, "speaker_confidence": 0.51660156, "start": 23.949999, "word": "soon" }, { "confidence": 0.99902344, "end": 24.509998, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.51660156, "start": 24.349998, "word": "i'm" }, { "confidence": 0.99609375, "end": 24.75, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.51660156, "start": 24.509998, "word": "going" }, { "confidence": 0.9970703, "end": 24.829998, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.51660156, "start": 24.75, "word": "to" }, { "confidence": 0.99902344, "end": 24.989998, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.51660156, "start": 24.829998, "word": "have" }, { "confidence": 0.99609375, "end": 25.07, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.46777344, "start": 24.989998, "word": "to" }, { "confidence": 1, "end": 25.23, "punctuated_word": "take", "speaker": 0, "speaker_confidence": 0.46777344, "start": 25.07, "word": "take" }, { "confidence": 1, "end": 25.39, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.46777344, "start": 25.23, "word": "it" }, { "confidence": 1, "end": 25.55, "punctuated_word": "behind", "speaker": 0, "speaker_confidence": 0.46777344, "start": 25.39, "word": "behind" }, { "confidence": 0.99902344, "end": 25.71, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.46777344, "start": 25.55, "word": "the" }, { "confidence": 0.99902344, "end": 26.21, "punctuated_word": "barn.", "speaker": 0, "speaker_confidence": 0.46777344, "start": 25.71, "word": "barn" }, { "confidence": 0.9572754, "end": 29.535, "punctuated_word": "I'd", "speaker": 0, "speaker_confidence": 0, "start": 29.215, "word": "i'd" }, { "confidence": 0.99902344, "end": 29.935, "punctuated_word": "expect", "speaker": 0, "speaker_confidence": 0, "start": 29.535, "word": "expect" }, { "confidence": 0.99609375, "end": 30.255, "punctuated_word": "anyone", "speaker": 0, "speaker_confidence": 0, "start": 29.935, "word": "anyone" }, { "confidence": 0.9980469, "end": 30.415, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0, "start": 30.255, "word": "in" }, { "confidence": 0.99902344, "end": 30.575, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0, "start": 30.415, "word": "this" }, { "confidence": 0.9951172, "end": 30.815, "punctuated_word": "unit", "speaker": 0, "speaker_confidence": 0, "start": 30.575, "word": "unit" }, { "confidence": 0.9980469, "end": 30.975, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0, "start": 30.815, "word": "to" }, { "confidence": 0.99902344, "end": 31.135, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0, "start": 30.975, "word": "do" }, { "confidence": 0.99902344, "end": 31.215, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0, "start": 31.135, "word": "the" }, { "confidence": 0.99902344, "end": 31.455, "punctuated_word": "same", "speaker": 0, "speaker_confidence": 0, "start": 31.215, "word": "same" }, { "confidence": 0.99609375, "end": 31.615, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0, "start": 31.455, "word": "for" }, { "confidence": 0.99902344, "end": 32.095, "punctuated_word": "me.", "speaker": 0, "speaker_confidence": 0, "start": 31.615, "word": "me" }, { "confidence": 0.9951172, "end": 32.175, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.86035156, "start": 32.095, "word": "in" }, { "confidence": 0.9995117, "end": 32.415, "punctuated_word": "today's", "speaker": 0, "speaker_confidence": 0.86035156, "start": 32.175, "word": "today's" }, { "confidence": 0.9885254, "end": 32.815, "punctuated_word": "video,", "speaker": 0, "speaker_confidence": 0.86035156, "start": 32.415, "word": "video" }, { "confidence": 0.99853516, "end": 32.975, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.86035156, "start": 32.815, "word": "we'll" }, { "confidence": 0.9980469, "end": 33.135, "punctuated_word": "look", "speaker": 0, "speaker_confidence": 0.86035156, "start": 32.975, "word": "look" }, { "confidence": 0.99902344, "end": 33.295, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.86035156, "start": 33.135, "word": "at" }, { "confidence": 0.9980469, "end": 33.535, "punctuated_word": "everything", "speaker": 0, "speaker_confidence": 0.86035156, "start": 33.295, "word": "everything" }, { "confidence": 0.9921875, "end": 33.855, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.86035156, "start": 33.535, "word": "that's" }, { "confidence": 0.9970703, "end": 34.015, "punctuated_word": "gone", "speaker": 0, "speaker_confidence": 0.86035156, "start": 33.855, "word": "gone" }, { "confidence": 0.99902344, "end": 34.415, "punctuated_word": "wrong", "speaker": 0, "speaker_confidence": 0.86035156, "start": 34.015, "word": "wrong" }, { "confidence": 0.98291016, "end": 34.575, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.86035156, "start": 34.415, "word": "so" }, { "confidence": 0.88842773, "end": 34.815, "punctuated_word": "far,", "speaker": 0, "speaker_confidence": 0.86035156, "start": 34.575, "word": "far" }, { "confidence": 0.9536133, "end": 35.02, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.86035156, "start": 34.815, "word": "but" }, { "confidence": 0.99316406, "end": 35.260002, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.86035156, "start": 35.100002, "word": "but" }, { "confidence": 0.99121094, "end": 35.420002, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.86035156, "start": 35.260002, "word": "more" }, { "confidence": 0.87475586, "end": 35.9, "punctuated_word": "importantly,", "speaker": 0, "speaker_confidence": 0.86035156, "start": 35.420002, "word": "importantly" }, { "confidence": 0.9526367, "end": 36.06, "punctuated_word": "look", "speaker": 0, "speaker_confidence": 0.86035156, "start": 35.9, "word": "look" }, { "confidence": 0.9980469, "end": 36.22, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.86035156, "start": 36.06, "word": "at" }, { "confidence": 0.9980469, "end": 36.3, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.86035156, "start": 36.22, "word": "a" }, { "confidence": 1, "end": 36.62, "punctuated_word": "variety", "speaker": 0, "speaker_confidence": 0.86035156, "start": 36.3, "word": "variety" }, { "confidence": 0.99902344, "end": 36.78, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.86035156, "start": 36.62, "word": "of" }, { "confidence": 1, "end": 37.260002, "punctuated_word": "strategies", "speaker": 0, "speaker_confidence": 0.86035156, "start": 36.78, "word": "strategies" }, { "confidence": 0.99609375, "end": 37.420002, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.86035156, "start": 37.260002, "word": "that" }, { "confidence": 1, "end": 37.58, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.86035156, "start": 37.420002, "word": "you" }, { "confidence": 1, "end": 37.74, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.86035156, "start": 37.58, "word": "can" }, { "confidence": 1, "end": 38.14, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.86035156, "start": 37.74, "word": "use" }, { "confidence": 0.99609375, "end": 38.38, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.86035156, "start": 38.14, "word": "to" }, { "confidence": 0.99902344, "end": 38.78, "punctuated_word": "validate", "speaker": 0, "speaker_confidence": 0.86035156, "start": 38.38, "word": "validate" }, { "confidence": 1, "end": 39.28, "punctuated_word": "ideas", "speaker": 0, "speaker_confidence": 0.86035156, "start": 38.78, "word": "ideas" }, { "confidence": 0.95947266, "end": 39.66, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.86035156, "start": 39.34, "word": "and" }, { "confidence": 0.99609375, "end": 39.98, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.86035156, "start": 39.66, "word": "not" }, { "confidence": 0.38232422, "end": 40.3, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 0.86035156, "start": 39.98, "word": "things" }, { "confidence": 0.99902344, "end": 40.62, "punctuated_word": "up.", "speaker": 0, "speaker_confidence": 0.86035156, "start": 40.3, "word": "up" }, { "confidence": 0.78808594, "end": 40.86, "punctuated_word": "First", "speaker": 0, "speaker_confidence": 0.86035156, "start": 40.62, "word": "first" }, { "confidence": 1, "end": 41.02, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.86035156, "start": 40.86, "word": "of" }, { "confidence": 1, "end": 41.1, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.7446289, "start": 41.02, "word": "all" }, { "confidence": 0.9577637, "end": 41.42, "punctuated_word": "though,", "speaker": 0, "speaker_confidence": 0.7446289, "start": 41.1, "word": "though" }, { "confidence": 0.99902344, "end": 41.58, "punctuated_word": "why", "speaker": 0, "speaker_confidence": 0.7446289, "start": 41.42, "word": "why" }, { "confidence": 1, "end": 41.74, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7446289, "start": 41.58, "word": "is" }, { "confidence": 1, "end": 41.9, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.7446289, "start": 41.74, "word": "my" }, { "confidence": 0.99902344, "end": 42.14, "punctuated_word": "side", "speaker": 0, "speaker_confidence": 0.7446289, "start": 41.9, "word": "side" }, { "confidence": 0.99902344, "end": 42.46, "punctuated_word": "hustle", "speaker": 0, "speaker_confidence": 0.7446289, "start": 42.14, "word": "hustle" }, { "confidence": 0.984375, "end": 42.94, "punctuated_word": "failing?", "speaker": 0, "speaker_confidence": 0.7446289, "start": 42.46, "word": "failing" }, { "confidence": 0.9980469, "end": 43.1, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.7446289, "start": 42.94, "word": "i" }, { "confidence": 1, "end": 43.260002, "punctuated_word": "made", "speaker": 0, "speaker_confidence": 0.7446289, "start": 43.1, "word": "made" }, { "confidence": 0.99902344, "end": 43.34, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7446289, "start": 43.260002, "word": "a" }, { "confidence": 0.9350586, "end": 43.84, "punctuated_word": "75.9", "speaker": 0, "speaker_confidence": 0.7446289, "start": 43.34, "word": "75.9" }, { "confidence": 0.98535156, "end": 44.555, "punctuated_word": "dollar", "speaker": 0, "speaker_confidence": 0.7446289, "start": 44.395, "word": "dollar" }, { "confidence": 0.99902344, "end": 44.675, "punctuated_word": "profit", "speaker": 0, "speaker_confidence": 0.7446289, "start": 44.555, "word": "profit" }, { "confidence": 0.99121094, "end": 44.795, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8408203, "start": 44.675, "word": "in" }, { "confidence": 0.9921875, "end": 45.035, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8408203, "start": 44.795, "word": "the" }, { "confidence": 0.8276367, "end": 45.274998, "punctuated_word": "1st", "speaker": 0, "speaker_confidence": 0.8408203, "start": 45.035, "word": "1st" }, { "confidence": 0.98168945, "end": 45.754997, "punctuated_word": "day,", "speaker": 0, "speaker_confidence": 0.8408203, "start": 45.274998, "word": "day" }, { "confidence": 1, "end": 45.995, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.8408203, "start": 45.754997, "word": "which" }, { "confidence": 1, "end": 46.495, "punctuated_word": "extrapolates", "speaker": 0, "speaker_confidence": 0.8408203, "start": 45.995, "word": "extrapolates" }, { "confidence": 0.9970703, "end": 46.715, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8408203, "start": 46.555, "word": "to" }, { "confidence": 0.99853516, "end": 47.215, "punctuated_word": "$27,000", "speaker": 0, "speaker_confidence": 0.8408203, "start": 46.715, "word": "$27,000" }, { "confidence": 0.99609375, "end": 48.234997, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8408203, "start": 47.995, "word": "in" }, { "confidence": 0.9980469, "end": 48.555, "punctuated_word": "annual", "speaker": 0, "speaker_confidence": 0.8408203, "start": 48.234997, "word": "annual" }, { "confidence": 1, "end": 48.795, "punctuated_word": "cash", "speaker": 0, "speaker_confidence": 0.8408203, "start": 48.555, "word": "cash" }, { "confidence": 0.9921875, "end": 49.195, "punctuated_word": "flow.", "speaker": 0, "speaker_confidence": 0.8408203, "start": 48.795, "word": "flow" }, { "confidence": 0.99902344, "end": 49.355, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.8408203, "start": 49.195, "word": "in" }, { "confidence": 1, "end": 49.675, "punctuated_word": "addition,", "speaker": 0, "speaker_confidence": 0.8408203, "start": 49.355, "word": "addition" }, { "confidence": 1, "end": 49.835, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8408203, "start": 49.675, "word": "the" }, { "confidence": 1, "end": 50.155, "punctuated_word": "business", "speaker": 0, "speaker_confidence": 0.8408203, "start": 49.835, "word": "business" }, { "confidence": 1, "end": 50.394997, "punctuated_word": "runs", "speaker": 0, "speaker_confidence": 0.8408203, "start": 50.155, "word": "runs" }, { "confidence": 1, "end": 50.555, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8408203, "start": 50.394997, "word": "on" }, { "confidence": 0.9329427, "end": 51.055, "punctuated_word": "autopilot,", "speaker": 0, "speaker_confidence": 0.8408203, "start": 50.555, "word": "autopilot" }, { "confidence": 1, "end": 51.355, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8408203, "start": 51.114998, "word": "and" }, { "confidence": 1, "end": 51.434998, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.8408203, "start": 51.355, "word": "i" }, { "confidence": 1, "end": 51.594997, "punctuated_word": "haven't", "speaker": 0, "speaker_confidence": 0.8408203, "start": 51.434998, "word": "haven't" }, { "confidence": 1, "end": 51.754997, "punctuated_word": "had", "speaker": 0, "speaker_confidence": 0.8408203, "start": 51.594997, "word": "had" }, { "confidence": 0.9970703, "end": 51.835, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8408203, "start": 51.754997, "word": "to" }, { "confidence": 1, "end": 52.074997, "punctuated_word": "touch", "speaker": 0, "speaker_confidence": 0.8408203, "start": 51.835, "word": "touch" }, { "confidence": 1, "end": 52.155, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8408203, "start": 52.074997, "word": "the" }, { "confidence": 0.99609375, "end": 52.394997, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.8408203, "start": 52.155, "word": "code" }, { "confidence": 1, "end": 52.635, "punctuated_word": "since", "speaker": 0, "speaker_confidence": 0.8408203, "start": 52.394997, "word": "since" }, { "confidence": 0.99902344, "end": 52.714996, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8408203, "start": 52.635, "word": "it" }, { "confidence": 1, "end": 52.875, "punctuated_word": "went", "speaker": 0, "speaker_confidence": 0.8105469, "start": 52.714996, "word": "went" }, { "confidence": 1, "end": 53.274998, "punctuated_word": "live.", "speaker": 0, "speaker_confidence": 0.8105469, "start": 52.875, "word": "live" }, { "confidence": 0.99853516, "end": 53.52, "punctuated_word": "That's", "speaker": 0, "speaker_confidence": 0.8105469, "start": 53.274998, "word": "that's" }, { "confidence": 0.88549805, "end": 53.760002, "punctuated_word": "great,", "speaker": 0, "speaker_confidence": 0.8105469, "start": 53.600002, "word": "great" }, { "confidence": 1, "end": 53.88, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8105469, "start": 53.760002, "word": "and" }, { "confidence": 0.9926758, "end": 54, "punctuated_word": "I'll", "speaker": 0, "speaker_confidence": 0.8105469, "start": 53.88, "word": "i'll" }, { "confidence": 0.9970703, "end": 54.4, "punctuated_word": "likely", "speaker": 0, "speaker_confidence": 0.8105469, "start": 54, "word": "likely" }, { "confidence": 0.99902344, "end": 54.56, "punctuated_word": "keep", "speaker": 0, "speaker_confidence": 0.8105469, "start": 54.4, "word": "keep" }, { "confidence": 0.99902344, "end": 54.72, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8105469, "start": 54.56, "word": "it" }, { "confidence": 1, "end": 55.04, "punctuated_word": "running", "speaker": 0, "speaker_confidence": 0.8105469, "start": 54.72, "word": "running" }, { "confidence": 0.97802734, "end": 55.52, "punctuated_word": "indefinitely", "speaker": 0, "speaker_confidence": 0.8105469, "start": 55.04, "word": "indefinitely" }, { "confidence": 1, "end": 55.68, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.8105469, "start": 55.52, "word": "from" }, { "confidence": 1, "end": 55.920002, "punctuated_word": "here", "speaker": 0, "speaker_confidence": 0.8105469, "start": 55.68, "word": "here" }, { "confidence": 0.99609375, "end": 56.08, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.8105469, "start": 55.920002, "word": "as" }, { "confidence": 0.99609375, "end": 56.16, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.90722656, "start": 56.08, "word": "a" }, { "confidence": 1, "end": 56.56, "punctuated_word": "zombie", "speaker": 0, "speaker_confidence": 0.90722656, "start": 56.16, "word": "zombie" }, { "confidence": 0.91015625, "end": 57.06, "punctuated_word": "project,", "speaker": 0, "speaker_confidence": 0.90722656, "start": 56.56, "word": "project" }, { "confidence": 0.99902344, "end": 57.28, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.90722656, "start": 57.12, "word": "but" }, { "confidence": 0.99902344, "end": 57.52, "punctuated_word": "here's", "speaker": 0, "speaker_confidence": 0.90722656, "start": 57.28, "word": "here's" }, { "confidence": 1, "end": 57.6, "punctuated_word": "why", "speaker": 0, "speaker_confidence": 0.90722656, "start": 57.52, "word": "why" }, { "confidence": 1, "end": 57.760002, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.90722656, "start": 57.6, "word": "i'm" }, { "confidence": 1, "end": 57.920002, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.90722656, "start": 57.760002, "word": "not" }, { "confidence": 1, "end": 58.16, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 0.90722656, "start": 57.920002, "word": "very" }, { "confidence": 0.9914551, "end": 58.66, "punctuated_word": "optimistic.", "speaker": 0, "speaker_confidence": 0.90722656, "start": 58.16, "word": "optimistic" }, { "confidence": 1, "end": 59.12, "punctuated_word": "My", "speaker": 0, "speaker_confidence": 0.90722656, "start": 58.88, "word": "my" }, { "confidence": 0.99902344, "end": 59.440002, "punctuated_word": "conversion", "speaker": 0, "speaker_confidence": 0.90722656, "start": 59.12, "word": "conversion" }, { "confidence": 1, "end": 59.6, "punctuated_word": "rate", "speaker": 0, "speaker_confidence": 0.90722656, "start": 59.440002, "word": "rate" }, { "confidence": 1, "end": 59.760002, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.90722656, "start": 59.6, "word": "was" }, { "confidence": 0.99902344, "end": 60.24, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.90722656, "start": 59.760002, "word": "only" }, { "confidence": 0.96325684, "end": 60.74, "punctuated_word": "0.3%.", "speaker": 0, "speaker_confidence": 0.90722656, "start": 60.24, "word": "0.3%" }, { "confidence": 1, "end": 61.44, "punctuated_word": "That", "speaker": 0, "speaker_confidence": 0.90722656, "start": 61.28, "word": "that" }, { "confidence": 1, "end": 61.68, "punctuated_word": "means", "speaker": 0, "speaker_confidence": 0.90722656, "start": 61.44, "word": "means" }, { "confidence": 0.9902344, "end": 61.760002, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.90722656, "start": 61.68, "word": "i" }, { "confidence": 0.99902344, "end": 61.92, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.90722656, "start": 61.760002, "word": "need" }, { "confidence": 1, "end": 62, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.90722656, "start": 61.92, "word": "to" }, { "confidence": 1, "end": 62.24, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.90722656, "start": 62, "word": "get" }, { "confidence": 0.9140625, "end": 62.64, "punctuated_word": "300", "speaker": 0, "speaker_confidence": 0.90722656, "start": 62.24, "word": "300" }, { "confidence": 0.9921875, "end": 62.905, "punctuated_word": "free", "speaker": 0, "speaker_confidence": 0.90722656, "start": 62.64, "word": "free" }, { "confidence": 0.9951172, "end": 63.145, "punctuated_word": "users", "speaker": 0, "speaker_confidence": 0.90722656, "start": 62.905, "word": "users" }, { "confidence": 0.9980469, "end": 63.385, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.90722656, "start": 63.145, "word": "to" }, { "confidence": 1, "end": 63.545, "punctuated_word": "sign", "speaker": 0, "speaker_confidence": 0.90722656, "start": 63.385, "word": "sign" }, { "confidence": 0.9980469, "end": 63.785, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.90722656, "start": 63.545, "word": "up" }, { "confidence": 0.94628906, "end": 64.025, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.90722656, "start": 63.785, "word": "just" }, { "confidence": 1, "end": 64.104996, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.90722656, "start": 64.025, "word": "to" }, { "confidence": 1, "end": 64.345, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.90722656, "start": 64.104996, "word": "get" }, { "confidence": 0.6640625, "end": 64.585, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.90722656, "start": 64.345, "word": "one" }, { "confidence": 0.99902344, "end": 64.825, "punctuated_word": "paid", "speaker": 0, "speaker_confidence": 0.90722656, "start": 64.585, "word": "paid" }, { "confidence": 1, "end": 65.145, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 0.90722656, "start": 64.825, "word": "user" }, { "confidence": 0.89819336, "end": 65.465, "punctuated_word": "who's", "speaker": 0, "speaker_confidence": 0.90722656, "start": 65.145, "word": "who's" }, { "confidence": 1, "end": 65.625, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.90722656, "start": 65.465, "word": "only" }, { "confidence": 0.9980469, "end": 66.025, "punctuated_word": "paying", "speaker": 0, "speaker_confidence": 0.90722656, "start": 65.625, "word": "paying" }, { "confidence": 0.9970703, "end": 66.525, "punctuated_word": "$6.90.", "speaker": 0, "speaker_confidence": 0.90722656, "start": 66.025, "word": "$6.90" }, { "confidence": 0.9980469, "end": 67.545, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.90722656, "start": 67.305, "word": "i'm" }, { "confidence": 1, "end": 67.705, "punctuated_word": "able", "speaker": 0, "speaker_confidence": 0.90722656, "start": 67.545, "word": "able" }, { "confidence": 0.99902344, "end": 67.784996, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.88183594, "start": 67.705, "word": "to" }, { "confidence": 1, "end": 67.945, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.88183594, "start": 67.784996, "word": "be" }, { "confidence": 1, "end": 68.345, "punctuated_word": "profitable", "speaker": 0, "speaker_confidence": 0.88183594, "start": 67.945, "word": "profitable" }, { "confidence": 0.94384766, "end": 68.424995, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.88183594, "start": 68.345, "word": "in" }, { "confidence": 0.97265625, "end": 68.585, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.88183594, "start": 68.424995, "word": "the" }, { "confidence": 1, "end": 68.744995, "punctuated_word": "short", "speaker": 0, "speaker_confidence": 0.88183594, "start": 68.585, "word": "short" }, { "confidence": 1, "end": 68.985, "punctuated_word": "term", "speaker": 0, "speaker_confidence": 0.88183594, "start": 68.744995, "word": "term" }, { "confidence": 0.93408203, "end": 69.225, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.88183594, "start": 68.985, "word": "because" }, { "confidence": 1, "end": 69.385, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.88183594, "start": 69.225, "word": "i" }, { "confidence": 1, "end": 69.545, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.88183594, "start": 69.385, "word": "have" }, { "confidence": 1, "end": 69.705, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.88183594, "start": 69.545, "word": "this" }, { "confidence": 0.98535156, "end": 70.025, "punctuated_word": "YouTube", "speaker": 0, "speaker_confidence": 0.88183594, "start": 69.705, "word": "youtube" }, { "confidence": 0.9951172, "end": 70.37, "punctuated_word": "channel", "speaker": 0, "speaker_confidence": 0.88183594, "start": 70.025, "word": "channel" }, { "confidence": 0.9748535, "end": 70.61, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.88183594, "start": 70.37, "word": "that's" }, { "confidence": 0.96533203, "end": 70.770004, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.88183594, "start": 70.61, "word": "like" }, { "confidence": 0.9951172, "end": 70.850006, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.88183594, "start": 70.770004, "word": "a" }, { "confidence": 0.9790039, "end": 71.25, "punctuated_word": "gravy", "speaker": 0, "speaker_confidence": 0.88183594, "start": 70.850006, "word": "gravy" }, { "confidence": 0.99902344, "end": 71.41, "punctuated_word": "train", "speaker": 0, "speaker_confidence": 0.88183594, "start": 71.25, "word": "train" }, { "confidence": 1, "end": 71.57, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.88183594, "start": 71.41, "word": "with" }, { "confidence": 0.9914551, "end": 71.97, "punctuated_word": "biscuit", "speaker": 0, "speaker_confidence": 0.88183594, "start": 71.57, "word": "biscuit" }, { "confidence": 0.9904785, "end": 72.29, "punctuated_word": "wheels,", "speaker": 0, "speaker_confidence": 0.88183594, "start": 71.97, "word": "wheels" }, { "confidence": 0.99902344, "end": 72.450005, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.88183594, "start": 72.29, "word": "but" }, { "confidence": 0.9975586, "end": 72.69, "punctuated_word": "I've", "speaker": 0, "speaker_confidence": 0.88183594, "start": 72.450005, "word": "i've" }, { "confidence": 0.99902344, "end": 72.93, "punctuated_word": "already", "speaker": 0, "speaker_confidence": 0.88183594, "start": 72.69, "word": "already" }, { "confidence": 0.99902344, "end": 73.090004, "punctuated_word": "used", "speaker": 0, "speaker_confidence": 0.88183594, "start": 72.93, "word": "used" }, { "confidence": 0.9951172, "end": 73.25, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.88183594, "start": 73.090004, "word": "up" }, { "confidence": 0.9980469, "end": 73.41, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.88183594, "start": 73.25, "word": "that" }, { "confidence": 0.97265625, "end": 73.65, "punctuated_word": "ace", "speaker": 0, "speaker_confidence": 0.88183594, "start": 73.41, "word": "ace" }, { "confidence": 0.9980469, "end": 73.73, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.88183594, "start": 73.65, "word": "in" }, { "confidence": 0.9951172, "end": 73.810005, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.76416016, "start": 73.73, "word": "the" }, { "confidence": 0.99609375, "end": 74.21, "punctuated_word": "hole.", "speaker": 0, "speaker_confidence": 0.76416016, "start": 73.810005, "word": "hole" }, { "confidence": 0.99609375, "end": 74.37, "punctuated_word": "I've", "speaker": 0, "speaker_confidence": 0.76416016, "start": 74.21, "word": "i've" }, { "confidence": 0.99902344, "end": 74.53, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.76416016, "start": 74.37, "word": "only" }, { "confidence": 0.99902344, "end": 74.69, "punctuated_word": "had", "speaker": 0, "speaker_confidence": 0.76416016, "start": 74.53, "word": "had" }, { "confidence": 0.93847656, "end": 74.93, "punctuated_word": "2", "speaker": 0, "speaker_confidence": 0.76416016, "start": 74.69, "word": "2" }, { "confidence": 0.9970703, "end": 75.25, "punctuated_word": "additional", "speaker": 0, "speaker_confidence": 0.76416016, "start": 74.93, "word": "additional" }, { "confidence": 0.9970703, "end": 75.65, "punctuated_word": "sales", "speaker": 0, "speaker_confidence": 0.76416016, "start": 75.25, "word": "sales" }, { "confidence": 0.99902344, "end": 75.89, "punctuated_word": "after", "speaker": 0, "speaker_confidence": 0.76416016, "start": 75.65, "word": "after" }, { "confidence": 0.99902344, "end": 75.97, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.76416016, "start": 75.89, "word": "the" }, { "confidence": 1, "end": 76.29, "punctuated_word": "initial", "speaker": 0, "speaker_confidence": 0.76416016, "start": 75.97, "word": "initial" }, { "confidence": 0.99902344, "end": 76.770004, "punctuated_word": "launch.", "speaker": 0, "speaker_confidence": 0.76416016, "start": 76.29, "word": "launch" }, { "confidence": 0.99902344, "end": 76.850006, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.76416016, "start": 76.770004, "word": "if" }, { "confidence": 1, "end": 77.01, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.76416016, "start": 76.850006, "word": "i" }, { "confidence": 0.8041992, "end": 77.170006, "punctuated_word": "wanna", "speaker": 0, "speaker_confidence": 0.76416016, "start": 77.01, "word": "wanna" }, { "confidence": 0.9951172, "end": 77.41, "punctuated_word": "keep", "speaker": 0, "speaker_confidence": 0.76416016, "start": 77.170006, "word": "keep" }, { "confidence": 0.99609375, "end": 77.73, "punctuated_word": "pursuing", "speaker": 0, "speaker_confidence": 0.76416016, "start": 77.41, "word": "pursuing" }, { "confidence": 0.99902344, "end": 77.89, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.76416016, "start": 77.73, "word": "this" }, { "confidence": 0.99853516, "end": 78.37, "punctuated_word": "business,", "speaker": 0, "speaker_confidence": 0.76416016, "start": 77.89, "word": "business" }, { "confidence": 1, "end": 78.450005, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.7998047, "start": 78.37, "word": "i" }, { "confidence": 1, "end": 78.61, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.7998047, "start": 78.450005, "word": "need" }, { "confidence": 1, "end": 78.770004, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7998047, "start": 78.61, "word": "to" }, { "confidence": 0.9970703, "end": 79.01, "punctuated_word": "either", "speaker": 0, "speaker_confidence": 0.7998047, "start": 78.770004, "word": "either" }, { "confidence": 0.99902344, "end": 79.33, "punctuated_word": "invest", "speaker": 0, "speaker_confidence": 0.7998047, "start": 79.01, "word": "invest" }, { "confidence": 1, "end": 79.41, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7998047, "start": 79.33, "word": "a" }, { "confidence": 1, "end": 79.57, "punctuated_word": "lot", "speaker": 0, "speaker_confidence": 0.7998047, "start": 79.41, "word": "lot" }, { "confidence": 0.99902344, "end": 79.73, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7998047, "start": 79.57, "word": "of" }, { "confidence": 0.9980469, "end": 79.935, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.7998047, "start": 79.73, "word": "my" }, { "confidence": 0.8144531, "end": 80.174995, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 0.7998047, "start": 79.935, "word": "own" }, { "confidence": 0.99902344, "end": 80.335, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.7998047, "start": 80.174995, "word": "time" }, { "confidence": 0.9951172, "end": 80.655, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.7998047, "start": 80.335, "word": "into" }, { "confidence": 0.99902344, "end": 81.134995, "punctuated_word": "organic", "speaker": 0, "speaker_confidence": 0.7998047, "start": 80.655, "word": "organic" }, { "confidence": 0.99902344, "end": 81.615, "punctuated_word": "marketing", "speaker": 0, "speaker_confidence": 0.7998047, "start": 81.134995, "word": "marketing" }, { "confidence": 0.8574219, "end": 81.854996, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.7998047, "start": 81.615, "word": "or" }, { "confidence": 0.9980469, "end": 82.015, "punctuated_word": "pay", "speaker": 0, "speaker_confidence": 0.7998047, "start": 81.854996, "word": "pay" }, { "confidence": 0.9902344, "end": 82.095, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.65234375, "start": 82.015, "word": "a" }, { "confidence": 1, "end": 82.415, "punctuated_word": "friendly", "speaker": 0, "speaker_confidence": 0.65234375, "start": 82.095, "word": "friendly" }, { "confidence": 0.99902344, "end": 82.735, "punctuated_word": "company", "speaker": 0, "speaker_confidence": 0.65234375, "start": 82.415, "word": "company" }, { "confidence": 0.9326172, "end": 82.975, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.65234375, "start": 82.735, "word": "like" }, { "confidence": 0.99902344, "end": 83.215, "punctuated_word": "Google", "speaker": 0, "speaker_confidence": 0.65234375, "start": 82.975, "word": "google" }, { "confidence": 0.9819336, "end": 83.375, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.65234375, "start": 83.215, "word": "or" }, { "confidence": 0.98535156, "end": 83.774994, "punctuated_word": "Meta", "speaker": 0, "speaker_confidence": 0.65234375, "start": 83.375, "word": "meta" }, { "confidence": 0.96240234, "end": 83.935, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.65234375, "start": 83.774994, "word": "an" }, { "confidence": 1, "end": 84.174995, "punctuated_word": "absurd", "speaker": 0, "speaker_confidence": 0.65234375, "start": 83.935, "word": "absurd" }, { "confidence": 1, "end": 84.335, "punctuated_word": "amount", "speaker": 0, "speaker_confidence": 0.65234375, "start": 84.174995, "word": "amount" }, { "confidence": 0.99902344, "end": 84.415, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.80371094, "start": 84.335, "word": "of" }, { "confidence": 1, "end": 84.735, "punctuated_word": "money", "speaker": 0, "speaker_confidence": 0.80371094, "start": 84.415, "word": "money" }, { "confidence": 1, "end": 84.895, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.80371094, "start": 84.735, "word": "to" }, { "confidence": 1, "end": 85.134995, "punctuated_word": "appear", "speaker": 0, "speaker_confidence": 0.80371094, "start": 84.895, "word": "appear" }, { "confidence": 1, "end": 85.295, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.80371094, "start": 85.134995, "word": "on" }, { "confidence": 0.99902344, "end": 85.454994, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 0.80371094, "start": 85.295, "word": "their" }, { "confidence": 0.9995117, "end": 85.935, "punctuated_word": "platform.", "speaker": 0, "speaker_confidence": 0.80371094, "start": 85.454994, "word": "platform" }, { "confidence": 0.99902344, "end": 86.015, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.80371094, "start": 85.935, "word": "it" }, { "confidence": 1, "end": 86.335, "punctuated_word": "depends", "speaker": 0, "speaker_confidence": 0.80371094, "start": 86.015, "word": "depends" }, { "confidence": 0.9892578, "end": 86.415, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.80371094, "start": 86.335, "word": "on" }, { "confidence": 0.99902344, "end": 86.575, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.80371094, "start": 86.415, "word": "the" }, { "confidence": 0.99609375, "end": 87.055, "punctuated_word": "industry,", "speaker": 0, "speaker_confidence": 0.80371094, "start": 86.575, "word": "industry" }, { "confidence": 1, "end": 87.215, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.80371094, "start": 87.055, "word": "but" }, { "confidence": 1, "end": 87.375, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.80371094, "start": 87.215, "word": "it" }, { "confidence": 0.99902344, "end": 87.454994, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.80371094, "start": 87.375, "word": "can" }, { "confidence": 0.9980469, "end": 87.774994, "punctuated_word": "cost", "speaker": 0, "speaker_confidence": 0.80371094, "start": 87.454994, "word": "cost" }, { "confidence": 0.9589844, "end": 88.095, "punctuated_word": "100", "speaker": 0, "speaker_confidence": 0.80371094, "start": 87.774994, "word": "100" }, { "confidence": 0.99902344, "end": 88.255, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.80371094, "start": 88.095, "word": "of" }, { "confidence": 1, "end": 88.66, "punctuated_word": "dollars", "speaker": 0, "speaker_confidence": 0.80371094, "start": 88.255, "word": "dollars" }, { "confidence": 0.9970703, "end": 88.82001, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.80371094, "start": 88.66, "word": "just" }, { "confidence": 1, "end": 88.9, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.80371094, "start": 88.82001, "word": "to" }, { "confidence": 1, "end": 89.060005, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.5317383, "start": 88.9, "word": "get" }, { "confidence": 0.9428711, "end": 89.380005, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.5317383, "start": 89.060005, "word": "one" }, { "confidence": 1, "end": 89.880005, "punctuated_word": "conversion.", "speaker": 0, "speaker_confidence": 0.5317383, "start": 89.380005, "word": "conversion" }, { "confidence": 0.99902344, "end": 90.100006, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.5317383, "start": 89.94, "word": "if" }, { "confidence": 1, "end": 90.18, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.5317383, "start": 90.100006, "word": "you" }, { "confidence": 1, "end": 90.26, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.5317383, "start": 90.18, "word": "have" }, { "confidence": 0.99902344, "end": 90.340004, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9296875, "start": 90.26, "word": "a" }, { "confidence": 1, "end": 90.66, "punctuated_word": "product", "speaker": 0, "speaker_confidence": 0.9296875, "start": 90.340004, "word": "product" }, { "confidence": 0.99902344, "end": 90.82001, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9296875, "start": 90.66, "word": "that" }, { "confidence": 1, "end": 90.98, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.9296875, "start": 90.82001, "word": "has" }, { "confidence": 0.9980469, "end": 91.14001, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9296875, "start": 90.98, "word": "a" }, { "confidence": 1, "end": 91.3, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 0.9296875, "start": 91.14001, "word": "very" }, { "confidence": 1, "end": 91.54, "punctuated_word": "high", "speaker": 0, "speaker_confidence": 0.9296875, "start": 91.3, "word": "high" }, { "confidence": 0.99316406, "end": 91.94, "punctuated_word": "lifetime", "speaker": 0, "speaker_confidence": 0.9296875, "start": 91.54, "word": "lifetime" }, { "confidence": 0.99902344, "end": 92.44, "punctuated_word": "value,", "speaker": 0, "speaker_confidence": 0.9296875, "start": 91.94, "word": "value" }, { "confidence": 0.9980469, "end": 92.66, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.9296875, "start": 92.5, "word": "it" }, { "confidence": 1, "end": 92.82001, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9296875, "start": 92.66, "word": "can" }, { "confidence": 0.9980469, "end": 93.22, "punctuated_word": "definitely", "speaker": 0, "speaker_confidence": 0.9296875, "start": 92.82001, "word": "definitely" }, { "confidence": 1, "end": 93.3, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.9296875, "start": 93.22, "word": "be" }, { "confidence": 1, "end": 93.54, "punctuated_word": "worth", "speaker": 0, "speaker_confidence": 0.9296875, "start": 93.3, "word": "worth" }, { "confidence": 0.9970703, "end": 93.700005, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.9296875, "start": 93.54, "word": "it" }, { "confidence": 0.99902344, "end": 93.78001, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9296875, "start": 93.700005, "word": "to" }, { "confidence": 1, "end": 94.020004, "punctuated_word": "pay", "speaker": 0, "speaker_confidence": 0.9296875, "start": 93.78001, "word": "pay" }, { "confidence": 0.99902344, "end": 94.18, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.9296875, "start": 94.020004, "word": "for" }, { "confidence": 0.99902344, "end": 94.68, "punctuated_word": "advertising", "speaker": 0, "speaker_confidence": 0.9296875, "start": 94.18, "word": "advertising" }, { "confidence": 0.60009766, "end": 95.060005, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.9296875, "start": 94.740005, "word": "because" }, { "confidence": 0.94384766, "end": 95.14001, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.9296875, "start": 95.060005, "word": "if" }, { "confidence": 0.99902344, "end": 95.3, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.9296875, "start": 95.14001, "word": "you" }, { "confidence": 0.94384766, "end": 95.46001, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9296875, "start": 95.3, "word": "can" }, { "confidence": 0.99609375, "end": 95.62, "punctuated_word": "pay", "speaker": 0, "speaker_confidence": 0.9296875, "start": 95.46001, "word": "pay" }, { "confidence": 0.9941406, "end": 95.700005, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.9296875, "start": 95.62, "word": "for" }, { "confidence": 0.99609375, "end": 96.020004, "punctuated_word": "ads", "speaker": 0, "speaker_confidence": 0.9296875, "start": 95.700005, "word": "ads" }, { "confidence": 0.984375, "end": 96.18, "punctuated_word": "while", "speaker": 0, "speaker_confidence": 0.9296875, "start": 96.020004, "word": "while" }, { "confidence": 0.9941406, "end": 96.420006, "punctuated_word": "still", "speaker": 0, "speaker_confidence": 0.9296875, "start": 96.18, "word": "still" }, { "confidence": 0.9902344, "end": 96.755, "punctuated_word": "being", "speaker": 0, "speaker_confidence": 0.9296875, "start": 96.420006, "word": "being" }, { "confidence": 0.86206055, "end": 97.235, "punctuated_word": "profitable,", "speaker": 0, "speaker_confidence": 0.9296875, "start": 96.835, "word": "profitable" }, { "confidence": 0.97802734, "end": 97.395, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.9296875, "start": 97.235, "word": "then" }, { "confidence": 0.9975586, "end": 97.555, "punctuated_word": "there's", "speaker": 0, "speaker_confidence": 0.9296875, "start": 97.395, "word": "there's" }, { "confidence": 0.9980469, "end": 97.795, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 0.9296875, "start": 97.555, "word": "really" }, { "confidence": 0.9970703, "end": 97.954994, "punctuated_word": "no", "speaker": 0, "speaker_confidence": 0.9296875, "start": 97.795, "word": "no" }, { "confidence": 1, "end": 98.195, "punctuated_word": "reason", "speaker": 0, "speaker_confidence": 0.9296875, "start": 97.954994, "word": "reason" }, { "confidence": 1, "end": 98.354996, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.9296875, "start": 98.195, "word": "not" }, { "confidence": 0.9946289, "end": 98.755, "punctuated_word": "to.", "speaker": 0, "speaker_confidence": 0.9296875, "start": 98.354996, "word": "to" }, { "confidence": 0.99902344, "end": 98.91499, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.9296875, "start": 98.755, "word": "in" }, { "confidence": 1, "end": 98.994995, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.9296875, "start": 98.91499, "word": "my" }, { "confidence": 0.85913086, "end": 99.235, "punctuated_word": "case,", "speaker": 0, "speaker_confidence": 0.9296875, "start": 98.994995, "word": "case" }, { "confidence": 0.99853516, "end": 99.395, "punctuated_word": "though,", "speaker": 0, "speaker_confidence": 0.9296875, "start": 99.235, "word": "though" }, { "confidence": 1, "end": 99.634995, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.9296875, "start": 99.395, "word": "my" }, { "confidence": 1, "end": 99.954994, "punctuated_word": "product", "speaker": 0, "speaker_confidence": 0.9296875, "start": 99.634995, "word": "product" }, { "confidence": 0.9980469, "end": 100.115, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.9296875, "start": 99.954994, "word": "only" }, { "confidence": 0.6040039, "end": 100.435, "punctuated_word": "costs", "speaker": 0, "speaker_confidence": 0.9296875, "start": 100.115, "word": "costs" }, { "confidence": 0.96835935, "end": 100.935, "punctuated_word": "$6.90,", "speaker": 0, "speaker_confidence": 0.9296875, "start": 100.435, "word": "$6.90" }, { "confidence": 0.99902344, "end": 102.034996, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.9296875, "start": 101.795, "word": "which" }, { "confidence": 0.9980469, "end": 102.195, "punctuated_word": "would", "speaker": 0, "speaker_confidence": 0.9296875, "start": 102.034996, "word": "would" }, { "confidence": 1, "end": 102.354996, "punctuated_word": "put", "speaker": 0, "speaker_confidence": 0.9296875, "start": 102.195, "word": "put" }, { "confidence": 1, "end": 102.515, "punctuated_word": "me", "speaker": 0, "speaker_confidence": 0.9296875, "start": 102.354996, "word": "me" }, { "confidence": 0.99902344, "end": 102.674995, "punctuated_word": "deep", "speaker": 0, "speaker_confidence": 0.9296875, "start": 102.515, "word": "deep" }, { "confidence": 0.99902344, "end": 102.755, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.41601562, "start": 102.674995, "word": "in" }, { "confidence": 0.99902344, "end": 102.835, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.41601562, "start": 102.755, "word": "the" }, { "confidence": 0.99902344, "end": 103.155, "punctuated_word": "red", "speaker": 0, "speaker_confidence": 0.41601562, "start": 102.835, "word": "red" }, { "confidence": 0.99902344, "end": 103.314995, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.41601562, "start": 103.155, "word": "with" }, { "confidence": 1, "end": 103.555, "punctuated_word": "paid", "speaker": 0, "speaker_confidence": 0.41601562, "start": 103.314995, "word": "paid" }, { "confidence": 0.9472656, "end": 103.795, "punctuated_word": "ads.", "speaker": 0, "speaker_confidence": 0.41601562, "start": 103.555, "word": "ads" }, { "confidence": 0.9980469, "end": 103.954994, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.8691406, "start": 103.795, "word": "but" }, { "confidence": 0.9902344, "end": 104.034996, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8691406, "start": 103.954994, "word": "the" }, { "confidence": 0.9863281, "end": 104.274994, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.8691406, "start": 104.034996, "word": "one" }, { "confidence": 0.99902344, "end": 104.354996, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.8691406, "start": 104.274994, "word": "thing" }, { "confidence": 0.99853516, "end": 104.59499, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.8691406, "start": 104.354996, "word": "that's" }, { "confidence": 0.9980469, "end": 104.755, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.8691406, "start": 104.59499, "word": "more" }, { "confidence": 0.9970703, "end": 105.21, "punctuated_word": "valuable", "speaker": 0, "speaker_confidence": 0.8691406, "start": 104.755, "word": "valuable" }, { "confidence": 0.95947266, "end": 105.61, "punctuated_word": "Money", "speaker": 0, "speaker_confidence": 0.8691406, "start": 105.29, "word": "money" }, { "confidence": 0.9951172, "end": 105.69, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8691406, "start": 105.61, "word": "is" }, { "confidence": 0.9980469, "end": 105.93, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.8691406, "start": 105.69, "word": "your" }, { "confidence": 0.814209, "end": 106.25, "punctuated_word": "time,", "speaker": 0, "speaker_confidence": 0.8691406, "start": 105.93, "word": "time" }, { "confidence": 1, "end": 106.409996, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8691406, "start": 106.25, "word": "and" }, { "confidence": 1, "end": 106.49, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.8691406, "start": 106.409996, "word": "i" }, { "confidence": 1, "end": 106.65, "punctuated_word": "don't", "speaker": 0, "speaker_confidence": 0.8691406, "start": 106.49, "word": "don't" }, { "confidence": 0.7392578, "end": 106.81, "punctuated_word": "wanna", "speaker": 0, "speaker_confidence": 0.8691406, "start": 106.65, "word": "wanna" }, { "confidence": 0.99902344, "end": 107.049995, "punctuated_word": "spend", "speaker": 0, "speaker_confidence": 0.8691406, "start": 106.81, "word": "spend" }, { "confidence": 0.99902344, "end": 107.13, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.8691406, "start": 107.049995, "word": "my" }, { "confidence": 0.99902344, "end": 107.369995, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.8691406, "start": 107.13, "word": "time" }, { "confidence": 0.9980469, "end": 107.69, "punctuated_word": "standing", "speaker": 0, "speaker_confidence": 0.8691406, "start": 107.369995, "word": "standing" }, { "confidence": 0.9970703, "end": 107.77, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8691406, "start": 107.69, "word": "on" }, { "confidence": 0.9873047, "end": 107.93, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8691406, "start": 107.77, "word": "the" }, { "confidence": 1, "end": 108.25, "punctuated_word": "corner", "speaker": 0, "speaker_confidence": 0.8691406, "start": 107.93, "word": "corner" }, { "confidence": 0.9802246, "end": 108.65, "punctuated_word": "twirling", "speaker": 0, "speaker_confidence": 0.8691406, "start": 108.25, "word": "twirling" }, { "confidence": 0.7402344, "end": 108.729996, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8691406, "start": 108.65, "word": "a" }, { "confidence": 0.99902344, "end": 109.049995, "punctuated_word": "sign", "speaker": 0, "speaker_confidence": 0.8691406, "start": 108.729996, "word": "sign" }, { "confidence": 1, "end": 109.29, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.8691406, "start": 109.049995, "word": "for" }, { "confidence": 0.9790039, "end": 109.369995, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8691406, "start": 109.29, "word": "the" }, { "confidence": 0.9970703, "end": 109.61, "punctuated_word": "side", "speaker": 0, "speaker_confidence": 0.8691406, "start": 109.369995, "word": "side" }, { "confidence": 0.99934894, "end": 110.09, "punctuated_word": "hustle.", "speaker": 0, "speaker_confidence": 0.8691406, "start": 109.61, "word": "hustle" }, { "confidence": 0.99609375, "end": 110.409996, "punctuated_word": "Behind", "speaker": 0, "speaker_confidence": 0.8691406, "start": 110.09, "word": "behind" }, { "confidence": 0.9970703, "end": 110.729996, "punctuated_word": "almost", "speaker": 0, "speaker_confidence": 0.8691406, "start": 110.409996, "word": "almost" }, { "confidence": 0.9980469, "end": 111.049995, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 0.8691406, "start": 110.729996, "word": "every" }, { "confidence": 0.99121094, "end": 111.53, "punctuated_word": "successful", "speaker": 0, "speaker_confidence": 0.8691406, "start": 111.049995, "word": "successful" }, { "confidence": 0.99316406, "end": 111.77, "punctuated_word": "small", "speaker": 0, "speaker_confidence": 0.8691406, "start": 111.53, "word": "small" }, { "confidence": 0.9980469, "end": 112.25, "punctuated_word": "business", "speaker": 0, "speaker_confidence": 0.8691406, "start": 111.77, "word": "business" }, { "confidence": 0.9560547, "end": 112.409996, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.6123047, "start": 112.25, "word": "is" }, { "confidence": 0.99902344, "end": 112.57, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.6123047, "start": 112.409996, "word": "an" }, { "confidence": 1, "end": 113.049995, "punctuated_word": "extremely", "speaker": 0, "speaker_confidence": 0.6123047, "start": 112.57, "word": "extremely" }, { "confidence": 0.99902344, "end": 113.45, "punctuated_word": "passionate", "speaker": 0, "speaker_confidence": 0.6123047, "start": 113.049995, "word": "passionate" }, { "confidence": 0.9941406, "end": 113.785, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6123047, "start": 113.45, "word": "and" }, { "confidence": 0.5415039, "end": 114.105, "punctuated_word": "driven", "speaker": 0, "speaker_confidence": 0.6123047, "start": 113.865005, "word": "driven" }, { "confidence": 0.7937012, "end": 114.58501, "punctuated_word": "founder.", "speaker": 0, "speaker_confidence": 0.6123047, "start": 114.105, "word": "founder" }, { "confidence": 0.99609375, "end": 114.745, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.6123047, "start": 114.58501, "word": "if" }, { "confidence": 0.9970703, "end": 114.90501, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.6123047, "start": 114.745, "word": "you're" }, { "confidence": 0.9951172, "end": 115.065, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.6123047, "start": 114.90501, "word": "going" }, { "confidence": 0.9980469, "end": 115.225006, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6123047, "start": 115.065, "word": "to" }, { "confidence": 0.9946289, "end": 115.545006, "punctuated_word": "try,", "speaker": 0, "speaker_confidence": 0.6123047, "start": 115.225006, "word": "try" }, { "confidence": 1, "end": 115.705, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.6123047, "start": 115.545006, "word": "go" }, { "confidence": 1, "end": 115.94501, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.6123047, "start": 115.705, "word": "all" }, { "confidence": 0.9970703, "end": 116.025, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8017578, "start": 115.94501, "word": "the" }, { "confidence": 0.94873047, "end": 116.425, "punctuated_word": "way.", "speaker": 0, "speaker_confidence": 0.8017578, "start": 116.025, "word": "way" }, { "confidence": 0.9970703, "end": 116.90501, "punctuated_word": "Otherwise,", "speaker": 0, "speaker_confidence": 0.8017578, "start": 116.425, "word": "otherwise" }, { "confidence": 1, "end": 117.065, "punctuated_word": "don't", "speaker": 0, "speaker_confidence": 0.8017578, "start": 116.90501, "word": "don't" }, { "confidence": 0.9980469, "end": 117.305, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 0.8017578, "start": 117.065, "word": "even" }, { "confidence": 0.9975586, "end": 117.705, "punctuated_word": "start.", "speaker": 0, "speaker_confidence": 0.8017578, "start": 117.305, "word": "start" }, { "confidence": 1, "end": 117.94501, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.8017578, "start": 117.705, "word": "this" }, { "confidence": 0.99902344, "end": 118.105, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.8017578, "start": 117.94501, "word": "could" }, { "confidence": 0.99902344, "end": 118.26501, "punctuated_word": "mean", "speaker": 0, "speaker_confidence": 0.8017578, "start": 118.105, "word": "mean" }, { "confidence": 0.9951172, "end": 118.58501, "punctuated_word": "losing", "speaker": 0, "speaker_confidence": 0.8017578, "start": 118.26501, "word": "losing" }, { "confidence": 0.9975586, "end": 119.08501, "punctuated_word": "girlfriends,", "speaker": 0, "speaker_confidence": 0.8017578, "start": 118.58501, "word": "girlfriends" }, { "confidence": 0.9975586, "end": 119.705, "punctuated_word": "wives,", "speaker": 0, "speaker_confidence": 0.8017578, "start": 119.305, "word": "wives" }, { "confidence": 0.9807129, "end": 120.205, "punctuated_word": "relatives,", "speaker": 0, "speaker_confidence": 0.8017578, "start": 119.705, "word": "relatives" }, { "confidence": 0.9980469, "end": 120.665, "punctuated_word": "maybe", "speaker": 0, "speaker_confidence": 0.8017578, "start": 120.425, "word": "maybe" }, { "confidence": 0.9970703, "end": 120.90501, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 0.8017578, "start": 120.665, "word": "even" }, { "confidence": 0.9980469, "end": 121.065, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.8017578, "start": 120.90501, "word": "your" }, { "confidence": 0.9995117, "end": 121.385, "punctuated_word": "mind.", "speaker": 0, "speaker_confidence": 0.8017578, "start": 121.065, "word": "mind" }, { "confidence": 0.9941406, "end": 121.545006, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.8017578, "start": 121.385, "word": "it" }, { "confidence": 0.99609375, "end": 121.82, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.8017578, "start": 121.545006, "word": "could" }, { "confidence": 0.34033203, "end": 122.22, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.8017578, "start": 121.9, "word": "not" }, { "confidence": 0.9902344, "end": 122.3, "punctuated_word": "eating", "speaker": 0, "speaker_confidence": 0.8017578, "start": 122.22, "word": "eating" }, { "confidence": 0.9970703, "end": 122.54, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.8017578, "start": 122.3, "word": "for" }, { "confidence": 0.9951172, "end": 122.7, "punctuated_word": "3", "speaker": 0, "speaker_confidence": 0.8017578, "start": 122.54, "word": "3" }, { "confidence": 0.9741211, "end": 122.78, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.55615234, "start": 122.7, "word": "or" }, { "confidence": 0.98291016, "end": 123.02, "punctuated_word": "4", "speaker": 0, "speaker_confidence": 0.55615234, "start": 122.78, "word": "4" }, { "confidence": 0.7722168, "end": 123.34, "punctuated_word": "days.", "speaker": 0, "speaker_confidence": 0.55615234, "start": 123.02, "word": "days" }, { "confidence": 0.9951172, "end": 123.5, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.55615234, "start": 123.34, "word": "it" }, { "confidence": 1, "end": 123.659996, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.55615234, "start": 123.5, "word": "could" }, { "confidence": 0.9970703, "end": 123.82, "punctuated_word": "mean", "speaker": 0, "speaker_confidence": 0.55615234, "start": 123.659996, "word": "mean" }, { "confidence": 0.9980469, "end": 124.14, "punctuated_word": "freezing", "speaker": 0, "speaker_confidence": 0.55615234, "start": 123.82, "word": "freezing" }, { "confidence": 1, "end": 124.3, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.55615234, "start": 124.14, "word": "on" }, { "confidence": 0.99316406, "end": 124.38, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.72753906, "start": 124.3, "word": "a" }, { "confidence": 0.99902344, "end": 124.62, "punctuated_word": "park", "speaker": 0, "speaker_confidence": 0.72753906, "start": 124.38, "word": "park" }, { "confidence": 0.9707031, "end": 125.02, "punctuated_word": "bench.", "speaker": 0, "speaker_confidence": 0.72753906, "start": 124.62, "word": "bench" }, { "confidence": 0.9980469, "end": 125.18, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.72753906, "start": 125.02, "word": "it" }, { "confidence": 1, "end": 125.34, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.72753906, "start": 125.18, "word": "could" }, { "confidence": 0.99902344, "end": 125.5, "punctuated_word": "mean", "speaker": 0, "speaker_confidence": 0.72753906, "start": 125.34, "word": "mean" }, { "confidence": 0.99365234, "end": 125.9, "punctuated_word": "jail.", "speaker": 0, "speaker_confidence": 0.72753906, "start": 125.5, "word": "jail" }, { "confidence": 0.99902344, "end": 125.979996, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.72753906, "start": 125.9, "word": "it" }, { "confidence": 0.99902344, "end": 126.14, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.72753906, "start": 125.979996, "word": "could" }, { "confidence": 0.99609375, "end": 126.3, "punctuated_word": "mean", "speaker": 0, "speaker_confidence": 0.72753906, "start": 126.14, "word": "mean" }, { "confidence": 0.99934894, "end": 126.8, "punctuated_word": "derision.", "speaker": 0, "speaker_confidence": 0.72753906, "start": 126.3, "word": "derision" }, { "confidence": 0.99902344, "end": 127.18, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.72753906, "start": 127.02, "word": "it" }, { "confidence": 1, "end": 127.26, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.72753906, "start": 127.18, "word": "could" }, { "confidence": 0.9980469, "end": 127.5, "punctuated_word": "mean", "speaker": 0, "speaker_confidence": 0.72753906, "start": 127.26, "word": "mean" }, { "confidence": 0.96484375, "end": 128, "punctuated_word": "mockery,", "speaker": 0, "speaker_confidence": 0.72753906, "start": 127.5, "word": "mockery" }, { "confidence": 0.9658203, "end": 128.64, "punctuated_word": "isolation.", "speaker": 0, "speaker_confidence": 0.72753906, "start": 128.14, "word": "isolation" }, { "confidence": 0.9980469, "end": 129.42, "punctuated_word": "Isolation", "speaker": 0, "speaker_confidence": 0.72753906, "start": 128.94, "word": "isolation" }, { "confidence": 0.9970703, "end": 129.58, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.72753906, "start": 129.42, "word": "is" }, { "confidence": 0.99609375, "end": 129.74, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.72753906, "start": 129.58, "word": "the" }, { "confidence": 0.986084, "end": 130.06, "punctuated_word": "gift.", "speaker": 0, "speaker_confidence": 0.72753906, "start": 129.74, "word": "gift" }, { "confidence": 0.99609375, "end": 130.22, "punctuated_word": "All", "speaker": 0, "speaker_confidence": 0.43896484, "start": 130.06, "word": "all" }, { "confidence": 0.9863281, "end": 130.3, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.43896484, "start": 130.22, "word": "the" }, { "confidence": 0.8330078, "end": 130.575, "punctuated_word": "others", "speaker": 0, "speaker_confidence": 0.43896484, "start": 130.3, "word": "others" }, { "confidence": 0.9421387, "end": 130.655, "punctuated_word": "They're", "speaker": 0, "speaker_confidence": 0.43896484, "start": 130.575, "word": "they're" }, { "confidence": 0.99902344, "end": 130.815, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.43896484, "start": 130.655, "word": "just" }, { "confidence": 0.9921875, "end": 130.97499, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.43896484, "start": 130.815, "word": "a" }, { "confidence": 1, "end": 131.055, "punctuated_word": "test", "speaker": 0, "speaker_confidence": 0.43896484, "start": 130.97499, "word": "test" }, { "confidence": 0.9970703, "end": 131.215, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.6123047, "start": 131.055, "word": "of" }, { "confidence": 0.99609375, "end": 131.455, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.6123047, "start": 131.215, "word": "your" }, { "confidence": 0.7648926, "end": 131.935, "punctuated_word": "endurance,", "speaker": 0, "speaker_confidence": 0.6123047, "start": 131.455, "word": "endurance" }, { "confidence": 0.99902344, "end": 132.175, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.6123047, "start": 131.935, "word": "of" }, { "confidence": 1, "end": 132.25499, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.6123047, "start": 132.175, "word": "how" }, { "confidence": 0.99902344, "end": 132.415, "punctuated_word": "much", "speaker": 0, "speaker_confidence": 0.6123047, "start": 132.25499, "word": "much" }, { "confidence": 0.99902344, "end": 132.575, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.6123047, "start": 132.415, "word": "you" }, { "confidence": 0.99609375, "end": 132.895, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 0.6123047, "start": 132.575, "word": "really" }, { "confidence": 0.99902344, "end": 133.015, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.6123047, "start": 132.895, "word": "want" }, { "confidence": 0.9980469, "end": 133.135, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.68359375, "start": 133.015, "word": "to" }, { "confidence": 0.99902344, "end": 133.295, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.68359375, "start": 133.135, "word": "do" }, { "confidence": 0.9250488, "end": 133.61499, "punctuated_word": "it.", "speaker": 0, "speaker_confidence": 0.68359375, "start": 133.295, "word": "it" }, { "confidence": 0.9980469, "end": 133.775, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.68359375, "start": 133.61499, "word": "and" }, { "confidence": 0.967041, "end": 134.015, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 0.68359375, "start": 133.775, "word": "you'll" }, { "confidence": 0.99902344, "end": 134.095, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.68359375, "start": 134.015, "word": "do" }, { "confidence": 0.77246094, "end": 134.415, "punctuated_word": "it,", "speaker": 0, "speaker_confidence": 0.68359375, "start": 134.095, "word": "it" }, { "confidence": 0.9970703, "end": 134.735, "punctuated_word": "despite", "speaker": 0, "speaker_confidence": 0.68359375, "start": 134.415, "word": "despite" }, { "confidence": 0.99902344, "end": 135.215, "punctuated_word": "rejection", "speaker": 0, "speaker_confidence": 0.68359375, "start": 134.735, "word": "rejection" }, { "confidence": 0.92822266, "end": 135.375, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.68359375, "start": 135.215, "word": "and" }, { "confidence": 0.9951172, "end": 135.535, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.68359375, "start": 135.375, "word": "the" }, { "confidence": 0.9951172, "end": 135.775, "punctuated_word": "worst", "speaker": 0, "speaker_confidence": 0.68359375, "start": 135.535, "word": "worst" }, { "confidence": 0.7636719, "end": 136.095, "punctuated_word": "odds,", "speaker": 0, "speaker_confidence": 0.68359375, "start": 135.775, "word": "odds" }, { "confidence": 0.99902344, "end": 136.33499, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.68359375, "start": 136.095, "word": "and" }, { "confidence": 0.9970703, "end": 136.495, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.68359375, "start": 136.33499, "word": "it" }, { "confidence": 0.99121094, "end": 136.575, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.68359375, "start": 136.495, "word": "will" }, { "confidence": 0.9980469, "end": 136.655, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.74902344, "start": 136.575, "word": "be" }, { "confidence": 1, "end": 136.89499, "punctuated_word": "better", "speaker": 0, "speaker_confidence": 0.74902344, "start": 136.655, "word": "better" }, { "confidence": 0.99902344, "end": 137.135, "punctuated_word": "than", "speaker": 0, "speaker_confidence": 0.74902344, "start": 136.89499, "word": "than" }, { "confidence": 0.99902344, "end": 137.455, "punctuated_word": "anything", "speaker": 0, "speaker_confidence": 0.74902344, "start": 137.135, "word": "anything" }, { "confidence": 0.99902344, "end": 137.61499, "punctuated_word": "else", "speaker": 0, "speaker_confidence": 0.74902344, "start": 137.455, "word": "else" }, { "confidence": 0.9970703, "end": 137.775, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.74902344, "start": 137.61499, "word": "you" }, { "confidence": 0.9980469, "end": 138.015, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.74902344, "start": 137.775, "word": "can" }, { "confidence": 0.9970703, "end": 138.415, "punctuated_word": "imagine.", "speaker": 0, "speaker_confidence": 0.74902344, "start": 138.015, "word": "imagine" }, { "confidence": 0.9873047, "end": 138.575, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.74902344, "start": 138.415, "word": "if" }, { "confidence": 0.9941406, "end": 138.735, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.74902344, "start": 138.575, "word": "you're" }, { "confidence": 0.9892578, "end": 139.03, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.74902344, "start": 138.735, "word": "going" }, { "confidence": 0.6223958, "end": 139.51, "punctuated_word": "Shry,", "speaker": 0, "speaker_confidence": 0.74902344, "start": 139.11, "word": "shry" }, { "confidence": 0.80371094, "end": 139.75, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.74902344, "start": 139.51, "word": "go" }, { "confidence": 0.99316406, "end": 139.91, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.74902344, "start": 139.75, "word": "all" }, { "confidence": 0.9970703, "end": 139.99, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.74902344, "start": 139.91, "word": "the" }, { "confidence": 0.986084, "end": 140.39, "punctuated_word": "way.", "speaker": 0, "speaker_confidence": 0.74902344, "start": 139.99, "word": "way" }, { "confidence": 0.9975586, "end": 140.63, "punctuated_word": "There's", "speaker": 0, "speaker_confidence": 0.74902344, "start": 140.39, "word": "there's" }, { "confidence": 0.99902344, "end": 140.79, "punctuated_word": "no", "speaker": 0, "speaker_confidence": 0.74902344, "start": 140.63, "word": "no" }, { "confidence": 0.9980469, "end": 141.03, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.74902344, "start": 140.79, "word": "other" }, { "confidence": 1, "end": 141.35, "punctuated_word": "feeling", "speaker": 0, "speaker_confidence": 0.74902344, "start": 141.03, "word": "feeling" }, { "confidence": 1, "end": 141.51, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.74902344, "start": 141.35, "word": "like" }, { "confidence": 0.9921875, "end": 141.75, "punctuated_word": "that.", "speaker": 0, "speaker_confidence": 0.74902344, "start": 141.51, "word": "that" }, { "confidence": 0.9980469, "end": 141.91, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.74902344, "start": 141.75, "word": "you" }, { "confidence": 0.56884766, "end": 142.06999, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.74902344, "start": 141.91, "word": "will" }, { "confidence": 0.9902344, "end": 142.23, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.74902344, "start": 142.06999, "word": "be" }, { "confidence": 1, "end": 142.55, "punctuated_word": "alone", "speaker": 0, "speaker_confidence": 0.74902344, "start": 142.23, "word": "alone" }, { "confidence": 0.99902344, "end": 142.70999, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.74902344, "start": 142.55, "word": "with" }, { "confidence": 0.9921875, "end": 142.87, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.74902344, "start": 142.70999, "word": "the" }, { "confidence": 0.79174805, "end": 143.27, "punctuated_word": "gods,", "speaker": 0, "speaker_confidence": 0.74902344, "start": 142.87, "word": "gods" }, { "confidence": 0.99902344, "end": 143.51, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.74902344, "start": 143.27, "word": "and" }, { "confidence": 0.9980469, "end": 143.59, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.74902344, "start": 143.51, "word": "the" }, { "confidence": 0.9277344, "end": 143.91, "punctuated_word": "nights", "speaker": 0, "speaker_confidence": 0.74902344, "start": 143.59, "word": "nights" }, { "confidence": 0.99609375, "end": 144.15, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.74902344, "start": 143.91, "word": "will" }, { "confidence": 1, "end": 144.39, "punctuated_word": "flame", "speaker": 0, "speaker_confidence": 0.74902344, "start": 144.15, "word": "flame" }, { "confidence": 0.9970703, "end": 144.55, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.74902344, "start": 144.39, "word": "with" }, { "confidence": 0.9926758, "end": 144.95, "punctuated_word": "fire.", "speaker": 0, "speaker_confidence": 0.74902344, "start": 144.55, "word": "fire" }, { "confidence": 0.9980469, "end": 145.03, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.80078125, "start": 144.95, "word": "you" }, { "confidence": 0.8803711, "end": 145.19, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.80078125, "start": 145.03, "word": "will" }, { "confidence": 0.9506836, "end": 145.51, "punctuated_word": "ride", "speaker": 0, "speaker_confidence": 0.80078125, "start": 145.19, "word": "ride" }, { "confidence": 0.9941406, "end": 145.83, "punctuated_word": "life", "speaker": 0, "speaker_confidence": 0.80078125, "start": 145.51, "word": "life" }, { "confidence": 0.99609375, "end": 146.06999, "punctuated_word": "straight", "speaker": 0, "speaker_confidence": 0.80078125, "start": 145.83, "word": "straight" }, { "confidence": 1, "end": 146.23, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.80078125, "start": 146.06999, "word": "to" }, { "confidence": 1, "end": 146.615, "punctuated_word": "perfect", "speaker": 0, "speaker_confidence": 0.80078125, "start": 146.23, "word": "perfect" }, { "confidence": 0.7680664, "end": 147.015, "punctuated_word": "after.", "speaker": 0, "speaker_confidence": 0.80078125, "start": 146.695, "word": "after" }, { "confidence": 0.99902344, "end": 147.255, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.80078125, "start": 147.015, "word": "it's" }, { "confidence": 0.99902344, "end": 147.41501, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.80078125, "start": 147.255, "word": "the" }, { "confidence": 1, "end": 147.655, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.80078125, "start": 147.41501, "word": "only" }, { "confidence": 0.99902344, "end": 147.815, "punctuated_word": "good", "speaker": 0, "speaker_confidence": 0.80078125, "start": 147.655, "word": "good" }, { "confidence": 1, "end": 148.05501, "punctuated_word": "fight", "speaker": 0, "speaker_confidence": 0.80078125, "start": 147.815, "word": "fight" }, { "confidence": 0.9980469, "end": 148.295, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.80078125, "start": 148.05501, "word": "there" }, { "confidence": 0.99902344, "end": 148.695, "punctuated_word": "is.", "speaker": 0, "speaker_confidence": 0.80078125, "start": 148.295, "word": "is" }, { "confidence": 0.9970703, "end": 148.85501, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.80078125, "start": 148.695, "word": "if" }, { "confidence": 0.9951172, "end": 149.015, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.80078125, "start": 148.85501, "word": "that" }, { "confidence": 0.984375, "end": 149.515, "punctuated_word": "Bukowski", "speaker": 0, "speaker_confidence": 0.80078125, "start": 149.015, "word": "bukowski" }, { "confidence": 0.9980469, "end": 149.815, "punctuated_word": "poem", "speaker": 0, "speaker_confidence": 0.80078125, "start": 149.57501, "word": "poem" }, { "confidence": 0.9995117, "end": 150.05501, "punctuated_word": "doesn't", "speaker": 0, "speaker_confidence": 0.80078125, "start": 149.815, "word": "doesn't" }, { "confidence": 0.99902344, "end": 150.295, "punctuated_word": "describe", "speaker": 0, "speaker_confidence": 0.80078125, "start": 150.05501, "word": "describe" }, { "confidence": 0.99902344, "end": 150.535, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.80078125, "start": 150.295, "word": "how" }, { "confidence": 1, "end": 150.615, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.80078125, "start": 150.535, "word": "you" }, { "confidence": 1, "end": 150.85501, "punctuated_word": "feel", "speaker": 0, "speaker_confidence": 0.80078125, "start": 150.615, "word": "feel" }, { "confidence": 0.9970703, "end": 151.095, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.80078125, "start": 150.85501, "word": "about" }, { "confidence": 0.9980469, "end": 151.255, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.80078125, "start": 151.095, "word": "your" }, { "confidence": 0.99609375, "end": 151.735, "punctuated_word": "project,", "speaker": 0, "speaker_confidence": 0.80078125, "start": 151.255, "word": "project" }, { "confidence": 0.99902344, "end": 151.975, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.80078125, "start": 151.735, "word": "then" }, { "confidence": 1, "end": 152.05501, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.80078125, "start": 151.975, "word": "it" }, { "confidence": 0.9980469, "end": 152.21501, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 0.80078125, "start": 152.05501, "word": "might" }, { "confidence": 0.99902344, "end": 152.295, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.80078125, "start": 152.21501, "word": "not" }, { "confidence": 0.99902344, "end": 152.455, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.8071289, "start": 152.295, "word": "be" }, { "confidence": 1, "end": 152.695, "punctuated_word": "worth", "speaker": 0, "speaker_confidence": 0.8071289, "start": 152.455, "word": "worth" }, { "confidence": 0.99902344, "end": 152.77501, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.8071289, "start": 152.695, "word": "your" }, { "confidence": 1, "end": 153.095, "punctuated_word": "time.", "speaker": 0, "speaker_confidence": 0.8071289, "start": 152.77501, "word": "time" }, { "confidence": 0.99902344, "end": 153.255, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.8071289, "start": 153.095, "word": "if" }, { "confidence": 0.99853516, "end": 153.41501, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.8071289, "start": 153.255, "word": "i'm" }, { "confidence": 1, "end": 153.57501, "punctuated_word": "being", "speaker": 0, "speaker_confidence": 0.8071289, "start": 153.41501, "word": "being" }, { "confidence": 1, "end": 153.975, "punctuated_word": "totally", "speaker": 0, "speaker_confidence": 0.8071289, "start": 153.57501, "word": "totally" }, { "confidence": 1, "end": 154.21501, "punctuated_word": "honest", "speaker": 0, "speaker_confidence": 0.8071289, "start": 153.975, "word": "honest" }, { "confidence": 0.99902344, "end": 154.375, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.8071289, "start": 154.21501, "word": "with" }, { "confidence": 0.99853516, "end": 154.77501, "punctuated_word": "myself,", "speaker": 0, "speaker_confidence": 0.8071289, "start": 154.375, "word": "myself" }, { "confidence": 0.9975586, "end": 154.935, "punctuated_word": "I'd", "speaker": 0, "speaker_confidence": 0.8071289, "start": 154.77501, "word": "i'd" }, { "confidence": 0.9980469, "end": 155.13, "punctuated_word": "much", "speaker": 0, "speaker_confidence": 0.8071289, "start": 154.935, "word": "much" }, { "confidence": 0.7939453, "end": 155.45001, "punctuated_word": "Rather", "speaker": 0, "speaker_confidence": 0.8071289, "start": 155.21, "word": "rather" }, { "confidence": 0.88720703, "end": 155.61, "punctuated_word": "spend", "speaker": 0, "speaker_confidence": 0.8071289, "start": 155.45001, "word": "spend" }, { "confidence": 1, "end": 155.69, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.6557617, "start": 155.61, "word": "my" }, { "confidence": 1, "end": 156.01001, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.6557617, "start": 155.69, "word": "time" }, { "confidence": 0.99902344, "end": 156.33, "punctuated_word": "making", "speaker": 0, "speaker_confidence": 0.6557617, "start": 156.01001, "word": "making" }, { "confidence": 1, "end": 156.65001, "punctuated_word": "content", "speaker": 0, "speaker_confidence": 0.6557617, "start": 156.33, "word": "content" }, { "confidence": 1, "end": 156.81, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.6557617, "start": 156.65001, "word": "on" }, { "confidence": 0.63623047, "end": 157.05, "punctuated_word": "Fire", "speaker": 0, "speaker_confidence": 0.6557617, "start": 156.81, "word": "fire" }, { "confidence": 0.7402344, "end": 157.53, "punctuated_word": "Ship", "speaker": 0, "speaker_confidence": 0.6557617, "start": 157.05, "word": "ship" }, { "confidence": 0.58496094, "end": 157.65, "punctuated_word": "than", "speaker": 0, "speaker_confidence": 0.6557617, "start": 157.53, "word": "than" }, { "confidence": 0.9980469, "end": 157.77, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.7758789, "start": 157.65, "word": "i" }, { "confidence": 1, "end": 158.01001, "punctuated_word": "would", "speaker": 0, "speaker_confidence": 0.7758789, "start": 157.77, "word": "would" }, { "confidence": 0.97802734, "end": 158.25, "punctuated_word": "trying", "speaker": 0, "speaker_confidence": 0.7758789, "start": 158.01001, "word": "trying" }, { "confidence": 1, "end": 158.33, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7758789, "start": 158.25, "word": "to" }, { "confidence": 1, "end": 158.49, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.7758789, "start": 158.33, "word": "build" }, { "confidence": 0.9941406, "end": 158.65001, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.7758789, "start": 158.49, "word": "up" }, { "confidence": 1, "end": 158.89, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.7758789, "start": 158.65001, "word": "this" }, { "confidence": 0.9892578, "end": 159.05, "punctuated_word": "half", "speaker": 0, "speaker_confidence": 0.7758789, "start": 158.89, "word": "half" }, { "confidence": 0.8725586, "end": 159.37001, "punctuated_word": "assed", "speaker": 0, "speaker_confidence": 0.7758789, "start": 159.05, "word": "assed" }, { "confidence": 0.9980469, "end": 159.61, "punctuated_word": "voice", "speaker": 0, "speaker_confidence": 0.7758789, "start": 159.37001, "word": "voice" }, { "confidence": 1, "end": 159.93001, "punctuated_word": "cloning", "speaker": 0, "speaker_confidence": 0.7758789, "start": 159.61, "word": "cloning" }, { "confidence": 0.9970703, "end": 160.25, "punctuated_word": "tool.", "speaker": 0, "speaker_confidence": 0.7758789, "start": 159.93001, "word": "tool" }, { "confidence": 0.93847656, "end": 160.49, "punctuated_word": "That", "speaker": 0, "speaker_confidence": 0.7758789, "start": 160.25, "word": "that" }, { "confidence": 1, "end": 160.73001, "punctuated_word": "being", "speaker": 0, "speaker_confidence": 0.7758789, "start": 160.49, "word": "being" }, { "confidence": 0.9995117, "end": 161.05, "punctuated_word": "said,", "speaker": 0, "speaker_confidence": 0.7758789, "start": 160.73001, "word": "said" }, { "confidence": 1, "end": 161.13, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 1, "start": 161.05, "word": "what" }, { "confidence": 0.99609375, "end": 161.29001, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 1, "start": 161.13, "word": "could" }, { "confidence": 0.99316406, "end": 161.37001, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 1, "start": 161.29001, "word": "i" }, { "confidence": 0.99609375, "end": 161.53, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 1, "start": 161.37001, "word": "have" }, { "confidence": 0.99902344, "end": 161.69, "punctuated_word": "done", "speaker": 0, "speaker_confidence": 1, "start": 161.53, "word": "done" }, { "confidence": 1, "end": 162.17, "punctuated_word": "differently", "speaker": 0, "speaker_confidence": 1, "start": 161.69, "word": "differently" }, { "confidence": 1, "end": 162.33, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 162.17, "word": "to" }, { "confidence": 1, "end": 162.57, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 1, "start": 162.33, "word": "make" }, { "confidence": 1, "end": 162.73001, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 1, "start": 162.57, "word": "this" }, { "confidence": 1, "end": 163.13, "punctuated_word": "project", "speaker": 0, "speaker_confidence": 1, "start": 162.73001, "word": "project" }, { "confidence": 1, "end": 163.37001, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 1, "start": 163.13, "word": "more" }, { "confidence": 0.9904785, "end": 163.87001, "punctuated_word": "successful?", "speaker": 0, "speaker_confidence": 1, "start": 163.37001, "word": "successful" }, { "confidence": 0.9909668, "end": 164.215, "punctuated_word": "Well,", "speaker": 0, "speaker_confidence": 1, "start": 163.93001, "word": "well" }, { "confidence": 0.9091797, "end": 164.375, "punctuated_word": "First", "speaker": 0, "speaker_confidence": 1, "start": 164.215, "word": "first" }, { "confidence": 0.99902344, "end": 164.535, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 164.375, "word": "of" }, { "confidence": 0.9980469, "end": 164.61499, "punctuated_word": "all,", "speaker": 0, "speaker_confidence": 1, "start": 164.535, "word": "all" }, { "confidence": 1, "end": 164.855, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 1, "start": 164.61499, "word": "i" }, { "confidence": 0.99902344, "end": 165.095, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 1, "start": 164.855, "word": "only" }, { "confidence": 0.9941406, "end": 165.33499, "punctuated_word": "spent", "speaker": 0, "speaker_confidence": 1, "start": 165.095, "word": "spent" }, { "confidence": 0.9902344, "end": 165.495, "punctuated_word": "2", "speaker": 0, "speaker_confidence": 1, "start": 165.33499, "word": "2" }, { "confidence": 1, "end": 165.735, "punctuated_word": "days", "speaker": 0, "speaker_confidence": 1, "start": 165.495, "word": "days" }, { "confidence": 1, "end": 165.97499, "punctuated_word": "building", "speaker": 0, "speaker_confidence": 1, "start": 165.735, "word": "building" }, { "confidence": 0.7648926, "end": 166.375, "punctuated_word": "it,", "speaker": 0, "speaker_confidence": 1, "start": 165.97499, "word": "it" }, { "confidence": 0.99316406, "end": 166.535, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 1, "start": 166.375, "word": "it's" }, { "confidence": 0.99902344, "end": 166.775, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 1, "start": 166.535, "word": "not" }, { "confidence": 0.8991699, "end": 167.25499, "punctuated_word": "responsive,", "speaker": 0, "speaker_confidence": 1, "start": 166.775, "word": "responsive" }, { "confidence": 0.99902344, "end": 167.415, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 167.25499, "word": "and" }, { "confidence": 0.9970703, "end": 167.735, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 1, "start": 167.415, "word": "has" }, { "confidence": 0.99609375, "end": 167.815, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 167.735, "word": "a" }, { "confidence": 1, "end": 168.215, "punctuated_word": "terrible", "speaker": 0, "speaker_confidence": 1, "start": 167.815, "word": "terrible" }, { "confidence": 0.99902344, "end": 168.535, "punctuated_word": "landing", "speaker": 0, "speaker_confidence": 1, "start": 168.215, "word": "landing" }, { "confidence": 0.99853516, "end": 168.855, "punctuated_word": "page.", "speaker": 0, "speaker_confidence": 1, "start": 168.535, "word": "page" }, { "confidence": 0.9980469, "end": 169.175, "punctuated_word": "Any", "speaker": 0, "speaker_confidence": 1, "start": 168.855, "word": "any" }, { "confidence": 0.9980469, "end": 169.655, "punctuated_word": "meaningful", "speaker": 0, "speaker_confidence": 1, "start": 169.175, "word": "meaningful" }, { "confidence": 0.7836914, "end": 169.97499, "punctuated_word": "minimum", "speaker": 0, "speaker_confidence": 1, "start": 169.655, "word": "minimum" }, { "confidence": 0.99902344, "end": 170.455, "punctuated_word": "viable", "speaker": 0, "speaker_confidence": 1, "start": 169.97499, "word": "viable" }, { "confidence": 0.9980469, "end": 170.855, "punctuated_word": "project", "speaker": 0, "speaker_confidence": 1, "start": 170.455, "word": "project" }, { "confidence": 0.96972656, "end": 171.015, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 1, "start": 170.855, "word": "will" }, { "confidence": 0.9902344, "end": 171.25499, "punctuated_word": "take", "speaker": 0, "speaker_confidence": 1, "start": 171.015, "word": "take" }, { "confidence": 0.9760742, "end": 171.33499, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 171.25499, "word": "a" }, { "confidence": 0.99316406, "end": 171.495, "punctuated_word": "lot", "speaker": 0, "speaker_confidence": 1, "start": 171.33499, "word": "lot" }, { "confidence": 0.9863281, "end": 171.95, "punctuated_word": "longer", "speaker": 0, "speaker_confidence": 1, "start": 171.495, "word": "longer" }, { "confidence": 0.27490234, "end": 172.19, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 1, "start": 171.95, "word": "this" }, { "confidence": 0.98291016, "end": 172.34999, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 172.19, "word": "to" }, { "confidence": 0.7675781, "end": 172.84999, "punctuated_word": "develop,", "speaker": 0, "speaker_confidence": 1, "start": 172.34999, "word": "develop" }, { "confidence": 0.99902344, "end": 173.15, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 1, "start": 172.91, "word": "even" }, { "confidence": 0.9970703, "end": 173.31, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 1, "start": 173.15, "word": "when" }, { "confidence": 1, "end": 173.55, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 1, "start": 173.31, "word": "using" }, { "confidence": 0.9970703, "end": 173.70999, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 173.55, "word": "a" }, { "confidence": 1, "end": 174.11, "punctuated_word": "highly", "speaker": 0, "speaker_confidence": 1, "start": 173.70999, "word": "highly" }, { "confidence": 0.9921875, "end": 174.51, "punctuated_word": "optimized", "speaker": 0, "speaker_confidence": 1, "start": 174.11, "word": "optimized" }, { "confidence": 0.86328125, "end": 174.75, "punctuated_word": "tech", "speaker": 0, "speaker_confidence": 1, "start": 174.51, "word": "tech" }, { "confidence": 0.99316406, "end": 175.06999, "punctuated_word": "stack", "speaker": 0, "speaker_confidence": 1, "start": 174.75, "word": "stack" }, { "confidence": 0.7895508, "end": 175.31, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 175.06999, "word": "like" }, { "confidence": 0.9838867, "end": 175.55, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 175.31, "word": "the" }, { "confidence": 0.19726562, "end": 175.79, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 175.55, "word": "it" }, { "confidence": 0.97998047, "end": 176.11, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 1, "start": 175.79, "word": "or" }, { "confidence": 0.8574219, "end": 176.43, "punctuated_word": "suck", "speaker": 0, "speaker_confidence": 1, "start": 176.11, "word": "suck" }, { "confidence": 0.99121094, "end": 176.51, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 176.43, "word": "it" }, { "confidence": 0.99365234, "end": 176.83, "punctuated_word": "stack.", "speaker": 0, "speaker_confidence": 1, "start": 176.51, "word": "stack" }, { "confidence": 0.99902344, "end": 177.06999, "punctuated_word": "Instead", "speaker": 0, "speaker_confidence": 0.8535156, "start": 176.83, "word": "instead" }, { "confidence": 0.99902344, "end": 177.23, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8535156, "start": 177.06999, "word": "of" }, { "confidence": 1, "end": 177.55, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.8535156, "start": 177.23, "word": "using" }, { "confidence": 0.9980469, "end": 177.95, "punctuated_word": "IBM", "speaker": 0, "speaker_confidence": 0.8535156, "start": 177.55, "word": "ibm" }, { "confidence": 0.98095703, "end": 178.26999, "punctuated_word": "Carbon", "speaker": 0, "speaker_confidence": 0.8535156, "start": 177.95, "word": "carbon" }, { "confidence": 0.9951172, "end": 178.43, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.8535156, "start": 178.26999, "word": "as" }, { "confidence": 0.9790039, "end": 178.59, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8535156, "start": 178.43, "word": "the" }, { "confidence": 0.9921875, "end": 178.91, "punctuated_word": "design", "speaker": 0, "speaker_confidence": 0.8535156, "start": 178.59, "word": "design" }, { "confidence": 0.9980469, "end": 179.31, "punctuated_word": "system,", "speaker": 0, "speaker_confidence": 0.8535156, "start": 178.91, "word": "system" }, { "confidence": 0.97680664, "end": 179.47, "punctuated_word": "I'd", "speaker": 0, "speaker_confidence": 0.8535156, "start": 179.31, "word": "i'd" }, { "confidence": 0.9135742, "end": 179.685, "punctuated_word": "spend", "speaker": 0, "speaker_confidence": 0.8535156, "start": 179.47, "word": "spend" }, { "confidence": 0.62646484, "end": 179.925, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.8535156, "start": 179.685, "word": "more" }, { "confidence": 1, "end": 180.165, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.8535156, "start": 179.925, "word": "time" }, { "confidence": 0.9941406, "end": 180.405, "punctuated_word": "creating", "speaker": 0, "speaker_confidence": 0.8535156, "start": 180.165, "word": "creating" }, { "confidence": 0.984375, "end": 180.565, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8535156, "start": 180.405, "word": "a" }, { "confidence": 1, "end": 180.885, "punctuated_word": "unique", "speaker": 0, "speaker_confidence": 0.8535156, "start": 180.565, "word": "unique" }, { "confidence": 0.9980469, "end": 181.205, "punctuated_word": "custom", "speaker": 0, "speaker_confidence": 0.8535156, "start": 180.885, "word": "custom" }, { "confidence": 0.9980469, "end": 181.685, "punctuated_word": "design", "speaker": 0, "speaker_confidence": 0.8535156, "start": 181.205, "word": "design" }, { "confidence": 0.8144531, "end": 181.845, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8535156, "start": 181.685, "word": "and" }, { "confidence": 0.9472656, "end": 182.08499, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.8535156, "start": 181.845, "word": "have" }, { "confidence": 0.99902344, "end": 182.165, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8535156, "start": 182.08499, "word": "a" }, { "confidence": 1, "end": 182.405, "punctuated_word": "much", "speaker": 0, "speaker_confidence": 0.8535156, "start": 182.165, "word": "much" }, { "confidence": 0.99902344, "end": 182.565, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.8535156, "start": 182.405, "word": "more" }, { "confidence": 0.99902344, "end": 182.965, "punctuated_word": "powerful", "speaker": 0, "speaker_confidence": 0.8535156, "start": 182.565, "word": "powerful" }, { "confidence": 0.99902344, "end": 183.125, "punctuated_word": "call", "speaker": 0, "speaker_confidence": 0.8535156, "start": 182.965, "word": "call" }, { "confidence": 0.99902344, "end": 183.36499, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8535156, "start": 183.125, "word": "to" }, { "confidence": 1, "end": 183.605, "punctuated_word": "action", "speaker": 0, "speaker_confidence": 0.8535156, "start": 183.36499, "word": "action" }, { "confidence": 1, "end": 183.765, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8535156, "start": 183.605, "word": "on" }, { "confidence": 1, "end": 183.925, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8535156, "start": 183.765, "word": "the" }, { "confidence": 0.58447266, "end": 184.08499, "punctuated_word": "home", "speaker": 0, "speaker_confidence": 0.8535156, "start": 183.925, "word": "home" }, { "confidence": 0.7636719, "end": 184.485, "punctuated_word": "page.", "speaker": 0, "speaker_confidence": 0.8535156, "start": 184.08499, "word": "page" }, { "confidence": 0.9970703, "end": 184.645, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.8535156, "start": 184.485, "word": "and" }, { "confidence": 0.9667969, "end": 184.72499, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.8535156, "start": 184.645, "word": "i" }, { "confidence": 1, "end": 184.805, "punctuated_word": "should", "speaker": 0, "speaker_confidence": 0.8535156, "start": 184.72499, "word": "should" }, { "confidence": 1, "end": 184.965, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.9814453, "start": 184.805, "word": "do" }, { "confidence": 1, "end": 185.045, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9814453, "start": 184.965, "word": "a" }, { "confidence": 1, "end": 185.285, "punctuated_word": "better", "speaker": 0, "speaker_confidence": 0.9814453, "start": 185.045, "word": "better" }, { "confidence": 1, "end": 185.525, "punctuated_word": "job", "speaker": 0, "speaker_confidence": 0.9814453, "start": 185.285, "word": "job" }, { "confidence": 0.99902344, "end": 185.925, "punctuated_word": "describing", "speaker": 0, "speaker_confidence": 0.9814453, "start": 185.525, "word": "describing" }, { "confidence": 1, "end": 186.08499, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.9814453, "start": 185.925, "word": "what" }, { "confidence": 1, "end": 186.245, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9814453, "start": 186.08499, "word": "the" }, { "confidence": 1, "end": 186.565, "punctuated_word": "product", "speaker": 0, "speaker_confidence": 0.9814453, "start": 186.245, "word": "product" }, { "confidence": 1, "end": 186.72499, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9814453, "start": 186.565, "word": "is" }, { "confidence": 0.9863281, "end": 186.885, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9814453, "start": 186.72499, "word": "in" }, { "confidence": 0.99902344, "end": 187.125, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.9814453, "start": 186.885, "word": "just" }, { "confidence": 0.99902344, "end": 187.205, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9814453, "start": 187.125, "word": "a" }, { "confidence": 1, "end": 187.36499, "punctuated_word": "few", "speaker": 0, "speaker_confidence": 0.9814453, "start": 187.205, "word": "few" }, { "confidence": 0.99902344, "end": 187.75, "punctuated_word": "words.", "speaker": 0, "speaker_confidence": 0.9814453, "start": 187.36499, "word": "words" }, { "confidence": 0.99902344, "end": 188.07, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.9814453, "start": 187.91, "word": "in" }, { "confidence": 1, "end": 188.47, "punctuated_word": "addition,", "speaker": 0, "speaker_confidence": 0.9814453, "start": 188.07, "word": "addition" }, { "confidence": 1, "end": 188.63, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.9814453, "start": 188.47, "word": "you" }, { "confidence": 0.7895508, "end": 188.79, "punctuated_word": "wanna", "speaker": 0, "speaker_confidence": 0.9814453, "start": 188.63, "word": "wanna" }, { "confidence": 0.99609375, "end": 188.95, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.9814453, "start": 188.79, "word": "use" }, { "confidence": 1, "end": 189.11, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.9814453, "start": 188.95, "word": "some" }, { "confidence": 0.99902344, "end": 189.27, "punctuated_word": "kind", "speaker": 0, "speaker_confidence": 0.9814453, "start": 189.11, "word": "kind" }, { "confidence": 1, "end": 189.43, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9814453, "start": 189.27, "word": "of" }, { "confidence": 0.9980469, "end": 189.93, "punctuated_word": "analytics", "speaker": 0, "speaker_confidence": 0.9814453, "start": 189.43, "word": "analytics" }, { "confidence": 0.9790039, "end": 190.15, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9814453, "start": 189.99, "word": "to" }, { "confidence": 1, "end": 190.55, "punctuated_word": "understand", "speaker": 0, "speaker_confidence": 0.9814453, "start": 190.15, "word": "understand" }, { "confidence": 1, "end": 190.71, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.9814453, "start": 190.55, "word": "how" }, { "confidence": 0.99902344, "end": 190.95, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.9814453, "start": 190.71, "word": "your" }, { "confidence": 1, "end": 191.19, "punctuated_word": "users", "speaker": 0, "speaker_confidence": 0.9814453, "start": 190.95, "word": "users" }, { "confidence": 1, "end": 191.43, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.9814453, "start": 191.19, "word": "are" }, { "confidence": 1, "end": 191.83, "punctuated_word": "behaving", "speaker": 0, "speaker_confidence": 0.9814453, "start": 191.43, "word": "behaving" }, { "confidence": 0.6899414, "end": 192.07, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.9814453, "start": 191.83, "word": "because" }, { "confidence": 0.9995117, "end": 192.31, "punctuated_word": "they're", "speaker": 0, "speaker_confidence": 0.9814453, "start": 192.07, "word": "they're" }, { "confidence": 1, "end": 192.63, "punctuated_word": "likely", "speaker": 0, "speaker_confidence": 0.9814453, "start": 192.31, "word": "likely" }, { "confidence": 1, "end": 192.87, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.9814453, "start": 192.63, "word": "using" }, { "confidence": 1, "end": 193.03, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.9814453, "start": 192.87, "word": "your" }, { "confidence": 1, "end": 193.27, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.9814453, "start": 193.03, "word": "app" }, { "confidence": 0.99902344, "end": 193.43, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9814453, "start": 193.27, "word": "in" }, { "confidence": 0.99902344, "end": 193.67, "punctuated_word": "ways", "speaker": 0, "speaker_confidence": 0.9814453, "start": 193.43, "word": "ways" }, { "confidence": 0.9980469, "end": 193.83, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.9814453, "start": 193.67, "word": "you" }, { "confidence": 0.99121094, "end": 194.07, "punctuated_word": "never", "speaker": 0, "speaker_confidence": 0.9814453, "start": 193.83, "word": "never" }, { "confidence": 0.96191406, "end": 194.55, "punctuated_word": "expected.", "speaker": 0, "speaker_confidence": 0.9814453, "start": 194.07, "word": "expected" }, { "confidence": 0.8444824, "end": 194.79, "punctuated_word": "Like,", "speaker": 0, "speaker_confidence": 0.9814453, "start": 194.55, "word": "like" }, { "confidence": 0.9663086, "end": 195.27, "punctuated_word": "Firebase", "speaker": 0, "speaker_confidence": 0.9814453, "start": 194.79, "word": "firebase" }, { "confidence": 0.9536133, "end": 195.59, "punctuated_word": "itself", "speaker": 0, "speaker_confidence": 0.9814453, "start": 195.27, "word": "itself" }, { "confidence": 0.95947266, "end": 195.75, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.9814453, "start": 195.59, "word": "was" }, { "confidence": 0.921875, "end": 196.115, "punctuated_word": "originally", "speaker": 0, "speaker_confidence": 0.9814453, "start": 195.75, "word": "originally" }, { "confidence": 0.78808594, "end": 196.35501, "punctuated_word": "Supposed", "speaker": 0, "speaker_confidence": 0.9814453, "start": 196.195, "word": "supposed" }, { "confidence": 0.9970703, "end": 196.515, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9814453, "start": 196.35501, "word": "to" }, { "confidence": 0.99902344, "end": 196.555, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.93310547, "start": 196.515, "word": "be" }, { "confidence": 0.9941406, "end": 196.595, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.93310547, "start": 196.555, "word": "a" }, { "confidence": 0.9970703, "end": 196.99501, "punctuated_word": "chat", "speaker": 0, "speaker_confidence": 0.93310547, "start": 196.595, "word": "chat" }, { "confidence": 0.9902344, "end": 197.235, "punctuated_word": "widget", "speaker": 0, "speaker_confidence": 0.93310547, "start": 196.99501, "word": "widget" }, { "confidence": 0.6269531, "end": 197.395, "punctuated_word": "kind", "speaker": 0, "speaker_confidence": 0.93310547, "start": 197.235, "word": "kind" }, { "confidence": 0.99902344, "end": 197.475, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.93310547, "start": 197.395, "word": "of" }, { "confidence": 0.99121094, "end": 197.71501, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.93310547, "start": 197.475, "word": "like" }, { "confidence": 0.91341144, "end": 198.21501, "punctuated_word": "intercom,", "speaker": 0, "speaker_confidence": 0.93310547, "start": 197.71501, "word": "intercom" }, { "confidence": 0.99902344, "end": 198.43501, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.93310547, "start": 198.27501, "word": "but" }, { "confidence": 1, "end": 198.515, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.93310547, "start": 198.43501, "word": "they" }, { "confidence": 0.99902344, "end": 198.675, "punctuated_word": "found", "speaker": 0, "speaker_confidence": 0.93310547, "start": 198.515, "word": "found" }, { "confidence": 0.9453125, "end": 198.835, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.93310547, "start": 198.675, "word": "that" }, { "confidence": 0.99609375, "end": 199.315, "punctuated_word": "developers", "speaker": 0, "speaker_confidence": 0.93310547, "start": 198.835, "word": "developers" }, { "confidence": 0.8359375, "end": 199.395, "punctuated_word": "were", "speaker": 0, "speaker_confidence": 0.93310547, "start": 199.315, "word": "were" }, { "confidence": 1, "end": 199.71501, "punctuated_word": "putting", "speaker": 0, "speaker_confidence": 0.93310547, "start": 199.395, "word": "putting" }, { "confidence": 0.99902344, "end": 199.795, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.93310547, "start": 199.71501, "word": "all" }, { "confidence": 0.99316406, "end": 200.035, "punctuated_word": "kinds", "speaker": 0, "speaker_confidence": 0.93310547, "start": 199.795, "word": "kinds" }, { "confidence": 0.99902344, "end": 200.115, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.93310547, "start": 200.035, "word": "of" }, { "confidence": 1, "end": 200.435, "punctuated_word": "random", "speaker": 0, "speaker_confidence": 0.93310547, "start": 200.115, "word": "random" }, { "confidence": 1, "end": 200.595, "punctuated_word": "stuff", "speaker": 0, "speaker_confidence": 0.93310547, "start": 200.435, "word": "stuff" }, { "confidence": 0.99902344, "end": 200.755, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.93310547, "start": 200.595, "word": "in" }, { "confidence": 0.91967773, "end": 200.99501, "punctuated_word": "it,", "speaker": 0, "speaker_confidence": 0.93310547, "start": 200.755, "word": "it" }, { "confidence": 0.99902344, "end": 201.07501, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.93310547, "start": 200.99501, "word": "so" }, { "confidence": 0.9980469, "end": 201.235, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.93310547, "start": 201.07501, "word": "they" }, { "confidence": 0.9980469, "end": 201.55501, "punctuated_word": "decided", "speaker": 0, "speaker_confidence": 0.93310547, "start": 201.235, "word": "decided" }, { "confidence": 0.9970703, "end": 201.71501, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.93310547, "start": 201.55501, "word": "to" }, { "confidence": 1, "end": 202.035, "punctuated_word": "pivot", "speaker": 0, "speaker_confidence": 0.93310547, "start": 201.71501, "word": "pivot" }, { "confidence": 0.9980469, "end": 202.195, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.93310547, "start": 202.035, "word": "to" }, { "confidence": 0.9951172, "end": 202.35501, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.93310547, "start": 202.195, "word": "a" }, { "confidence": 0.99609375, "end": 202.595, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 0.93310547, "start": 202.35501, "word": "real" }, { "confidence": 0.9892578, "end": 202.755, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.93310547, "start": 202.595, "word": "time" }, { "confidence": 0.9748535, "end": 203.255, "punctuated_word": "database.", "speaker": 0, "speaker_confidence": 0.93310547, "start": 202.755, "word": "database" }, { "confidence": 0.9863281, "end": 203.55501, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.93310547, "start": 203.395, "word": "then" }, { "confidence": 0.83251953, "end": 203.63501, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.93310547, "start": 203.55501, "word": "a" }, { "confidence": 0.7011719, "end": 203.73, "punctuated_word": "few", "speaker": 0, "speaker_confidence": 0.67285156, "start": 203.63501, "word": "few" }, { "confidence": 0.7319336, "end": 203.89, "punctuated_word": "Few", "speaker": 0, "speaker_confidence": 0.67285156, "start": 203.73, "word": "few" }, { "confidence": 0.99902344, "end": 204.05, "punctuated_word": "years", "speaker": 0, "speaker_confidence": 0.67285156, "start": 203.89, "word": "years" }, { "confidence": 0.99609375, "end": 204.13, "punctuated_word": "later", "speaker": 0, "speaker_confidence": 0.67285156, "start": 204.05, "word": "later" }, { "confidence": 0.7648926, "end": 204.20999, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.67285156, "start": 204.13, "word": "it's" }, { "confidence": 0.9980469, "end": 204.69, "punctuated_word": "acquired", "speaker": 0, "speaker_confidence": 0.67285156, "start": 204.20999, "word": "acquired" }, { "confidence": 1, "end": 204.84999, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.67285156, "start": 204.69, "word": "by" }, { "confidence": 0.9309082, "end": 205.25, "punctuated_word": "Google,", "speaker": 0, "speaker_confidence": 0.67285156, "start": 204.84999, "word": "google" }, { "confidence": 0.9980469, "end": 205.56999, "punctuated_word": "making", "speaker": 0, "speaker_confidence": 0.67285156, "start": 205.25, "word": "making" }, { "confidence": 1, "end": 205.73, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.67285156, "start": 205.56999, "word": "them" }, { "confidence": 0.9980469, "end": 205.97, "punctuated_word": "rich", "speaker": 0, "speaker_confidence": 0.67285156, "start": 205.73, "word": "rich" }, { "confidence": 0.9980469, "end": 206.20999, "punctuated_word": "beyond", "speaker": 0, "speaker_confidence": 0.67285156, "start": 205.97, "word": "beyond" }, { "confidence": 0.99609375, "end": 206.37, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 0.67285156, "start": 206.20999, "word": "their" }, { "confidence": 1, "end": 206.76999, "punctuated_word": "wildest", "speaker": 0, "speaker_confidence": 0.67285156, "start": 206.37, "word": "wildest" }, { "confidence": 0.99853516, "end": 207.17, "punctuated_word": "dreams.", "speaker": 0, "speaker_confidence": 0.67285156, "start": 206.76999, "word": "dreams" }, { "confidence": 1, "end": 207.25, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.91064453, "start": 207.17, "word": "the" }, { "confidence": 0.9941406, "end": 207.65, "punctuated_word": "founders", "speaker": 0, "speaker_confidence": 0.91064453, "start": 207.25, "word": "founders" }, { "confidence": 0.99902344, "end": 207.81, "punctuated_word": "made", "speaker": 0, "speaker_confidence": 0.91064453, "start": 207.65, "word": "made" }, { "confidence": 1, "end": 207.97, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 0.91064453, "start": 207.81, "word": "their" }, { "confidence": 1, "end": 208.12999, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 0.91064453, "start": 207.97, "word": "own" }, { "confidence": 0.9951172, "end": 208.37, "punctuated_word": "luck", "speaker": 0, "speaker_confidence": 0.91064453, "start": 208.12999, "word": "luck" }, { "confidence": 0.53271484, "end": 208.61, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.91064453, "start": 208.37, "word": "just" }, { "confidence": 0.99902344, "end": 208.76999, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.91064453, "start": 208.61, "word": "like" }, { "confidence": 0.99641925, "end": 209.26999, "punctuated_word": "Tarantino.", "speaker": 0, "speaker_confidence": 0.91064453, "start": 208.76999, "word": "tarantino" }, { "confidence": 0.99902344, "end": 209.81, "punctuated_word": "To", "speaker": 0, "speaker_confidence": 0.91064453, "start": 209.65, "word": "to" }, { "confidence": 1, "end": 210.04999, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 0.91064453, "start": 209.81, "word": "really" }, { "confidence": 0.99609375, "end": 210.45, "punctuated_word": "optimize", "speaker": 0, "speaker_confidence": 0.91064453, "start": 210.04999, "word": "optimize" }, { "confidence": 0.8156738, "end": 210.69, "punctuated_word": "things,", "speaker": 0, "speaker_confidence": 0.91064453, "start": 210.45, "word": "things" }, { "confidence": 0.99902344, "end": 210.84999, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.91064453, "start": 210.69, "word": "you" }, { "confidence": 0.9980469, "end": 210.93, "punctuated_word": "should", "speaker": 0, "speaker_confidence": 0.91064453, "start": 210.84999, "word": "should" }, { "confidence": 0.9873047, "end": 211.09, "punctuated_word": "look", "speaker": 0, "speaker_confidence": 0.91064453, "start": 210.93, "word": "look" }, { "confidence": 0.9589844, "end": 211.375, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.91064453, "start": 211.09, "word": "at" }, { "confidence": 0.8178711, "end": 212.035, "punctuated_word": "analytics,", "speaker": 0, "speaker_confidence": 0.91064453, "start": 211.535, "word": "analytics" }, { "confidence": 0.98828125, "end": 212.255, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.91064453, "start": 212.095, "word": "then" }, { "confidence": 0.9970703, "end": 212.335, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.86328125, "start": 212.255, "word": "do" }, { "confidence": 0.99609375, "end": 212.575, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.86328125, "start": 212.335, "word": "some" }, { "confidence": 0.89453125, "end": 212.895, "punctuated_word": "AB", "speaker": 0, "speaker_confidence": 0.86328125, "start": 212.575, "word": "ab" }, { "confidence": 0.9838867, "end": 213.215, "punctuated_word": "testing", "speaker": 0, "speaker_confidence": 0.86328125, "start": 212.895, "word": "testing" }, { "confidence": 0.99902344, "end": 213.455, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.86328125, "start": 213.215, "word": "with" }, { "confidence": 0.99902344, "end": 213.535, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.86328125, "start": 213.455, "word": "a" }, { "confidence": 1, "end": 213.775, "punctuated_word": "small", "speaker": 0, "speaker_confidence": 0.86328125, "start": 213.535, "word": "small" }, { "confidence": 0.99902344, "end": 214.095, "punctuated_word": "subset", "speaker": 0, "speaker_confidence": 0.86328125, "start": 213.775, "word": "subset" }, { "confidence": 1, "end": 214.255, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.86328125, "start": 214.095, "word": "of" }, { "confidence": 0.99902344, "end": 214.735, "punctuated_word": "users", "speaker": 0, "speaker_confidence": 0.86328125, "start": 214.255, "word": "users" }, { "confidence": 0.984375, "end": 215.055, "punctuated_word": "before", "speaker": 0, "speaker_confidence": 0.86328125, "start": 214.735, "word": "before" }, { "confidence": 0.9970703, "end": 215.215, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.86328125, "start": 215.055, "word": "you" }, { "confidence": 0.99902344, "end": 215.535, "punctuated_word": "invest", "speaker": 0, "speaker_confidence": 0.86328125, "start": 215.215, "word": "invest" }, { "confidence": 0.99902344, "end": 215.615, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.86328125, "start": 215.535, "word": "in" }, { "confidence": 0.9951172, "end": 215.695, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7988281, "start": 215.615, "word": "a" }, { "confidence": 1, "end": 216.015, "punctuated_word": "huge", "speaker": 0, "speaker_confidence": 0.7988281, "start": 215.695, "word": "huge" }, { "confidence": 0.7832031, "end": 216.255, "punctuated_word": "launch.", "speaker": 0, "speaker_confidence": 0.7988281, "start": 216.015, "word": "launch" }, { "confidence": 0.98828125, "end": 216.415, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.7988281, "start": 216.255, "word": "and" }, { "confidence": 0.9970703, "end": 216.655, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.7988281, "start": 216.415, "word": "that's" }, { "confidence": 0.99609375, "end": 217.055, "punctuated_word": "especially", "speaker": 0, "speaker_confidence": 0.7988281, "start": 216.655, "word": "especially" }, { "confidence": 0.99902344, "end": 217.455, "punctuated_word": "important", "speaker": 0, "speaker_confidence": 0.7988281, "start": 217.055, "word": "important" }, { "confidence": 0.9902344, "end": 217.615, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.7988281, "start": 217.455, "word": "if" }, { "confidence": 0.9921875, "end": 217.695, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7988281, "start": 217.615, "word": "you" }, { "confidence": 0.9941406, "end": 217.855, "punctuated_word": "pay", "speaker": 0, "speaker_confidence": 0.7988281, "start": 217.695, "word": "pay" }, { "confidence": 0.97314453, "end": 218.015, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.7988281, "start": 217.855, "word": "for" }, { "confidence": 0.9741211, "end": 218.45, "punctuated_word": "ads", "speaker": 0, "speaker_confidence": 0.7988281, "start": 218.015, "word": "ads" }, { "confidence": 0.9980469, "end": 218.61, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.7988281, "start": 218.45, "word": "then" }, { "confidence": 1, "end": 218.84999, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7988281, "start": 218.61, "word": "you" }, { "confidence": 1, "end": 218.93, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 0.7988281, "start": 218.84999, "word": "really" }, { "confidence": 1, "end": 219.17, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 1, "start": 218.93, "word": "need" }, { "confidence": 1, "end": 219.48999, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 219.17, "word": "to" }, { "confidence": 0.99902344, "end": 219.81, "punctuated_word": "optimize", "speaker": 0, "speaker_confidence": 1, "start": 219.48999, "word": "optimize" }, { "confidence": 1, "end": 220.05, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 219.81, "word": "that" }, { "confidence": 1, "end": 220.37, "punctuated_word": "conversion", "speaker": 0, "speaker_confidence": 1, "start": 220.05, "word": "conversion" }, { "confidence": 0.89086914, "end": 220.69, "punctuated_word": "rate,", "speaker": 0, "speaker_confidence": 1, "start": 220.37, "word": "rate" }, { "confidence": 0.99902344, "end": 220.84999, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 1, "start": 220.69, "word": "but" }, { "confidence": 0.9995117, "end": 221.01, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 1, "start": 220.84999, "word": "we're" }, { "confidence": 1, "end": 221.25, "punctuated_word": "getting", "speaker": 0, "speaker_confidence": 1, "start": 221.01, "word": "getting" }, { "confidence": 1, "end": 221.41, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 1, "start": 221.25, "word": "ahead" }, { "confidence": 1, "end": 221.56999, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 221.41, "word": "of" }, { "confidence": 1, "end": 222.06999, "punctuated_word": "ourselves.", "speaker": 0, "speaker_confidence": 1, "start": 221.56999, "word": "ourselves" }, { "confidence": 1, "end": 222.29, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 1, "start": 222.12999, "word": "the" }, { "confidence": 1, "end": 222.45, "punctuated_word": "big", "speaker": 0, "speaker_confidence": 1, "start": 222.29, "word": "big" }, { "confidence": 0.99902344, "end": 222.84999, "punctuated_word": "question", "speaker": 0, "speaker_confidence": 1, "start": 222.45, "word": "question" }, { "confidence": 0.99902344, "end": 223.01, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 222.84999, "word": "is" }, { "confidence": 0.80322266, "end": 223.17, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 1, "start": 223.01, "word": "how" }, { "confidence": 1, "end": 223.33, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 1, "start": 223.17, "word": "do" }, { "confidence": 1, "end": 223.41, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 223.33, "word": "you" }, { "confidence": 1, "end": 223.56999, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 1, "start": 223.41, "word": "even" }, { "confidence": 1, "end": 223.81, "punctuated_word": "come", "speaker": 0, "speaker_confidence": 1, "start": 223.56999, "word": "come" }, { "confidence": 1, "end": 223.89, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 1, "start": 223.81, "word": "up" }, { "confidence": 1, "end": 224.05, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 223.89, "word": "with" }, { "confidence": 1, "end": 224.12999, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 224.05, "word": "an" }, { "confidence": 1, "end": 224.45, "punctuated_word": "idea", "speaker": 0, "speaker_confidence": 1, "start": 224.12999, "word": "idea" }, { "confidence": 1, "end": 224.61, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 224.45, "word": "for" }, { "confidence": 1, "end": 224.69, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 224.61, "word": "a" }, { "confidence": 1, "end": 224.93, "punctuated_word": "side", "speaker": 0, "speaker_confidence": 1, "start": 224.69, "word": "side" }, { "confidence": 0.87125653, "end": 225.33, "punctuated_word": "hustle,", "speaker": 0, "speaker_confidence": 1, "start": 224.93, "word": "hustle" }, { "confidence": 1, "end": 225.48999, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 225.33, "word": "and" }, { "confidence": 0.99609375, "end": 225.73, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 1, "start": 225.48999, "word": "then" }, { "confidence": 0.89746094, "end": 225.89, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 1, "start": 225.73, "word": "more" }, { "confidence": 0.7883301, "end": 226.39, "punctuated_word": "importantly,", "speaker": 0, "speaker_confidence": 1, "start": 225.89, "word": "importantly" }, { "confidence": 0.9951172, "end": 226.84999, "punctuated_word": "validate", "speaker": 0, "speaker_confidence": 1, "start": 226.45, "word": "validate" }, { "confidence": 0.7722168, "end": 227.145, "punctuated_word": "it?", "speaker": 0, "speaker_confidence": 1, "start": 226.84999, "word": "it" }, { "confidence": 0.85595703, "end": 227.46501, "punctuated_word": "Good", "speaker": 0, "speaker_confidence": 1, "start": 227.225, "word": "good" }, { "confidence": 0.9980469, "end": 227.785, "punctuated_word": "ideas", "speaker": 0, "speaker_confidence": 1, "start": 227.46501, "word": "ideas" }, { "confidence": 0.99902344, "end": 227.865, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 1, "start": 227.785, "word": "are" }, { "confidence": 1, "end": 228.10501, "punctuated_word": "easy", "speaker": 0, "speaker_confidence": 1, "start": 227.865, "word": "easy" }, { "confidence": 0.9980469, "end": 228.185, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 228.10501, "word": "to" }, { "confidence": 1, "end": 228.425, "punctuated_word": "come", "speaker": 0, "speaker_confidence": 1, "start": 228.185, "word": "come" }, { "confidence": 0.99853516, "end": 228.74501, "punctuated_word": "by.", "speaker": 0, "speaker_confidence": 1, "start": 228.425, "word": "by" }, { "confidence": 1, "end": 228.905, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 1, "start": 228.74501, "word": "the" }, { "confidence": 1, "end": 229.225, "punctuated_word": "problem", "speaker": 0, "speaker_confidence": 1, "start": 228.905, "word": "problem" }, { "confidence": 1, "end": 229.38501, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 229.225, "word": "is" }, { "confidence": 1, "end": 229.46501, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 229.38501, "word": "that" }, { "confidence": 0.99609375, "end": 229.625, "punctuated_word": "there's", "speaker": 0, "speaker_confidence": 1, "start": 229.46501, "word": "there's" }, { "confidence": 0.9902344, "end": 229.785, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 229.625, "word": "a" }, { "confidence": 0.9290597, "end": 230.285, "punctuated_word": "100,000,000,000", "speaker": 0, "speaker_confidence": 1, "start": 229.785, "word": "100,000,000,000" }, { "confidence": 0.9980469, "end": 230.585, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 1, "start": 230.345, "word": "people" }, { "confidence": 0.9980469, "end": 230.66501, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 230.585, "word": "in" }, { "confidence": 1, "end": 230.825, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 230.66501, "word": "the" }, { "confidence": 1, "end": 231.145, "punctuated_word": "world", "speaker": 0, "speaker_confidence": 1, "start": 230.825, "word": "world" }, { "confidence": 0.93603516, "end": 231.30501, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 1, "start": 231.145, "word": "if" }, { "confidence": 1, "end": 231.38501, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 231.30501, "word": "you" }, { "confidence": 1, "end": 231.705, "punctuated_word": "include", "speaker": 0, "speaker_confidence": 1, "start": 231.38501, "word": "include" }, { "confidence": 0.9970703, "end": 231.785, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 231.705, "word": "the" }, { "confidence": 0.87158203, "end": 232.02501, "punctuated_word": "outer", "speaker": 0, "speaker_confidence": 1, "start": 231.785, "word": "outer" }, { "confidence": 0.98291016, "end": 232.345, "punctuated_word": "lands", "speaker": 0, "speaker_confidence": 1, "start": 232.02501, "word": "lands" }, { "confidence": 0.97998047, "end": 232.585, "punctuated_word": "beyond", "speaker": 0, "speaker_confidence": 1, "start": 232.345, "word": "beyond" }, { "confidence": 1, "end": 232.74501, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 232.585, "word": "the" }, { "confidence": 0.9921875, "end": 232.905, "punctuated_word": "ice", "speaker": 0, "speaker_confidence": 1, "start": 232.74501, "word": "ice" }, { "confidence": 0.920166, "end": 233.30501, "punctuated_word": "wall,", "speaker": 0, "speaker_confidence": 1, "start": 232.905, "word": "wall" }, { "confidence": 1, "end": 233.545, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 233.30501, "word": "and" }, { "confidence": 1, "end": 233.785, "punctuated_word": "somebody", "speaker": 0, "speaker_confidence": 1, "start": 233.545, "word": "somebody" }, { "confidence": 0.9980469, "end": 233.945, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 1, "start": 233.785, "word": "out" }, { "confidence": 1, "end": 234.185, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 1, "start": 233.945, "word": "there" }, { "confidence": 0.92822266, "end": 234.345, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 234.185, "word": "is" }, { "confidence": 0.9951172, "end": 234.66501, "punctuated_word": "likely", "speaker": 0, "speaker_confidence": 1, "start": 234.345, "word": "likely" }, { "confidence": 0.99609375, "end": 234.905, "punctuated_word": "already", "speaker": 0, "speaker_confidence": 1, "start": 234.66501, "word": "already" }, { "confidence": 0.99902344, "end": 235.065, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 234.905, "word": "a" }, { "confidence": 0.99902344, "end": 235.545, "punctuated_word": "millionaire", "speaker": 0, "speaker_confidence": 1, "start": 235.065, "word": "millionaire" }, { "confidence": 0.99902344, "end": 235.785, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 235.545, "word": "with" }, { "confidence": 0.9980469, "end": 235.945, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 1, "start": 235.785, "word": "your" }, { "confidence": 0.99902344, "end": 236.425, "punctuated_word": "idea.", "speaker": 0, "speaker_confidence": 1, "start": 235.945, "word": "idea" }, { "confidence": 0.9819336, "end": 236.505, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.9296875, "start": 236.425, "word": "the" }, { "confidence": 0.9921875, "end": 236.71, "punctuated_word": "fact", "speaker": 0, "speaker_confidence": 0.9296875, "start": 236.505, "word": "fact" }, { "confidence": 0.66259766, "end": 236.87001, "punctuated_word": "That", "speaker": 0, "speaker_confidence": 0.9296875, "start": 236.79001, "word": "that" }, { "confidence": 0.9873047, "end": 237.11, "punctuated_word": "someone", "speaker": 0, "speaker_confidence": 0.9296875, "start": 236.87001, "word": "someone" }, { "confidence": 0.9921875, "end": 237.19, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9296875, "start": 237.11, "word": "is" }, { "confidence": 0.99609375, "end": 237.59001, "punctuated_word": "already", "speaker": 0, "speaker_confidence": 0.9296875, "start": 237.19, "word": "already" }, { "confidence": 1, "end": 238.07, "punctuated_word": "executing", "speaker": 0, "speaker_confidence": 0.9296875, "start": 237.59001, "word": "executing" }, { "confidence": 1, "end": 238.31001, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.9296875, "start": 238.07, "word": "your" }, { "confidence": 1, "end": 238.79001, "punctuated_word": "idea", "speaker": 0, "speaker_confidence": 0.9296875, "start": 238.31001, "word": "idea" }, { "confidence": 0.91503906, "end": 238.95001, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9296875, "start": 238.79001, "word": "is" }, { "confidence": 0.9951172, "end": 239.27, "punctuated_word": "actually", "speaker": 0, "speaker_confidence": 0.9296875, "start": 238.95001, "word": "actually" }, { "confidence": 1, "end": 239.43001, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9296875, "start": 239.27, "word": "a" }, { "confidence": 0.99902344, "end": 239.67001, "punctuated_word": "great", "speaker": 0, "speaker_confidence": 0.9296875, "start": 239.43001, "word": "great" }, { "confidence": 1, "end": 239.91, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 0.9296875, "start": 239.67001, "word": "way" }, { "confidence": 1, "end": 240.07, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9296875, "start": 239.91, "word": "to" }, { "confidence": 1, "end": 240.23001, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.9296875, "start": 240.07, "word": "get" }, { "confidence": 1, "end": 240.39, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.9296875, "start": 240.23001, "word": "some" }, { "confidence": 1, "end": 240.71, "punctuated_word": "early", "speaker": 0, "speaker_confidence": 0.9296875, "start": 240.39, "word": "early" }, { "confidence": 0.99902344, "end": 241.21, "punctuated_word": "validation.", "speaker": 0, "speaker_confidence": 0.9296875, "start": 240.71, "word": "validation" }, { "confidence": 0.99316406, "end": 241.51001, "punctuated_word": "Big", "speaker": 0, "speaker_confidence": 0.9296875, "start": 241.27, "word": "big" }, { "confidence": 0.9970703, "end": 241.83, "punctuated_word": "companies", "speaker": 0, "speaker_confidence": 0.9296875, "start": 241.51001, "word": "companies" }, { "confidence": 0.94189453, "end": 241.99, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.9296875, "start": 241.83, "word": "like" }, { "confidence": 0.8828125, "end": 242.31001, "punctuated_word": "Meta", "speaker": 0, "speaker_confidence": 0.9296875, "start": 241.99, "word": "meta" }, { "confidence": 0.9970703, "end": 242.47, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.9296875, "start": 242.31001, "word": "do" }, { "confidence": 0.99902344, "end": 242.63, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.9296875, "start": 242.47, "word": "this" }, { "confidence": 1, "end": 242.79001, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.9296875, "start": 242.63, "word": "all" }, { "confidence": 0.9980469, "end": 242.87001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.80566406, "start": 242.79001, "word": "the" }, { "confidence": 1, "end": 243.11, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.80566406, "start": 242.87001, "word": "time" }, { "confidence": 0.98828125, "end": 243.35, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.80566406, "start": 243.11, "word": "by" }, { "confidence": 1, "end": 243.75, "punctuated_word": "stealing", "speaker": 0, "speaker_confidence": 0.80566406, "start": 243.35, "word": "stealing" }, { "confidence": 1, "end": 244.15001, "punctuated_word": "features", "speaker": 0, "speaker_confidence": 0.80566406, "start": 243.75, "word": "features" }, { "confidence": 1, "end": 244.39, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.80566406, "start": 244.15001, "word": "from" }, { "confidence": 0.99902344, "end": 244.79001, "punctuated_word": "smaller", "speaker": 0, "speaker_confidence": 0.80566406, "start": 244.39, "word": "smaller" }, { "confidence": 0.99902344, "end": 245.29001, "punctuated_word": "applications.", "speaker": 0, "speaker_confidence": 0.80566406, "start": 244.79001, "word": "applications" }, { "confidence": 0.9658203, "end": 245.75, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.80566406, "start": 245.67001, "word": "in" }, { "confidence": 0.9794922, "end": 245.945, "punctuated_word": "fact,", "speaker": 0, "speaker_confidence": 0.80566406, "start": 245.75, "word": "fact" }, { "confidence": 0.77490234, "end": 246.10501, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.7871094, "start": 246.02501, "word": "it's" }, { "confidence": 1, "end": 246.425, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7871094, "start": 246.10501, "word": "a" }, { "confidence": 1, "end": 246.585, "punctuated_word": "good", "speaker": 0, "speaker_confidence": 0.7871094, "start": 246.425, "word": "good" }, { "confidence": 1, "end": 246.82501, "punctuated_word": "sign", "speaker": 0, "speaker_confidence": 0.7871094, "start": 246.585, "word": "sign" }, { "confidence": 0.9980469, "end": 246.985, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7871094, "start": 246.82501, "word": "that" }, { "confidence": 0.98657227, "end": 247.30501, "punctuated_word": "someone's", "speaker": 0, "speaker_confidence": 0.7871094, "start": 246.985, "word": "someone's" }, { "confidence": 1, "end": 247.625, "punctuated_word": "already", "speaker": 0, "speaker_confidence": 0.7871094, "start": 247.30501, "word": "already" }, { "confidence": 0.9980469, "end": 247.785, "punctuated_word": "doing", "speaker": 0, "speaker_confidence": 0.7871094, "start": 247.625, "word": "doing" }, { "confidence": 1, "end": 248.02501, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.7871094, "start": 247.785, "word": "your" }, { "confidence": 0.99316406, "end": 248.505, "punctuated_word": "idea.", "speaker": 0, "speaker_confidence": 0.7871094, "start": 248.02501, "word": "idea" }, { "confidence": 0.99902344, "end": 248.66501, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.7871094, "start": 248.505, "word": "you" }, { "confidence": 1, "end": 248.82501, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.7871094, "start": 248.66501, "word": "just" }, { "confidence": 1, "end": 248.90501, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.9140625, "start": 248.82501, "word": "need" }, { "confidence": 1, "end": 248.985, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9140625, "start": 248.90501, "word": "to" }, { "confidence": 1, "end": 249.225, "punctuated_word": "figure", "speaker": 0, "speaker_confidence": 0.9140625, "start": 248.985, "word": "figure" }, { "confidence": 0.9980469, "end": 249.38501, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.9140625, "start": 249.225, "word": "out" }, { "confidence": 1, "end": 249.54501, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.9140625, "start": 249.38501, "word": "what" }, { "confidence": 0.9995117, "end": 249.785, "punctuated_word": "they're", "speaker": 0, "speaker_confidence": 0.9140625, "start": 249.54501, "word": "they're" }, { "confidence": 0.99902344, "end": 250.02501, "punctuated_word": "doing", "speaker": 0, "speaker_confidence": 0.9140625, "start": 249.785, "word": "doing" }, { "confidence": 1, "end": 250.505, "punctuated_word": "wrong", "speaker": 0, "speaker_confidence": 0.9140625, "start": 250.02501, "word": "wrong" }, { "confidence": 0.7265625, "end": 250.66501, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.9140625, "start": 250.505, "word": "or" }, { "confidence": 1, "end": 250.90501, "punctuated_word": "narrow", "speaker": 0, "speaker_confidence": 0.9140625, "start": 250.66501, "word": "narrow" }, { "confidence": 0.99902344, "end": 251.065, "punctuated_word": "down", "speaker": 0, "speaker_confidence": 0.9140625, "start": 250.90501, "word": "down" }, { "confidence": 1, "end": 251.225, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.9140625, "start": 251.065, "word": "your" }, { "confidence": 0.99902344, "end": 251.625, "punctuated_word": "target", "speaker": 0, "speaker_confidence": 0.9140625, "start": 251.225, "word": "target" }, { "confidence": 0.99609375, "end": 251.785, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9140625, "start": 251.625, "word": "to" }, { "confidence": 1, "end": 252.02501, "punctuated_word": "find", "speaker": 0, "speaker_confidence": 0.9140625, "start": 251.785, "word": "find" }, { "confidence": 0.99609375, "end": 252.10501, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9140625, "start": 252.02501, "word": "a" }, { "confidence": 1, "end": 252.425, "punctuated_word": "segment", "speaker": 0, "speaker_confidence": 0.9140625, "start": 252.10501, "word": "segment" }, { "confidence": 1, "end": 252.505, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9140625, "start": 252.425, "word": "of" }, { "confidence": 0.99902344, "end": 252.66501, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9140625, "start": 252.505, "word": "the" }, { "confidence": 1, "end": 253.065, "punctuated_word": "market", "speaker": 0, "speaker_confidence": 0.9140625, "start": 252.66501, "word": "market" }, { "confidence": 0.9873047, "end": 253.38501, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.9140625, "start": 253.065, "word": "where" }, { "confidence": 0.9921875, "end": 253.46501, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.9140625, "start": 253.38501, "word": "you" }, { "confidence": 0.9135742, "end": 253.68, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.9140625, "start": 253.46501, "word": "could" }, { "confidence": 0.6899414, "end": 253.92, "punctuated_word": "doing", "speaker": 0, "speaker_confidence": 0.9140625, "start": 253.76, "word": "doing" }, { "confidence": 0.9980469, "end": 254.15999, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 0.9140625, "start": 253.92, "word": "things" }, { "confidence": 0.9995117, "end": 254.64, "punctuated_word": "better.", "speaker": 0, "speaker_confidence": 0.9140625, "start": 254.15999, "word": "better" }, { "confidence": 0.99902344, "end": 254.87999, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.9140625, "start": 254.64, "word": "in" }, { "confidence": 0.99902344, "end": 255.12, "punctuated_word": "fact,", "speaker": 0, "speaker_confidence": 0.9140625, "start": 254.87999, "word": "fact" }, { "confidence": 0.99902344, "end": 255.28, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.9140625, "start": 255.12, "word": "that's" }, { "confidence": 1, "end": 255.51999, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.9140625, "start": 255.28, "word": "been" }, { "confidence": 1, "end": 255.68, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.9140625, "start": 255.51999, "word": "my" }, { "confidence": 1, "end": 255.92, "punctuated_word": "approach", "speaker": 0, "speaker_confidence": 0.9140625, "start": 255.68, "word": "approach" }, { "confidence": 1, "end": 256.08, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9140625, "start": 255.92, "word": "to" }, { "confidence": 1, "end": 256.24, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.9140625, "start": 256.08, "word": "this" }, { "confidence": 0.96777344, "end": 256.56, "punctuated_word": "YouTube", "speaker": 0, "speaker_confidence": 0.9140625, "start": 256.24, "word": "youtube" }, { "confidence": 0.9951172, "end": 256.96, "punctuated_word": "channel.", "speaker": 0, "speaker_confidence": 0.9140625, "start": 256.56, "word": "channel" }, { "confidence": 1, "end": 257.19998, "punctuated_word": "When", "speaker": 0, "speaker_confidence": 0.73583984, "start": 256.96, "word": "when" }, { "confidence": 1, "end": 257.28, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.73583984, "start": 257.19998, "word": "i" }, { "confidence": 0.98999023, "end": 257.68, "punctuated_word": "started,", "speaker": 0, "speaker_confidence": 0.73583984, "start": 257.28, "word": "started" }, { "confidence": 1, "end": 257.84, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.73583984, "start": 257.68, "word": "there" }, { "confidence": 0.9980469, "end": 257.91998, "punctuated_word": "were", "speaker": 0, "speaker_confidence": 0.73583984, "start": 257.84, "word": "were" }, { "confidence": 1, "end": 258.24, "punctuated_word": "already", "speaker": 0, "speaker_confidence": 0.73583984, "start": 257.91998, "word": "already" }, { "confidence": 0.91845703, "end": 258.47998, "punctuated_word": "millions", "speaker": 0, "speaker_confidence": 0.73583984, "start": 258.24, "word": "millions" }, { "confidence": 1, "end": 258.72, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.73583984, "start": 258.47998, "word": "of" }, { "confidence": 0.9658203, "end": 259.12, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.73583984, "start": 258.72, "word": "javascript" }, { "confidence": 0.9873047, "end": 259.62, "punctuated_word": "tutorials.", "speaker": 0, "speaker_confidence": 0.73583984, "start": 259.12, "word": "tutorials" }, { "confidence": 0.9970703, "end": 259.84, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.8642578, "start": 259.68, "word": "you" }, { "confidence": 1, "end": 260, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 0.8642578, "start": 259.84, "word": "might" }, { "confidence": 0.9980469, "end": 260.24, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 0.8642578, "start": 260, "word": "even" }, { "confidence": 0.9980469, "end": 260.32, "punctuated_word": "call", "speaker": 0, "speaker_confidence": 0.8642578, "start": 260.24, "word": "call" }, { "confidence": 0.9951172, "end": 260.47998, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8642578, "start": 260.32, "word": "it" }, { "confidence": 0.9790039, "end": 260.72, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.8642578, "start": 260.47998, "word": "an" }, { "confidence": 0.9194336, "end": 260.905, "punctuated_word": "over", "speaker": 0, "speaker_confidence": 0.8642578, "start": 260.72, "word": "over" }, { "confidence": 0.9970703, "end": 261.465, "punctuated_word": "saturated", "speaker": 0, "speaker_confidence": 0.8642578, "start": 261.145, "word": "saturated" }, { "confidence": 0.89819336, "end": 261.945, "punctuated_word": "market,", "speaker": 0, "speaker_confidence": 0.8642578, "start": 261.465, "word": "market" }, { "confidence": 1, "end": 262.105, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.8642578, "start": 261.945, "word": "but" }, { "confidence": 1, "end": 262.26498, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.8642578, "start": 262.105, "word": "i" }, { "confidence": 1, "end": 262.425, "punctuated_word": "saw", "speaker": 0, "speaker_confidence": 0.8642578, "start": 262.26498, "word": "saw" }, { "confidence": 0.99902344, "end": 262.585, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.8642578, "start": 262.425, "word": "an" }, { "confidence": 1, "end": 263.085, "punctuated_word": "opportunity", "speaker": 0, "speaker_confidence": 0.8642578, "start": 262.585, "word": "opportunity" }, { "confidence": 1, "end": 263.385, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8642578, "start": 263.225, "word": "to" }, { "confidence": 1, "end": 263.705, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.8642578, "start": 263.385, "word": "create" }, { "confidence": 0.94970703, "end": 264.185, "punctuated_word": "shorter,", "speaker": 0, "speaker_confidence": 0.8642578, "start": 263.705, "word": "shorter" }, { "confidence": 1, "end": 264.585, "punctuated_word": "faster", "speaker": 0, "speaker_confidence": 0.8642578, "start": 264.185, "word": "faster" }, { "confidence": 0.9941406, "end": 265.085, "punctuated_word": "content", "speaker": 0, "speaker_confidence": 0.8642578, "start": 264.585, "word": "content" }, { "confidence": 0.9716797, "end": 265.225, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8642578, "start": 265.145, "word": "that" }, { "confidence": 1, "end": 265.305, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.8808594, "start": 265.225, "word": "i" }, { "confidence": 0.99902344, "end": 265.545, "punctuated_word": "thought", "speaker": 0, "speaker_confidence": 0.8808594, "start": 265.305, "word": "thought" }, { "confidence": 0.99902344, "end": 266.025, "punctuated_word": "developers", "speaker": 0, "speaker_confidence": 0.8808594, "start": 265.545, "word": "developers" }, { "confidence": 0.9863281, "end": 266.185, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.8808594, "start": 266.025, "word": "like" }, { "confidence": 1, "end": 266.345, "punctuated_word": "me", "speaker": 0, "speaker_confidence": 0.8808594, "start": 266.185, "word": "me" }, { "confidence": 0.99902344, "end": 266.585, "punctuated_word": "would", "speaker": 0, "speaker_confidence": 0.8808594, "start": 266.345, "word": "would" }, { "confidence": 1, "end": 266.985, "punctuated_word": "like.", "speaker": 0, "speaker_confidence": 0.8808594, "start": 266.585, "word": "like" }, { "confidence": 1, "end": 267.225, "punctuated_word": "Just", "speaker": 0, "speaker_confidence": 0.8808594, "start": 266.985, "word": "just" }, { "confidence": 1, "end": 267.305, "punctuated_word": "look", "speaker": 0, "speaker_confidence": 0.8808594, "start": 267.225, "word": "look" }, { "confidence": 1, "end": 267.465, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.8808594, "start": 267.305, "word": "at" }, { "confidence": 0.99902344, "end": 267.545, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8808594, "start": 267.465, "word": "a" }, { "confidence": 1, "end": 267.865, "punctuated_word": "company", "speaker": 0, "speaker_confidence": 0.8808594, "start": 267.545, "word": "company" }, { "confidence": 0.9970703, "end": 268.025, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.8808594, "start": 267.865, "word": "like" }, { "confidence": 0.9763997, "end": 268.505, "punctuated_word": "Figma.", "speaker": 0, "speaker_confidence": 0.8808594, "start": 268.025, "word": "figma" }, { "confidence": 1, "end": 268.745, "punctuated_word": "They", "speaker": 0, "speaker_confidence": 0.8808594, "start": 268.505, "word": "they" }, { "confidence": 0.99902344, "end": 268.905, "punctuated_word": "built", "speaker": 0, "speaker_confidence": 0.8808594, "start": 268.745, "word": "built" }, { "confidence": 0.99902344, "end": 269.065, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8808594, "start": 268.905, "word": "a" }, { "confidence": 0.9951172, "end": 269.385, "punctuated_word": "design", "speaker": 0, "speaker_confidence": 0.8808594, "start": 269.065, "word": "design" }, { "confidence": 0.99902344, "end": 269.705, "punctuated_word": "product", "speaker": 0, "speaker_confidence": 0.8808594, "start": 269.385, "word": "product" }, { "confidence": 1, "end": 269.865, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8808594, "start": 269.705, "word": "that" }, { "confidence": 1, "end": 270.105, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.8808594, "start": 269.865, "word": "was" }, { "confidence": 0.98828125, "end": 270.35, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 0.8808594, "start": 270.105, "word": "really" }, { "confidence": 0.9863281, "end": 270.67, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.8808594, "start": 270.35, "word": "only" }, { "confidence": 1, "end": 270.99002, "punctuated_word": "slightly", "speaker": 0, "speaker_confidence": 0.8808594, "start": 270.67, "word": "slightly" }, { "confidence": 0.99609375, "end": 271.39, "punctuated_word": "different", "speaker": 0, "speaker_confidence": 0.8808594, "start": 270.99002, "word": "different" }, { "confidence": 0.98291016, "end": 271.55002, "punctuated_word": "than", "speaker": 0, "speaker_confidence": 0.8808594, "start": 271.39, "word": "than" }, { "confidence": 0.9980469, "end": 271.87, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 0.8808594, "start": 271.55002, "word": "things" }, { "confidence": 1, "end": 272.19, "punctuated_word": "offered", "speaker": 0, "speaker_confidence": 0.8808594, "start": 271.87, "word": "offered" }, { "confidence": 1, "end": 272.35, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.8808594, "start": 272.19, "word": "by" }, { "confidence": 0.9980469, "end": 272.75, "punctuated_word": "Adobe", "speaker": 0, "speaker_confidence": 0.8808594, "start": 272.35, "word": "adobe" }, { "confidence": 0.99609375, "end": 272.83002, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.8808594, "start": 272.75, "word": "at" }, { "confidence": 0.99121094, "end": 272.99002, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8808594, "start": 272.83002, "word": "the" }, { "confidence": 0.8527832, "end": 273.39, "punctuated_word": "time,", "speaker": 0, "speaker_confidence": 0.8808594, "start": 272.99002, "word": "time" }, { "confidence": 0.9980469, "end": 273.47, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.86816406, "start": 273.39, "word": "but" }, { "confidence": 0.99902344, "end": 273.63, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.86816406, "start": 273.47, "word": "they" }, { "confidence": 0.7480469, "end": 273.95, "punctuated_word": "addressed", "speaker": 0, "speaker_confidence": 0.86816406, "start": 273.63, "word": "addressed" }, { "confidence": 1, "end": 274.11002, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.86816406, "start": 273.95, "word": "the" }, { "confidence": 1, "end": 274.35, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 0.86816406, "start": 274.11002, "word": "most" }, { "confidence": 1, "end": 274.59, "punctuated_word": "common", "speaker": 0, "speaker_confidence": 0.86816406, "start": 274.35, "word": "common" }, { "confidence": 0.98535156, "end": 274.83002, "punctuated_word": "pain", "speaker": 0, "speaker_confidence": 0.86816406, "start": 274.59, "word": "pain" }, { "confidence": 0.97802734, "end": 275.15, "punctuated_word": "points", "speaker": 0, "speaker_confidence": 0.86816406, "start": 274.83002, "word": "points" }, { "confidence": 0.890625, "end": 275.39, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.86816406, "start": 275.15, "word": "and" }, { "confidence": 1, "end": 275.55002, "punctuated_word": "made", "speaker": 0, "speaker_confidence": 0.86816406, "start": 275.39, "word": "made" }, { "confidence": 0.9970703, "end": 275.63, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.86816406, "start": 275.55002, "word": "a" }, { "confidence": 1, "end": 275.95, "punctuated_word": "product", "speaker": 0, "speaker_confidence": 0.86816406, "start": 275.63, "word": "product" }, { "confidence": 0.9980469, "end": 276.11002, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.86816406, "start": 275.95, "word": "that" }, { "confidence": 0.99902344, "end": 276.35, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.86816406, "start": 276.11002, "word": "people" }, { "confidence": 0.9741211, "end": 276.67, "punctuated_word": "love.", "speaker": 0, "speaker_confidence": 0.86816406, "start": 276.35, "word": "love" }, { "confidence": 0.9741211, "end": 276.75, "punctuated_word": "A", "speaker": 0, "speaker_confidence": 0.9121094, "start": 276.67, "word": "a" }, { "confidence": 0.99902344, "end": 276.91, "punctuated_word": "few", "speaker": 0, "speaker_confidence": 0.9121094, "start": 276.75, "word": "few" }, { "confidence": 0.99609375, "end": 277.07, "punctuated_word": "years", "speaker": 0, "speaker_confidence": 0.9121094, "start": 276.91, "word": "years" }, { "confidence": 0.9580078, "end": 277.365, "punctuated_word": "later,", "speaker": 0, "speaker_confidence": 0.9121094, "start": 277.07, "word": "later" }, { "confidence": 1, "end": 277.845, "punctuated_word": "Adobe", "speaker": 0, "speaker_confidence": 0.9121094, "start": 277.44498, "word": "adobe" }, { "confidence": 0.9604492, "end": 278.245, "punctuated_word": "acquires", "speaker": 0, "speaker_confidence": 0.9121094, "start": 277.845, "word": "acquires" }, { "confidence": 1, "end": 278.405, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.9121094, "start": 278.245, "word": "them" }, { "confidence": 0.99902344, "end": 278.485, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.9121094, "start": 278.405, "word": "for" }, { "confidence": 0.99542236, "end": 278.985, "punctuated_word": "$20,000,000,000", "speaker": 0, "speaker_confidence": 0.9121094, "start": 278.485, "word": "$20,000,000,000" }, { "confidence": 0.90625, "end": 280.085, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.9121094, "start": 279.925, "word": "just" }, { "confidence": 0.99902344, "end": 280.245, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.9121094, "start": 280.085, "word": "so" }, { "confidence": 0.9980469, "end": 280.32498, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.9121094, "start": 280.245, "word": "they" }, { "confidence": 0.9873047, "end": 280.485, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.9121094, "start": 280.32498, "word": "could" }, { "confidence": 1, "end": 280.645, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.9121094, "start": 280.485, "word": "make" }, { "confidence": 0.99902344, "end": 280.805, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9121094, "start": 280.645, "word": "the" }, { "confidence": 0.9838867, "end": 281.125, "punctuated_word": "product", "speaker": 0, "speaker_confidence": 0.9121094, "start": 280.805, "word": "product" }, { "confidence": 0.99902344, "end": 281.365, "punctuated_word": "suck", "speaker": 0, "speaker_confidence": 0.9121094, "start": 281.125, "word": "suck" }, { "confidence": 1, "end": 281.76498, "punctuated_word": "again.", "speaker": 0, "speaker_confidence": 0.9121094, "start": 281.365, "word": "again" }, { "confidence": 0.99902344, "end": 281.925, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.9121094, "start": 281.76498, "word": "now" }, { "confidence": 0.63671875, "end": 282.085, "punctuated_word": "once", "speaker": 0, "speaker_confidence": 0.9121094, "start": 281.925, "word": "once" }, { "confidence": 1, "end": 282.16498, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.9121094, "start": 282.085, "word": "you" }, { "confidence": 0.99902344, "end": 282.32498, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.9121094, "start": 282.16498, "word": "have" }, { "confidence": 0.99609375, "end": 282.405, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5722656, "start": 282.32498, "word": "the" }, { "confidence": 1, "end": 282.645, "punctuated_word": "general", "speaker": 0, "speaker_confidence": 0.5722656, "start": 282.405, "word": "general" }, { "confidence": 1, "end": 282.805, "punctuated_word": "idea", "speaker": 0, "speaker_confidence": 0.5722656, "start": 282.645, "word": "idea" }, { "confidence": 0.99609375, "end": 282.965, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.5722656, "start": 282.805, "word": "of" }, { "confidence": 1, "end": 283.125, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.5722656, "start": 282.965, "word": "what" }, { "confidence": 1, "end": 283.285, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.5722656, "start": 283.125, "word": "you" }, { "confidence": 1, "end": 283.44498, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.5722656, "start": 283.285, "word": "want" }, { "confidence": 0.99902344, "end": 283.525, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8232422, "start": 283.44498, "word": "to" }, { "confidence": 0.9970703, "end": 284.005, "punctuated_word": "build,", "speaker": 0, "speaker_confidence": 0.8232422, "start": 283.525, "word": "build" }, { "confidence": 0.99902344, "end": 284.245, "punctuated_word": "another", "speaker": 0, "speaker_confidence": 0.8232422, "start": 284.005, "word": "another" }, { "confidence": 1, "end": 284.485, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 0.8232422, "start": 284.245, "word": "way" }, { "confidence": 1, "end": 284.645, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8232422, "start": 284.485, "word": "to" }, { "confidence": 1, "end": 285.04498, "punctuated_word": "validate", "speaker": 0, "speaker_confidence": 0.8232422, "start": 284.645, "word": "validate" }, { "confidence": 0.9980469, "end": 285.285, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8232422, "start": 285.04498, "word": "it" }, { "confidence": 0.96875, "end": 285.58, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8232422, "start": 285.285, "word": "is" }, { "confidence": 0.8183594, "end": 285.74, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.8232422, "start": 285.58, "word": "you" }, { "confidence": 0.9873047, "end": 285.97998, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.8232422, "start": 285.74, "word": "build" }, { "confidence": 0.9980469, "end": 286.06, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8232422, "start": 285.97998, "word": "in" }, { "confidence": 0.83862305, "end": 286.53998, "punctuated_word": "public,", "speaker": 0, "speaker_confidence": 0.8232422, "start": 286.06, "word": "public" }, { "confidence": 1, "end": 286.78, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8232422, "start": 286.53998, "word": "and" }, { "confidence": 0.9970703, "end": 286.86, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.8232422, "start": 286.78, "word": "by" }, { "confidence": 1, "end": 287.09998, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8232422, "start": 286.86, "word": "that" }, { "confidence": 0.7080078, "end": 287.18, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.8232422, "start": 287.09998, "word": "i" }, { "confidence": 1, "end": 287.41998, "punctuated_word": "mean", "speaker": 0, "speaker_confidence": 0.8232422, "start": 287.18, "word": "mean" }, { "confidence": 0.8798828, "end": 287.5, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.8232422, "start": 287.41998, "word": "get" }, { "confidence": 0.99902344, "end": 287.65997, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8232422, "start": 287.5, "word": "on" }, { "confidence": 0.99902344, "end": 287.97998, "punctuated_word": "social", "speaker": 0, "speaker_confidence": 0.8232422, "start": 287.65997, "word": "social" }, { "confidence": 0.99902344, "end": 288.47998, "punctuated_word": "media", "speaker": 0, "speaker_confidence": 0.8232422, "start": 287.97998, "word": "media" }, { "confidence": 0.9448242, "end": 288.62, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8232422, "start": 288.53998, "word": "and" }, { "confidence": 1, "end": 288.86, "punctuated_word": "tell", "speaker": 0, "speaker_confidence": 0.61865234, "start": 288.62, "word": "tell" }, { "confidence": 1, "end": 288.93997, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.61865234, "start": 288.86, "word": "the" }, { "confidence": 1, "end": 289.18, "punctuated_word": "world", "speaker": 0, "speaker_confidence": 0.61865234, "start": 288.93997, "word": "world" }, { "confidence": 1, "end": 289.34, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.61865234, "start": 289.18, "word": "what" }, { "confidence": 0.99853516, "end": 289.5, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.61865234, "start": 289.34, "word": "you're" }, { "confidence": 1, "end": 289.97998, "punctuated_word": "building", "speaker": 0, "speaker_confidence": 0.61865234, "start": 289.5, "word": "building" }, { "confidence": 0.9863281, "end": 290.22, "punctuated_word": "before", "speaker": 0, "speaker_confidence": 0.61865234, "start": 289.97998, "word": "before" }, { "confidence": 1, "end": 290.37997, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.61865234, "start": 290.22, "word": "you" }, { "confidence": 1, "end": 290.62, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 0.61865234, "start": 290.37997, "word": "even" }, { "confidence": 0.99902344, "end": 290.86, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.61865234, "start": 290.62, "word": "build" }, { "confidence": 0.99853516, "end": 291.09998, "punctuated_word": "it.", "speaker": 0, "speaker_confidence": 0.61865234, "start": 290.86, "word": "it" }, { "confidence": 0.9902344, "end": 291.18, "punctuated_word": "What", "speaker": 0, "speaker_confidence": 0.4633789, "start": 291.09998, "word": "what" }, { "confidence": 1, "end": 291.41998, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 0.4633789, "start": 291.18, "word": "you'll" }, { "confidence": 1, "end": 291.65997, "punctuated_word": "find", "speaker": 0, "speaker_confidence": 0.4633789, "start": 291.41998, "word": "find" }, { "confidence": 0.96972656, "end": 291.81998, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.4633789, "start": 291.65997, "word": "is" }, { "confidence": 0.9980469, "end": 291.97998, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.4633789, "start": 291.81998, "word": "that" }, { "confidence": 0.99658203, "end": 292.13998, "punctuated_word": "there's", "speaker": 0, "speaker_confidence": 0.4633789, "start": 291.97998, "word": "there's" }, { "confidence": 1, "end": 292.22, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.87890625, "start": 292.13998, "word": "a" }, { "confidence": 1, "end": 292.46, "punctuated_word": "lot", "speaker": 0, "speaker_confidence": 0.87890625, "start": 292.22, "word": "lot" }, { "confidence": 0.99902344, "end": 292.53998, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.87890625, "start": 292.46, "word": "of" }, { "confidence": 0.9951172, "end": 292.835, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.87890625, "start": 292.53998, "word": "other" }, { "confidence": 0.69921875, "end": 293.155, "punctuated_word": "indie", "speaker": 0, "speaker_confidence": 0.87890625, "start": 292.91498, "word": "indie" }, { "confidence": 0.94189453, "end": 293.475, "punctuated_word": "makers", "speaker": 0, "speaker_confidence": 0.87890625, "start": 293.155, "word": "makers" }, { "confidence": 0.9970703, "end": 293.715, "punctuated_word": "doing", "speaker": 0, "speaker_confidence": 0.87890625, "start": 293.475, "word": "doing" }, { "confidence": 1, "end": 293.79498, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.87890625, "start": 293.715, "word": "the" }, { "confidence": 1, "end": 294.035, "punctuated_word": "same", "speaker": 0, "speaker_confidence": 0.87890625, "start": 293.79498, "word": "same" }, { "confidence": 1, "end": 294.51498, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.87890625, "start": 294.035, "word": "thing" }, { "confidence": 0.92822266, "end": 294.675, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.87890625, "start": 294.51498, "word": "that" }, { "confidence": 1, "end": 294.835, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.87890625, "start": 294.675, "word": "will" }, { "confidence": 1, "end": 295.07498, "punctuated_word": "support", "speaker": 0, "speaker_confidence": 0.87890625, "start": 294.835, "word": "support" }, { "confidence": 1, "end": 295.235, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.87890625, "start": 295.07498, "word": "you" }, { "confidence": 0.99316406, "end": 295.395, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.87890625, "start": 295.235, "word": "and" }, { "confidence": 1, "end": 295.715, "punctuated_word": "provide", "speaker": 0, "speaker_confidence": 0.87890625, "start": 295.395, "word": "provide" }, { "confidence": 0.99902344, "end": 296.19498, "punctuated_word": "feedback.", "speaker": 0, "speaker_confidence": 0.87890625, "start": 295.715, "word": "feedback" }, { "confidence": 0.95092773, "end": 296.35498, "punctuated_word": "Oh,", "speaker": 0, "speaker_confidence": 0.87890625, "start": 296.19498, "word": "oh" }, { "confidence": 0.9980469, "end": 296.51498, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.87890625, "start": 296.35498, "word": "and" }, { "confidence": 0.9135742, "end": 296.595, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.87890625, "start": 296.51498, "word": "by" }, { "confidence": 1, "end": 296.755, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8251953, "start": 296.595, "word": "the" }, { "confidence": 0.9616699, "end": 297.07498, "punctuated_word": "way,", "speaker": 0, "speaker_confidence": 0.8251953, "start": 296.755, "word": "way" }, { "confidence": 1, "end": 297.235, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.8251953, "start": 297.07498, "word": "make" }, { "confidence": 1, "end": 297.475, "punctuated_word": "sure", "speaker": 0, "speaker_confidence": 0.8251953, "start": 297.235, "word": "sure" }, { "confidence": 0.99902344, "end": 297.63498, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8251953, "start": 297.475, "word": "to" }, { "confidence": 1, "end": 297.875, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.8251953, "start": 297.63498, "word": "also" }, { "confidence": 1, "end": 298.115, "punctuated_word": "follow", "speaker": 0, "speaker_confidence": 0.8251953, "start": 297.875, "word": "follow" }, { "confidence": 1, "end": 298.19498, "punctuated_word": "me", "speaker": 0, "speaker_confidence": 0.8251953, "start": 298.115, "word": "me" }, { "confidence": 1, "end": 298.35498, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8251953, "start": 298.19498, "word": "on" }, { "confidence": 0.95410156, "end": 298.755, "punctuated_word": "Twitter", "speaker": 0, "speaker_confidence": 0.8251953, "start": 298.35498, "word": "twitter" }, { "confidence": 0.87841797, "end": 298.91498, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.8251953, "start": 298.755, "word": "because" }, { "confidence": 0.99658203, "end": 299.07498, "punctuated_word": "I'll", "speaker": 0, "speaker_confidence": 0.8251953, "start": 298.91498, "word": "i'll" }, { "confidence": 1, "end": 299.235, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.8251953, "start": 299.07498, "word": "be" }, { "confidence": 1, "end": 299.555, "punctuated_word": "posting", "speaker": 0, "speaker_confidence": 0.8251953, "start": 299.235, "word": "posting" }, { "confidence": 1, "end": 299.875, "punctuated_word": "extra", "speaker": 0, "speaker_confidence": 0.8251953, "start": 299.555, "word": "extra" }, { "confidence": 1, "end": 300.19498, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.8251953, "start": 299.875, "word": "video" }, { "confidence": 0.9980469, "end": 300.57, "punctuated_word": "content", "speaker": 0, "speaker_confidence": 0.8251953, "start": 300.19498, "word": "content" }, { "confidence": 0.9941406, "end": 300.81, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.8251953, "start": 300.57, "word": "there" }, { "confidence": 0.9916992, "end": 301.05002, "punctuated_word": "soon.", "speaker": 0, "speaker_confidence": 0.8251953, "start": 300.81, "word": "soon" }, { "confidence": 0.97436523, "end": 301.53, "punctuated_word": "That's", "speaker": 0, "speaker_confidence": 0.8251953, "start": 301.05002, "word": "that's" }, { "confidence": 0.99902344, "end": 301.69, "punctuated_word": "great", "speaker": 0, "speaker_confidence": 0.8251953, "start": 301.53, "word": "great" }, { "confidence": 0.9350586, "end": 301.77002, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.89160156, "start": 301.69, "word": "and" }, { "confidence": 0.9807129, "end": 302.01, "punctuated_word": "all,", "speaker": 0, "speaker_confidence": 0.89160156, "start": 301.77002, "word": "all" }, { "confidence": 1, "end": 302.17, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.89160156, "start": 302.01, "word": "but" }, { "confidence": 1, "end": 302.25, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.89160156, "start": 302.17, "word": "what" }, { "confidence": 0.99902344, "end": 302.41, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.89160156, "start": 302.25, "word": "you" }, { "confidence": 0.99902344, "end": 302.65, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 0.89160156, "start": 302.41, "word": "really" }, { "confidence": 1, "end": 302.89, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.89160156, "start": 302.65, "word": "need" }, { "confidence": 0.99902344, "end": 302.97, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.89160156, "start": 302.89, "word": "to" }, { "confidence": 1, "end": 303.13, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.89160156, "start": 302.97, "word": "do" }, { "confidence": 1, "end": 303.37, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.89160156, "start": 303.13, "word": "is" }, { "confidence": 1, "end": 303.77002, "punctuated_word": "validate", "speaker": 0, "speaker_confidence": 0.89160156, "start": 303.37, "word": "validate" }, { "confidence": 0.99902344, "end": 303.93, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.89160156, "start": 303.77002, "word": "the" }, { "confidence": 1, "end": 304.25, "punctuated_word": "idea", "speaker": 0, "speaker_confidence": 0.89160156, "start": 303.93, "word": "idea" }, { "confidence": 1, "end": 304.41, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.89160156, "start": 304.25, "word": "with" }, { "confidence": 1, "end": 304.57, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.89160156, "start": 304.41, "word": "your" }, { "confidence": 0.99902344, "end": 304.81, "punctuated_word": "core", "speaker": 0, "speaker_confidence": 0.89160156, "start": 304.57, "word": "core" }, { "confidence": 1, "end": 305.29, "punctuated_word": "audience.", "speaker": 0, "speaker_confidence": 0.89160156, "start": 304.81, "word": "audience" }, { "confidence": 0.8535156, "end": 305.45, "punctuated_word": "One", "speaker": 0, "speaker_confidence": 0.89160156, "start": 305.29, "word": "one" }, { "confidence": 1, "end": 305.77002, "punctuated_word": "product", "speaker": 0, "speaker_confidence": 0.89160156, "start": 305.45, "word": "product" }, { "confidence": 0.9941406, "end": 306.17, "punctuated_word": "everybody", "speaker": 0, "speaker_confidence": 0.89160156, "start": 305.77002, "word": "everybody" }, { "confidence": 0.99609375, "end": 306.49002, "punctuated_word": "hates", "speaker": 0, "speaker_confidence": 0.89160156, "start": 306.17, "word": "hates" }, { "confidence": 0.75439453, "end": 306.65, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.89160156, "start": 306.49002, "word": "but" }, { "confidence": 1, "end": 306.89, "punctuated_word": "still", "speaker": 0, "speaker_confidence": 0.89160156, "start": 306.65, "word": "still" }, { "confidence": 1, "end": 307.13, "punctuated_word": "pays", "speaker": 0, "speaker_confidence": 0.89160156, "start": 306.89, "word": "pays" }, { "confidence": 0.86328125, "end": 307.37, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.89160156, "start": 307.13, "word": "a" }, { "confidence": 0.98657227, "end": 307.85, "punctuated_word": "$100", "speaker": 0, "speaker_confidence": 0.89160156, "start": 307.37, "word": "$100" }, { "confidence": 0.9921875, "end": 307.93, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.89160156, "start": 307.85, "word": "a" }, { "confidence": 1, "end": 308.09, "punctuated_word": "year", "speaker": 0, "speaker_confidence": 0.89160156, "start": 307.93, "word": "year" }, { "confidence": 0.9970703, "end": 308.41, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.89160156, "start": 308.09, "word": "for" }, { "confidence": 0.9863281, "end": 308.65, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.89160156, "start": 308.41, "word": "is" }, { "confidence": 0.99609375, "end": 309.13, "punctuated_word": "Microsoft", "speaker": 0, "speaker_confidence": 0.89160156, "start": 308.65, "word": "microsoft" }, { "confidence": 0.9880371, "end": 309.355, "punctuated_word": "Word.", "speaker": 0, "speaker_confidence": 0.89160156, "start": 309.13, "word": "word" }, { "confidence": 0.9667969, "end": 309.755, "punctuated_word": "What", "speaker": 0, "speaker_confidence": 0.89160156, "start": 309.515, "word": "what" }, { "confidence": 1, "end": 309.795, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.89160156, "start": 309.755, "word": "you" }, { "confidence": 1, "end": 309.83502, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.96484375, "start": 309.795, "word": "can" }, { "confidence": 1, "end": 310.155, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.96484375, "start": 309.83502, "word": "do" }, { "confidence": 0.99902344, "end": 310.315, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.96484375, "start": 310.155, "word": "is" }, { "confidence": 1, "end": 310.55502, "punctuated_word": "find", "speaker": 0, "speaker_confidence": 0.96484375, "start": 310.315, "word": "find" }, { "confidence": 1, "end": 310.875, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 0.96484375, "start": 310.55502, "word": "real" }, { "confidence": 1, "end": 311.27502, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.96484375, "start": 310.875, "word": "people" }, { "confidence": 0.93603516, "end": 311.515, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.96484375, "start": 311.27502, "word": "or" }, { "confidence": 0.99902344, "end": 311.915, "punctuated_word": "micro", "speaker": 0, "speaker_confidence": 0.96484375, "start": 311.515, "word": "micro" }, { "confidence": 0.9885254, "end": 312.415, "punctuated_word": "influencers", "speaker": 0, "speaker_confidence": 0.96484375, "start": 311.915, "word": "influencers" }, { "confidence": 0.99902344, "end": 312.795, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.96484375, "start": 312.635, "word": "on" }, { "confidence": 0.99902344, "end": 313.11502, "punctuated_word": "social", "speaker": 0, "speaker_confidence": 0.96484375, "start": 312.795, "word": "social" }, { "confidence": 0.9980469, "end": 313.595, "punctuated_word": "media", "speaker": 0, "speaker_confidence": 0.96484375, "start": 313.11502, "word": "media" }, { "confidence": 0.9194336, "end": 313.755, "punctuated_word": "who", "speaker": 0, "speaker_confidence": 0.96484375, "start": 313.595, "word": "who" }, { "confidence": 0.99316406, "end": 313.99503, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.96484375, "start": 313.755, "word": "use" }, { "confidence": 0.9980469, "end": 314.075, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.96484375, "start": 313.99503, "word": "this" }, { "confidence": 0.9123535, "end": 314.575, "punctuated_word": "product,", "speaker": 0, "speaker_confidence": 0.96484375, "start": 314.075, "word": "product" }, { "confidence": 0.99902344, "end": 315.035, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.96484375, "start": 314.715, "word": "but" }, { "confidence": 1, "end": 315.435, "punctuated_word": "understand", "speaker": 0, "speaker_confidence": 0.96484375, "start": 315.035, "word": "understand" }, { "confidence": 0.94140625, "end": 315.595, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.96484375, "start": 315.435, "word": "its" }, { "confidence": 0.9838867, "end": 315.83502, "punctuated_word": "pain", "speaker": 0, "speaker_confidence": 0.96484375, "start": 315.595, "word": "pain" }, { "confidence": 0.9304199, "end": 316.23502, "punctuated_word": "points.", "speaker": 0, "speaker_confidence": 0.96484375, "start": 315.83502, "word": "points" }, { "confidence": 0.99902344, "end": 316.55502, "punctuated_word": "Follow", "speaker": 0, "speaker_confidence": 0.96484375, "start": 316.23502, "word": "follow" }, { "confidence": 1, "end": 316.715, "punctuated_word": "these", "speaker": 0, "speaker_confidence": 0.96484375, "start": 316.55502, "word": "these" }, { "confidence": 0.95581055, "end": 317.11502, "punctuated_word": "people,", "speaker": 0, "speaker_confidence": 0.96484375, "start": 316.715, "word": "people" }, { "confidence": 0.99902344, "end": 317.355, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.96484375, "start": 317.11502, "word": "like" }, { "confidence": 0.99902344, "end": 317.515, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 0.96484375, "start": 317.355, "word": "their" }, { "confidence": 0.9489746, "end": 317.93, "punctuated_word": "posts,", "speaker": 0, "speaker_confidence": 0.96484375, "start": 317.515, "word": "posts" }, { "confidence": 0.9980469, "end": 318.09, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.96484375, "start": 318.00998, "word": "and" }, { "confidence": 0.7890625, "end": 318.25, "punctuated_word": "engage", "speaker": 0, "speaker_confidence": 0.96484375, "start": 318.09, "word": "engage" }, { "confidence": 0.99902344, "end": 318.41, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.96484375, "start": 318.25, "word": "with" }, { "confidence": 1, "end": 318.65, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.96484375, "start": 318.41, "word": "them" }, { "confidence": 1, "end": 318.88998, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.96484375, "start": 318.65, "word": "on" }, { "confidence": 1, "end": 319.13, "punctuated_word": "social", "speaker": 0, "speaker_confidence": 0.96484375, "start": 318.88998, "word": "social" }, { "confidence": 0.9980469, "end": 319.61, "punctuated_word": "media.", "speaker": 0, "speaker_confidence": 0.96484375, "start": 319.13, "word": "media" }, { "confidence": 0.99902344, "end": 319.85, "punctuated_word": "Once", "speaker": 0, "speaker_confidence": 0.96484375, "start": 319.61, "word": "once" }, { "confidence": 0.8937988, "end": 320.00998, "punctuated_word": "you've", "speaker": 0, "speaker_confidence": 0.96484375, "start": 319.85, "word": "you've" }, { "confidence": 0.9741211, "end": 320.16998, "punctuated_word": "gained", "speaker": 0, "speaker_confidence": 0.96484375, "start": 320.00998, "word": "gained" }, { "confidence": 0.99902344, "end": 320.41, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 0.96484375, "start": 320.16998, "word": "their" }, { "confidence": 0.98583984, "end": 320.72998, "punctuated_word": "trust,", "speaker": 0, "speaker_confidence": 0.96484375, "start": 320.41, "word": "trust" }, { "confidence": 1, "end": 320.88998, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.96484375, "start": 320.72998, "word": "you" }, { "confidence": 1, "end": 321.05, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.96484375, "start": 320.88998, "word": "can" }, { "confidence": 0.9980469, "end": 321.13, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.96484375, "start": 321.05, "word": "then" }, { "confidence": 1, "end": 321.37, "punctuated_word": "reach", "speaker": 0, "speaker_confidence": 0.96484375, "start": 321.13, "word": "reach" }, { "confidence": 1, "end": 321.53, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.96484375, "start": 321.37, "word": "out" }, { "confidence": 1, "end": 321.61, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.63623047, "start": 321.53, "word": "with" }, { "confidence": 0.99121094, "end": 321.77, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.63623047, "start": 321.61, "word": "a" }, { "confidence": 1, "end": 322.09, "punctuated_word": "direct", "speaker": 0, "speaker_confidence": 0.63623047, "start": 321.77, "word": "direct" }, { "confidence": 0.99902344, "end": 322.57, "punctuated_word": "message", "speaker": 0, "speaker_confidence": 0.63623047, "start": 322.09, "word": "message" }, { "confidence": 0.85913086, "end": 322.81, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.63623047, "start": 322.57, "word": "that's" }, { "confidence": 0.9165039, "end": 323.05, "punctuated_word": "like,", "speaker": 0, "speaker_confidence": 0.63623047, "start": 322.81, "word": "like" }, { "confidence": 0.8483887, "end": 323.21, "punctuated_word": "hey,", "speaker": 0, "speaker_confidence": 0.63623047, "start": 323.05, "word": "hey" }, { "confidence": 0.99902344, "end": 323.28998, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 1, "start": 323.21, "word": "i" }, { "confidence": 1, "end": 323.44998, "punctuated_word": "saw", "speaker": 0, "speaker_confidence": 1, "start": 323.28998, "word": "saw" }, { "confidence": 0.9980469, "end": 323.61, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 323.44998, "word": "you" }, { "confidence": 0.98535156, "end": 323.85, "punctuated_word": "hate", "speaker": 0, "speaker_confidence": 1, "start": 323.61, "word": "hate" }, { "confidence": 0.9980469, "end": 324.25, "punctuated_word": "Microsoft", "speaker": 0, "speaker_confidence": 1, "start": 323.85, "word": "microsoft" }, { "confidence": 0.9211426, "end": 324.65, "punctuated_word": "Word.", "speaker": 0, "speaker_confidence": 1, "start": 324.25, "word": "word" }, { "confidence": 0.99853516, "end": 324.81, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 1, "start": 324.65, "word": "i'm" }, { "confidence": 0.99902344, "end": 325.21, "punctuated_word": "developing", "speaker": 0, "speaker_confidence": 1, "start": 324.81, "word": "developing" }, { "confidence": 0.9921875, "end": 325.44998, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 1, "start": 325.21, "word": "this" }, { "confidence": 0.99316406, "end": 325.53, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 1, "start": 325.44998, "word": "new" }, { "confidence": 0.9980469, "end": 325.93, "punctuated_word": "product", "speaker": 0, "speaker_confidence": 1, "start": 325.53, "word": "product" }, { "confidence": 0.9770508, "end": 326.00998, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 325.93, "word": "that" }, { "confidence": 0.8598633, "end": 326.325, "punctuated_word": "solves", "speaker": 0, "speaker_confidence": 1, "start": 326.00998, "word": "solves" }, { "confidence": 0.7714844, "end": 326.725, "punctuated_word": "x", "speaker": 0, "speaker_confidence": 1, "start": 326.48502, "word": "x" }, { "confidence": 0.9819336, "end": 326.80502, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 326.725, "word": "and" }, { "confidence": 0.9941406, "end": 326.96503, "punctuated_word": "y", "speaker": 0, "speaker_confidence": 1, "start": 326.80502, "word": "y" }, { "confidence": 0.9873047, "end": 327.285, "punctuated_word": "pain", "speaker": 0, "speaker_confidence": 1, "start": 326.96503, "word": "pain" }, { "confidence": 0.90893555, "end": 327.685, "punctuated_word": "points.", "speaker": 0, "speaker_confidence": 1, "start": 327.285, "word": "points" }, { "confidence": 0.9970703, "end": 327.92502, "punctuated_word": "Do", "speaker": 0, "speaker_confidence": 1, "start": 327.685, "word": "do" }, { "confidence": 0.99902344, "end": 328.005, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 327.92502, "word": "you" }, { "confidence": 0.75390625, "end": 328.08502, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 1, "start": 328.005, "word": "want" }, { "confidence": 0.9980469, "end": 328.165, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 328.08502, "word": "to" }, { "confidence": 1, "end": 328.24503, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 1, "start": 328.165, "word": "be" }, { "confidence": 0.99902344, "end": 328.325, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 328.24503, "word": "the" }, { "confidence": 0.69189453, "end": 328.565, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 1, "start": 328.325, "word": "first" }, { "confidence": 0.99316406, "end": 328.725, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 1, "start": 328.565, "word": "one" }, { "confidence": 0.99902344, "end": 328.80502, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 328.725, "word": "to" }, { "confidence": 1, "end": 328.96503, "punctuated_word": "check", "speaker": 0, "speaker_confidence": 1, "start": 328.80502, "word": "check" }, { "confidence": 1, "end": 329.045, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 328.96503, "word": "it" }, { "confidence": 1, "end": 329.285, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 1, "start": 329.045, "word": "out" }, { "confidence": 0.9902344, "end": 329.445, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 1, "start": 329.285, "word": "when" }, { "confidence": 0.9975586, "end": 329.605, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 1, "start": 329.445, "word": "it's" }, { "confidence": 0.9909668, "end": 329.92502, "punctuated_word": "ready?", "speaker": 0, "speaker_confidence": 1, "start": 329.605, "word": "ready" }, { "confidence": 0.9892578, "end": 330.08502, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 1, "start": 329.92502, "word": "this" }, { "confidence": 0.99902344, "end": 330.24503, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 330.08502, "word": "is" }, { "confidence": 0.99902344, "end": 330.565, "punctuated_word": "highly", "speaker": 0, "speaker_confidence": 1, "start": 330.24503, "word": "highly" }, { "confidence": 0.99902344, "end": 331.045, "punctuated_word": "surgical", "speaker": 0, "speaker_confidence": 1, "start": 330.565, "word": "surgical" }, { "confidence": 0.97802734, "end": 331.36502, "punctuated_word": "direct", "speaker": 0, "speaker_confidence": 1, "start": 331.045, "word": "direct" }, { "confidence": 0.984375, "end": 331.845, "punctuated_word": "marketing,", "speaker": 0, "speaker_confidence": 1, "start": 331.36502, "word": "marketing" }, { "confidence": 0.99902344, "end": 332.005, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 1, "start": 331.845, "word": "but" }, { "confidence": 0.99853516, "end": 332.165, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 1, "start": 332.005, "word": "it's" }, { "confidence": 1, "end": 332.405, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 1, "start": 332.165, "word": "also" }, { "confidence": 1, "end": 332.725, "punctuated_word": "highly", "speaker": 0, "speaker_confidence": 1, "start": 332.405, "word": "highly" }, { "confidence": 0.7697754, "end": 333.225, "punctuated_word": "effective.", "speaker": 0, "speaker_confidence": 1, "start": 332.725, "word": "effective" }, { "confidence": 0.9951172, "end": 333.5, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 1, "start": 333.34, "word": "and" }, { "confidence": 1, "end": 333.74, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 1, "start": 333.5, "word": "people" }, { "confidence": 0.9951172, "end": 333.78, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 1, "start": 333.74, "word": "use" }, { "confidence": 0.99902344, "end": 333.82, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 333.78, "word": "it" }, { "confidence": 0.9970703, "end": 334.06, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 1, "start": 333.82, "word": "on" }, { "confidence": 1, "end": 334.22, "punctuated_word": "me", "speaker": 0, "speaker_confidence": 1, "start": 334.06, "word": "me" }, { "confidence": 0.9970703, "end": 334.38, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 334.22, "word": "for" }, { "confidence": 0.9941406, "end": 334.54, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 1, "start": 334.38, "word": "their" }, { "confidence": 0.9980469, "end": 334.78, "punctuated_word": "tech", "speaker": 0, "speaker_confidence": 1, "start": 334.54, "word": "tech" }, { "confidence": 0.7675781, "end": 335.18, "punctuated_word": "products,", "speaker": 0, "speaker_confidence": 1, "start": 334.78, "word": "products" }, { "confidence": 1, "end": 335.41998, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 335.18, "word": "and" }, { "confidence": 0.9980469, "end": 335.58, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 335.41998, "word": "it" }, { "confidence": 0.75341797, "end": 335.98, "punctuated_word": "works.", "speaker": 0, "speaker_confidence": 1, "start": 335.58, "word": "works" }, { "confidence": 0.8198242, "end": 336.3, "punctuated_word": "Because,", "speaker": 0, "speaker_confidence": 1, "start": 335.98, "word": "because" }, { "confidence": 0.986084, "end": 336.62, "punctuated_word": "honestly,", "speaker": 0, "speaker_confidence": 1, "start": 336.3, "word": "honestly" }, { "confidence": 0.9980469, "end": 336.78, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 1, "start": 336.62, "word": "it's" }, { "confidence": 0.9970703, "end": 336.94, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 336.78, "word": "a" }, { "confidence": 1, "end": 337.1, "punctuated_word": "win", "speaker": 0, "speaker_confidence": 1, "start": 336.94, "word": "win" }, { "confidence": 0.9916992, "end": 337.41998, "punctuated_word": "win.", "speaker": 0, "speaker_confidence": 1, "start": 337.1, "word": "win" }, { "confidence": 0.99609375, "end": 337.58, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 1, "start": 337.41998, "word": "if" }, { "confidence": 0.9941406, "end": 337.66, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 1, "start": 337.58, "word": "you're" }, { "confidence": 0.99902344, "end": 337.9, "punctuated_word": "creating", "speaker": 0, "speaker_confidence": 1, "start": 337.66, "word": "creating" }, { "confidence": 1, "end": 338.13998, "punctuated_word": "something", "speaker": 0, "speaker_confidence": 1, "start": 337.9, "word": "something" }, { "confidence": 0.9970703, "end": 338.3, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 338.13998, "word": "that" }, { "confidence": 0.80908203, "end": 338.46, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 338.3, "word": "can" }, { "confidence": 1, "end": 338.54, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 1, "start": 338.46, "word": "make" }, { "confidence": 0.9980469, "end": 338.69998, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 1, "start": 338.54, "word": "my" }, { "confidence": 1, "end": 338.86, "punctuated_word": "life", "speaker": 0, "speaker_confidence": 1, "start": 338.69998, "word": "life" }, { "confidence": 0.9946289, "end": 339.26, "punctuated_word": "better,", "speaker": 0, "speaker_confidence": 1, "start": 338.86, "word": "better" }, { "confidence": 0.9941406, "end": 339.41998, "punctuated_word": "I'd", "speaker": 0, "speaker_confidence": 1, "start": 339.26, "word": "i'd" }, { "confidence": 0.9921875, "end": 339.58, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 339.41998, "word": "like" }, { "confidence": 0.9863281, "end": 339.66, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 339.58, "word": "to" }, { "confidence": 0.9970703, "end": 339.82, "punctuated_word": "know", "speaker": 0, "speaker_confidence": 0.56347656, "start": 339.66, "word": "know" }, { "confidence": 0.96777344, "end": 339.98, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.56347656, "start": 339.82, "word": "about" }, { "confidence": 0.95874023, "end": 340.13998, "punctuated_word": "it,", "speaker": 0, "speaker_confidence": 0.56347656, "start": 339.98, "word": "it" }, { "confidence": 0.93408203, "end": 340.3, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.56347656, "start": 340.13998, "word": "but" }, { "confidence": 0.9169922, "end": 340.565, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.56347656, "start": 340.3, "word": "i'm" }, { "confidence": 0.5336914, "end": 340.725, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.56347656, "start": 340.565, "word": "by" }, { "confidence": 0.9970703, "end": 340.965, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.56347656, "start": 340.725, "word": "not" }, { "confidence": 0.99609375, "end": 341.005, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.56347656, "start": 340.965, "word": "going" }, { "confidence": 0.99902344, "end": 341.045, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9345703, "start": 341.005, "word": "to" }, { "confidence": 1, "end": 341.285, "punctuated_word": "click", "speaker": 0, "speaker_confidence": 0.9345703, "start": 341.045, "word": "click" }, { "confidence": 0.9970703, "end": 341.445, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.9345703, "start": 341.285, "word": "on" }, { "confidence": 0.8828125, "end": 341.605, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.9345703, "start": 341.445, "word": "one" }, { "confidence": 1, "end": 341.685, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9345703, "start": 341.605, "word": "of" }, { "confidence": 0.99902344, "end": 341.845, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.9345703, "start": 341.685, "word": "your" }, { "confidence": 0.9970703, "end": 342.325, "punctuated_word": "ads.", "speaker": 0, "speaker_confidence": 0.9345703, "start": 341.845, "word": "ads" }, { "confidence": 0.9902344, "end": 342.48502, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.9345703, "start": 342.325, "word": "if" }, { "confidence": 0.99902344, "end": 342.565, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.9345703, "start": 342.48502, "word": "you" }, { "confidence": 1, "end": 342.645, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.9345703, "start": 342.565, "word": "get" }, { "confidence": 1, "end": 342.725, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9345703, "start": 342.645, "word": "a" }, { "confidence": 1, "end": 342.885, "punctuated_word": "lot", "speaker": 0, "speaker_confidence": 0.9345703, "start": 342.725, "word": "lot" }, { "confidence": 0.9970703, "end": 342.965, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9345703, "start": 342.885, "word": "of" }, { "confidence": 1, "end": 343.20502, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.9345703, "start": 342.965, "word": "people" }, { "confidence": 0.90893555, "end": 343.685, "punctuated_word": "excited,", "speaker": 0, "speaker_confidence": 0.9345703, "start": 343.20502, "word": "excited" }, { "confidence": 1, "end": 343.845, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9345703, "start": 343.685, "word": "that" }, { "confidence": 1, "end": 344.085, "punctuated_word": "means", "speaker": 0, "speaker_confidence": 0.9345703, "start": 343.845, "word": "means" }, { "confidence": 0.99316406, "end": 344.325, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.9345703, "start": 344.085, "word": "you're" }, { "confidence": 1, "end": 344.725, "punctuated_word": "probably", "speaker": 0, "speaker_confidence": 0.9345703, "start": 344.325, "word": "probably" }, { "confidence": 0.5, "end": 344.885, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.9345703, "start": 344.725, "word": "on" }, { "confidence": 1, "end": 344.965, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9345703, "start": 344.885, "word": "to" }, { "confidence": 0.77246094, "end": 345.365, "punctuated_word": "something,", "speaker": 0, "speaker_confidence": 0.9345703, "start": 344.965, "word": "something" }, { "confidence": 0.99902344, "end": 345.605, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.9345703, "start": 345.365, "word": "but" }, { "confidence": 0.99316406, "end": 345.765, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9345703, "start": 345.605, "word": "the" }, { "confidence": 1, "end": 346.085, "punctuated_word": "reality", "speaker": 0, "speaker_confidence": 0.9345703, "start": 345.765, "word": "reality" }, { "confidence": 0.99902344, "end": 346.245, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9345703, "start": 346.085, "word": "is" }, { "confidence": 0.9980469, "end": 346.48502, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9345703, "start": 346.245, "word": "that" }, { "confidence": 0.9980469, "end": 346.885, "punctuated_word": "rejection", "speaker": 0, "speaker_confidence": 0.9345703, "start": 346.48502, "word": "rejection" }, { "confidence": 1, "end": 347.045, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9345703, "start": 346.885, "word": "is" }, { "confidence": 1, "end": 347.20502, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 0.9345703, "start": 347.045, "word": "very" }, { "confidence": 0.7895508, "end": 347.685, "punctuated_word": "common,", "speaker": 0, "speaker_confidence": 0.9345703, "start": 347.20502, "word": "common" }, { "confidence": 1, "end": 347.765, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.49414062, "start": 347.685, "word": "and" }, { "confidence": 1, "end": 347.925, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.49414062, "start": 347.765, "word": "you" }, { "confidence": 0.99902344, "end": 348.085, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 0.49414062, "start": 347.925, "word": "might" }, { "confidence": 0.99902344, "end": 348.245, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.49414062, "start": 348.085, "word": "get" }, { "confidence": 1, "end": 348.645, "punctuated_word": "rejected", "speaker": 0, "speaker_confidence": 0.49414062, "start": 348.245, "word": "rejected" }, { "confidence": 0.9970703, "end": 348.805, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.49414062, "start": 348.645, "word": "a" }, { "confidence": 0.99902344, "end": 348.965, "punctuated_word": "bunch", "speaker": 0, "speaker_confidence": 0.49414062, "start": 348.805, "word": "bunch" }, { "confidence": 0.9951172, "end": 349.045, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.56933594, "start": 348.965, "word": "of" }, { "confidence": 0.9980469, "end": 349.365, "punctuated_word": "times", "speaker": 0, "speaker_confidence": 0.56933594, "start": 349.045, "word": "times" }, { "confidence": 0.6796875, "end": 349.605, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 0.56933594, "start": 349.365, "word": "even" }, { "confidence": 0.9980469, "end": 349.685, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.56933594, "start": 349.605, "word": "if" }, { "confidence": 0.9921875, "end": 349.92, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.56933594, "start": 349.685, "word": "you" }, { "confidence": 0.5966797, "end": 350, "punctuated_word": "Have", "speaker": 0, "speaker_confidence": 0.56933594, "start": 349.92, "word": "have" }, { "confidence": 0.9970703, "end": 350.08002, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.86572266, "start": 350, "word": "a" }, { "confidence": 1, "end": 350.32, "punctuated_word": "good", "speaker": 0, "speaker_confidence": 0.86572266, "start": 350.08002, "word": "good" }, { "confidence": 0.94091797, "end": 350.64, "punctuated_word": "idea.", "speaker": 0, "speaker_confidence": 0.86572266, "start": 350.32, "word": "idea" }, { "confidence": 1, "end": 350.96002, "punctuated_word": "So", "speaker": 0, "speaker_confidence": 0.86572266, "start": 350.64, "word": "so" }, { "confidence": 0.9453125, "end": 351.2, "punctuated_word": "another", "speaker": 0, "speaker_confidence": 0.86572266, "start": 350.96002, "word": "another" }, { "confidence": 1, "end": 351.36002, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 0.86572266, "start": 351.2, "word": "way" }, { "confidence": 1, "end": 351.52002, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.86572266, "start": 351.36002, "word": "to" }, { "confidence": 0.99902344, "end": 351.92, "punctuated_word": "validate", "speaker": 0, "speaker_confidence": 0.86572266, "start": 351.52002, "word": "validate" }, { "confidence": 1, "end": 352.08002, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.86572266, "start": 351.92, "word": "your" }, { "confidence": 1, "end": 352.58002, "punctuated_word": "idea", "speaker": 0, "speaker_confidence": 0.86572266, "start": 352.08002, "word": "idea" }, { "confidence": 0.9394531, "end": 352.80002, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.86572266, "start": 352.64, "word": "is" }, { "confidence": 1, "end": 352.88, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.86572266, "start": 352.80002, "word": "to" }, { "confidence": 1, "end": 353.04, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.86572266, "start": 352.88, "word": "get" }, { "confidence": 1, "end": 353.12003, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.86572266, "start": 353.04, "word": "a" }, { "confidence": 1, "end": 353.28, "punctuated_word": "bunch", "speaker": 0, "speaker_confidence": 0.86572266, "start": 353.12003, "word": "bunch" }, { "confidence": 0.99902344, "end": 353.36002, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.86572266, "start": 353.28, "word": "of" }, { "confidence": 1, "end": 353.6, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.86572266, "start": 353.36002, "word": "people" }, { "confidence": 1, "end": 353.76, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.86572266, "start": 353.6, "word": "to" }, { "confidence": 1, "end": 353.92, "punctuated_word": "sign", "speaker": 0, "speaker_confidence": 0.86572266, "start": 353.76, "word": "sign" }, { "confidence": 1, "end": 354.08002, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.86572266, "start": 353.92, "word": "up" }, { "confidence": 1, "end": 354.24002, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.86572266, "start": 354.08002, "word": "for" }, { "confidence": 1, "end": 354.48, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.86572266, "start": 354.24002, "word": "it" }, { "confidence": 0.96435547, "end": 354.80002, "punctuated_word": "before", "speaker": 0, "speaker_confidence": 0.86572266, "start": 354.48, "word": "before" }, { "confidence": 1, "end": 354.96002, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.86572266, "start": 354.80002, "word": "you" }, { "confidence": 1, "end": 355.2, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 0.86572266, "start": 354.96002, "word": "even" }, { "confidence": 0.99902344, "end": 355.36002, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.86572266, "start": 355.2, "word": "build" }, { "confidence": 1, "end": 355.6, "punctuated_word": "it.", "speaker": 0, "speaker_confidence": 0.86572266, "start": 355.36002, "word": "it" }, { "confidence": 1, "end": 355.76, "punctuated_word": "You'll", "speaker": 0, "speaker_confidence": 0.86572266, "start": 355.6, "word": "you'll" }, { "confidence": 1, "end": 355.92, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.86572266, "start": 355.76, "word": "see" }, { "confidence": 0.59765625, "end": 356.32, "punctuated_word": "startups", "speaker": 0, "speaker_confidence": 0.86572266, "start": 355.92, "word": "startups" }, { "confidence": 0.9970703, "end": 356.48, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.86572266, "start": 356.32, "word": "do" }, { "confidence": 0.99902344, "end": 356.64, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.86572266, "start": 356.48, "word": "this" }, { "confidence": 1, "end": 356.80002, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.86572266, "start": 356.64, "word": "all" }, { "confidence": 0.9980469, "end": 356.88, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.97998047, "start": 356.80002, "word": "the" }, { "confidence": 1, "end": 357.12003, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.97998047, "start": 356.88, "word": "time" }, { "confidence": 0.99609375, "end": 357.28, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.97998047, "start": 357.12003, "word": "with" }, { "confidence": 0.9902344, "end": 357.595, "punctuated_word": "wait", "speaker": 0, "speaker_confidence": 0.97998047, "start": 357.28, "word": "wait" }, { "confidence": 0.9057617, "end": 357.835, "punctuated_word": "list.", "speaker": 0, "speaker_confidence": 0.97998047, "start": 357.675, "word": "list" }, { "confidence": 0.99902344, "end": 358.075, "punctuated_word": "What", "speaker": 0, "speaker_confidence": 0.97998047, "start": 357.835, "word": "what" }, { "confidence": 0.9995117, "end": 358.23502, "punctuated_word": "they'll", "speaker": 0, "speaker_confidence": 0.97998047, "start": 358.075, "word": "they'll" }, { "confidence": 1, "end": 358.395, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.97998047, "start": 358.23502, "word": "do" }, { "confidence": 0.99902344, "end": 358.555, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.97998047, "start": 358.395, "word": "is" }, { "confidence": 0.99902344, "end": 358.795, "punctuated_word": "focus", "speaker": 0, "speaker_confidence": 0.97998047, "start": 358.555, "word": "focus" }, { "confidence": 1, "end": 359.035, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.97998047, "start": 358.795, "word": "on" }, { "confidence": 0.99902344, "end": 359.435, "punctuated_word": "marketing", "speaker": 0, "speaker_confidence": 0.97998047, "start": 359.035, "word": "marketing" }, { "confidence": 0.94750977, "end": 359.835, "punctuated_word": "first,", "speaker": 0, "speaker_confidence": 0.97998047, "start": 359.435, "word": "first" }, { "confidence": 1, "end": 359.995, "punctuated_word": "put", "speaker": 0, "speaker_confidence": 0.97998047, "start": 359.835, "word": "put" }, { "confidence": 1, "end": 360.315, "punctuated_word": "together", "speaker": 0, "speaker_confidence": 0.97998047, "start": 359.995, "word": "together" }, { "confidence": 1, "end": 360.395, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.97998047, "start": 360.315, "word": "a" }, { "confidence": 1, "end": 360.635, "punctuated_word": "bunch", "speaker": 0, "speaker_confidence": 0.97998047, "start": 360.395, "word": "bunch" }, { "confidence": 1, "end": 360.795, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.97998047, "start": 360.635, "word": "of" }, { "confidence": 0.98168945, "end": 361.295, "punctuated_word": "promises,", "speaker": 0, "speaker_confidence": 0.97998047, "start": 360.795, "word": "promises" }, { "confidence": 1, "end": 361.515, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.97998047, "start": 361.355, "word": "and" }, { "confidence": 1, "end": 361.675, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.97998047, "start": 361.515, "word": "then" }, { "confidence": 0.9980469, "end": 361.835, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.97998047, "start": 361.675, "word": "build" }, { "confidence": 1, "end": 361.995, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.97998047, "start": 361.835, "word": "up" }, { "confidence": 0.99902344, "end": 362.155, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.97998047, "start": 361.995, "word": "an" }, { "confidence": 1, "end": 362.395, "punctuated_word": "email", "speaker": 0, "speaker_confidence": 0.97998047, "start": 362.155, "word": "email" }, { "confidence": 1, "end": 362.555, "punctuated_word": "list", "speaker": 0, "speaker_confidence": 0.97998047, "start": 362.395, "word": "list" }, { "confidence": 0.99902344, "end": 362.715, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.97998047, "start": 362.555, "word": "that" }, { "confidence": 1, "end": 362.795, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.97998047, "start": 362.715, "word": "they" }, { "confidence": 1, "end": 363.035, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.97998047, "start": 362.795, "word": "can" }, { "confidence": 1, "end": 363.275, "punctuated_word": "engage", "speaker": 0, "speaker_confidence": 0.97998047, "start": 363.035, "word": "engage" }, { "confidence": 0.98828125, "end": 363.435, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.97998047, "start": 363.275, "word": "with" }, { "confidence": 1, "end": 363.595, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.97998047, "start": 363.435, "word": "in" }, { "confidence": 1, "end": 363.675, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.97998047, "start": 363.595, "word": "the" }, { "confidence": 1, "end": 364.075, "punctuated_word": "future.", "speaker": 0, "speaker_confidence": 0.97998047, "start": 363.675, "word": "future" }, { "confidence": 0.9980469, "end": 364.315, "punctuated_word": "Do", "speaker": 0, "speaker_confidence": 0.97998047, "start": 364.075, "word": "do" }, { "confidence": 1, "end": 364.475, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.97998047, "start": 364.315, "word": "not" }, { "confidence": 0.9970703, "end": 364.975, "punctuated_word": "underestimate", "speaker": 0, "speaker_confidence": 0.97998047, "start": 364.475, "word": "underestimate" }, { "confidence": 1, "end": 365.115, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.97998047, "start": 365.035, "word": "the" }, { "confidence": 1, "end": 365.355, "punctuated_word": "power", "speaker": 0, "speaker_confidence": 0.97998047, "start": 365.115, "word": "power" }, { "confidence": 0.99902344, "end": 365.515, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.97998047, "start": 365.355, "word": "of" }, { "confidence": 0.9970703, "end": 365.595, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.97998047, "start": 365.515, "word": "an" }, { "confidence": 0.99902344, "end": 365.915, "punctuated_word": "email", "speaker": 0, "speaker_confidence": 0.97998047, "start": 365.595, "word": "email" }, { "confidence": 0.98535156, "end": 366.235, "punctuated_word": "list.", "speaker": 0, "speaker_confidence": 0.97998047, "start": 365.915, "word": "list" }, { "confidence": 0.91137695, "end": 366.68, "punctuated_word": "Nobody's", "speaker": 0, "speaker_confidence": 0.97998047, "start": 366.235, "word": "nobody's" }, { "confidence": 0.95410156, "end": 366.84, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.97998047, "start": 366.68, "word": "going" }, { "confidence": 1, "end": 366.91998, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.97998047, "start": 366.84, "word": "to" }, { "confidence": 1, "end": 367, "punctuated_word": "sign", "speaker": 0, "speaker_confidence": 0.97998047, "start": 366.91998, "word": "sign" }, { "confidence": 0.99902344, "end": 367.08, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.79541016, "start": 367, "word": "up" }, { "confidence": 0.99902344, "end": 367.16, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.79541016, "start": 367.08, "word": "for" }, { "confidence": 0.99902344, "end": 367.4, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.79541016, "start": 367.16, "word": "an" }, { "confidence": 1, "end": 367.72, "punctuated_word": "email", "speaker": 0, "speaker_confidence": 0.79541016, "start": 367.4, "word": "email" }, { "confidence": 0.98828125, "end": 368.12, "punctuated_word": "list", "speaker": 0, "speaker_confidence": 0.79541016, "start": 367.72, "word": "list" }, { "confidence": 0.86621094, "end": 368.44, "punctuated_word": "unless", "speaker": 0, "speaker_confidence": 0.79541016, "start": 368.12, "word": "unless" }, { "confidence": 1, "end": 368.6, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.79541016, "start": 368.44, "word": "they" }, { "confidence": 1, "end": 368.91998, "punctuated_word": "truly", "speaker": 0, "speaker_confidence": 0.79541016, "start": 368.6, "word": "truly" }, { "confidence": 0.99902344, "end": 369.08, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.79541016, "start": 368.91998, "word": "want" }, { "confidence": 1, "end": 369.24, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.79541016, "start": 369.08, "word": "what" }, { "confidence": 0.99902344, "end": 369.4, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.79541016, "start": 369.24, "word": "you're" }, { "confidence": 1, "end": 369.8, "punctuated_word": "selling.", "speaker": 0, "speaker_confidence": 0.79541016, "start": 369.4, "word": "selling" }, { "confidence": 0.99902344, "end": 369.96, "punctuated_word": "On", "speaker": 0, "speaker_confidence": 0.79541016, "start": 369.8, "word": "on" }, { "confidence": 1, "end": 370.12, "punctuated_word": "top", "speaker": 0, "speaker_confidence": 0.79541016, "start": 369.96, "word": "top" }, { "confidence": 1, "end": 370.19998, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.6542969, "start": 370.12, "word": "of" }, { "confidence": 0.9980469, "end": 370.36, "punctuated_word": "that,", "speaker": 0, "speaker_confidence": 0.6542969, "start": 370.19998, "word": "that" }, { "confidence": 1, "end": 370.6, "punctuated_word": "once", "speaker": 0, "speaker_confidence": 0.6542969, "start": 370.36, "word": "once" }, { "confidence": 1, "end": 370.68, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.6542969, "start": 370.6, "word": "you" }, { "confidence": 1, "end": 370.84, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.6542969, "start": 370.68, "word": "have" }, { "confidence": 0.99902344, "end": 371, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.6542969, "start": 370.84, "word": "an" }, { "confidence": 1, "end": 371.24, "punctuated_word": "email", "speaker": 0, "speaker_confidence": 0.6542969, "start": 371, "word": "email" }, { "confidence": 0.9975586, "end": 371.63998, "punctuated_word": "list,", "speaker": 0, "speaker_confidence": 0.6542969, "start": 371.24, "word": "list" }, { "confidence": 0.99902344, "end": 371.72, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.6542969, "start": 371.63998, "word": "you" }, { "confidence": 1, "end": 371.88, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.6542969, "start": 371.72, "word": "can" }, { "confidence": 1, "end": 372.03998, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.6542969, "start": 371.88, "word": "use" }, { "confidence": 0.9980469, "end": 372.12, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.67578125, "start": 372.03998, "word": "it" }, { "confidence": 0.9980469, "end": 372.28, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.67578125, "start": 372.12, "word": "to" }, { "confidence": 1, "end": 372.6, "punctuated_word": "invite", "speaker": 0, "speaker_confidence": 0.67578125, "start": 372.28, "word": "invite" }, { "confidence": 1, "end": 372.84, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.67578125, "start": 372.6, "word": "people" }, { "confidence": 0.99316406, "end": 373, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.67578125, "start": 372.84, "word": "to" }, { "confidence": 0.99121094, "end": 373.16, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.67578125, "start": 373, "word": "a" }, { "confidence": 0.7495117, "end": 373.66, "punctuated_word": "Discord", "speaker": 0, "speaker_confidence": 0.67578125, "start": 373.16, "word": "discord" }, { "confidence": 0.56811523, "end": 373.935, "punctuated_word": "rover,", "speaker": 0, "speaker_confidence": 0.67578125, "start": 373.695, "word": "rover" }, { "confidence": 0.99902344, "end": 374.095, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.67578125, "start": 373.935, "word": "and" }, { "confidence": 0.9980469, "end": 374.17502, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.53515625, "start": 374.095, "word": "from" }, { "confidence": 0.8027344, "end": 374.415, "punctuated_word": "there,", "speaker": 0, "speaker_confidence": 0.53515625, "start": 374.17502, "word": "there" }, { "confidence": 0.9980469, "end": 374.655, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.53515625, "start": 374.415, "word": "you're" }, { "confidence": 1, "end": 375.055, "punctuated_word": "directly", "speaker": 0, "speaker_confidence": 0.53515625, "start": 374.655, "word": "directly" }, { "confidence": 1, "end": 375.535, "punctuated_word": "engaging", "speaker": 0, "speaker_confidence": 0.53515625, "start": 375.055, "word": "engaging" }, { "confidence": 1, "end": 375.61502, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.92089844, "start": 375.535, "word": "with" }, { "confidence": 1, "end": 375.855, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.92089844, "start": 375.61502, "word": "your" }, { "confidence": 1, "end": 376.17502, "punctuated_word": "target", "speaker": 0, "speaker_confidence": 0.92089844, "start": 375.855, "word": "target" }, { "confidence": 0.99902344, "end": 376.67502, "punctuated_word": "customers.", "speaker": 0, "speaker_confidence": 0.92089844, "start": 376.17502, "word": "customers" }, { "confidence": 1, "end": 376.89502, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.92089844, "start": 376.73502, "word": "you" }, { "confidence": 1, "end": 377.055, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.92089844, "start": 376.89502, "word": "can" }, { "confidence": 1, "end": 377.295, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 0.92089844, "start": 377.055, "word": "even" }, { "confidence": 1, "end": 377.375, "punctuated_word": "give", "speaker": 0, "speaker_confidence": 0.92089844, "start": 377.295, "word": "give" }, { "confidence": 1, "end": 377.61502, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.92089844, "start": 377.375, "word": "them" }, { "confidence": 1, "end": 377.935, "punctuated_word": "early", "speaker": 0, "speaker_confidence": 0.92089844, "start": 377.61502, "word": "early" }, { "confidence": 1, "end": 378.415, "punctuated_word": "access", "speaker": 0, "speaker_confidence": 0.92089844, "start": 377.935, "word": "access" }, { "confidence": 0.97998047, "end": 378.575, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.92089844, "start": 378.415, "word": "in" }, { "confidence": 1, "end": 378.89502, "punctuated_word": "exchange", "speaker": 0, "speaker_confidence": 0.92089844, "start": 378.575, "word": "exchange" }, { "confidence": 0.99902344, "end": 379.135, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.92089844, "start": 378.89502, "word": "for" }, { "confidence": 1, "end": 379.535, "punctuated_word": "feedback", "speaker": 0, "speaker_confidence": 0.92089844, "start": 379.135, "word": "feedback" }, { "confidence": 0.99902344, "end": 379.695, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.92089844, "start": 379.535, "word": "about" }, { "confidence": 1, "end": 379.855, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.92089844, "start": 379.695, "word": "what" }, { "confidence": 1, "end": 380.17502, "punctuated_word": "works", "speaker": 0, "speaker_confidence": 0.92089844, "start": 379.855, "word": "works" }, { "confidence": 0.9902344, "end": 380.33502, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.92089844, "start": 380.17502, "word": "and" }, { "confidence": 0.99902344, "end": 380.495, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.92089844, "start": 380.33502, "word": "what" }, { "confidence": 1, "end": 380.89502, "punctuated_word": "doesn't.", "speaker": 0, "speaker_confidence": 0.92089844, "start": 380.495, "word": "doesn't" }, { "confidence": 0.9995117, "end": 381.055, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.92089844, "start": 380.89502, "word": "it's" }, { "confidence": 0.99902344, "end": 381.215, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 0.92089844, "start": 381.055, "word": "way" }, { "confidence": 1, "end": 381.55, "punctuated_word": "easier", "speaker": 0, "speaker_confidence": 0.92089844, "start": 381.215, "word": "easier" }, { "confidence": 1, "end": 381.78998, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.92089844, "start": 381.62997, "word": "to" }, { "confidence": 0.99902344, "end": 382.19, "punctuated_word": "validate", "speaker": 0, "speaker_confidence": 0.92089844, "start": 381.78998, "word": "validate" }, { "confidence": 1, "end": 382.66998, "punctuated_word": "ideas", "speaker": 0, "speaker_confidence": 0.92089844, "start": 382.19, "word": "ideas" }, { "confidence": 0.9428711, "end": 382.83, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.84814453, "start": 382.66998, "word": "when" }, { "confidence": 1, "end": 382.90997, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.84814453, "start": 382.83, "word": "you" }, { "confidence": 1, "end": 383.06998, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.84814453, "start": 382.90997, "word": "have" }, { "confidence": 1, "end": 383.15, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.84814453, "start": 383.06998, "word": "a" }, { "confidence": 1, "end": 383.31, "punctuated_word": "bunch", "speaker": 0, "speaker_confidence": 0.84814453, "start": 383.15, "word": "bunch" }, { "confidence": 1, "end": 383.47, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.84814453, "start": 383.31, "word": "of" }, { "confidence": 1, "end": 383.97, "punctuated_word": "collaborators", "speaker": 0, "speaker_confidence": 0.84814453, "start": 383.47, "word": "collaborators" }, { "confidence": 0.99316406, "end": 384.34998, "punctuated_word": "who", "speaker": 0, "speaker_confidence": 0.84814453, "start": 384.11, "word": "who" }, { "confidence": 1, "end": 384.50998, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.84814453, "start": 384.34998, "word": "see" }, { "confidence": 0.99902344, "end": 384.66998, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.84814453, "start": 384.50998, "word": "the" }, { "confidence": 1, "end": 384.99, "punctuated_word": "value", "speaker": 0, "speaker_confidence": 0.84814453, "start": 384.66998, "word": "value" }, { "confidence": 1, "end": 385.15, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.84814453, "start": 384.99, "word": "in" }, { "confidence": 1, "end": 385.31, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.84814453, "start": 385.15, "word": "your" }, { "confidence": 0.9770508, "end": 385.81, "punctuated_word": "ideas.", "speaker": 0, "speaker_confidence": 0.84814453, "start": 385.31, "word": "ideas" }, { "confidence": 0.9980469, "end": 386.11, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.84814453, "start": 385.87, "word": "then" }, { "confidence": 0.5234375, "end": 386.34998, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.84814453, "start": 386.11, "word": "as" }, { "confidence": 1, "end": 386.43, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.84814453, "start": 386.34998, "word": "you" }, { "confidence": 0.9980469, "end": 386.66998, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 0.84814453, "start": 386.43, "word": "start" }, { "confidence": 0.9980469, "end": 387.06998, "punctuated_word": "actually", "speaker": 0, "speaker_confidence": 0.84814453, "start": 386.66998, "word": "actually" }, { "confidence": 1, "end": 387.47, "punctuated_word": "delivering", "speaker": 0, "speaker_confidence": 0.84814453, "start": 387.06998, "word": "delivering" }, { "confidence": 0.99902344, "end": 387.62997, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.84814453, "start": 387.47, "word": "on" }, { "confidence": 1, "end": 387.78998, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.84814453, "start": 387.62997, "word": "your" }, { "confidence": 0.99658203, "end": 388.28998, "punctuated_word": "idea,", "speaker": 0, "speaker_confidence": 0.84814453, "start": 387.78998, "word": "idea" }, { "confidence": 0.99902344, "end": 388.50998, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 1, "start": 388.34998, "word": "this" }, { "confidence": 1, "end": 388.90997, "punctuated_word": "community", "speaker": 0, "speaker_confidence": 1, "start": 388.50998, "word": "community" }, { "confidence": 1, "end": 389.06998, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 1, "start": 388.90997, "word": "will" }, { "confidence": 0.99902344, "end": 389.22998, "punctuated_word": "help", "speaker": 0, "speaker_confidence": 1, "start": 389.06998, "word": "help" }, { "confidence": 1, "end": 389.55, "punctuated_word": "promote", "speaker": 0, "speaker_confidence": 1, "start": 389.22998, "word": "promote" }, { "confidence": 0.9980469, "end": 389.62997, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 389.55, "word": "the" }, { "confidence": 1, "end": 390.11, "punctuated_word": "project", "speaker": 0, "speaker_confidence": 1, "start": 389.62997, "word": "project" }, { "confidence": 0.9116211, "end": 390.395, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 1, "start": 390.11, "word": "because" }, { "confidence": 0.9658203, "end": 390.47498, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 1, "start": 390.395, "word": "as" }, { "confidence": 0.99902344, "end": 390.63498, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 390.47498, "word": "you" }, { "confidence": 0.61083984, "end": 390.79498, "punctuated_word": "created", "speaker": 0, "speaker_confidence": 1, "start": 390.63498, "word": "created" }, { "confidence": 1, "end": 391.19498, "punctuated_word": "something", "speaker": 0, "speaker_confidence": 1, "start": 390.79498, "word": "something" }, { "confidence": 0.99902344, "end": 391.35498, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 391.19498, "word": "that" }, { "confidence": 0.99902344, "end": 391.595, "punctuated_word": "adds", "speaker": 0, "speaker_confidence": 1, "start": 391.35498, "word": "adds" }, { "confidence": 0.99902344, "end": 391.91498, "punctuated_word": "value", "speaker": 0, "speaker_confidence": 1, "start": 391.595, "word": "value" }, { "confidence": 0.99902344, "end": 392.07498, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 391.91498, "word": "to" }, { "confidence": 0.99658203, "end": 392.395, "punctuated_word": "people's", "speaker": 0, "speaker_confidence": 1, "start": 392.07498, "word": "people's" }, { "confidence": 0.9951172, "end": 392.875, "punctuated_word": "lives.", "speaker": 0, "speaker_confidence": 1, "start": 392.395, "word": "lives" }, { "confidence": 0.99902344, "end": 393.035, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 1, "start": 392.875, "word": "it's" }, { "confidence": 1, "end": 393.19498, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 393.035, "word": "a" }, { "confidence": 1, "end": 393.35498, "punctuated_word": "win", "speaker": 0, "speaker_confidence": 1, "start": 393.19498, "word": "win" }, { "confidence": 0.99609375, "end": 393.595, "punctuated_word": "win", "speaker": 0, "speaker_confidence": 1, "start": 393.35498, "word": "win" }, { "confidence": 1, "end": 393.75497, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 393.595, "word": "for" }, { "confidence": 0.99560547, "end": 394.235, "punctuated_word": "everybody.", "speaker": 0, "speaker_confidence": 1, "start": 393.75497, "word": "everybody" }, { "confidence": 0.99609375, "end": 394.47498, "punctuated_word": "Sam", "speaker": 0, "speaker_confidence": 1, "start": 394.235, "word": "sam" }, { "confidence": 0.9770508, "end": 394.79498, "punctuated_word": "Altman", "speaker": 0, "speaker_confidence": 1, "start": 394.47498, "word": "altman" }, { "confidence": 0.97314453, "end": 394.955, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 394.79498, "word": "of" }, { "confidence": 0.88671875, "end": 395.19498, "punctuated_word": "Y", "speaker": 0, "speaker_confidence": 1, "start": 394.955, "word": "y" }, { "confidence": 0.9926758, "end": 395.675, "punctuated_word": "Combinator", "speaker": 0, "speaker_confidence": 1, "start": 395.19498, "word": "combinator" }, { "confidence": 0.81933594, "end": 395.75497, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 395.675, "word": "and" }, { "confidence": 0.7573242, "end": 396.25497, "punctuated_word": "OpenAI", "speaker": 0, "speaker_confidence": 1, "start": 395.75497, "word": "openai" }, { "confidence": 0.81640625, "end": 396.79498, "punctuated_word": "said", "speaker": 0, "speaker_confidence": 1, "start": 396.555, "word": "said" }, { "confidence": 0.57128906, "end": 396.875, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 396.79498, "word": "the" }, { "confidence": 0.99902344, "end": 397.115, "punctuated_word": "single", "speaker": 0, "speaker_confidence": 1, "start": 396.875, "word": "single" }, { "confidence": 1, "end": 397.35498, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 1, "start": 397.115, "word": "most" }, { "confidence": 1, "end": 397.675, "punctuated_word": "important", "speaker": 0, "speaker_confidence": 1, "start": 397.35498, "word": "important" }, { "confidence": 0.99902344, "end": 397.91498, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 1, "start": 397.675, "word": "thing" }, { "confidence": 0.9980469, "end": 397.995, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 397.91498, "word": "in" }, { "confidence": 0.9970703, "end": 398.07498, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 397.995, "word": "a" }, { "confidence": 0.625, "end": 398.47498, "punctuated_word": "startup", "speaker": 0, "speaker_confidence": 1, "start": 398.07498, "word": "startup" }, { "confidence": 0.9819336, "end": 398.715, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 398.47498, "word": "is" }, { "confidence": 1, "end": 398.875, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 398.715, "word": "to" }, { "confidence": 1, "end": 399.115, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 1, "start": 398.875, "word": "create" }, { "confidence": 0.9980469, "end": 399.19498, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 399.115, "word": "a" }, { "confidence": 1, "end": 399.63, "punctuated_word": "product", "speaker": 0, "speaker_confidence": 1, "start": 399.19498, "word": "product" }, { "confidence": 0.42358398, "end": 399.79, "punctuated_word": "So", "speaker": 0, "speaker_confidence": 1, "start": 399.71, "word": "so" }, { "confidence": 0.99609375, "end": 400.03, "punctuated_word": "good", "speaker": 0, "speaker_confidence": 1, "start": 399.79, "word": "good" }, { "confidence": 0.9316406, "end": 400.11002, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 400.03, "word": "that" }, { "confidence": 0.9980469, "end": 400.43, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 1, "start": 400.11002, "word": "people" }, { "confidence": 0.99902344, "end": 400.59, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 1, "start": 400.43, "word": "will" }, { "confidence": 1, "end": 400.75, "punctuated_word": "tell", "speaker": 0, "speaker_confidence": 1, "start": 400.59, "word": "tell" }, { "confidence": 1, "end": 400.91, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 1, "start": 400.75, "word": "their" }, { "confidence": 1, "end": 401.15, "punctuated_word": "friends", "speaker": 0, "speaker_confidence": 1, "start": 400.91, "word": "friends" }, { "confidence": 1, "end": 401.39, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 1, "start": 401.15, "word": "about" }, { "confidence": 0.86376953, "end": 401.63, "punctuated_word": "it,", "speaker": 0, "speaker_confidence": 1, "start": 401.39, "word": "it" }, { "confidence": 0.9980469, "end": 401.79, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 1, "start": 401.63, "word": "but" }, { "confidence": 0.9980469, "end": 401.95, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 401.79, "word": "you" }, { "confidence": 1, "end": 402.11002, "punctuated_word": "won't", "speaker": 0, "speaker_confidence": 1, "start": 401.95, "word": "won't" }, { "confidence": 1, "end": 402.27002, "punctuated_word": "know", "speaker": 0, "speaker_confidence": 1, "start": 402.11002, "word": "know" }, { "confidence": 1, "end": 402.35, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 1, "start": 402.27002, "word": "if" }, { "confidence": 1, "end": 402.43, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 402.35, "word": "you" }, { "confidence": 0.99902344, "end": 402.59, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.7265625, "start": 402.43, "word": "have" }, { "confidence": 0.99902344, "end": 402.67, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7265625, "start": 402.59, "word": "a" }, { "confidence": 1, "end": 402.83002, "punctuated_word": "good", "speaker": 0, "speaker_confidence": 0.7265625, "start": 402.67, "word": "good" }, { "confidence": 1, "end": 403.23, "punctuated_word": "product", "speaker": 0, "speaker_confidence": 0.7265625, "start": 402.83002, "word": "product" }, { "confidence": 0.9980469, "end": 403.47, "punctuated_word": "until", "speaker": 0, "speaker_confidence": 0.7265625, "start": 403.23, "word": "until" }, { "confidence": 1, "end": 403.63, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7265625, "start": 403.47, "word": "you" }, { "confidence": 0.9980469, "end": 403.87, "punctuated_word": "actually", "speaker": 0, "speaker_confidence": 0.7265625, "start": 403.63, "word": "actually" }, { "confidence": 0.99121094, "end": 404.11002, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.7265625, "start": 403.87, "word": "build" }, { "confidence": 0.99902344, "end": 404.35, "punctuated_word": "it.", "speaker": 0, "speaker_confidence": 0.7265625, "start": 404.11002, "word": "it" }, { "confidence": 0.87939453, "end": 404.67, "punctuated_word": "Usually,", "speaker": 0, "speaker_confidence": 0.7265625, "start": 404.35, "word": "usually" }, { "confidence": 1, "end": 404.75, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.7265625, "start": 404.67, "word": "when" }, { "confidence": 0.99902344, "end": 404.83002, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.73876953, "start": 404.75, "word": "i" }, { "confidence": 0.99902344, "end": 404.99, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.73876953, "start": 404.83002, "word": "have" }, { "confidence": 0.9941406, "end": 405.15, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.73876953, "start": 404.99, "word": "an" }, { "confidence": 0.9758301, "end": 405.65, "punctuated_word": "idea,", "speaker": 0, "speaker_confidence": 0.73876953, "start": 405.15, "word": "idea" }, { "confidence": 0.9951172, "end": 405.79, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.73876953, "start": 405.71, "word": "i" }, { "confidence": 0.9980469, "end": 406.03, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.73876953, "start": 405.79, "word": "have" }, { "confidence": 0.92333984, "end": 406.27002, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.73876953, "start": 406.03, "word": "one" }, { "confidence": 0.9863281, "end": 406.51, "punctuated_word": "core", "speaker": 0, "speaker_confidence": 0.73876953, "start": 406.27002, "word": "core" }, { "confidence": 0.90527344, "end": 406.99, "punctuated_word": "feature,", "speaker": 0, "speaker_confidence": 0.73876953, "start": 406.51, "word": "feature" }, { "confidence": 0.99316406, "end": 407.15, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.73876953, "start": 406.99, "word": "but" }, { "confidence": 0.98535156, "end": 407.39, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.73876953, "start": 407.15, "word": "then" }, { "confidence": 0.9614258, "end": 407.47, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.73876953, "start": 407.39, "word": "a" }, { "confidence": 0.9951172, "end": 407.55002, "punctuated_word": "bunch", "speaker": 0, "speaker_confidence": 0.8798828, "start": 407.47, "word": "bunch" }, { "confidence": 0.9301758, "end": 407.995, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8798828, "start": 407.55002, "word": "of" }, { "confidence": 0.8833008, "end": 408.395, "punctuated_word": "optional", "speaker": 0, "speaker_confidence": 0.8798828, "start": 408.07498, "word": "optional" }, { "confidence": 0.9902344, "end": 408.715, "punctuated_word": "supporting", "speaker": 0, "speaker_confidence": 0.8798828, "start": 408.395, "word": "supporting" }, { "confidence": 1, "end": 408.955, "punctuated_word": "features", "speaker": 0, "speaker_confidence": 0.8798828, "start": 408.715, "word": "features" }, { "confidence": 0.99902344, "end": 409.195, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8798828, "start": 408.955, "word": "that" }, { "confidence": 0.9970703, "end": 409.275, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.8798828, "start": 409.195, "word": "i" }, { "confidence": 0.80371094, "end": 409.435, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.8798828, "start": 409.275, "word": "want" }, { "confidence": 0.9902344, "end": 409.51498, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8798828, "start": 409.435, "word": "to" }, { "confidence": 1, "end": 409.675, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.8798828, "start": 409.51498, "word": "add" }, { "confidence": 0.8642578, "end": 409.835, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8798828, "start": 409.675, "word": "on" }, { "confidence": 0.99902344, "end": 409.915, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8798828, "start": 409.835, "word": "to" }, { "confidence": 0.93188477, "end": 410.235, "punctuated_word": "it.", "speaker": 0, "speaker_confidence": 0.8798828, "start": 409.915, "word": "it" }, { "confidence": 0.9970703, "end": 410.555, "punctuated_word": "Avoid", "speaker": 0, "speaker_confidence": 0.8798828, "start": 410.235, "word": "avoid" }, { "confidence": 1, "end": 410.635, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8798828, "start": 410.555, "word": "the" }, { "confidence": 0.99902344, "end": 411.115, "punctuated_word": "temptation", "speaker": 0, "speaker_confidence": 0.8798828, "start": 410.635, "word": "temptation" }, { "confidence": 1, "end": 411.275, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8798828, "start": 411.115, "word": "to" }, { "confidence": 0.9980469, "end": 411.595, "punctuated_word": "ship", "speaker": 0, "speaker_confidence": 0.8798828, "start": 411.275, "word": "ship" }, { "confidence": 1, "end": 411.675, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8798828, "start": 411.595, "word": "a" }, { "confidence": 1, "end": 411.835, "punctuated_word": "whole", "speaker": 0, "speaker_confidence": 0.8798828, "start": 411.675, "word": "whole" }, { "confidence": 1, "end": 412.07498, "punctuated_word": "bunch", "speaker": 0, "speaker_confidence": 0.8798828, "start": 411.835, "word": "bunch" }, { "confidence": 0.99902344, "end": 412.155, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8798828, "start": 412.07498, "word": "of" }, { "confidence": 1, "end": 412.475, "punctuated_word": "features", "speaker": 0, "speaker_confidence": 0.8798828, "start": 412.155, "word": "features" }, { "confidence": 0.99902344, "end": 412.635, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.8798828, "start": 412.475, "word": "all" }, { "confidence": 0.9970703, "end": 412.79498, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.8798828, "start": 412.635, "word": "at" }, { "confidence": 0.7480469, "end": 413.115, "punctuated_word": "once,", "speaker": 0, "speaker_confidence": 0.8798828, "start": 412.79498, "word": "once" }, { "confidence": 0.9941406, "end": 413.51498, "punctuated_word": "instead", "speaker": 0, "speaker_confidence": 0.8798828, "start": 413.115, "word": "instead" }, { "confidence": 0.8598633, "end": 413.835, "punctuated_word": "focus", "speaker": 0, "speaker_confidence": 0.8798828, "start": 413.51498, "word": "focus" }, { "confidence": 1, "end": 413.915, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8798828, "start": 413.835, "word": "on" }, { "confidence": 1, "end": 414.07498, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.94433594, "start": 413.915, "word": "the" }, { "confidence": 0.99902344, "end": 414.315, "punctuated_word": "core", "speaker": 0, "speaker_confidence": 0.94433594, "start": 414.07498, "word": "core" }, { "confidence": 1, "end": 414.79498, "punctuated_word": "problem", "speaker": 0, "speaker_confidence": 0.94433594, "start": 414.315, "word": "problem" }, { "confidence": 0.9536133, "end": 414.955, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.94433594, "start": 414.79498, "word": "to" }, { "confidence": 1, "end": 415.035, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.94433594, "start": 414.955, "word": "get" }, { "confidence": 0.99902344, "end": 415.275, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.94433594, "start": 415.035, "word": "an" }, { "confidence": 0.9921875, "end": 415.675, "punctuated_word": "MVP", "speaker": 0, "speaker_confidence": 0.94433594, "start": 415.275, "word": "mvp" }, { "confidence": 1, "end": 415.835, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.94433594, "start": 415.675, "word": "out" }, { "confidence": 0.9980469, "end": 415.995, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.94433594, "start": 415.835, "word": "there" }, { "confidence": 0.99902344, "end": 416.495, "punctuated_word": "quickly", "speaker": 0, "speaker_confidence": 0.94433594, "start": 415.995, "word": "quickly" }, { "confidence": 0.9970703, "end": 416.73, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.94433594, "start": 416.57, "word": "and" }, { "confidence": 0.9980469, "end": 416.97, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.94433594, "start": 416.73, "word": "some" }, { "confidence": 1, "end": 417.13, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 0.94433594, "start": 416.97, "word": "real" }, { "confidence": 1, "end": 417.53, "punctuated_word": "users", "speaker": 0, "speaker_confidence": 0.94433594, "start": 417.13, "word": "users" }, { "confidence": 0.99609375, "end": 417.69, "punctuated_word": "who", "speaker": 0, "speaker_confidence": 0.94433594, "start": 417.53, "word": "who" }, { "confidence": 0.99902344, "end": 417.85, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.94433594, "start": 417.69, "word": "can" }, { "confidence": 1, "end": 418.25, "punctuated_word": "validate", "speaker": 0, "speaker_confidence": 0.94433594, "start": 417.85, "word": "validate" }, { "confidence": 1, "end": 418.33002, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.94433594, "start": 418.25, "word": "the" }, { "confidence": 1, "end": 418.83002, "punctuated_word": "idea.", "speaker": 0, "speaker_confidence": 0.94433594, "start": 418.33002, "word": "idea" }, { "confidence": 0.98828125, "end": 419.29, "punctuated_word": "Software", "speaker": 0, "speaker_confidence": 0.94433594, "start": 418.89, "word": "software" }, { "confidence": 0.9838867, "end": 419.79, "punctuated_word": "development", "speaker": 0, "speaker_confidence": 0.94433594, "start": 419.29, "word": "development" }, { "confidence": 0.99902344, "end": 420.25, "punctuated_word": "almost", "speaker": 0, "speaker_confidence": 0.94433594, "start": 419.93, "word": "almost" }, { "confidence": 1, "end": 420.41, "punctuated_word": "never", "speaker": 0, "speaker_confidence": 0.94433594, "start": 420.25, "word": "never" }, { "confidence": 1, "end": 420.65, "punctuated_word": "goes", "speaker": 0, "speaker_confidence": 0.94433594, "start": 420.41, "word": "goes" }, { "confidence": 1, "end": 420.97, "punctuated_word": "according", "speaker": 0, "speaker_confidence": 0.94433594, "start": 420.65, "word": "according" }, { "confidence": 0.99902344, "end": 421.13, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.94433594, "start": 420.97, "word": "to" }, { "confidence": 0.9970703, "end": 421.45, "punctuated_word": "plan.", "speaker": 0, "speaker_confidence": 0.94433594, "start": 421.13, "word": "plan" }, { "confidence": 1, "end": 421.53, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.94433594, "start": 421.45, "word": "the" }, { "confidence": 1, "end": 421.69, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.94433594, "start": 421.53, "word": "end" }, { "confidence": 0.9980469, "end": 422.01, "punctuated_word": "result", "speaker": 0, "speaker_confidence": 0.94433594, "start": 421.69, "word": "result" }, { "confidence": 0.99902344, "end": 422.25, "punctuated_word": "ends", "speaker": 0, "speaker_confidence": 0.94433594, "start": 422.01, "word": "ends" }, { "confidence": 1, "end": 422.33002, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.94433594, "start": 422.25, "word": "up" }, { "confidence": 1, "end": 422.65, "punctuated_word": "looking", "speaker": 0, "speaker_confidence": 0.94433594, "start": 422.33002, "word": "looking" }, { "confidence": 1, "end": 422.97, "punctuated_word": "different", "speaker": 0, "speaker_confidence": 0.94433594, "start": 422.65, "word": "different" }, { "confidence": 0.9980469, "end": 423.13, "punctuated_word": "than", "speaker": 0, "speaker_confidence": 0.94433594, "start": 422.97, "word": "than" }, { "confidence": 1, "end": 423.21002, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.94433594, "start": 423.13, "word": "the" }, { "confidence": 1, "end": 423.53, "punctuated_word": "initial", "speaker": 0, "speaker_confidence": 0.94433594, "start": 423.21002, "word": "initial" }, { "confidence": 1, "end": 424.03, "punctuated_word": "vision", "speaker": 0, "speaker_confidence": 0.94433594, "start": 423.53, "word": "vision" }, { "confidence": 1, "end": 424.275, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.94433594, "start": 424.115, "word": "because" }, { "confidence": 0.9995117, "end": 424.435, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.94433594, "start": 424.275, "word": "it's" }, { "confidence": 1, "end": 424.755, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 0.94433594, "start": 424.435, "word": "really" }, { "confidence": 1, "end": 424.995, "punctuated_word": "hard", "speaker": 0, "speaker_confidence": 0.94433594, "start": 424.755, "word": "hard" }, { "confidence": 0.99902344, "end": 425.155, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.94433594, "start": 424.995, "word": "to" }, { "confidence": 1, "end": 425.475, "punctuated_word": "predict", "speaker": 0, "speaker_confidence": 0.94433594, "start": 425.155, "word": "predict" }, { "confidence": 0.99902344, "end": 425.635, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.94433594, "start": 425.475, "word": "what" }, { "confidence": 1, "end": 425.795, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.94433594, "start": 425.635, "word": "the" }, { "confidence": 1, "end": 425.95502, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.94433594, "start": 425.795, "word": "end" }, { "confidence": 0.9980469, "end": 426.275, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 0.94433594, "start": 425.95502, "word": "user" }, { "confidence": 0.99902344, "end": 426.595, "punctuated_word": "actually", "speaker": 0, "speaker_confidence": 0.94433594, "start": 426.275, "word": "actually" }, { "confidence": 0.8964844, "end": 427.095, "punctuated_word": "wants.", "speaker": 0, "speaker_confidence": 0.94433594, "start": 426.595, "word": "wants" }, { "confidence": 0.99609375, "end": 427.395, "punctuated_word": "Build", "speaker": 0, "speaker_confidence": 0.94433594, "start": 427.155, "word": "build" }, { "confidence": 1, "end": 427.715, "punctuated_word": "something", "speaker": 0, "speaker_confidence": 0.94433594, "start": 427.395, "word": "something" }, { "confidence": 0.99609375, "end": 427.875, "punctuated_word": "lean", "speaker": 0, "speaker_confidence": 0.94433594, "start": 427.715, "word": "lean" }, { "confidence": 0.9980469, "end": 428.035, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.94433594, "start": 427.875, "word": "and" }, { "confidence": 0.9814453, "end": 428.535, "punctuated_word": "focused,", "speaker": 0, "speaker_confidence": 0.94433594, "start": 428.035, "word": "focused" }, { "confidence": 1, "end": 428.835, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.94433594, "start": 428.595, "word": "get" }, { "confidence": 1, "end": 428.915, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.94433594, "start": 428.835, "word": "a" }, { "confidence": 0.9255371, "end": 429.23502, "punctuated_word": "user,", "speaker": 0, "speaker_confidence": 1, "start": 428.915, "word": "user" }, { "confidence": 0.99902344, "end": 429.395, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 429.23502, "word": "and" }, { "confidence": 1, "end": 429.635, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 1, "start": 429.395, "word": "then" }, { "confidence": 0.99609375, "end": 429.795, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 1, "start": 429.635, "word": "build" }, { "confidence": 0.99902344, "end": 429.95502, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 1, "start": 429.795, "word": "up" }, { "confidence": 0.99902344, "end": 430.115, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 429.95502, "word": "an" }, { "confidence": 0.9941406, "end": 430.435, "punctuated_word": "empire", "speaker": 0, "speaker_confidence": 1, "start": 430.115, "word": "empire" }, { "confidence": 0.9980469, "end": 430.595, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 1, "start": 430.435, "word": "from" }, { "confidence": 1, "end": 430.835, "punctuated_word": "there.", "speaker": 0, "speaker_confidence": 1, "start": 430.595, "word": "there" }, { "confidence": 1, "end": 430.995, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 1, "start": 430.835, "word": "you" }, { "confidence": 1, "end": 431.155, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 430.995, "word": "can" }, { "confidence": 1, "end": 431.475, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 1, "start": 431.155, "word": "also" }, { "confidence": 0.9980469, "end": 431.715, "punctuated_word": "launch", "speaker": 0, "speaker_confidence": 1, "start": 431.475, "word": "launch" }, { "confidence": 0.9902344, "end": 431.795, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 1, "start": 431.715, "word": "on" }, { "confidence": 0.9921875, "end": 432.195, "punctuated_word": "websites", "speaker": 0, "speaker_confidence": 1, "start": 431.795, "word": "websites" }, { "confidence": 0.94384766, "end": 432.435, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 432.195, "word": "like" }, { "confidence": 0.8720703, "end": 432.675, "punctuated_word": "Product", "speaker": 0, "speaker_confidence": 1, "start": 432.435, "word": "product" }, { "confidence": 0.9892578, "end": 433.06, "punctuated_word": "Hunt", "speaker": 0, "speaker_confidence": 1, "start": 432.675, "word": "hunt" }, { "confidence": 0.8935547, "end": 433.13998, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 1, "start": 433.06, "word": "you" }, { "confidence": 0.99609375, "end": 433.46, "punctuated_word": "further", "speaker": 0, "speaker_confidence": 1, "start": 433.13998, "word": "further" }, { "confidence": 0.9667969, "end": 433.78, "punctuated_word": "validate", "speaker": 0, "speaker_confidence": 1, "start": 433.46, "word": "validate" }, { "confidence": 0.96240234, "end": 433.94, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 1, "start": 433.78, "word": "if" }, { "confidence": 1, "end": 434.1, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 1, "start": 433.94, "word": "people" }, { "confidence": 0.9941406, "end": 434.26, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 1, "start": 434.1, "word": "are" }, { "confidence": 0.99609375, "end": 434.58, "punctuated_word": "actually", "speaker": 0, "speaker_confidence": 1, "start": 434.26, "word": "actually" }, { "confidence": 1, "end": 434.9, "punctuated_word": "interested", "speaker": 0, "speaker_confidence": 1, "start": 434.58, "word": "interested" }, { "confidence": 1, "end": 435.06, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 434.9, "word": "in" }, { "confidence": 1, "end": 435.22, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 1, "start": 435.06, "word": "what" }, { "confidence": 0.9980469, "end": 435.38, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 1, "start": 435.22, "word": "you're" }, { "confidence": 0.9970703, "end": 435.78, "punctuated_word": "offering.", "speaker": 0, "speaker_confidence": 1, "start": 435.38, "word": "offering" }, { "confidence": 0.9970703, "end": 436.02, "punctuated_word": "From", "speaker": 0, "speaker_confidence": 1, "start": 435.78, "word": "from" }, { "confidence": 1, "end": 436.1, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 436.02, "word": "a" }, { "confidence": 1, "end": 436.58, "punctuated_word": "technical", "speaker": 0, "speaker_confidence": 1, "start": 436.1, "word": "technical" }, { "confidence": 0.9970703, "end": 437.08, "punctuated_word": "standpoint,", "speaker": 0, "speaker_confidence": 1, "start": 436.58, "word": "standpoint" }, { "confidence": 0.9980469, "end": 437.38, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 1, "start": 437.13998, "word": "it's" }, { "confidence": 1, "end": 437.7, "punctuated_word": "usually", "speaker": 0, "speaker_confidence": 1, "start": 437.38, "word": "usually" }, { "confidence": 1, "end": 437.78, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 437.7, "word": "a" }, { "confidence": 1, "end": 437.94, "punctuated_word": "good", "speaker": 0, "speaker_confidence": 1, "start": 437.78, "word": "good" }, { "confidence": 1, "end": 438.34, "punctuated_word": "idea", "speaker": 0, "speaker_confidence": 1, "start": 437.94, "word": "idea" }, { "confidence": 1, "end": 438.41998, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 438.34, "word": "to" }, { "confidence": 1, "end": 438.66, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 1, "start": 438.41998, "word": "build" }, { "confidence": 1, "end": 438.98, "punctuated_word": "apps", "speaker": 0, "speaker_confidence": 1, "start": 438.66, "word": "apps" }, { "confidence": 0.9980469, "end": 439.06, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 438.98, "word": "that" }, { "confidence": 0.99902344, "end": 439.22, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 1, "start": 439.06, "word": "have" }, { "confidence": 0.9951172, "end": 439.38, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 1, "start": 439.22, "word": "as" }, { "confidence": 0.99902344, "end": 439.62, "punctuated_word": "little", "speaker": 0, "speaker_confidence": 1, "start": 439.38, "word": "little" }, { "confidence": 1, "end": 440.02, "punctuated_word": "friction", "speaker": 0, "speaker_confidence": 1, "start": 439.62, "word": "friction" }, { "confidence": 1, "end": 440.1, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 1, "start": 440.02, "word": "as" }, { "confidence": 0.9543457, "end": 440.6, "punctuated_word": "possible.", "speaker": 0, "speaker_confidence": 1, "start": 440.1, "word": "possible" }, { "confidence": 0.9980469, "end": 440.9, "punctuated_word": "Like", "speaker": 0, "speaker_confidence": 1, "start": 440.66, "word": "like" }, { "confidence": 0.93603516, "end": 441.06, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 440.9, "word": "with" }, { "confidence": 0.99104816, "end": 441.54, "punctuated_word": "Firebase,", "speaker": 0, "speaker_confidence": 1, "start": 441.06, "word": "firebase" }, { "confidence": 0.9980469, "end": 441.7, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 1, "start": 441.54, "word": "i" }, { "confidence": 0.9980469, "end": 441.86, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 1, "start": 441.7, "word": "might" }, { "confidence": 0.99902344, "end": 442.1, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 1, "start": 441.86, "word": "start" }, { "confidence": 0.9838867, "end": 442.415, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 442.1, "word": "with" }, { "confidence": 0.9863281, "end": 442.89502, "punctuated_word": "anonymous", "speaker": 0, "speaker_confidence": 1, "start": 442.415, "word": "anonymous" }, { "confidence": 0.7907715, "end": 443.39502, "punctuated_word": "authentication,", "speaker": 0, "speaker_confidence": 1, "start": 442.89502, "word": "authentication" }, { "confidence": 0.99902344, "end": 443.855, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 1, "start": 443.61502, "word": "so" }, { "confidence": 0.99902344, "end": 443.935, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 443.855, "word": "the" }, { "confidence": 1, "end": 444.17502, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 1, "start": 443.935, "word": "user" }, { "confidence": 1, "end": 444.415, "punctuated_word": "doesn't", "speaker": 0, "speaker_confidence": 1, "start": 444.17502, "word": "doesn't" }, { "confidence": 1, "end": 444.535, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 1, "start": 444.415, "word": "have" }, { "confidence": 0.99902344, "end": 444.655, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 444.535, "word": "to" }, { "confidence": 1, "end": 444.975, "punctuated_word": "enter", "speaker": 0, "speaker_confidence": 1, "start": 444.655, "word": "enter" }, { "confidence": 0.9980469, "end": 445.05502, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 444.975, "word": "an" }, { "confidence": 1, "end": 445.45502, "punctuated_word": "email", "speaker": 0, "speaker_confidence": 1, "start": 445.05502, "word": "email" }, { "confidence": 1, "end": 445.61502, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 445.45502, "word": "to" }, { "confidence": 1, "end": 445.855, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 1, "start": 445.61502, "word": "start" }, { "confidence": 1, "end": 446.095, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 1, "start": 445.855, "word": "using" }, { "confidence": 1, "end": 446.255, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 446.095, "word": "the" }, { "confidence": 1, "end": 446.495, "punctuated_word": "main", "speaker": 0, "speaker_confidence": 1, "start": 446.255, "word": "main" }, { "confidence": 0.9848633, "end": 446.975, "punctuated_word": "features.", "speaker": 0, "speaker_confidence": 1, "start": 446.495, "word": "features" }, { "confidence": 0.9980469, "end": 447.215, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 1, "start": 446.975, "word": "then" }, { "confidence": 0.9453125, "end": 447.295, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 1, "start": 447.215, "word": "at" }, { "confidence": 1, "end": 447.535, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 1, "start": 447.295, "word": "some" }, { "confidence": 1, "end": 447.775, "punctuated_word": "later", "speaker": 0, "speaker_confidence": 1, "start": 447.535, "word": "later" }, { "confidence": 0.9892578, "end": 448.015, "punctuated_word": "point", "speaker": 0, "speaker_confidence": 1, "start": 447.775, "word": "point" }, { "confidence": 0.95410156, "end": 448.255, "punctuated_word": "after", "speaker": 0, "speaker_confidence": 1, "start": 448.015, "word": "after" }, { "confidence": 0.9995117, "end": 448.415, "punctuated_word": "they've", "speaker": 0, "speaker_confidence": 1, "start": 448.255, "word": "they've" }, { "confidence": 1, "end": 448.73502, "punctuated_word": "enjoyed", "speaker": 0, "speaker_confidence": 1, "start": 448.415, "word": "enjoyed" }, { "confidence": 1, "end": 448.975, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 1, "start": 448.73502, "word": "using" }, { "confidence": 1, "end": 449.135, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 448.975, "word": "the" }, { "confidence": 0.9995117, "end": 449.45502, "punctuated_word": "app,", "speaker": 0, "speaker_confidence": 1, "start": 449.135, "word": "app" }, { "confidence": 1, "end": 449.61502, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 1, "start": 449.45502, "word": "they" }, { "confidence": 1, "end": 449.775, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 449.61502, "word": "can" }, { "confidence": 1, "end": 450.17502, "punctuated_word": "upgrade", "speaker": 0, "speaker_confidence": 1, "start": 449.775, "word": "upgrade" }, { "confidence": 1, "end": 450.33502, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 450.17502, "word": "to" }, { "confidence": 1, "end": 450.415, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 450.33502, "word": "a" }, { "confidence": 1, "end": 450.655, "punctuated_word": "full", "speaker": 0, "speaker_confidence": 1, "start": 450.415, "word": "full" }, { "confidence": 1, "end": 450.89502, "punctuated_word": "account.", "speaker": 0, "speaker_confidence": 1, "start": 450.655, "word": "account" }, { "confidence": 0.9951172, "end": 451.11, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 1, "start": 450.89502, "word": "if" }, { "confidence": 0.6645508, "end": 451.14996, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 1, "start": 451.11, "word": "if" }, { "confidence": 0.9838867, "end": 451.18997, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 1, "start": 451.14996, "word": "i" }, { "confidence": 0.99902344, "end": 451.43, "punctuated_word": "had", "speaker": 0, "speaker_confidence": 1, "start": 451.18997, "word": "had" }, { "confidence": 0.9970703, "end": 451.50998, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 451.43, "word": "a" }, { "confidence": 0.99609375, "end": 451.75, "punctuated_word": "nickel", "speaker": 0, "speaker_confidence": 1, "start": 451.50998, "word": "nickel" }, { "confidence": 0.9980469, "end": 451.99, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 451.75, "word": "for" }, { "confidence": 1, "end": 452.06998, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 1, "start": 451.99, "word": "every" }, { "confidence": 1, "end": 452.22998, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 1, "start": 452.06998, "word": "time" }, { "confidence": 0.9873047, "end": 452.38998, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 1, "start": 452.22998, "word": "i" }, { "confidence": 0.9970703, "end": 452.78998, "punctuated_word": "decided", "speaker": 0, "speaker_confidence": 1, "start": 452.38998, "word": "decided" }, { "confidence": 0.99902344, "end": 452.94998, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 1, "start": 452.78998, "word": "not" }, { "confidence": 1, "end": 453.03, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.57470703, "start": 452.94998, "word": "to" }, { "confidence": 1, "end": 453.27, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.57470703, "start": 453.03, "word": "use" }, { "confidence": 0.99902344, "end": 453.43, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.57470703, "start": 453.27, "word": "an" }, { "confidence": 1, "end": 453.59, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.57470703, "start": 453.43, "word": "app" }, { "confidence": 0.9453125, "end": 453.75, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.57470703, "start": 453.59, "word": "just" }, { "confidence": 1, "end": 453.99, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.57470703, "start": 453.75, "word": "because" }, { "confidence": 0.96777344, "end": 454.15, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.57470703, "start": 453.99, "word": "it" }, { "confidence": 0.99609375, "end": 454.22998, "punctuated_word": "had", "speaker": 0, "speaker_confidence": 0.4790039, "start": 454.15, "word": "had" }, { "confidence": 0.9902344, "end": 454.38998, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.4790039, "start": 454.22998, "word": "a" }, { "confidence": 1, "end": 454.55, "punctuated_word": "sign", "speaker": 0, "speaker_confidence": 0.4790039, "start": 454.38998, "word": "sign" }, { "confidence": 0.99316406, "end": 454.71, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.4790039, "start": 454.55, "word": "in" }, { "confidence": 0.9951172, "end": 455.18997, "punctuated_word": "form,", "speaker": 0, "speaker_confidence": 0.4790039, "start": 454.71, "word": "form" }, { "confidence": 0.99902344, "end": 455.27, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.65966797, "start": 455.18997, "word": "i" }, { "confidence": 1, "end": 455.43, "punctuated_word": "would", "speaker": 0, "speaker_confidence": 0.65966797, "start": 455.27, "word": "would" }, { "confidence": 1, "end": 455.59, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.65966797, "start": 455.43, "word": "have" }, { "confidence": 1, "end": 455.66998, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.65966797, "start": 455.59, "word": "a" }, { "confidence": 0.95703125, "end": 456.06998, "punctuated_word": "shitload", "speaker": 0, "speaker_confidence": 0.65966797, "start": 455.66998, "word": "shitload" }, { "confidence": 1, "end": 456.22998, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.65966797, "start": 456.06998, "word": "of" }, { "confidence": 0.9445801, "end": 456.72998, "punctuated_word": "nickels.", "speaker": 0, "speaker_confidence": 0.65966797, "start": 456.22998, "word": "nickels" }, { "confidence": 0.99609375, "end": 457.03, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.65966797, "start": 456.78998, "word": "but" }, { "confidence": 0.9863281, "end": 457.11, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.65966797, "start": 457.03, "word": "the" }, { "confidence": 1, "end": 457.43, "punctuated_word": "bottom", "speaker": 0, "speaker_confidence": 0.65966797, "start": 457.11, "word": "bottom" }, { "confidence": 0.9863281, "end": 457.66998, "punctuated_word": "line", "speaker": 0, "speaker_confidence": 0.65966797, "start": 457.43, "word": "line" }, { "confidence": 0.9243164, "end": 457.90997, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.65966797, "start": 457.66998, "word": "is" }, { "confidence": 0.9951172, "end": 457.99, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.65966797, "start": 457.90997, "word": "to" }, { "confidence": 1, "end": 458.15, "punctuated_word": "try", "speaker": 0, "speaker_confidence": 0.8779297, "start": 457.99, "word": "try" }, { "confidence": 0.9970703, "end": 458.31, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8779297, "start": 458.15, "word": "to" }, { "confidence": 0.99902344, "end": 458.46997, "punctuated_word": "keep", "speaker": 0, "speaker_confidence": 0.8779297, "start": 458.31, "word": "keep" }, { "confidence": 0.99609375, "end": 458.62997, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.8779297, "start": 458.46997, "word": "your" }, { "confidence": 0.99316406, "end": 458.87, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.8779297, "start": 458.62997, "word": "app" }, { "confidence": 0.90527344, "end": 459.37, "punctuated_word": "minimal,", "speaker": 0, "speaker_confidence": 0.8779297, "start": 458.87, "word": "minimal" }, { "confidence": 0.95581055, "end": 459.66998, "punctuated_word": "free,", "speaker": 0, "speaker_confidence": 0.8779297, "start": 459.43, "word": "free" }, { "confidence": 0.97802734, "end": 459.83, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8779297, "start": 459.66998, "word": "and" }, { "confidence": 0.96207684, "end": 460.33, "punctuated_word": "frictionless,", "speaker": 0, "speaker_confidence": 0.8779297, "start": 459.83, "word": "frictionless" }, { "confidence": 0.8183594, "end": 460.745, "punctuated_word": "list,", "speaker": 0, "speaker_confidence": 0.8779297, "start": 460.425, "word": "list" }, { "confidence": 0.9970703, "end": 460.98502, "punctuated_word": "especially", "speaker": 0, "speaker_confidence": 0.8779297, "start": 460.745, "word": "especially" }, { "confidence": 0.99902344, "end": 461.225, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8779297, "start": 460.98502, "word": "in" }, { "confidence": 0.9980469, "end": 461.305, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8779297, "start": 461.225, "word": "the" }, { "confidence": 1, "end": 461.545, "punctuated_word": "early", "speaker": 0, "speaker_confidence": 0.8779297, "start": 461.305, "word": "early" }, { "confidence": 0.9980469, "end": 461.785, "punctuated_word": "game.", "speaker": 0, "speaker_confidence": 0.8779297, "start": 461.545, "word": "game" }, { "confidence": 0.9995117, "end": 462.025, "punctuated_word": "Don't", "speaker": 0, "speaker_confidence": 0.8779297, "start": 461.785, "word": "don't" }, { "confidence": 1, "end": 462.265, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 0.8779297, "start": 462.025, "word": "even" }, { "confidence": 1, "end": 462.505, "punctuated_word": "worry", "speaker": 0, "speaker_confidence": 0.8779297, "start": 462.265, "word": "worry" }, { "confidence": 0.99902344, "end": 462.665, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.8779297, "start": 462.505, "word": "about" }, { "confidence": 1, "end": 462.905, "punctuated_word": "making", "speaker": 0, "speaker_confidence": 0.8779297, "start": 462.665, "word": "making" }, { "confidence": 0.85131836, "end": 463.305, "punctuated_word": "money,", "speaker": 0, "speaker_confidence": 0.8779297, "start": 462.905, "word": "money" }, { "confidence": 0.99902344, "end": 463.545, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.8779297, "start": 463.305, "word": "just" }, { "confidence": 0.9970703, "end": 463.945, "punctuated_word": "focus", "speaker": 0, "speaker_confidence": 0.8779297, "start": 463.545, "word": "focus" }, { "confidence": 0.9951172, "end": 464.425, "punctuated_word": "aggressively", "speaker": 0, "speaker_confidence": 0.8779297, "start": 463.945, "word": "aggressively" }, { "confidence": 0.99902344, "end": 464.585, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8779297, "start": 464.425, "word": "on" }, { "confidence": 0.99902344, "end": 464.905, "punctuated_word": "making", "speaker": 0, "speaker_confidence": 0.8779297, "start": 464.585, "word": "making" }, { "confidence": 0.9782715, "end": 465.225, "punctuated_word": "people's", "speaker": 0, "speaker_confidence": 0.8779297, "start": 464.905, "word": "people's" }, { "confidence": 1, "end": 465.545, "punctuated_word": "lives", "speaker": 0, "speaker_confidence": 0.8779297, "start": 465.225, "word": "lives" }, { "confidence": 0.9995117, "end": 465.865, "punctuated_word": "better.", "speaker": 0, "speaker_confidence": 0.8779297, "start": 465.545, "word": "better" }, { "confidence": 0.9951172, "end": 466.025, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.49658203, "start": 465.865, "word": "in" }, { "confidence": 0.9980469, "end": 466.105, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.49658203, "start": 466.025, "word": "the" }, { "confidence": 0.9951172, "end": 466.265, "punctuated_word": "mid", "speaker": 0, "speaker_confidence": 0.49658203, "start": 466.105, "word": "mid" }, { "confidence": 0.91845703, "end": 466.505, "punctuated_word": "game,", "speaker": 0, "speaker_confidence": 0.49658203, "start": 466.265, "word": "game" }, { "confidence": 0.99902344, "end": 466.665, "punctuated_word": "after", "speaker": 0, "speaker_confidence": 0.49658203, "start": 466.505, "word": "after" }, { "confidence": 1, "end": 466.825, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.49658203, "start": 466.665, "word": "you" }, { "confidence": 0.99902344, "end": 466.905, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.49658203, "start": 466.825, "word": "have" }, { "confidence": 0.9980469, "end": 466.98502, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.83496094, "start": 466.905, "word": "a" }, { "confidence": 1, "end": 467.385, "punctuated_word": "customer", "speaker": 0, "speaker_confidence": 0.83496094, "start": 466.98502, "word": "customer" }, { "confidence": 0.99658203, "end": 467.705, "punctuated_word": "base,", "speaker": 0, "speaker_confidence": 0.83496094, "start": 467.385, "word": "base" }, { "confidence": 1, "end": 467.865, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.83496094, "start": 467.705, "word": "you" }, { "confidence": 1, "end": 468.025, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.83496094, "start": 467.865, "word": "can" }, { "confidence": 0.9970703, "end": 468.185, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 0.83496094, "start": 468.025, "word": "start" }, { "confidence": 0.99902344, "end": 468.425, "punctuated_word": "adding", "speaker": 0, "speaker_confidence": 0.83496094, "start": 468.185, "word": "adding" }, { "confidence": 0.9819336, "end": 468.68, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.83496094, "start": 468.425, "word": "all" }, { "confidence": 0.36743164, "end": 469.16, "punctuated_word": "extra", "speaker": 0, "speaker_confidence": 0.83496094, "start": 468.84, "word": "extra" }, { "confidence": 1, "end": 469.47998, "punctuated_word": "features", "speaker": 0, "speaker_confidence": 0.83496094, "start": 469.16, "word": "features" }, { "confidence": 0.99902344, "end": 469.63998, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.83496094, "start": 469.47998, "word": "that" }, { "confidence": 0.99902344, "end": 469.8, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.83496094, "start": 469.63998, "word": "your" }, { "confidence": 1, "end": 470.19998, "punctuated_word": "customers", "speaker": 0, "speaker_confidence": 0.83496094, "start": 469.8, "word": "customers" }, { "confidence": 0.8664551, "end": 470.52, "punctuated_word": "want,", "speaker": 0, "speaker_confidence": 0.83496094, "start": 470.19998, "word": "want" }, { "confidence": 1, "end": 470.68, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.83496094, "start": 470.52, "word": "and" }, { "confidence": 0.9980469, "end": 470.91998, "punctuated_word": "charge", "speaker": 0, "speaker_confidence": 0.83496094, "start": 470.68, "word": "charge" }, { "confidence": 1, "end": 471.16, "punctuated_word": "money", "speaker": 0, "speaker_confidence": 0.83496094, "start": 470.91998, "word": "money" }, { "confidence": 1, "end": 471.32, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.83496094, "start": 471.16, "word": "for" }, { "confidence": 1, "end": 471.56, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.83496094, "start": 471.32, "word": "them" }, { "confidence": 0.98339844, "end": 471.96, "punctuated_word": "accordingly.", "speaker": 0, "speaker_confidence": 0.83496094, "start": 471.56, "word": "accordingly" }, { "confidence": 0.9951172, "end": 472.12, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.83496094, "start": 471.96, "word": "and" }, { "confidence": 0.99316406, "end": 472.28, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.83496094, "start": 472.12, "word": "then" }, { "confidence": 0.92822266, "end": 472.6, "punctuated_word": "finally", "speaker": 0, "speaker_confidence": 0.83496094, "start": 472.28, "word": "finally" }, { "confidence": 0.69433594, "end": 472.75998, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.83496094, "start": 472.6, "word": "in" }, { "confidence": 0.9892578, "end": 472.84, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.83496094, "start": 472.75998, "word": "the" }, { "confidence": 0.99902344, "end": 473, "punctuated_word": "late", "speaker": 0, "speaker_confidence": 0.9370117, "start": 472.84, "word": "late" }, { "confidence": 0.9885254, "end": 473.24, "punctuated_word": "game,", "speaker": 0, "speaker_confidence": 0.9370117, "start": 473, "word": "game" }, { "confidence": 0.99609375, "end": 473.4, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.9370117, "start": 473.24, "word": "you" }, { "confidence": 0.9980469, "end": 473.56, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9370117, "start": 473.4, "word": "can" }, { "confidence": 0.9980469, "end": 473.8, "punctuated_word": "lobby", "speaker": 0, "speaker_confidence": 0.9370117, "start": 473.56, "word": "lobby" }, { "confidence": 0.9951172, "end": 473.96, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9370117, "start": 473.8, "word": "the" }, { "confidence": 0.99902344, "end": 474.36, "punctuated_word": "government", "speaker": 0, "speaker_confidence": 0.9370117, "start": 473.96, "word": "government" }, { "confidence": 0.9970703, "end": 474.6, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.9370117, "start": 474.36, "word": "for" }, { "confidence": 0.9921875, "end": 475.1, "punctuated_word": "regulations", "speaker": 0, "speaker_confidence": 0.9370117, "start": 474.6, "word": "regulations" }, { "confidence": 0.97802734, "end": 475.4, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9370117, "start": 475.16, "word": "to" }, { "confidence": 0.9980469, "end": 475.63998, "punctuated_word": "crush", "speaker": 0, "speaker_confidence": 0.9370117, "start": 475.4, "word": "crush" }, { "confidence": 0.96777344, "end": 475.8, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.9370117, "start": 475.63998, "word": "all" }, { "confidence": 0.90478516, "end": 475.96, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9370117, "start": 475.8, "word": "the" }, { "confidence": 0.99609375, "end": 476.19998, "punctuated_word": "smaller", "speaker": 0, "speaker_confidence": 0.9370117, "start": 475.96, "word": "smaller" }, { "confidence": 0.85913086, "end": 476.595, "punctuated_word": "competition.", "speaker": 0, "speaker_confidence": 0.9370117, "start": 476.19998, "word": "competition" }, { "confidence": 0.99316406, "end": 477.075, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.9370117, "start": 476.915, "word": "now" }, { "confidence": 0.52734375, "end": 477.23502, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9370117, "start": 477.075, "word": "the" }, { "confidence": 0.99902344, "end": 477.475, "punctuated_word": "final", "speaker": 0, "speaker_confidence": 0.9370117, "start": 477.23502, "word": "final" }, { "confidence": 0.99902344, "end": 477.635, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.9370117, "start": 477.475, "word": "thing" }, { "confidence": 0.9970703, "end": 477.715, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.9370117, "start": 477.635, "word": "i" }, { "confidence": 0.62158203, "end": 477.875, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.9370117, "start": 477.715, "word": "want" }, { "confidence": 0.9980469, "end": 477.955, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9370117, "start": 477.875, "word": "to" }, { "confidence": 1, "end": 478.275, "punctuated_word": "say", "speaker": 0, "speaker_confidence": 0.9370117, "start": 477.955, "word": "say" }, { "confidence": 0.7714844, "end": 478.435, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9370117, "start": 478.275, "word": "is" }, { "confidence": 0.9941406, "end": 478.595, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9370117, "start": 478.435, "word": "that" }, { "confidence": 0.9248047, "end": 478.835, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 0.9370117, "start": 478.595, "word": "even" }, { "confidence": 0.9980469, "end": 478.915, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.9370117, "start": 478.835, "word": "if" }, { "confidence": 0.99609375, "end": 479.155, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.9370117, "start": 478.915, "word": "your" }, { "confidence": 1, "end": 479.315, "punctuated_word": "side", "speaker": 0, "speaker_confidence": 0.9370117, "start": 479.155, "word": "side" }, { "confidence": 0.9980469, "end": 479.635, "punctuated_word": "hustle", "speaker": 0, "speaker_confidence": 0.9370117, "start": 479.315, "word": "hustle" }, { "confidence": 1, "end": 479.955, "punctuated_word": "fails", "speaker": 0, "speaker_confidence": 0.9370117, "start": 479.635, "word": "fails" }, { "confidence": 0.5996094, "end": 480.195, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.9370117, "start": 479.955, "word": "like" }, { "confidence": 0.99902344, "end": 480.435, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 0.9370117, "start": 480.195, "word": "most" }, { "confidence": 0.99902344, "end": 480.515, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9370117, "start": 480.435, "word": "of" }, { "confidence": 0.99902344, "end": 480.755, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.9370117, "start": 480.515, "word": "them" }, { "confidence": 0.99658203, "end": 481.075, "punctuated_word": "do,", "speaker": 0, "speaker_confidence": 0.9370117, "start": 480.755, "word": "do" }, { "confidence": 0.92211914, "end": 481.315, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 0.9370117, "start": 481.075, "word": "you'll" }, { "confidence": 0.96972656, "end": 481.475, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.9370117, "start": 481.315, "word": "have" }, { "confidence": 0.99609375, "end": 481.635, "punctuated_word": "gained", "speaker": 0, "speaker_confidence": 0.9370117, "start": 481.475, "word": "gained" }, { "confidence": 0.99609375, "end": 481.715, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7133789, "start": 481.635, "word": "a" }, { "confidence": 0.99609375, "end": 481.955, "punctuated_word": "lot", "speaker": 0, "speaker_confidence": 0.7133789, "start": 481.715, "word": "lot" }, { "confidence": 0.9941406, "end": 482.115, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.7133789, "start": 481.955, "word": "by" }, { "confidence": 0.99902344, "end": 482.435, "punctuated_word": "grinding", "speaker": 0, "speaker_confidence": 0.7133789, "start": 482.115, "word": "grinding" }, { "confidence": 0.9951172, "end": 482.595, "punctuated_word": "through", "speaker": 0, "speaker_confidence": 0.7133789, "start": 482.435, "word": "through" }, { "confidence": 0.9921875, "end": 482.835, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.7133789, "start": 482.595, "word": "this" }, { "confidence": 0.9980469, "end": 483.335, "punctuated_word": "process.", "speaker": 0, "speaker_confidence": 0.7133789, "start": 482.835, "word": "process" }, { "confidence": 0.9848633, "end": 483.635, "punctuated_word": "You'll", "speaker": 0, "speaker_confidence": 0.56933594, "start": 483.475, "word": "you'll" }, { "confidence": 0.9873047, "end": 483.795, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.56933594, "start": 483.635, "word": "have" }, { "confidence": 0.94970703, "end": 483.955, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.56933594, "start": 483.795, "word": "some" }, { "confidence": 0.9658203, "end": 484.3, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.56933594, "start": 483.955, "word": "new" }, { "confidence": 0.92333984, "end": 484.53998, "punctuated_word": "contacts", "speaker": 0, "speaker_confidence": 0.56933594, "start": 484.3, "word": "contacts" }, { "confidence": 0.9428711, "end": 484.69998, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.56933594, "start": 484.53998, "word": "in" }, { "confidence": 0.9951172, "end": 484.78, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.8930664, "start": 484.69998, "word": "your" }, { "confidence": 0.9422852, "end": 485.28, "punctuated_word": "rolodex.", "speaker": 0, "speaker_confidence": 0.8930664, "start": 484.78, "word": "rolodex" }, { "confidence": 0.99658203, "end": 485.65997, "punctuated_word": "You'll", "speaker": 0, "speaker_confidence": 0.8930664, "start": 485.41998, "word": "you'll" }, { "confidence": 0.99902344, "end": 485.81998, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.8930664, "start": 485.65997, "word": "have" }, { "confidence": 0.99902344, "end": 485.97998, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8930664, "start": 485.81998, "word": "a" }, { "confidence": 1, "end": 486.22, "punctuated_word": "small", "speaker": 0, "speaker_confidence": 0.8930664, "start": 485.97998, "word": "small" }, { "confidence": 1, "end": 486.53998, "punctuated_word": "community", "speaker": 0, "speaker_confidence": 0.8930664, "start": 486.22, "word": "community" }, { "confidence": 0.99609375, "end": 486.62, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8930664, "start": 486.53998, "word": "of" }, { "confidence": 1, "end": 486.94, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.8930664, "start": 486.62, "word": "people" }, { "confidence": 0.9760742, "end": 487.18, "punctuated_word": "pulling", "speaker": 0, "speaker_confidence": 0.8930664, "start": 486.94, "word": "pulling" }, { "confidence": 0.99902344, "end": 487.34, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.8930664, "start": 487.18, "word": "for" }, { "confidence": 0.92700195, "end": 487.65997, "punctuated_word": "you.", "speaker": 0, "speaker_confidence": 0.8930664, "start": 487.34, "word": "you" }, { "confidence": 0.99658203, "end": 487.81998, "punctuated_word": "You'll", "speaker": 0, "speaker_confidence": 0.8930664, "start": 487.65997, "word": "you'll" }, { "confidence": 0.99902344, "end": 487.97998, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.8930664, "start": 487.81998, "word": "have" }, { "confidence": 0.9970703, "end": 488.13998, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8930664, "start": 487.97998, "word": "a" }, { "confidence": 0.9951172, "end": 488.3, "punctuated_word": "cool", "speaker": 0, "speaker_confidence": 0.8930664, "start": 488.13998, "word": "cool" }, { "confidence": 1, "end": 488.62, "punctuated_word": "project", "speaker": 0, "speaker_confidence": 0.8930664, "start": 488.3, "word": "project" }, { "confidence": 0.99902344, "end": 488.78, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8930664, "start": 488.62, "word": "on" }, { "confidence": 0.99902344, "end": 489.02, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.8930664, "start": 488.78, "word": "your" }, { "confidence": 0.9980469, "end": 489.41998, "punctuated_word": "portfolio", "speaker": 0, "speaker_confidence": 0.8930664, "start": 489.02, "word": "portfolio" }, { "confidence": 0.98291016, "end": 489.65997, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8930664, "start": 489.41998, "word": "that" }, { "confidence": 0.99902344, "end": 489.74, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.8930664, "start": 489.65997, "word": "can" }, { "confidence": 0.99902344, "end": 489.9, "punctuated_word": "help", "speaker": 0, "speaker_confidence": 0.8930664, "start": 489.74, "word": "help" }, { "confidence": 0.9980469, "end": 490.06, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.8930664, "start": 489.9, "word": "you" }, { "confidence": 0.99609375, "end": 490.22, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.8930664, "start": 490.06, "word": "get" }, { "confidence": 0.99316406, "end": 490.37997, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8930664, "start": 490.22, "word": "a" }, { "confidence": 0.9980469, "end": 490.69998, "punctuated_word": "regular", "speaker": 0, "speaker_confidence": 0.8930664, "start": 490.37997, "word": "regular" }, { "confidence": 0.9980469, "end": 491.09998, "punctuated_word": "developer", "speaker": 0, "speaker_confidence": 0.8930664, "start": 490.69998, "word": "developer" }, { "confidence": 0.99609375, "end": 491.41998, "punctuated_word": "job.", "speaker": 0, "speaker_confidence": 0.8930664, "start": 491.09998, "word": "job" }, { "confidence": 0.9897461, "end": 491.58, "punctuated_word": "You'll", "speaker": 0, "speaker_confidence": 0.8930664, "start": 491.41998, "word": "you'll" }, { "confidence": 0.9667969, "end": 491.81998, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.8930664, "start": 491.58, "word": "have" }, { "confidence": 0.56152344, "end": 491.9, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8930664, "start": 491.81998, "word": "a" }, { "confidence": 0.7246094, "end": 492.065, "punctuated_word": "bunch", "speaker": 0, "speaker_confidence": 0.8930664, "start": 491.9, "word": "bunch" }, { "confidence": 0.9350586, "end": 492.305, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8930664, "start": 492.065, "word": "of" }, { "confidence": 0.9921875, "end": 492.70502, "punctuated_word": "reusable", "speaker": 0, "speaker_confidence": 0.8930664, "start": 492.305, "word": "reusable" }, { "confidence": 0.9951172, "end": 492.945, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.8930664, "start": 492.70502, "word": "code" }, { "confidence": 0.99609375, "end": 493.105, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8930664, "start": 492.945, "word": "that" }, { "confidence": 1, "end": 493.185, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.8930664, "start": 493.105, "word": "you" }, { "confidence": 0.99902344, "end": 493.345, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.8930664, "start": 493.185, "word": "can" }, { "confidence": 1, "end": 493.585, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.8930664, "start": 493.345, "word": "use" }, { "confidence": 0.99902344, "end": 493.745, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.8930664, "start": 493.585, "word": "for" }, { "confidence": 0.9980469, "end": 493.905, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.8930664, "start": 493.745, "word": "your" }, { "confidence": 1, "end": 494.145, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.8930664, "start": 493.905, "word": "next" }, { "confidence": 0.9863281, "end": 494.465, "punctuated_word": "failed", "speaker": 0, "speaker_confidence": 0.8930664, "start": 494.145, "word": "failed" }, { "confidence": 0.8522949, "end": 494.945, "punctuated_word": "project.", "speaker": 0, "speaker_confidence": 0.8930664, "start": 494.465, "word": "project" }, { "confidence": 0.9926758, "end": 495.185, "punctuated_word": "You'll", "speaker": 0, "speaker_confidence": 0.8930664, "start": 494.945, "word": "you'll" }, { "confidence": 0.99902344, "end": 495.345, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.8930664, "start": 495.185, "word": "have" }, { "confidence": 1, "end": 495.425, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.5917969, "start": 495.345, "word": "a" }, { "confidence": 1, "end": 495.665, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.5917969, "start": 495.425, "word": "more" }, { "confidence": 0.96777344, "end": 495.905, "punctuated_word": "lean", "speaker": 0, "speaker_confidence": 0.5917969, "start": 495.665, "word": "lean" }, { "confidence": 0.99902344, "end": 496.145, "punctuated_word": "bank", "speaker": 0, "speaker_confidence": 0.5917969, "start": 495.905, "word": "bank" }, { "confidence": 0.9128418, "end": 496.545, "punctuated_word": "account,", "speaker": 0, "speaker_confidence": 0.5917969, "start": 496.145, "word": "account" }, { "confidence": 0.99902344, "end": 496.70502, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.5917969, "start": 496.545, "word": "and" }, { "confidence": 0.81103516, "end": 497.025, "punctuated_word": "finally,", "speaker": 0, "speaker_confidence": 0.5917969, "start": 496.70502, "word": "finally" }, { "confidence": 0.99560547, "end": 497.185, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 0.5917969, "start": 497.025, "word": "you'll" }, { "confidence": 0.99902344, "end": 497.265, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.45410156, "start": 497.185, "word": "have" }, { "confidence": 0.9941406, "end": 497.425, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.45410156, "start": 497.265, "word": "the" }, { "confidence": 0.99902344, "end": 497.585, "punctuated_word": "pride", "speaker": 0, "speaker_confidence": 0.45410156, "start": 497.425, "word": "pride" }, { "confidence": 0.9448242, "end": 497.745, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.45410156, "start": 497.585, "word": "in" }, { "confidence": 1, "end": 498.065, "punctuated_word": "knowing", "speaker": 0, "speaker_confidence": 0.45410156, "start": 497.745, "word": "knowing" }, { "confidence": 0.9892578, "end": 498.145, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9189453, "start": 498.065, "word": "that" }, { "confidence": 0.9980469, "end": 498.305, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.9189453, "start": 498.145, "word": "you" }, { "confidence": 1, "end": 498.465, "punctuated_word": "took", "speaker": 0, "speaker_confidence": 0.9189453, "start": 498.305, "word": "took" }, { "confidence": 0.9970703, "end": 498.545, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9189453, "start": 498.465, "word": "a" }, { "confidence": 1, "end": 498.785, "punctuated_word": "risk", "speaker": 0, "speaker_confidence": 0.9189453, "start": 498.545, "word": "risk" }, { "confidence": 0.9892578, "end": 498.865, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9189453, "start": 498.785, "word": "and" }, { "confidence": 0.9980469, "end": 499.105, "punctuated_word": "tried", "speaker": 0, "speaker_confidence": 0.9189453, "start": 498.865, "word": "tried" }, { "confidence": 1, "end": 499.605, "punctuated_word": "something", "speaker": 0, "speaker_confidence": 0.9189453, "start": 499.105, "word": "something" }, { "confidence": 0.9658203, "end": 499.88556, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9189453, "start": 499.665, "word": "that" }, { "confidence": 0.99902344, "end": 500.12555, "punctuated_word": "many", "speaker": 0, "speaker_confidence": 0.9189453, "start": 499.88556, "word": "many" }, { "confidence": 1, "end": 500.36557, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.9189453, "start": 500.12555, "word": "people" }, { "confidence": 1, "end": 500.60556, "punctuated_word": "dream", "speaker": 0, "speaker_confidence": 0.9189453, "start": 500.36557, "word": "dream" }, { "confidence": 0.8156738, "end": 500.92557, "punctuated_word": "about,", "speaker": 0, "speaker_confidence": 0.9189453, "start": 500.60556, "word": "about" }, { "confidence": 1, "end": 501.08557, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.9189453, "start": 500.92557, "word": "but" }, { "confidence": 1, "end": 501.32556, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 0.9189453, "start": 501.08557, "word": "most" }, { "confidence": 1, "end": 501.48557, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.9189453, "start": 501.32556, "word": "are" }, { "confidence": 1, "end": 501.64557, "punctuated_word": "too", "speaker": 0, "speaker_confidence": 0.9189453, "start": 501.48557, "word": "too" }, { "confidence": 1, "end": 501.88556, "punctuated_word": "afraid", "speaker": 0, "speaker_confidence": 0.9189453, "start": 501.64557, "word": "afraid" }, { "confidence": 0.9980469, "end": 501.96555, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9189453, "start": 501.88556, "word": "to" }, { "confidence": 1, "end": 502.28555, "punctuated_word": "ever", "speaker": 0, "speaker_confidence": 0.9189453, "start": 501.96555, "word": "ever" }, { "confidence": 0.99902344, "end": 502.60556, "punctuated_word": "try.", "speaker": 0, "speaker_confidence": 0.9189453, "start": 502.28555, "word": "try" }, { "confidence": 0.99902344, "end": 502.84555, "punctuated_word": "Thanks", "speaker": 0, "speaker_confidence": 0.9189453, "start": 502.60556, "word": "thanks" }, { "confidence": 1, "end": 503.08557, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.9189453, "start": 502.84555, "word": "for" }, { "confidence": 0.8442383, "end": 503.48557, "punctuated_word": "watching,", "speaker": 0, "speaker_confidence": 0.9189453, "start": 503.08557, "word": "watching" }, { "confidence": 1, "end": 503.64557, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9189453, "start": 503.48557, "word": "and" }, { "confidence": 0.9951172, "end": 503.72556, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.9189453, "start": 503.64557, "word": "i" }, { "confidence": 1, "end": 503.96555, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.9189453, "start": 503.72556, "word": "will" }, { "confidence": 1, "end": 504.12555, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.9189453, "start": 503.96555, "word": "see" }, { "confidence": 1, "end": 504.28555, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.9189453, "start": 504.12555, "word": "you" }, { "confidence": 1, "end": 504.36557, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9189453, "start": 504.28555, "word": "in" }, { "confidence": 1, "end": 504.52557, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9189453, "start": 504.36557, "word": "the" }, { "confidence": 1, "end": 504.76556, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.9189453, "start": 504.52557, "word": "next" }, { "confidence": 0.9855957, "end": 505.26556, "punctuated_word": "one.", "speaker": 0, "speaker_confidence": 0.9189453, "start": 504.76556, "word": "one" } ] } ], "detected_language": "", "language_confidence": 0, "search": null } ], "summary": { "result": "success", "short": "The speaker discusses their side hustle success and emphasizes the importance of validating their ideas before investing in a big project. They suggest using analytics and AB testing before investing in a big launch, optimizing conversion rates, narrowing target segments, and reaching out to micro influencers. They also advise against shipping too many features at once and building a minimal, frictionless, and lean bank account, emphasizing the importance of making one's own product and building a pipeline of potential projects." }, "utterances": null } }
downloads\Why_did_my_sidehustle_fail_How_to_validate_business_ideas.wav
https://www.youtube.com/watch?v=4_MDP6TcHwU
Why did my side-hustle fail? How to validate business ideas
541,766
Fireship
333
My chat app became overwhelmed with profanity and spam, but all this could have been avoided with better security practices. Let's take a look at essential app security libraries and techniques. #programming #hacking #tech 💬 Chat with Me on Discord https://discord.gg/fireship 🔗 Resources - Original Chat App Pocketbase Project https://youtu.be/gUYBFDPZ5qk - 7 Web Security Risks https://youtu.be/4YOpILi9Oxs - Cryptography Concepts https://youtu.be/NuyzuNBFWxQ - Cloudflare Turnstile https://www.cloudflare.com/products/turnstile/ 🔥 Get More Content - Upgrade to PRO Upgrade at https://fireship.io/pro Use code YT25 for 25% off PRO access 🎨 My Editor Settings - Atom One Dark - vscode-icons - Fira Code Font 🔖 Topics Covered - How to prevent profanity in app - How to deal with spam bots - How to prevent website hacking - Web app security best practices - Cloudflare Turnstile vs reCaptcha - Preventing DDoS attacks
{ "metadata": { "channels": 1, "created": "2024-02-04T05:15:21.969Z", "duration": 332.8348, "model_info": { "30089e05-99d1-4376-b32e-c263170674af": { "arch": "nova-2", "name": "2-general-nova", "version": "2024-01-09.29447" } }, "models": [ "30089e05-99d1-4376-b32e-c263170674af" ], "request_id": "a01955d1-667c-41a1-b7de-9ad0eff0ad11", "sha256": "469dcc5d2d2ec6218cdcf157204a4449d6d214f712349cc0134c24ca0638c879", "summary_info": { "input_tokens": 1494, "model_uuid": "67875a7f-c9c4-48a0-aa55-5bdb8a91c34a", "output_tokens": 73 }, "transaction_key": "deprecated", "warnings": null }, "results": { "channels": [ { "alternatives": [ { "confidence": 0.9980469, "entities": null, "paragraphs": { "paragraphs": [ { "end": 21.57, "num_words": 82, "sentences": [ { "end": 4.08, "start": 0.08, "text": "A few days ago, I built a next gen Discord killer with pocket base and Svelte." }, { "end": 11.375, "start": 4.08, "text": "It was an amazing experience for about 3 minutes, but then you guys completely destroyed it by spamming it with the most deranged comments I've ever seen on the Internet." }, { "end": 13.695, "start": 11.375, "text": "I initially started with a $5 Linux server." }, { "end": 17.869999, "start": 13.695, "text": "Its usage quickly shot up to 100 consent, so I resized it to 4 cores." }, { "end": 21.57, "start": 17.869999, "text": "That wasn't nearly enough juice either, and all 4 cores quickly became overwhelmed." } ], "speaker": 0, "start": 0.08 }, { "end": 42.215, "num_words": 83, "sentences": [ { "end": 24.11, "start": 21.71, "text": "And this is why we can't have nice things on this channel." }, { "end": 27.235, "start": 24.11, "text": "The primary person to blame for all this is me, the developer." }, { "end": 31.395, "start": 27.295, "text": "I built it with bad security practices by design just to see what would happen." }, { "end": 32.68, "start": 31.455, "text": "Funny do bad things." }, { "end": 42.215, "start": 32.84, "text": "Luckily, I live in America, so I can't go to jail for the horrible things you guys said, unlike other countries, but nobody wants to use an app that can be spammed by an unlimited amount of hate speech profanity." } ], "speaker": 0, "start": 21.71 }, { "end": 59.215, "num_words": 69, "sentences": [ { "end": 46.355, "start": 42.515, "text": "This is a major problem when building any kind of app with user generated data." }, { "end": 53.289997, "start": 46.355, "text": "In today's video, we'll break down all the problems my app had had and talk about tools and techniques you can use to mitigate these issues in your own projects." }, { "end": 57.19, "start": 53.43, "text": "The first problem is that people were using profanity even though I told them not to." }, { "end": 57.989998, "start": 57.19, "text": "They didn't listen." }, { "end": 59.215, "start": 57.989998, "text": "Your language is convinced them." } ], "speaker": 0, "start": 42.515 }, { "end": 88.59, "num_words": 127, "sentences": [ { "end": 65.995, "start": 59.215, "text": "I thought this might happen, so I implemented a pooping system where if a comment gets pooped on 5 times, it gets removed from the UI." }, { "end": 70.13714, "start": 66.055, "text": "I've seen this feature on other platforms like can odyssey where you can slime a comment to death." }, { "end": 79.335, "start": 70.13714, "text": "And I think it's a good idea, but it doesn't really work for a chat where the messages are moving at a 100 miles an It can also be hijacked by the bad guys to poop down all the comments that are actually good." }, { "end": 84.67, "start": 79.335, "text": "So the next thing I did, which is really easy to implement, is just a bad word filter directly in the front end code." }, { "end": 88.59, "start": 84.67, "text": "That means the app can't display words like, f f f balls, and so on." } ], "speaker": 0, "start": 59.215 }, { "end": 123.535, "num_words": 132, "sentences": [ { "end": 95.555, "start": 88.59, "text": "You can also do filtering like this on the back end can before that data ever goes to your database, but it's impossible to catch everything with regular expressions." }, { "end": 100.299995, "start": 95.615, "text": "The trolls will find ways to say bad words with alternative characters characters that bypass your filters." }, { "end": 104.22, "start": 100.299995, "text": "In modern times though, artificial intelligence is starting to take over this job." }, { "end": 113.869995, "start": 104.22, "text": "Google developed perspective which can detect if something is an insult or some variation of profanity, and they use tools like this at scale to keep the worst of the worst comments off of YouTube." }, { "end": 123.535, "start": 113.869995, "text": "Bad words are one problem, but an even bigger problem is when one person creates a script that automatically signs up new users and they all start spamming the same horrible messages cuss 100 of times per second." } ], "speaker": 0, "start": 88.59 }, { "end": 145.71, "num_words": 85, "sentences": [ { "end": 130.195, "start": 123.535, "text": "In my chat app, all you need is a username and password to sign up, but that's not nearly enough friction for any real world application." }, { "end": 135.83, "start": 130.335, "text": "At the very least, you should require an email and have that user verify the email before they start posting messages." }, { "end": 139.575, "start": 135.97, "text": "Pocketbase has a built in email system that can handle this step for you." }, { "end": 142.875, "start": 139.575, "text": "Then you can check the verified status and security rules for messages." }, { "end": 145.71, "start": 143.095, "text": "That's a step in the right direction, but it's still not perfect." } ], "speaker": 0, "start": 123.535 }, { "end": 170.115, "num_words": 91, "sentences": [ { "end": 147.95001, "start": 145.79001, "text": "It's not hard to verify a burner email." }, { "end": 159.175, "start": 147.95001, "text": "That's why nowadays, you see almost all large scale applications requiring multi factor where a user also needs to verify a phone number with a text message or via an authenticator app to do anything important." }, { "end": 161.67, "start": 159.315, "text": "This can also be faked, but it's way more difficult." }, { "end": 166.01001, "start": 161.67, "text": "Still though, someone could register with a burner phone, and once again spam the chat with horrible messages." }, { "end": 170.115, "start": 166.07, "text": "Another step you can take is to verify that the person on the front end is an actual human." } ], "speaker": 0, "start": 145.79001 }, { "end": 202.85, "num_words": 121, "sentences": [ { "end": 174.35501, "start": 170.195, "text": "Can By implementing a CAPTCHA, that in theory can only be solved by a real human." }, { "end": 184.77, "start": 174.35501, "text": "Google's reCAPTCHA is the most popular option, but Cloud Flutter also now has a free alternative called turnstyle, and either option can help validate that requests are actually coming from a human inside your app." }, { "end": 190.745, "start": 184.77, "text": "If you're a Firebase user, this is actually built into the platform with a tool called App Check, which has saved my ass multiple times." }, { "end": 199.25, "start": 190.745, "text": "That can help with bots, but it's not going to stop some deranged lunatic or someone from the FBI social media team from posting awful messages as a legitimate human being." }, { "end": 202.85, "start": 199.25, "text": "Another step you'll wanna take is to implement rate limiting on the back end." } ], "speaker": 0, "start": 170.195 }, { "end": 230.47, "num_words": 108, "sentences": [ { "end": 207.025, "start": 202.85, "text": "This prevents one single could use her from submitting too many requests within a given time period." }, { "end": 212.2, "start": 207.025, "text": "A human can only do so much, and if you see an account breaking past that threshold, then you just shut cut off for a while." }, { "end": 215.65999, "start": 212.2, "text": "Now the final thing I wanna talk about is problems scaling the infrastructure." }, { "end": 221.645, "start": 216.04, "text": "Normally on this channel, we use serverless tools that can scale infinitely in the cloud without any regard for your wallet." }, { "end": 230.47, "start": 221.705, "text": "This video was unique because we hosted the entirety of the back end that includes the rest API, the admin dashboard, and the database can sell on a $5 Linux server." } ], "speaker": 0, "start": 202.85 }, { "end": 265.81, "num_words": 138, "sentences": [ { "end": 238.55501, "start": 230.47, "text": "In just one day, over 300,000 messages were created, and Pocketbase also recorded millions of logging records to go along with all the requests to the API." }, { "end": 246.87, "start": 238.55501, "text": "The pocket based creator left a really nice comment on that video explaining some improvements we could make, like creasing the open file limit to get the real time connections to scale better." }, { "end": 251.82501, "start": 246.87, "text": "Also, keep in mind that pocket base is a very early stage project that hasn't even hit 1 point o yet." }, { "end": 257.125, "start": 251.82501, "text": "Overall, I'm extremely impressed at how it scaled with its limited resources and thousands of real time connections." }, { "end": 265.81, "start": 257.265, "text": "The front end app got really laggy can just do to the fire hose of messages, and the admin app also froze up a couple of times when I tried to delete some of the worst users and messages." } ], "speaker": 0, "start": 230.47 }, { "end": 295.68, "num_words": 116, "sentences": [ { "end": 269.745, "start": 265.87, "text": "But the the dashboard never crashed completely and I could always access the data there." }, { "end": 274.08502, "start": 269.745, "text": "Most importantly, I could always update the rules to globally disable new message creation." }, { "end": 278.61, "start": 274.21, "text": "Can I did that for about an hour, so I could go have a nice healthy and relaxing lunch at Arby's?" }, { "end": 283.83, "start": 278.61, "text": "I left a message from the official FireShip account explaining that the chat had been disabled due to extreme toxicity." }, { "end": 295.68, "start": 283.88998, "text": "As as I sat down and began to enjoy my roast beef sandwich and curly fries, I went in to double check the chat and found that Toshimichi 17 before found an exploit to overwrite my message in addition to any other user in the chat." } ], "speaker": 0, "start": 265.87 }, { "end": 323.73502, "num_words": 109, "sentences": [ { "end": 305.20502, "start": 295.68, "text": "This is my fault for not defining robust security rules, but all I could do was sit there and cry came while eating my strawberries and cream fried pie, now available for a limited time at participating restaurants." }, { "end": 312.88998, "start": 305.265, "text": "Now even though you guys were able to overwhelm and totally wreck I don't feel ashamed or humiliated for this great dishonor I've brought upon the art of programming." }, { "end": 317.91, "start": 312.94998, "text": "Ultimately, moderating and controlling spam on a massive chat app is a nearly impossible task." }, { "end": 319.975, "start": 317.91, "text": "Even in Discord struggles with it to this day." }, { "end": 323.73502, "start": 319.975, "text": "We've had to jump through all kinds of hoops to prevent raids and spam on our Discord server." } ], "speaker": 0, "start": 295.68 }, { "end": 332.43, "num_words": 37, "sentences": [ { "end": 326.65, "start": 323.73502, "text": "If you're crazy enough to build your own massive public chat room." }, { "end": 329.61002, "start": 326.65, "text": "All I can say is good luck and may God be with you." }, { "end": 332.43, "start": 329.61002, "text": "Thanks for watching, and I will see you in the next one." } ], "speaker": 0, "start": 323.73502 } ], "transcript": "\nSpeaker 0: A few days ago, I built a next gen Discord killer with pocket base and Svelte. It was an amazing experience for about 3 minutes, but then you guys completely destroyed it by spamming it with the most deranged comments I've ever seen on the Internet. I initially started with a $5 Linux server. Its usage quickly shot up to 100 consent, so I resized it to 4 cores. That wasn't nearly enough juice either, and all 4 cores quickly became overwhelmed.\n\nAnd this is why we can't have nice things on this channel. The primary person to blame for all this is me, the developer. I built it with bad security practices by design just to see what would happen. Funny do bad things. Luckily, I live in America, so I can't go to jail for the horrible things you guys said, unlike other countries, but nobody wants to use an app that can be spammed by an unlimited amount of hate speech profanity.\n\nThis is a major problem when building any kind of app with user generated data. In today's video, we'll break down all the problems my app had had and talk about tools and techniques you can use to mitigate these issues in your own projects. The first problem is that people were using profanity even though I told them not to. They didn't listen. Your language is convinced them.\n\nI thought this might happen, so I implemented a pooping system where if a comment gets pooped on 5 times, it gets removed from the UI. I've seen this feature on other platforms like can odyssey where you can slime a comment to death. And I think it's a good idea, but it doesn't really work for a chat where the messages are moving at a 100 miles an It can also be hijacked by the bad guys to poop down all the comments that are actually good. So the next thing I did, which is really easy to implement, is just a bad word filter directly in the front end code. That means the app can't display words like, f f f balls, and so on.\n\nYou can also do filtering like this on the back end can before that data ever goes to your database, but it's impossible to catch everything with regular expressions. The trolls will find ways to say bad words with alternative characters characters that bypass your filters. In modern times though, artificial intelligence is starting to take over this job. Google developed perspective which can detect if something is an insult or some variation of profanity, and they use tools like this at scale to keep the worst of the worst comments off of YouTube. Bad words are one problem, but an even bigger problem is when one person creates a script that automatically signs up new users and they all start spamming the same horrible messages cuss 100 of times per second.\n\nIn my chat app, all you need is a username and password to sign up, but that's not nearly enough friction for any real world application. At the very least, you should require an email and have that user verify the email before they start posting messages. Pocketbase has a built in email system that can handle this step for you. Then you can check the verified status and security rules for messages. That's a step in the right direction, but it's still not perfect.\n\nIt's not hard to verify a burner email. That's why nowadays, you see almost all large scale applications requiring multi factor where a user also needs to verify a phone number with a text message or via an authenticator app to do anything important. This can also be faked, but it's way more difficult. Still though, someone could register with a burner phone, and once again spam the chat with horrible messages. Another step you can take is to verify that the person on the front end is an actual human.\n\nCan By implementing a CAPTCHA, that in theory can only be solved by a real human. Google's reCAPTCHA is the most popular option, but Cloud Flutter also now has a free alternative called turnstyle, and either option can help validate that requests are actually coming from a human inside your app. If you're a Firebase user, this is actually built into the platform with a tool called App Check, which has saved my ass multiple times. That can help with bots, but it's not going to stop some deranged lunatic or someone from the FBI social media team from posting awful messages as a legitimate human being. Another step you'll wanna take is to implement rate limiting on the back end.\n\nThis prevents one single could use her from submitting too many requests within a given time period. A human can only do so much, and if you see an account breaking past that threshold, then you just shut cut off for a while. Now the final thing I wanna talk about is problems scaling the infrastructure. Normally on this channel, we use serverless tools that can scale infinitely in the cloud without any regard for your wallet. This video was unique because we hosted the entirety of the back end that includes the rest API, the admin dashboard, and the database can sell on a $5 Linux server.\n\nIn just one day, over 300,000 messages were created, and Pocketbase also recorded millions of logging records to go along with all the requests to the API. The pocket based creator left a really nice comment on that video explaining some improvements we could make, like creasing the open file limit to get the real time connections to scale better. Also, keep in mind that pocket base is a very early stage project that hasn't even hit 1 point o yet. Overall, I'm extremely impressed at how it scaled with its limited resources and thousands of real time connections. The front end app got really laggy can just do to the fire hose of messages, and the admin app also froze up a couple of times when I tried to delete some of the worst users and messages.\n\nBut the the dashboard never crashed completely and I could always access the data there. Most importantly, I could always update the rules to globally disable new message creation. Can I did that for about an hour, so I could go have a nice healthy and relaxing lunch at Arby's? I left a message from the official FireShip account explaining that the chat had been disabled due to extreme toxicity. As as I sat down and began to enjoy my roast beef sandwich and curly fries, I went in to double check the chat and found that Toshimichi 17 before found an exploit to overwrite my message in addition to any other user in the chat.\n\nThis is my fault for not defining robust security rules, but all I could do was sit there and cry came while eating my strawberries and cream fried pie, now available for a limited time at participating restaurants. Now even though you guys were able to overwhelm and totally wreck I don't feel ashamed or humiliated for this great dishonor I've brought upon the art of programming. Ultimately, moderating and controlling spam on a massive chat app is a nearly impossible task. Even in Discord struggles with it to this day. We've had to jump through all kinds of hoops to prevent raids and spam on our Discord server.\n\nIf you're crazy enough to build your own massive public chat room. All I can say is good luck and may God be with you. Thanks for watching, and I will see you in the next one." }, "summaries": null, "topics": [ { "end_word": 82, "start_word": 0, "text": "A few days ago, I built a next gen Discord killer with pocket base and Svelte. It was an amazing experience for about 3 minutes, but then you guys completely destroyed it by spamming it with the most deranged comments I've ever seen on the Internet. I initially started with a $5 Linux server. Its usage quickly shot up to 100 consent, so I resized it to 4 cores. That wasn't nearly enough juice either, and all 4 cores quickly became overwhelmed.", "topics": [] }, { "end_word": 165, "start_word": 82, "text": "And this is why we can't have nice things on this channel. The primary person to blame for all this is me, the developer. I built it with bad security practices by design just to see what would happen. Funny do bad things. Luckily, I live in America, so I can't go to jail for the horrible things you guys said, unlike other countries, but nobody wants to use an app that can be spammed by an unlimited amount of hate speech profanity.", "topics": [ { "confidence": 0.02671797, "topic": "security" } ] }, { "end_word": 390, "start_word": 165, "text": "This is a major problem when building any kind of app with user generated data. In today's video, we'll break down all the problems my app had had and talk about tools and techniques you can use to mitigate these issues in your own projects. The first problem is that people were using profanity even though I told them not to. They didn't listen. Your language is convinced them. I thought this might happen, so I implemented a pooping system where if a comment gets pooped on 5 times, it gets removed from the UI. I've seen this feature on other platforms like can odyssey where you can slime a comment to death. And I think it's a good idea, but it doesn't really work for a chat where the messages are moving at a 100 miles an It can also be hijacked by the bad guys to poop down all the comments that are actually good. So the next thing I did, which is really easy to implement, is just a bad word filter directly in the front end code. That means the app can't display words like, f f f balls, and so on. You can also do filtering like this on the back end can before that data ever goes to your database, but it's impossible to catch everything with regular expressions.", "topics": [] }, { "end_word": 493, "start_word": 390, "text": "The trolls will find ways to say bad words with alternative characters characters that bypass your filters. In modern times though, artificial intelligence is starting to take over this job. Google developed perspective which can detect if something is an insult or some variation of profanity, and they use tools like this at scale to keep the worst of the worst comments off of YouTube. Bad words are one problem, but an even bigger problem is when one person creates a script that automatically signs up new users and they all start spamming the same horrible messages cuss 100 of times per second.", "topics": [ { "confidence": 0.03521367, "topic": "youtube" }, { "confidence": 0.012528179, "topic": "artificial intelligence" }, { "confidence": 0.0083263, "topic": "google" } ] }, { "end_word": 578, "start_word": 493, "text": "In my chat app, all you need is a username and password to sign up, but that's not nearly enough friction for any real world application. At the very least, you should require an email and have that user verify the email before they start posting messages. Pocketbase has a built in email system that can handle this step for you. Then you can check the verified status and security rules for messages. That's a step in the right direction, but it's still not perfect.", "topics": [ { "confidence": 0.3832051, "topic": "email" } ] }, { "end_word": 586, "start_word": 578, "text": "It's not hard to verify a burner email.", "topics": [] }, { "end_word": 650, "start_word": 586, "text": "That's why nowadays, you see almost all large scale applications requiring multi factor where a user also needs to verify a phone number with a text message or via an authenticator app to do anything important. This can also be faked, but it's way more difficult. Still though, someone could register with a burner phone, and once again spam the chat with horrible messages.", "topics": [ { "confidence": 0.9247808, "topic": "phones" } ] }, { "end_word": 807, "start_word": 650, "text": "Another step you can take is to verify that the person on the front end is an actual human. Can By implementing a CAPTCHA, that in theory can only be solved by a real human. Google's reCAPTCHA is the most popular option, but Cloud Flutter also now has a free alternative called turnstyle, and either option can help validate that requests are actually coming from a human inside your app. If you're a Firebase user, this is actually built into the platform with a tool called App Check, which has saved my ass multiple times. That can help with bots, but it's not going to stop some deranged lunatic or someone from the FBI social media team from posting awful messages as a legitimate human being. Another step you'll wanna take is to implement rate limiting on the back end. This prevents one single could use her from submitting too many requests within a given time period.", "topics": [] }, { "end_word": 925, "start_word": 807, "text": "A human can only do so much, and if you see an account breaking past that threshold, then you just shut cut off for a while. Now the final thing I wanna talk about is problems scaling the infrastructure. Normally on this channel, we use serverless tools that can scale infinitely in the cloud without any regard for your wallet. This video was unique because we hosted the entirety of the back end that includes the rest API, the admin dashboard, and the database can sell on a $5 Linux server. In just one day, over 300,000 messages were created, and Pocketbase also recorded millions of logging records to go along with all the requests to the API.", "topics": [ { "confidence": 0.10377859, "topic": "networking" }, { "confidence": 0.07497137, "topic": "streaming" }, { "confidence": 0.037964813, "topic": "internet" }, { "confidence": 0.01708585, "topic": "multimedia" }, { "confidence": 0.013097072, "topic": "youtube" } ] }, { "end_word": 1106, "start_word": 925, "text": "The pocket based creator left a really nice comment on that video explaining some improvements we could make, like creasing the open file limit to get the real time connections to scale better. Also, keep in mind that pocket base is a very early stage project that hasn't even hit 1 point o yet. Overall, I'm extremely impressed at how it scaled with its limited resources and thousands of real time connections. The front end app got really laggy can just do to the fire hose of messages, and the admin app also froze up a couple of times when I tried to delete some of the worst users and messages. But the the dashboard never crashed completely and I could always access the data there. Most importantly, I could always update the rules to globally disable new message creation. Can I did that for about an hour, so I could go have a nice healthy and relaxing lunch at Arby's? I left a message from the official FireShip account explaining that the chat had been disabled due to extreme toxicity.", "topics": [] }, { "end_word": 1219, "start_word": 1106, "text": "As as I sat down and began to enjoy my roast beef sandwich and curly fries, I went in to double check the chat and found that Toshimichi 17 before found an exploit to overwrite my message in addition to any other user in the chat. This is my fault for not defining robust security rules, but all I could do was sit there and cry came while eating my strawberries and cream fried pie, now available for a limited time at participating restaurants. Now even though you guys were able to overwhelm and totally wreck I don't feel ashamed or humiliated for this great dishonor I've brought upon the art of programming.", "topics": [ { "confidence": 0.10775179, "topic": "security" } ] }, { "end_word": 1273, "start_word": 1219, "text": "Ultimately, moderating and controlling spam on a massive chat app is a nearly impossible task. Even in Discord struggles with it to this day. We've had to jump through all kinds of hoops to prevent raids and spam on our Discord server. If you're crazy enough to build your own massive public chat room.", "topics": [ { "confidence": 0.008689542, "topic": "networking" } ] }, { "end_word": 1298, "start_word": 1273, "text": "All I can say is good luck and may God be with you. Thanks for watching, and I will see you in the next one.", "topics": [] } ], "transcript": "A few days ago, I built a next gen Discord killer with pocket base and Svelte. It was an amazing experience for about 3 minutes, but then you guys completely destroyed it by spamming it with the most deranged comments I've ever seen on the Internet. I initially started with a $5 Linux server. Its usage quickly shot up to 100 consent, so I resized it to 4 cores. That wasn't nearly enough juice either, and all 4 cores quickly became overwhelmed. And this is why we can't have nice things on this channel. The primary person to blame for all this is me, the developer. I built it with bad security practices by design just to see what would happen. Funny do bad things. Luckily, I live in America, so I can't go to jail for the horrible things you guys said, unlike other countries, but nobody wants to use an app that can be spammed by an unlimited amount of hate speech profanity. This is a major problem when building any kind of app with user generated data. In today's video, we'll break down all the problems my app had had and talk about tools and techniques you can use to mitigate these issues in your own projects. The first problem is that people were using profanity even though I told them not to. They didn't listen. Your language is convinced them. I thought this might happen, so I implemented a pooping system where if a comment gets pooped on 5 times, it gets removed from the UI. I've seen this feature on other platforms like can odyssey where you can slime a comment to death. And I think it's a good idea, but it doesn't really work for a chat where the messages are moving at a 100 miles an It can also be hijacked by the bad guys to poop down all the comments that are actually good. So the next thing I did, which is really easy to implement, is just a bad word filter directly in the front end code. That means the app can't display words like, f f f balls, and so on. You can also do filtering like this on the back end can before that data ever goes to your database, but it's impossible to catch everything with regular expressions. The trolls will find ways to say bad words with alternative characters characters that bypass your filters. In modern times though, artificial intelligence is starting to take over this job. Google developed perspective which can detect if something is an insult or some variation of profanity, and they use tools like this at scale to keep the worst of the worst comments off of YouTube. Bad words are one problem, but an even bigger problem is when one person creates a script that automatically signs up new users and they all start spamming the same horrible messages cuss 100 of times per second. In my chat app, all you need is a username and password to sign up, but that's not nearly enough friction for any real world application. At the very least, you should require an email and have that user verify the email before they start posting messages. Pocketbase has a built in email system that can handle this step for you. Then you can check the verified status and security rules for messages. That's a step in the right direction, but it's still not perfect. It's not hard to verify a burner email. That's why nowadays, you see almost all large scale applications requiring multi factor where a user also needs to verify a phone number with a text message or via an authenticator app to do anything important. This can also be faked, but it's way more difficult. Still though, someone could register with a burner phone, and once again spam the chat with horrible messages. Another step you can take is to verify that the person on the front end is an actual human. Can By implementing a CAPTCHA, that in theory can only be solved by a real human. Google's reCAPTCHA is the most popular option, but Cloud Flutter also now has a free alternative called turnstyle, and either option can help validate that requests are actually coming from a human inside your app. If you're a Firebase user, this is actually built into the platform with a tool called App Check, which has saved my ass multiple times. That can help with bots, but it's not going to stop some deranged lunatic or someone from the FBI social media team from posting awful messages as a legitimate human being. Another step you'll wanna take is to implement rate limiting on the back end. This prevents one single could use her from submitting too many requests within a given time period. A human can only do so much, and if you see an account breaking past that threshold, then you just shut cut off for a while. Now the final thing I wanna talk about is problems scaling the infrastructure. Normally on this channel, we use serverless tools that can scale infinitely in the cloud without any regard for your wallet. This video was unique because we hosted the entirety of the back end that includes the rest API, the admin dashboard, and the database can sell on a $5 Linux server. In just one day, over 300,000 messages were created, and Pocketbase also recorded millions of logging records to go along with all the requests to the API. The pocket based creator left a really nice comment on that video explaining some improvements we could make, like creasing the open file limit to get the real time connections to scale better. Also, keep in mind that pocket base is a very early stage project that hasn't even hit 1 point o yet. Overall, I'm extremely impressed at how it scaled with its limited resources and thousands of real time connections. The front end app got really laggy can just do to the fire hose of messages, and the admin app also froze up a couple of times when I tried to delete some of the worst users and messages. But the the dashboard never crashed completely and I could always access the data there. Most importantly, I could always update the rules to globally disable new message creation. Can I did that for about an hour, so I could go have a nice healthy and relaxing lunch at Arby's? I left a message from the official FireShip account explaining that the chat had been disabled due to extreme toxicity. As as I sat down and began to enjoy my roast beef sandwich and curly fries, I went in to double check the chat and found that Toshimichi 17 before found an exploit to overwrite my message in addition to any other user in the chat. This is my fault for not defining robust security rules, but all I could do was sit there and cry came while eating my strawberries and cream fried pie, now available for a limited time at participating restaurants. Now even though you guys were able to overwhelm and totally wreck I don't feel ashamed or humiliated for this great dishonor I've brought upon the art of programming. Ultimately, moderating and controlling spam on a massive chat app is a nearly impossible task. Even in Discord struggles with it to this day. We've had to jump through all kinds of hoops to prevent raids and spam on our Discord server. If you're crazy enough to build your own massive public chat room. All I can say is good luck and may God be with you. Thanks for watching, and I will see you in the next one.", "translations": null, "words": [ { "confidence": 0.6767578, "end": 0.24, "punctuated_word": "A", "speaker": 0, "speaker_confidence": 0.09667969, "start": 0.08, "word": "a" }, { "confidence": 1, "end": 0.39999998, "punctuated_word": "few", "speaker": 0, "speaker_confidence": 0.09667969, "start": 0.24, "word": "few" }, { "confidence": 1, "end": 0.48, "punctuated_word": "days", "speaker": 0, "speaker_confidence": 0.7470703, "start": 0.39999998, "word": "days" }, { "confidence": 0.85717773, "end": 0.88, "punctuated_word": "ago,", "speaker": 0, "speaker_confidence": 0.7470703, "start": 0.48, "word": "ago" }, { "confidence": 1, "end": 1.04, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.7470703, "start": 0.88, "word": "i" }, { "confidence": 0.9951172, "end": 1.28, "punctuated_word": "built", "speaker": 0, "speaker_confidence": 0.7470703, "start": 1.04, "word": "built" }, { "confidence": 0.99902344, "end": 1.4399999, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7470703, "start": 1.28, "word": "a" }, { "confidence": 0.9326172, "end": 1.68, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.7470703, "start": 1.4399999, "word": "next" }, { "confidence": 0.96972656, "end": 2, "punctuated_word": "gen", "speaker": 0, "speaker_confidence": 0.7470703, "start": 1.68, "word": "gen" }, { "confidence": 0.89453125, "end": 2.3999999, "punctuated_word": "Discord", "speaker": 0, "speaker_confidence": 0.7470703, "start": 2, "word": "discord" }, { "confidence": 0.7373047, "end": 2.8, "punctuated_word": "killer", "speaker": 0, "speaker_confidence": 0.7470703, "start": 2.3999999, "word": "killer" }, { "confidence": 0.99902344, "end": 3.04, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.7470703, "start": 2.8, "word": "with" }, { "confidence": 0.84765625, "end": 3.36, "punctuated_word": "pocket", "speaker": 0, "speaker_confidence": 0.7470703, "start": 3.04, "word": "pocket" }, { "confidence": 0.40893555, "end": 3.6, "punctuated_word": "base", "speaker": 0, "speaker_confidence": 0.7470703, "start": 3.36, "word": "base" }, { "confidence": 0.8330078, "end": 3.6799998, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.80371094, "start": 3.6, "word": "and" }, { "confidence": 0.9760742, "end": 4.08, "punctuated_word": "Svelte.", "speaker": 0, "speaker_confidence": 0.80371094, "start": 3.6799998, "word": "svelte" }, { "confidence": 0.99902344, "end": 4.24, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.80371094, "start": 4.08, "word": "it" }, { "confidence": 0.99902344, "end": 4.3199997, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.80371094, "start": 4.24, "word": "was" }, { "confidence": 0.9970703, "end": 4.48, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.80371094, "start": 4.3199997, "word": "an" }, { "confidence": 1, "end": 4.96, "punctuated_word": "amazing", "speaker": 0, "speaker_confidence": 0.80371094, "start": 4.48, "word": "amazing" }, { "confidence": 1, "end": 5.3599997, "punctuated_word": "experience", "speaker": 0, "speaker_confidence": 0.80371094, "start": 4.96, "word": "experience" }, { "confidence": 0.99902344, "end": 5.6, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.80371094, "start": 5.3599997, "word": "for" }, { "confidence": 1, "end": 5.8399997, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.80371094, "start": 5.6, "word": "about" }, { "confidence": 0.9902344, "end": 6.08, "punctuated_word": "3", "speaker": 0, "speaker_confidence": 0.80371094, "start": 5.8399997, "word": "3" }, { "confidence": 0.92578125, "end": 6.48, "punctuated_word": "minutes,", "speaker": 0, "speaker_confidence": 0.80371094, "start": 6.08, "word": "minutes" }, { "confidence": 0.9980469, "end": 6.64, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.80371094, "start": 6.48, "word": "but" }, { "confidence": 0.99902344, "end": 6.8799996, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.80371094, "start": 6.64, "word": "then" }, { "confidence": 0.9248047, "end": 7.04, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.80371094, "start": 6.8799996, "word": "you" }, { "confidence": 1, "end": 7.375, "punctuated_word": "guys", "speaker": 0, "speaker_confidence": 0.80371094, "start": 7.04, "word": "guys" }, { "confidence": 0.9536133, "end": 7.775, "punctuated_word": "completely", "speaker": 0, "speaker_confidence": 0.80371094, "start": 7.455, "word": "completely" }, { "confidence": 0.99902344, "end": 8.015, "punctuated_word": "destroyed", "speaker": 0, "speaker_confidence": 0.80371094, "start": 7.775, "word": "destroyed" }, { "confidence": 0.9892578, "end": 8.175, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.80371094, "start": 8.015, "word": "it" }, { "confidence": 0.9970703, "end": 8.415, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.80371094, "start": 8.175, "word": "by" }, { "confidence": 0.9995117, "end": 8.735, "punctuated_word": "spamming", "speaker": 0, "speaker_confidence": 0.80371094, "start": 8.415, "word": "spamming" }, { "confidence": 0.9980469, "end": 8.975, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.80371094, "start": 8.735, "word": "it" }, { "confidence": 0.98828125, "end": 9.055, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.68066406, "start": 8.975, "word": "with" }, { "confidence": 1, "end": 9.215, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.68066406, "start": 9.055, "word": "the" }, { "confidence": 0.99902344, "end": 9.455, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 0.68066406, "start": 9.215, "word": "most" }, { "confidence": 0.97802734, "end": 9.775, "punctuated_word": "deranged", "speaker": 0, "speaker_confidence": 0.68066406, "start": 9.455, "word": "deranged" }, { "confidence": 1, "end": 10.175, "punctuated_word": "comments", "speaker": 0, "speaker_confidence": 0.68066406, "start": 9.775, "word": "comments" }, { "confidence": 0.99609375, "end": 10.335, "punctuated_word": "I've", "speaker": 0, "speaker_confidence": 0.68066406, "start": 10.175, "word": "i've" }, { "confidence": 0.99609375, "end": 10.575, "punctuated_word": "ever", "speaker": 0, "speaker_confidence": 0.68066406, "start": 10.335, "word": "ever" }, { "confidence": 1, "end": 10.815, "punctuated_word": "seen", "speaker": 0, "speaker_confidence": 0.68066406, "start": 10.575, "word": "seen" }, { "confidence": 1, "end": 10.895, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8955078, "start": 10.815, "word": "on" }, { "confidence": 1, "end": 10.975, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8955078, "start": 10.895, "word": "the" }, { "confidence": 0.8857422, "end": 11.375, "punctuated_word": "Internet.", "speaker": 0, "speaker_confidence": 0.8955078, "start": 10.975, "word": "internet" }, { "confidence": 0.99609375, "end": 11.455, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.8955078, "start": 11.375, "word": "i" }, { "confidence": 0.99609375, "end": 11.934999, "punctuated_word": "initially", "speaker": 0, "speaker_confidence": 0.8955078, "start": 11.455, "word": "initially" }, { "confidence": 0.99902344, "end": 12.255, "punctuated_word": "started", "speaker": 0, "speaker_confidence": 0.8955078, "start": 11.934999, "word": "started" }, { "confidence": 1, "end": 12.415, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.8955078, "start": 12.255, "word": "with" }, { "confidence": 0.9970703, "end": 12.495, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8955078, "start": 12.415, "word": "a" }, { "confidence": 0.9921875, "end": 12.975, "punctuated_word": "$5", "speaker": 0, "speaker_confidence": 0.8955078, "start": 12.495, "word": "$5" }, { "confidence": 0.9892578, "end": 13.295, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 0.8955078, "start": 12.975, "word": "linux" }, { "confidence": 0.87597656, "end": 13.695, "punctuated_word": "server.", "speaker": 0, "speaker_confidence": 0.8955078, "start": 13.295, "word": "server" }, { "confidence": 0.8588867, "end": 13.934999, "punctuated_word": "Its", "speaker": 0, "speaker_confidence": 0.8955078, "start": 13.695, "word": "its" }, { "confidence": 0.9970703, "end": 14.254999, "punctuated_word": "usage", "speaker": 0, "speaker_confidence": 0.8955078, "start": 13.934999, "word": "usage" }, { "confidence": 1, "end": 14.655, "punctuated_word": "quickly", "speaker": 0, "speaker_confidence": 0.8955078, "start": 14.254999, "word": "quickly" }, { "confidence": 0.9873047, "end": 14.895, "punctuated_word": "shot", "speaker": 0, "speaker_confidence": 0.8955078, "start": 14.655, "word": "shot" }, { "confidence": 0.99121094, "end": 14.975, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.8955078, "start": 14.895, "word": "up" }, { "confidence": 0.99902344, "end": 15.135, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8955078, "start": 14.975, "word": "to" }, { "confidence": 0.88964844, "end": 15.635, "punctuated_word": "100", "speaker": 0, "speaker_confidence": 0.8955078, "start": 15.135, "word": "100" }, { "confidence": 0.56311035, "end": 16.03, "punctuated_word": "consent,", "speaker": 0, "speaker_confidence": 0.8955078, "start": 15.79, "word": "consent" }, { "confidence": 0.99902344, "end": 16.19, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.8955078, "start": 16.03, "word": "so" }, { "confidence": 0.99902344, "end": 16.43, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.8955078, "start": 16.19, "word": "i" }, { "confidence": 0.99365234, "end": 16.83, "punctuated_word": "resized", "speaker": 0, "speaker_confidence": 0.8955078, "start": 16.43, "word": "resized" }, { "confidence": 0.9980469, "end": 16.99, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8955078, "start": 16.83, "word": "it" }, { "confidence": 0.99609375, "end": 17.23, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8955078, "start": 16.99, "word": "to" }, { "confidence": 0.9350586, "end": 17.47, "punctuated_word": "4", "speaker": 0, "speaker_confidence": 0.8955078, "start": 17.23, "word": "4" }, { "confidence": 0.8835449, "end": 17.869999, "punctuated_word": "cores.", "speaker": 0, "speaker_confidence": 0.8955078, "start": 17.47, "word": "cores" }, { "confidence": 0.9291992, "end": 18.11, "punctuated_word": "That", "speaker": 0, "speaker_confidence": 0.8955078, "start": 17.869999, "word": "that" }, { "confidence": 0.9995117, "end": 18.35, "punctuated_word": "wasn't", "speaker": 0, "speaker_confidence": 0.8955078, "start": 18.11, "word": "wasn't" }, { "confidence": 0.9970703, "end": 18.67, "punctuated_word": "nearly", "speaker": 0, "speaker_confidence": 0.8955078, "start": 18.35, "word": "nearly" }, { "confidence": 1, "end": 18.91, "punctuated_word": "enough", "speaker": 0, "speaker_confidence": 0.8955078, "start": 18.67, "word": "enough" }, { "confidence": 0.99902344, "end": 19.15, "punctuated_word": "juice", "speaker": 0, "speaker_confidence": 0.8955078, "start": 18.91, "word": "juice" }, { "confidence": 0.8796387, "end": 19.55, "punctuated_word": "either,", "speaker": 0, "speaker_confidence": 0.8955078, "start": 19.15, "word": "either" }, { "confidence": 1, "end": 19.79, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8955078, "start": 19.55, "word": "and" }, { "confidence": 1, "end": 19.95, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.8955078, "start": 19.79, "word": "all" }, { "confidence": 0.8173828, "end": 20.19, "punctuated_word": "4", "speaker": 0, "speaker_confidence": 0.8955078, "start": 19.95, "word": "4" }, { "confidence": 0.9902344, "end": 20.43, "punctuated_word": "cores", "speaker": 0, "speaker_confidence": 0.8955078, "start": 20.19, "word": "cores" }, { "confidence": 1, "end": 20.75, "punctuated_word": "quickly", "speaker": 0, "speaker_confidence": 0.8955078, "start": 20.43, "word": "quickly" }, { "confidence": 0.9980469, "end": 21.07, "punctuated_word": "became", "speaker": 0, "speaker_confidence": 0.8955078, "start": 20.75, "word": "became" }, { "confidence": 0.86328125, "end": 21.57, "punctuated_word": "overwhelmed.", "speaker": 0, "speaker_confidence": 0.8955078, "start": 21.07, "word": "overwhelmed" }, { "confidence": 0.9980469, "end": 21.869999, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.8955078, "start": 21.71, "word": "and" }, { "confidence": 0.9980469, "end": 22.029999, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.8955078, "start": 21.869999, "word": "this" }, { "confidence": 0.9980469, "end": 22.11, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8955078, "start": 22.029999, "word": "is" }, { "confidence": 1, "end": 22.27, "punctuated_word": "why", "speaker": 0, "speaker_confidence": 0.8955078, "start": 22.11, "word": "why" }, { "confidence": 0.99902344, "end": 22.35, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.87646484, "start": 22.27, "word": "we" }, { "confidence": 1, "end": 22.59, "punctuated_word": "can't", "speaker": 0, "speaker_confidence": 0.87646484, "start": 22.35, "word": "can't" }, { "confidence": 1, "end": 22.75, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.87646484, "start": 22.59, "word": "have" }, { "confidence": 1, "end": 23.07, "punctuated_word": "nice", "speaker": 0, "speaker_confidence": 0.87646484, "start": 22.75, "word": "nice" }, { "confidence": 0.99902344, "end": 23.31, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 0.87646484, "start": 23.07, "word": "things" }, { "confidence": 0.99609375, "end": 23.47, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.87646484, "start": 23.31, "word": "on" }, { "confidence": 0.99609375, "end": 23.63, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.87646484, "start": 23.47, "word": "this" }, { "confidence": 0.98583984, "end": 24.11, "punctuated_word": "channel.", "speaker": 0, "speaker_confidence": 0.87646484, "start": 23.63, "word": "channel" }, { "confidence": 0.7128906, "end": 24.27, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.87646484, "start": 24.11, "word": "the" }, { "confidence": 0.99609375, "end": 24.67, "punctuated_word": "primary", "speaker": 0, "speaker_confidence": 0.87646484, "start": 24.27, "word": "primary" }, { "confidence": 0.9941406, "end": 24.99, "punctuated_word": "person", "speaker": 0, "speaker_confidence": 0.87646484, "start": 24.67, "word": "person" }, { "confidence": 0.9506836, "end": 25.215, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.87646484, "start": 24.99, "word": "to" }, { "confidence": 0.49658203, "end": 25.375, "punctuated_word": "blame", "speaker": 0, "speaker_confidence": 0.87646484, "start": 25.295, "word": "blame" }, { "confidence": 0.9951172, "end": 25.535, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.87646484, "start": 25.375, "word": "for" }, { "confidence": 0.9980469, "end": 25.695, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.87646484, "start": 25.535, "word": "all" }, { "confidence": 0.8598633, "end": 26.015, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.87646484, "start": 25.695, "word": "this" }, { "confidence": 0.88720703, "end": 26.255001, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.87646484, "start": 26.015, "word": "is" }, { "confidence": 0.97216797, "end": 26.495, "punctuated_word": "me,", "speaker": 0, "speaker_confidence": 0.87646484, "start": 26.255001, "word": "me" }, { "confidence": 1, "end": 26.735, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.87646484, "start": 26.495, "word": "the" }, { "confidence": 0.99853516, "end": 27.235, "punctuated_word": "developer.", "speaker": 0, "speaker_confidence": 0.87646484, "start": 26.735, "word": "developer" }, { "confidence": 1, "end": 27.455, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.87646484, "start": 27.295, "word": "i" }, { "confidence": 0.9506836, "end": 27.695, "punctuated_word": "built", "speaker": 0, "speaker_confidence": 0.87646484, "start": 27.455, "word": "built" }, { "confidence": 0.99902344, "end": 27.855, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.87646484, "start": 27.695, "word": "it" }, { "confidence": 0.99902344, "end": 28.015, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.87646484, "start": 27.855, "word": "with" }, { "confidence": 1, "end": 28.335, "punctuated_word": "bad", "speaker": 0, "speaker_confidence": 0.87646484, "start": 28.015, "word": "bad" }, { "confidence": 1, "end": 28.815, "punctuated_word": "security", "speaker": 0, "speaker_confidence": 0.87646484, "start": 28.335, "word": "security" }, { "confidence": 0.99902344, "end": 29.215, "punctuated_word": "practices", "speaker": 0, "speaker_confidence": 0.87646484, "start": 28.815, "word": "practices" }, { "confidence": 0.9980469, "end": 29.455, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.87646484, "start": 29.215, "word": "by" }, { "confidence": 0.99902344, "end": 29.955, "punctuated_word": "design", "speaker": 0, "speaker_confidence": 0.87646484, "start": 29.455, "word": "design" }, { "confidence": 0.5385742, "end": 30.335, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.87646484, "start": 30.015, "word": "just" }, { "confidence": 0.98828125, "end": 30.494999, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.87646484, "start": 30.335, "word": "to" }, { "confidence": 0.99902344, "end": 30.575, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.87646484, "start": 30.494999, "word": "see" }, { "confidence": 0.99902344, "end": 30.735, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.87646484, "start": 30.575, "word": "what" }, { "confidence": 0.99902344, "end": 30.895, "punctuated_word": "would", "speaker": 0, "speaker_confidence": 0.87646484, "start": 30.735, "word": "would" }, { "confidence": 0.9995117, "end": 31.395, "punctuated_word": "happen.", "speaker": 0, "speaker_confidence": 0.87646484, "start": 30.895, "word": "happen" }, { "confidence": 0.5004883, "end": 31.775, "punctuated_word": "Funny", "speaker": 0, "speaker_confidence": 0, "start": 31.455, "word": "funny" }, { "confidence": 0.5996094, "end": 32.095, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0, "start": 31.775, "word": "do" }, { "confidence": 0.9941406, "end": 32.335, "punctuated_word": "bad", "speaker": 0, "speaker_confidence": 0, "start": 32.095, "word": "bad" }, { "confidence": 0.96069336, "end": 32.68, "punctuated_word": "things.", "speaker": 0, "speaker_confidence": 0, "start": 32.335, "word": "things" }, { "confidence": 0.5593262, "end": 33.16, "punctuated_word": "Luckily,", "speaker": 0, "speaker_confidence": 0.5371094, "start": 32.84, "word": "luckily" }, { "confidence": 1, "end": 33.32, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.5371094, "start": 33.16, "word": "i" }, { "confidence": 0.9980469, "end": 33.48, "punctuated_word": "live", "speaker": 0, "speaker_confidence": 0.5371094, "start": 33.32, "word": "live" }, { "confidence": 1, "end": 33.64, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.5371094, "start": 33.48, "word": "in" }, { "confidence": 0.9482422, "end": 34.04, "punctuated_word": "America,", "speaker": 0, "speaker_confidence": 0.5371094, "start": 33.64, "word": "america" }, { "confidence": 0.99902344, "end": 34.28, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.5371094, "start": 34.04, "word": "so" }, { "confidence": 1, "end": 34.36, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.5371094, "start": 34.28, "word": "i" }, { "confidence": 1, "end": 34.52, "punctuated_word": "can't", "speaker": 0, "speaker_confidence": 0.5283203, "start": 34.36, "word": "can't" }, { "confidence": 0.99902344, "end": 34.68, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.5283203, "start": 34.52, "word": "go" }, { "confidence": 0.9951172, "end": 34.760002, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.5283203, "start": 34.68, "word": "to" }, { "confidence": 1, "end": 35, "punctuated_word": "jail", "speaker": 0, "speaker_confidence": 0.5283203, "start": 34.760002, "word": "jail" }, { "confidence": 1, "end": 35.16, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.5283203, "start": 35, "word": "for" }, { "confidence": 1, "end": 35.32, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5283203, "start": 35.16, "word": "the" }, { "confidence": 1, "end": 35.64, "punctuated_word": "horrible", "speaker": 0, "speaker_confidence": 0.5283203, "start": 35.32, "word": "horrible" }, { "confidence": 0.99902344, "end": 35.88, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 0.5283203, "start": 35.64, "word": "things" }, { "confidence": 0.9980469, "end": 35.96, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.703125, "start": 35.88, "word": "you" }, { "confidence": 0.9980469, "end": 36.2, "punctuated_word": "guys", "speaker": 0, "speaker_confidence": 0.703125, "start": 35.96, "word": "guys" }, { "confidence": 0.85375977, "end": 36.6, "punctuated_word": "said,", "speaker": 0, "speaker_confidence": 0.703125, "start": 36.2, "word": "said" }, { "confidence": 0.98291016, "end": 36.92, "punctuated_word": "unlike", "speaker": 0, "speaker_confidence": 0.703125, "start": 36.6, "word": "unlike" }, { "confidence": 0.9970703, "end": 37.16, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.703125, "start": 36.92, "word": "other" }, { "confidence": 0.9001465, "end": 37.66, "punctuated_word": "countries,", "speaker": 0, "speaker_confidence": 0.703125, "start": 37.16, "word": "countries" }, { "confidence": 0.93359375, "end": 37.96, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.703125, "start": 37.72, "word": "but" }, { "confidence": 0.99902344, "end": 38.28, "punctuated_word": "nobody", "speaker": 0, "speaker_confidence": 0.703125, "start": 37.96, "word": "nobody" }, { "confidence": 0.99902344, "end": 38.52, "punctuated_word": "wants", "speaker": 0, "speaker_confidence": 0.703125, "start": 38.28, "word": "wants" }, { "confidence": 0.99902344, "end": 38.6, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.703125, "start": 38.52, "word": "to" }, { "confidence": 0.9980469, "end": 38.760002, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.83984375, "start": 38.6, "word": "use" }, { "confidence": 0.99121094, "end": 38.92, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.83984375, "start": 38.760002, "word": "an" }, { "confidence": 0.99902344, "end": 39.16, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.83984375, "start": 38.92, "word": "app" }, { "confidence": 0.9941406, "end": 39.4, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.83984375, "start": 39.16, "word": "that" }, { "confidence": 0.99121094, "end": 39.48, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.83984375, "start": 39.4, "word": "can" }, { "confidence": 0.9970703, "end": 39.64, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.83984375, "start": 39.48, "word": "be" }, { "confidence": 0.9995117, "end": 39.96, "punctuated_word": "spammed", "speaker": 0, "speaker_confidence": 0.83984375, "start": 39.64, "word": "spammed" }, { "confidence": 0.9951172, "end": 40.12, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.83984375, "start": 39.96, "word": "by" }, { "confidence": 0.9892578, "end": 40.28, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.83984375, "start": 40.12, "word": "an" }, { "confidence": 0.9941406, "end": 40.68, "punctuated_word": "unlimited", "speaker": 0, "speaker_confidence": 0.83984375, "start": 40.28, "word": "unlimited" }, { "confidence": 0.9951172, "end": 40.92, "punctuated_word": "amount", "speaker": 0, "speaker_confidence": 0.83984375, "start": 40.68, "word": "amount" }, { "confidence": 0.9589844, "end": 41.08, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.83984375, "start": 40.92, "word": "of" }, { "confidence": 0.9267578, "end": 41.32, "punctuated_word": "hate", "speaker": 0, "speaker_confidence": 0.83984375, "start": 41.08, "word": "hate" }, { "confidence": 0.63720703, "end": 41.555, "punctuated_word": "speech", "speaker": 0, "speaker_confidence": 0.83984375, "start": 41.32, "word": "speech" }, { "confidence": 0.7807617, "end": 42.215, "punctuated_word": "profanity.", "speaker": 0, "speaker_confidence": 0.83984375, "start": 41.715, "word": "profanity" }, { "confidence": 0.9819336, "end": 42.755, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.83984375, "start": 42.515, "word": "this" }, { "confidence": 0.99902344, "end": 42.835, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.83984375, "start": 42.755, "word": "is" }, { "confidence": 0.99902344, "end": 42.995, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8105469, "start": 42.835, "word": "a" }, { "confidence": 1, "end": 43.235, "punctuated_word": "major", "speaker": 0, "speaker_confidence": 0.8105469, "start": 42.995, "word": "major" }, { "confidence": 1, "end": 43.735, "punctuated_word": "problem", "speaker": 0, "speaker_confidence": 0.8105469, "start": 43.235, "word": "problem" }, { "confidence": 0.9980469, "end": 43.955, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.8105469, "start": 43.795002, "word": "when" }, { "confidence": 1, "end": 44.355, "punctuated_word": "building", "speaker": 0, "speaker_confidence": 0.8105469, "start": 43.955, "word": "building" }, { "confidence": 1, "end": 44.515, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 0.8105469, "start": 44.355, "word": "any" }, { "confidence": 0.99902344, "end": 44.755, "punctuated_word": "kind", "speaker": 0, "speaker_confidence": 0.8105469, "start": 44.515, "word": "kind" }, { "confidence": 1, "end": 44.835, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8105469, "start": 44.755, "word": "of" }, { "confidence": 1, "end": 44.995, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.8105469, "start": 44.835, "word": "app" }, { "confidence": 1, "end": 45.235, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.8105469, "start": 44.995, "word": "with" }, { "confidence": 0.99316406, "end": 45.555, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 0.8105469, "start": 45.235, "word": "user" }, { "confidence": 1, "end": 46.035, "punctuated_word": "generated", "speaker": 0, "speaker_confidence": 0.8105469, "start": 45.555, "word": "generated" }, { "confidence": 0.9995117, "end": 46.355, "punctuated_word": "data.", "speaker": 0, "speaker_confidence": 0.8105469, "start": 46.035, "word": "data" }, { "confidence": 0.98095703, "end": 46.435, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.6303711, "start": 46.355, "word": "in" }, { "confidence": 1, "end": 46.755, "punctuated_word": "today's", "speaker": 0, "speaker_confidence": 0.6303711, "start": 46.435, "word": "today's" }, { "confidence": 0.99902344, "end": 47.075, "punctuated_word": "video,", "speaker": 0, "speaker_confidence": 0.6303711, "start": 46.755, "word": "video" }, { "confidence": 0.9995117, "end": 47.235, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.6303711, "start": 47.075, "word": "we'll" }, { "confidence": 0.97802734, "end": 47.475, "punctuated_word": "break", "speaker": 0, "speaker_confidence": 0.6303711, "start": 47.235, "word": "break" }, { "confidence": 1, "end": 47.715, "punctuated_word": "down", "speaker": 0, "speaker_confidence": 0.6303711, "start": 47.475, "word": "down" }, { "confidence": 1, "end": 47.795, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.9794922, "start": 47.715, "word": "all" }, { "confidence": 0.99902344, "end": 47.955, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9794922, "start": 47.795, "word": "the" }, { "confidence": 1, "end": 48.355, "punctuated_word": "problems", "speaker": 0, "speaker_confidence": 0.9794922, "start": 47.955, "word": "problems" }, { "confidence": 0.9902344, "end": 48.515, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.9794922, "start": 48.355, "word": "my" }, { "confidence": 0.99609375, "end": 48.675, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.9794922, "start": 48.515, "word": "app" }, { "confidence": 0.8852539, "end": 48.87, "punctuated_word": "had", "speaker": 0, "speaker_confidence": 0.9794922, "start": 48.675, "word": "had" }, { "confidence": 0.5175781, "end": 49.03, "punctuated_word": "had", "speaker": 0, "speaker_confidence": 0.9794922, "start": 48.87, "word": "had" }, { "confidence": 0.90527344, "end": 49.27, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9794922, "start": 49.11, "word": "and" }, { "confidence": 0.92822266, "end": 49.35, "punctuated_word": "talk", "speaker": 0, "speaker_confidence": 0.9794922, "start": 49.27, "word": "talk" }, { "confidence": 0.99902344, "end": 49.75, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.9794922, "start": 49.35, "word": "about" }, { "confidence": 1, "end": 49.989998, "punctuated_word": "tools", "speaker": 0, "speaker_confidence": 0.9794922, "start": 49.75, "word": "tools" }, { "confidence": 0.9980469, "end": 50.149998, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9794922, "start": 49.989998, "word": "and" }, { "confidence": 0.99902344, "end": 50.55, "punctuated_word": "techniques", "speaker": 0, "speaker_confidence": 0.9794922, "start": 50.149998, "word": "techniques" }, { "confidence": 0.57128906, "end": 50.71, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.9794922, "start": 50.55, "word": "you" }, { "confidence": 0.9970703, "end": 50.87, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9794922, "start": 50.71, "word": "can" }, { "confidence": 1, "end": 51.19, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.9794922, "start": 50.87, "word": "use" }, { "confidence": 0.9980469, "end": 51.35, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9794922, "start": 51.19, "word": "to" }, { "confidence": 1, "end": 51.75, "punctuated_word": "mitigate", "speaker": 0, "speaker_confidence": 0.9794922, "start": 51.35, "word": "mitigate" }, { "confidence": 0.9980469, "end": 51.91, "punctuated_word": "these", "speaker": 0, "speaker_confidence": 0.9794922, "start": 51.75, "word": "these" }, { "confidence": 1, "end": 52.23, "punctuated_word": "issues", "speaker": 0, "speaker_confidence": 0.9794922, "start": 51.91, "word": "issues" }, { "confidence": 1, "end": 52.39, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9794922, "start": 52.23, "word": "in" }, { "confidence": 1, "end": 52.55, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.9794922, "start": 52.39, "word": "your" }, { "confidence": 0.99902344, "end": 52.789997, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 0.9794922, "start": 52.55, "word": "own" }, { "confidence": 0.9995117, "end": 53.289997, "punctuated_word": "projects.", "speaker": 0, "speaker_confidence": 0.9794922, "start": 52.789997, "word": "projects" }, { "confidence": 1, "end": 53.59, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.9794922, "start": 53.43, "word": "the" }, { "confidence": 0.9941406, "end": 53.75, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 0.9794922, "start": 53.59, "word": "first" }, { "confidence": 1, "end": 54.149998, "punctuated_word": "problem", "speaker": 0, "speaker_confidence": 0.9794922, "start": 53.75, "word": "problem" }, { "confidence": 0.99902344, "end": 54.309998, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9794922, "start": 54.149998, "word": "is" }, { "confidence": 1, "end": 54.469997, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9794922, "start": 54.309998, "word": "that" }, { "confidence": 0.99902344, "end": 54.71, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.9794922, "start": 54.469997, "word": "people" }, { "confidence": 0.9970703, "end": 54.87, "punctuated_word": "were", "speaker": 0, "speaker_confidence": 0.9794922, "start": 54.71, "word": "were" }, { "confidence": 1, "end": 55.269997, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.9794922, "start": 54.87, "word": "using" }, { "confidence": 0.9995117, "end": 55.769997, "punctuated_word": "profanity", "speaker": 0, "speaker_confidence": 0.9794922, "start": 55.269997, "word": "profanity" }, { "confidence": 0.52978516, "end": 56.07, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 0.9794922, "start": 55.91, "word": "even" }, { "confidence": 1, "end": 56.23, "punctuated_word": "though", "speaker": 0, "speaker_confidence": 0.9794922, "start": 56.07, "word": "though" }, { "confidence": 0.99902344, "end": 56.39, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.9794922, "start": 56.23, "word": "i" }, { "confidence": 1, "end": 56.55, "punctuated_word": "told", "speaker": 0, "speaker_confidence": 0.9794922, "start": 56.39, "word": "told" }, { "confidence": 1, "end": 56.789997, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.9794922, "start": 56.55, "word": "them" }, { "confidence": 1, "end": 56.949997, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.9794922, "start": 56.789997, "word": "not" }, { "confidence": 0.8947754, "end": 57.19, "punctuated_word": "to.", "speaker": 0, "speaker_confidence": 0.9794922, "start": 56.949997, "word": "to" }, { "confidence": 0.99902344, "end": 57.35, "punctuated_word": "They", "speaker": 0, "speaker_confidence": 0.9794922, "start": 57.19, "word": "they" }, { "confidence": 1, "end": 57.59, "punctuated_word": "didn't", "speaker": 0, "speaker_confidence": 0.9794922, "start": 57.35, "word": "didn't" }, { "confidence": 0.99902344, "end": 57.989998, "punctuated_word": "listen.", "speaker": 0, "speaker_confidence": 0.9794922, "start": 57.59, "word": "listen" }, { "confidence": 0.8105469, "end": 58.149998, "punctuated_word": "Your", "speaker": 0, "speaker_confidence": 0.04296875, "start": 57.989998, "word": "your" }, { "confidence": 1, "end": 58.469997, "punctuated_word": "language", "speaker": 0, "speaker_confidence": 0.04296875, "start": 58.149998, "word": "language" }, { "confidence": 0.9951172, "end": 58.855, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.04296875, "start": 58.469997, "word": "is" }, { "confidence": 0.52734375, "end": 59.095, "punctuated_word": "convinced", "speaker": 0, "speaker_confidence": 0.04296875, "start": 58.935, "word": "convinced" }, { "confidence": 0.7998047, "end": 59.215, "punctuated_word": "them.", "speaker": 0, "speaker_confidence": 0.04296875, "start": 59.095, "word": "them" }, { "confidence": 0.99316406, "end": 59.335, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 1, "start": 59.215, "word": "i" }, { "confidence": 0.99902344, "end": 59.575, "punctuated_word": "thought", "speaker": 0, "speaker_confidence": 1, "start": 59.335, "word": "thought" }, { "confidence": 0.99902344, "end": 59.735, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 1, "start": 59.575, "word": "this" }, { "confidence": 1, "end": 59.975, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 1, "start": 59.735, "word": "might" }, { "confidence": 0.8964844, "end": 60.375, "punctuated_word": "happen,", "speaker": 0, "speaker_confidence": 1, "start": 59.975, "word": "happen" }, { "confidence": 0.99902344, "end": 60.535, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 1, "start": 60.375, "word": "so" }, { "confidence": 0.9980469, "end": 60.774998, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 1, "start": 60.535, "word": "i" }, { "confidence": 1, "end": 61.175, "punctuated_word": "implemented", "speaker": 0, "speaker_confidence": 1, "start": 60.774998, "word": "implemented" }, { "confidence": 1, "end": 61.335, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 61.175, "word": "a" }, { "confidence": 0.9995117, "end": 61.735, "punctuated_word": "pooping", "speaker": 0, "speaker_confidence": 1, "start": 61.335, "word": "pooping" }, { "confidence": 1, "end": 62.235, "punctuated_word": "system", "speaker": 0, "speaker_confidence": 1, "start": 61.735, "word": "system" }, { "confidence": 0.6904297, "end": 62.535, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 1, "start": 62.295, "word": "where" }, { "confidence": 0.9326172, "end": 62.695, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 1, "start": 62.535, "word": "if" }, { "confidence": 0.98828125, "end": 62.855, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 62.695, "word": "a" }, { "confidence": 0.80126953, "end": 63.095, "punctuated_word": "comment", "speaker": 0, "speaker_confidence": 1, "start": 62.855, "word": "comment" }, { "confidence": 0.99902344, "end": 63.335, "punctuated_word": "gets", "speaker": 0, "speaker_confidence": 1, "start": 63.095, "word": "gets" }, { "confidence": 0.98999023, "end": 63.575, "punctuated_word": "pooped", "speaker": 0, "speaker_confidence": 1, "start": 63.335, "word": "pooped" }, { "confidence": 0.99902344, "end": 63.735, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 1, "start": 63.575, "word": "on" }, { "confidence": 0.9248047, "end": 64.055, "punctuated_word": "5", "speaker": 0, "speaker_confidence": 1, "start": 63.735, "word": "5" }, { "confidence": 0.967041, "end": 64.375, "punctuated_word": "times,", "speaker": 0, "speaker_confidence": 1, "start": 64.055, "word": "times" }, { "confidence": 1, "end": 64.534996, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 64.375, "word": "it" }, { "confidence": 1, "end": 64.775, "punctuated_word": "gets", "speaker": 0, "speaker_confidence": 1, "start": 64.534996, "word": "gets" }, { "confidence": 1, "end": 65.175, "punctuated_word": "removed", "speaker": 0, "speaker_confidence": 1, "start": 64.775, "word": "removed" }, { "confidence": 1, "end": 65.335, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 1, "start": 65.175, "word": "from" }, { "confidence": 1, "end": 65.495, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 65.335, "word": "the" }, { "confidence": 0.9753418, "end": 65.995, "punctuated_word": "UI.", "speaker": 0, "speaker_confidence": 1, "start": 65.495, "word": "ui" }, { "confidence": 1, "end": 66.215, "punctuated_word": "I've", "speaker": 0, "speaker_confidence": 1, "start": 66.055, "word": "i've" }, { "confidence": 1, "end": 66.375, "punctuated_word": "seen", "speaker": 0, "speaker_confidence": 1, "start": 66.215, "word": "seen" }, { "confidence": 1, "end": 66.534996, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 1, "start": 66.375, "word": "this" }, { "confidence": 1, "end": 66.935, "punctuated_word": "feature", "speaker": 0, "speaker_confidence": 1, "start": 66.534996, "word": "feature" }, { "confidence": 1, "end": 67.095, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 1, "start": 66.935, "word": "on" }, { "confidence": 1, "end": 67.335, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 1, "start": 67.095, "word": "other" }, { "confidence": 1, "end": 67.835, "punctuated_word": "platforms", "speaker": 0, "speaker_confidence": 1, "start": 67.335, "word": "platforms" }, { "confidence": 0.8354492, "end": 68.09, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 67.895, "word": "like" }, { "confidence": 0.3395996, "end": 68.29471, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 68.09, "word": "can" }, { "confidence": 0.8125, "end": 68.49943, "punctuated_word": "odyssey", "speaker": 0, "speaker_confidence": 1, "start": 68.29471, "word": "odyssey" }, { "confidence": 0.74316406, "end": 68.70414, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 1, "start": 68.49943, "word": "where" }, { "confidence": 0.99902344, "end": 68.90885, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 68.70414, "word": "you" }, { "confidence": 0.99902344, "end": 69.11357, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 68.90885, "word": "can" }, { "confidence": 0.9980469, "end": 69.31828, "punctuated_word": "slime", "speaker": 0, "speaker_confidence": 1, "start": 69.11357, "word": "slime" }, { "confidence": 0.9941406, "end": 69.522995, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 69.31828, "word": "a" }, { "confidence": 0.9941406, "end": 69.727715, "punctuated_word": "comment", "speaker": 0, "speaker_confidence": 1, "start": 69.522995, "word": "comment" }, { "confidence": 1, "end": 69.93243, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 69.727715, "word": "to" }, { "confidence": 0.95654297, "end": 70.13714, "punctuated_word": "death.", "speaker": 0, "speaker_confidence": 1, "start": 69.93243, "word": "death" }, { "confidence": 0.9980469, "end": 70.34185, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 1, "start": 70.13714, "word": "and" }, { "confidence": 0.9921875, "end": 70.54657, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 1, "start": 70.34185, "word": "i" }, { "confidence": 1, "end": 70.75128, "punctuated_word": "think", "speaker": 0, "speaker_confidence": 1, "start": 70.54657, "word": "think" }, { "confidence": 1, "end": 70.95599, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 1, "start": 70.75128, "word": "it's" }, { "confidence": 0.99902344, "end": 71.16071, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 70.95599, "word": "a" }, { "confidence": 1, "end": 71.365425, "punctuated_word": "good", "speaker": 0, "speaker_confidence": 1, "start": 71.16071, "word": "good" }, { "confidence": 0.98217773, "end": 71.57014, "punctuated_word": "idea,", "speaker": 0, "speaker_confidence": 1, "start": 71.365425, "word": "idea" }, { "confidence": 1, "end": 71.77486, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 1, "start": 71.57014, "word": "but" }, { "confidence": 0.99902344, "end": 71.97957, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 71.77486, "word": "it" }, { "confidence": 0.9995117, "end": 72.18428, "punctuated_word": "doesn't", "speaker": 0, "speaker_confidence": 1, "start": 71.97957, "word": "doesn't" }, { "confidence": 1, "end": 72.389, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 1, "start": 72.18428, "word": "really" }, { "confidence": 0.99902344, "end": 72.59371, "punctuated_word": "work", "speaker": 0, "speaker_confidence": 1, "start": 72.389, "word": "work" }, { "confidence": 0.99902344, "end": 72.79842, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 72.59371, "word": "for" }, { "confidence": 0.9980469, "end": 73.00314, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 72.79842, "word": "a" }, { "confidence": 1, "end": 73.207855, "punctuated_word": "chat", "speaker": 0, "speaker_confidence": 1, "start": 73.00314, "word": "chat" }, { "confidence": 0.9301758, "end": 73.41257, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 1, "start": 73.207855, "word": "where" }, { "confidence": 0.99902344, "end": 73.61728, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 73.41257, "word": "the" }, { "confidence": 1, "end": 73.822, "punctuated_word": "messages", "speaker": 0, "speaker_confidence": 1, "start": 73.61728, "word": "messages" }, { "confidence": 0.99609375, "end": 74.02671, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 1, "start": 73.822, "word": "are" }, { "confidence": 1, "end": 74.23142, "punctuated_word": "moving", "speaker": 0, "speaker_confidence": 1, "start": 74.02671, "word": "moving" }, { "confidence": 0.9970703, "end": 74.43614, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 1, "start": 74.23142, "word": "at" }, { "confidence": 0.98291016, "end": 74.640854, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 74.43614, "word": "a" }, { "confidence": 0.92578125, "end": 74.845566, "punctuated_word": "100", "speaker": 0, "speaker_confidence": 1, "start": 74.640854, "word": "100" }, { "confidence": 0.984375, "end": 75.050285, "punctuated_word": "miles", "speaker": 0, "speaker_confidence": 1, "start": 74.845566, "word": "miles" }, { "confidence": 0.98535156, "end": 75.255, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 75.050285, "word": "an" }, { "confidence": 0.79296875, "end": 75.575, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 1, "start": 75.415, "word": "it" }, { "confidence": 0.9980469, "end": 75.655, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 75.575, "word": "can" }, { "confidence": 0.9980469, "end": 75.895, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 1, "start": 75.655, "word": "also" }, { "confidence": 1, "end": 76.134995, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 1, "start": 75.895, "word": "be" }, { "confidence": 0.9941406, "end": 76.454994, "punctuated_word": "hijacked", "speaker": 0, "speaker_confidence": 1, "start": 76.134995, "word": "hijacked" }, { "confidence": 1, "end": 76.534996, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 1, "start": 76.454994, "word": "by" }, { "confidence": 0.99902344, "end": 76.774994, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 76.534996, "word": "the" }, { "confidence": 1, "end": 76.935, "punctuated_word": "bad", "speaker": 0, "speaker_confidence": 1, "start": 76.774994, "word": "bad" }, { "confidence": 1, "end": 77.255, "punctuated_word": "guys", "speaker": 0, "speaker_confidence": 1, "start": 76.935, "word": "guys" }, { "confidence": 0.9941406, "end": 77.41499, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 77.255, "word": "to" }, { "confidence": 0.99902344, "end": 77.655, "punctuated_word": "poop", "speaker": 0, "speaker_confidence": 1, "start": 77.41499, "word": "poop" }, { "confidence": 1, "end": 77.895, "punctuated_word": "down", "speaker": 0, "speaker_confidence": 1, "start": 77.655, "word": "down" }, { "confidence": 0.99902344, "end": 77.975, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 1, "start": 77.895, "word": "all" }, { "confidence": 0.9970703, "end": 78.055, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 77.975, "word": "the" }, { "confidence": 1, "end": 78.454994, "punctuated_word": "comments", "speaker": 0, "speaker_confidence": 1, "start": 78.055, "word": "comments" }, { "confidence": 1, "end": 78.615, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 78.454994, "word": "that" }, { "confidence": 0.99902344, "end": 78.774994, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 1, "start": 78.615, "word": "are" }, { "confidence": 0.99902344, "end": 79.09499, "punctuated_word": "actually", "speaker": 0, "speaker_confidence": 1, "start": 78.774994, "word": "actually" }, { "confidence": 0.97143555, "end": 79.335, "punctuated_word": "good.", "speaker": 0, "speaker_confidence": 1, "start": 79.09499, "word": "good" }, { "confidence": 0.99902344, "end": 79.575, "punctuated_word": "So", "speaker": 0, "speaker_confidence": 1, "start": 79.335, "word": "so" }, { "confidence": 0.9536133, "end": 79.655, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 79.575, "word": "the" }, { "confidence": 1, "end": 79.814995, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 1, "start": 79.655, "word": "next" }, { "confidence": 1, "end": 79.975, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 1, "start": 79.814995, "word": "thing" }, { "confidence": 0.9970703, "end": 80.055, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 1, "start": 79.975, "word": "i" }, { "confidence": 0.9099121, "end": 80.295, "punctuated_word": "did,", "speaker": 0, "speaker_confidence": 1, "start": 80.055, "word": "did" }, { "confidence": 1, "end": 80.454994, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 1, "start": 80.295, "word": "which" }, { "confidence": 0.99902344, "end": 80.615, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 80.454994, "word": "is" }, { "confidence": 0.99902344, "end": 80.854996, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 1, "start": 80.615, "word": "really" }, { "confidence": 0.99902344, "end": 81.09499, "punctuated_word": "easy", "speaker": 0, "speaker_confidence": 1, "start": 80.854996, "word": "easy" }, { "confidence": 1, "end": 81.255, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 81.09499, "word": "to" }, { "confidence": 0.9277344, "end": 81.735, "punctuated_word": "implement,", "speaker": 0, "speaker_confidence": 1, "start": 81.255, "word": "implement" }, { "confidence": 0.9980469, "end": 81.895, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 81.735, "word": "is" }, { "confidence": 1, "end": 82.134995, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 1, "start": 81.895, "word": "just" }, { "confidence": 0.99609375, "end": 82.215, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 82.134995, "word": "a" }, { "confidence": 1, "end": 82.534996, "punctuated_word": "bad", "speaker": 0, "speaker_confidence": 1, "start": 82.215, "word": "bad" }, { "confidence": 0.99902344, "end": 82.75, "punctuated_word": "word", "speaker": 0, "speaker_confidence": 1, "start": 82.534996, "word": "word" }, { "confidence": 0.8803711, "end": 83.23, "punctuated_word": "filter", "speaker": 0, "speaker_confidence": 1, "start": 82.83, "word": "filter" }, { "confidence": 0.9951172, "end": 83.63, "punctuated_word": "directly", "speaker": 0, "speaker_confidence": 1, "start": 83.23, "word": "directly" }, { "confidence": 0.99902344, "end": 83.71, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 83.63, "word": "in" }, { "confidence": 1, "end": 83.87, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 83.71, "word": "the" }, { "confidence": 0.9951172, "end": 84.11, "punctuated_word": "front", "speaker": 0, "speaker_confidence": 1, "start": 83.87, "word": "front" }, { "confidence": 0.9589844, "end": 84.27, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 1, "start": 84.11, "word": "end" }, { "confidence": 0.9748535, "end": 84.67, "punctuated_word": "code.", "speaker": 0, "speaker_confidence": 1, "start": 84.27, "word": "code" }, { "confidence": 1, "end": 84.83, "punctuated_word": "That", "speaker": 0, "speaker_confidence": 1, "start": 84.67, "word": "that" }, { "confidence": 1, "end": 84.99, "punctuated_word": "means", "speaker": 0, "speaker_confidence": 1, "start": 84.83, "word": "means" }, { "confidence": 0.98095703, "end": 85.15, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 84.99, "word": "the" }, { "confidence": 0.9980469, "end": 85.31, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 1, "start": 85.15, "word": "app" }, { "confidence": 0.9951172, "end": 85.55, "punctuated_word": "can't", "speaker": 0, "speaker_confidence": 1, "start": 85.31, "word": "can't" }, { "confidence": 0.99902344, "end": 85.87, "punctuated_word": "display", "speaker": 0, "speaker_confidence": 1, "start": 85.55, "word": "display" }, { "confidence": 0.99902344, "end": 86.11, "punctuated_word": "words", "speaker": 0, "speaker_confidence": 1, "start": 85.87, "word": "words" }, { "confidence": 0.7915039, "end": 86.43, "punctuated_word": "like,", "speaker": 0, "speaker_confidence": 1, "start": 86.11, "word": "like" }, { "confidence": 0.19458008, "end": 86.67, "punctuated_word": "f", "speaker": 0, "speaker_confidence": 1, "start": 86.43, "word": "f" }, { "confidence": 0.2590332, "end": 87.490005, "punctuated_word": "f", "speaker": 0, "speaker_confidence": 0.58203125, "start": 87.47, "word": "f" }, { "confidence": 0.40722656, "end": 87.55, "punctuated_word": "f", "speaker": 0, "speaker_confidence": 0.58203125, "start": 87.53, "word": "f" }, { "confidence": 0.5957031, "end": 88.03, "punctuated_word": "balls,", "speaker": 0, "speaker_confidence": 0.58203125, "start": 87.63, "word": "balls" }, { "confidence": 0.9980469, "end": 88.27, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.58203125, "start": 88.03, "word": "and" }, { "confidence": 1, "end": 88.35, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.58203125, "start": 88.27, "word": "so" }, { "confidence": 1, "end": 88.59, "punctuated_word": "on.", "speaker": 0, "speaker_confidence": 0.58203125, "start": 88.35, "word": "on" }, { "confidence": 0.99902344, "end": 88.67, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.6455078, "start": 88.59, "word": "you" }, { "confidence": 1, "end": 88.83, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.6455078, "start": 88.67, "word": "can" }, { "confidence": 1, "end": 89.07, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.6455078, "start": 88.83, "word": "also" }, { "confidence": 0.99902344, "end": 89.23, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.6455078, "start": 89.07, "word": "do" }, { "confidence": 0.99902344, "end": 89.63, "punctuated_word": "filtering", "speaker": 0, "speaker_confidence": 0.6455078, "start": 89.23, "word": "filtering" }, { "confidence": 0.99902344, "end": 89.79, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.6455078, "start": 89.63, "word": "like" }, { "confidence": 0.99902344, "end": 89.95, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.6455078, "start": 89.79, "word": "this" }, { "confidence": 0.9980469, "end": 90.03, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.53222656, "start": 89.95, "word": "on" }, { "confidence": 0.99902344, "end": 90.19, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.53222656, "start": 90.03, "word": "the" }, { "confidence": 0.8676758, "end": 90.35, "punctuated_word": "back", "speaker": 0, "speaker_confidence": 0.53222656, "start": 90.19, "word": "back" }, { "confidence": 0.9902344, "end": 90.575, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.53222656, "start": 90.35, "word": "end" }, { "confidence": 0.59033203, "end": 90.69499, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.53222656, "start": 90.575, "word": "can" }, { "confidence": 0.8457031, "end": 90.975, "punctuated_word": "before", "speaker": 0, "speaker_confidence": 0.53222656, "start": 90.814995, "word": "before" }, { "confidence": 0.99902344, "end": 91.055, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8984375, "start": 90.975, "word": "that" }, { "confidence": 0.99902344, "end": 91.454994, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.8984375, "start": 91.055, "word": "data" }, { "confidence": 0.9980469, "end": 91.615, "punctuated_word": "ever", "speaker": 0, "speaker_confidence": 0.8984375, "start": 91.454994, "word": "ever" }, { "confidence": 1, "end": 91.774994, "punctuated_word": "goes", "speaker": 0, "speaker_confidence": 0.8984375, "start": 91.615, "word": "goes" }, { "confidence": 0.9980469, "end": 91.935, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8984375, "start": 91.774994, "word": "to" }, { "confidence": 1, "end": 92.09499, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.8984375, "start": 91.935, "word": "your" }, { "confidence": 0.782959, "end": 92.59499, "punctuated_word": "database,", "speaker": 0, "speaker_confidence": 0.8984375, "start": 92.09499, "word": "database" }, { "confidence": 0.5205078, "end": 92.975, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.8984375, "start": 92.735, "word": "but" }, { "confidence": 0.9980469, "end": 93.134995, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.8984375, "start": 92.975, "word": "it's" }, { "confidence": 1, "end": 93.615, "punctuated_word": "impossible", "speaker": 0, "speaker_confidence": 0.8984375, "start": 93.134995, "word": "impossible" }, { "confidence": 0.99902344, "end": 93.774994, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8984375, "start": 93.615, "word": "to" }, { "confidence": 1, "end": 94.015, "punctuated_word": "catch", "speaker": 0, "speaker_confidence": 0.8984375, "start": 93.774994, "word": "catch" }, { "confidence": 1, "end": 94.41499, "punctuated_word": "everything", "speaker": 0, "speaker_confidence": 0.8984375, "start": 94.015, "word": "everything" }, { "confidence": 1, "end": 94.655, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.8984375, "start": 94.41499, "word": "with" }, { "confidence": 1, "end": 95.055, "punctuated_word": "regular", "speaker": 0, "speaker_confidence": 0.8984375, "start": 94.655, "word": "regular" }, { "confidence": 0.9914551, "end": 95.555, "punctuated_word": "expressions.", "speaker": 0, "speaker_confidence": 0.8984375, "start": 95.055, "word": "expressions" }, { "confidence": 0.99316406, "end": 95.774994, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 1, "start": 95.615, "word": "the" }, { "confidence": 0.92333984, "end": 96.09499, "punctuated_word": "trolls", "speaker": 0, "speaker_confidence": 1, "start": 95.774994, "word": "trolls" }, { "confidence": 0.99902344, "end": 96.174995, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 1, "start": 96.09499, "word": "will" }, { "confidence": 1, "end": 96.41499, "punctuated_word": "find", "speaker": 0, "speaker_confidence": 1, "start": 96.174995, "word": "find" }, { "confidence": 0.99902344, "end": 96.655, "punctuated_word": "ways", "speaker": 0, "speaker_confidence": 1, "start": 96.41499, "word": "ways" }, { "confidence": 0.99609375, "end": 96.735, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 96.655, "word": "to" }, { "confidence": 0.9902344, "end": 96.975, "punctuated_word": "say", "speaker": 0, "speaker_confidence": 1, "start": 96.735, "word": "say" }, { "confidence": 0.9941406, "end": 97.215, "punctuated_word": "bad", "speaker": 0, "speaker_confidence": 1, "start": 96.975, "word": "bad" }, { "confidence": 0.9970703, "end": 97.454994, "punctuated_word": "words", "speaker": 0, "speaker_confidence": 1, "start": 97.215, "word": "words" }, { "confidence": 0.9707031, "end": 97.774994, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 97.454994, "word": "with" }, { "confidence": 0.9770508, "end": 98.09499, "punctuated_word": "alternative", "speaker": 0, "speaker_confidence": 1, "start": 97.774994, "word": "alternative" }, { "confidence": 0.84228516, "end": 98.46, "punctuated_word": "characters", "speaker": 0, "speaker_confidence": 1, "start": 98.09499, "word": "characters" }, { "confidence": 0.2746582, "end": 98.94, "punctuated_word": "characters", "speaker": 0, "speaker_confidence": 1, "start": 98.54, "word": "characters" }, { "confidence": 0.95703125, "end": 99.18, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 98.94, "word": "that" }, { "confidence": 1, "end": 99.659996, "punctuated_word": "bypass", "speaker": 0, "speaker_confidence": 1, "start": 99.18, "word": "bypass" }, { "confidence": 0.9873047, "end": 99.82, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 1, "start": 99.659996, "word": "your" }, { "confidence": 1, "end": 100.299995, "punctuated_word": "filters.", "speaker": 0, "speaker_confidence": 1, "start": 99.82, "word": "filters" }, { "confidence": 0.99902344, "end": 100.46, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 1, "start": 100.299995, "word": "in" }, { "confidence": 1, "end": 100.78, "punctuated_word": "modern", "speaker": 0, "speaker_confidence": 1, "start": 100.46, "word": "modern" }, { "confidence": 0.99902344, "end": 101.02, "punctuated_word": "times", "speaker": 0, "speaker_confidence": 1, "start": 100.78, "word": "times" }, { "confidence": 0.91137695, "end": 101.34, "punctuated_word": "though,", "speaker": 0, "speaker_confidence": 1, "start": 101.02, "word": "though" }, { "confidence": 0.9980469, "end": 101.84, "punctuated_word": "artificial", "speaker": 0, "speaker_confidence": 1, "start": 101.34, "word": "artificial" }, { "confidence": 0.9980469, "end": 102.4, "punctuated_word": "intelligence", "speaker": 0, "speaker_confidence": 1, "start": 101.9, "word": "intelligence" }, { "confidence": 1, "end": 102.619995, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 102.46, "word": "is" }, { "confidence": 1, "end": 103.02, "punctuated_word": "starting", "speaker": 0, "speaker_confidence": 1, "start": 102.619995, "word": "starting" }, { "confidence": 1, "end": 103.18, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 103.02, "word": "to" }, { "confidence": 0.99902344, "end": 103.34, "punctuated_word": "take", "speaker": 0, "speaker_confidence": 1, "start": 103.18, "word": "take" }, { "confidence": 1, "end": 103.58, "punctuated_word": "over", "speaker": 0, "speaker_confidence": 1, "start": 103.34, "word": "over" }, { "confidence": 1, "end": 103.74, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 1, "start": 103.58, "word": "this" }, { "confidence": 0.98657227, "end": 104.22, "punctuated_word": "job.", "speaker": 0, "speaker_confidence": 1, "start": 103.74, "word": "job" }, { "confidence": 0.9316406, "end": 104.619995, "punctuated_word": "Google", "speaker": 0, "speaker_confidence": 1, "start": 104.22, "word": "google" }, { "confidence": 0.98291016, "end": 104.94, "punctuated_word": "developed", "speaker": 0, "speaker_confidence": 1, "start": 104.619995, "word": "developed" }, { "confidence": 0.9291992, "end": 105.44, "punctuated_word": "perspective", "speaker": 0, "speaker_confidence": 1, "start": 104.94, "word": "perspective" }, { "confidence": 0.7939453, "end": 106.345, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 1, "start": 106.185, "word": "which" }, { "confidence": 0.99609375, "end": 106.585, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 106.345, "word": "can" }, { "confidence": 0.99902344, "end": 106.905, "punctuated_word": "detect", "speaker": 0, "speaker_confidence": 1, "start": 106.585, "word": "detect" }, { "confidence": 0.9941406, "end": 106.985, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 1, "start": 106.905, "word": "if" }, { "confidence": 1, "end": 107.225, "punctuated_word": "something", "speaker": 0, "speaker_confidence": 1, "start": 106.985, "word": "something" }, { "confidence": 0.9892578, "end": 107.385, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 107.225, "word": "is" }, { "confidence": 0.9941406, "end": 107.545, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 107.385, "word": "an" }, { "confidence": 1, "end": 108.045, "punctuated_word": "insult", "speaker": 0, "speaker_confidence": 1, "start": 107.545, "word": "insult" }, { "confidence": 0.98095703, "end": 108.345, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 1, "start": 108.105, "word": "or" }, { "confidence": 1, "end": 108.585, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 1, "start": 108.345, "word": "some" }, { "confidence": 0.9970703, "end": 109.065, "punctuated_word": "variation", "speaker": 0, "speaker_confidence": 1, "start": 108.585, "word": "variation" }, { "confidence": 0.99902344, "end": 109.225, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 109.065, "word": "of" }, { "confidence": 0.87906903, "end": 109.725, "punctuated_word": "profanity,", "speaker": 0, "speaker_confidence": 1, "start": 109.225, "word": "profanity" }, { "confidence": 1, "end": 110.025, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 109.865, "word": "and" }, { "confidence": 0.99609375, "end": 110.105, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 1, "start": 110.025, "word": "they" }, { "confidence": 0.96777344, "end": 110.345, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 1, "start": 110.105, "word": "use" }, { "confidence": 0.99902344, "end": 110.585, "punctuated_word": "tools", "speaker": 0, "speaker_confidence": 1, "start": 110.345, "word": "tools" }, { "confidence": 0.99902344, "end": 110.745, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 110.585, "word": "like" }, { "confidence": 0.9892578, "end": 110.905, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 1, "start": 110.745, "word": "this" }, { "confidence": 0.9921875, "end": 111.065, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 1, "start": 110.905, "word": "at" }, { "confidence": 0.9951172, "end": 111.465, "punctuated_word": "scale", "speaker": 0, "speaker_confidence": 1, "start": 111.065, "word": "scale" }, { "confidence": 0.9951172, "end": 111.625, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 111.465, "word": "to" }, { "confidence": 0.9980469, "end": 111.865, "punctuated_word": "keep", "speaker": 0, "speaker_confidence": 1, "start": 111.625, "word": "keep" }, { "confidence": 0.9951172, "end": 111.945, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 111.865, "word": "the" }, { "confidence": 0.984375, "end": 112.185, "punctuated_word": "worst", "speaker": 0, "speaker_confidence": 1, "start": 111.945, "word": "worst" }, { "confidence": 0.9921875, "end": 112.345, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 112.185, "word": "of" }, { "confidence": 0.98291016, "end": 112.505, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 112.345, "word": "the" }, { "confidence": 0.82177734, "end": 112.67, "punctuated_word": "worst", "speaker": 0, "speaker_confidence": 1, "start": 112.505, "word": "worst" }, { "confidence": 0.8720703, "end": 112.990005, "punctuated_word": "comments", "speaker": 0, "speaker_confidence": 1, "start": 112.83, "word": "comments" }, { "confidence": 0.9941406, "end": 113.15, "punctuated_word": "off", "speaker": 0, "speaker_confidence": 1, "start": 112.990005, "word": "off" }, { "confidence": 0.9980469, "end": 113.39, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 113.15, "word": "of" }, { "confidence": 0.98950195, "end": 113.869995, "punctuated_word": "YouTube.", "speaker": 0, "speaker_confidence": 1, "start": 113.39, "word": "youtube" }, { "confidence": 0.9980469, "end": 114.03, "punctuated_word": "Bad", "speaker": 0, "speaker_confidence": 1, "start": 113.869995, "word": "bad" }, { "confidence": 0.9970703, "end": 114.35, "punctuated_word": "words", "speaker": 0, "speaker_confidence": 1, "start": 114.03, "word": "words" }, { "confidence": 0.9902344, "end": 114.43, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 1, "start": 114.35, "word": "are" }, { "confidence": 0.87353516, "end": 114.67, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 1, "start": 114.43, "word": "one" }, { "confidence": 0.98168945, "end": 114.99, "punctuated_word": "problem,", "speaker": 0, "speaker_confidence": 1, "start": 114.67, "word": "problem" }, { "confidence": 1, "end": 115.229996, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 1, "start": 114.99, "word": "but" }, { "confidence": 0.9941406, "end": 115.31, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 115.229996, "word": "an" }, { "confidence": 1, "end": 115.549995, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 1, "start": 115.31, "word": "even" }, { "confidence": 1, "end": 115.869995, "punctuated_word": "bigger", "speaker": 0, "speaker_confidence": 1, "start": 115.549995, "word": "bigger" }, { "confidence": 0.99902344, "end": 116.27, "punctuated_word": "problem", "speaker": 0, "speaker_confidence": 1, "start": 115.869995, "word": "problem" }, { "confidence": 0.9941406, "end": 116.509995, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 116.27, "word": "is" }, { "confidence": 1, "end": 116.75, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 1, "start": 116.509995, "word": "when" }, { "confidence": 0.8886719, "end": 116.909996, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 1, "start": 116.75, "word": "one" }, { "confidence": 1, "end": 117.229996, "punctuated_word": "person", "speaker": 0, "speaker_confidence": 1, "start": 116.909996, "word": "person" }, { "confidence": 0.99902344, "end": 117.549995, "punctuated_word": "creates", "speaker": 0, "speaker_confidence": 1, "start": 117.229996, "word": "creates" }, { "confidence": 0.99902344, "end": 117.63, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 117.549995, "word": "a" }, { "confidence": 1, "end": 118.03, "punctuated_word": "script", "speaker": 0, "speaker_confidence": 1, "start": 117.63, "word": "script" }, { "confidence": 0.9970703, "end": 118.35, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 118.03, "word": "that" }, { "confidence": 1, "end": 118.83, "punctuated_word": "automatically", "speaker": 0, "speaker_confidence": 1, "start": 118.35, "word": "automatically" }, { "confidence": 1, "end": 119.15, "punctuated_word": "signs", "speaker": 0, "speaker_confidence": 1, "start": 118.83, "word": "signs" }, { "confidence": 1, "end": 119.31, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 1, "start": 119.15, "word": "up" }, { "confidence": 1, "end": 119.549995, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 1, "start": 119.31, "word": "new" }, { "confidence": 1, "end": 119.95, "punctuated_word": "users", "speaker": 0, "speaker_confidence": 1, "start": 119.549995, "word": "users" }, { "confidence": 0.52978516, "end": 120.189995, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 119.95, "word": "and" }, { "confidence": 1, "end": 120.35, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 1, "start": 120.189995, "word": "they" }, { "confidence": 1, "end": 120.509995, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 1, "start": 120.35, "word": "all" }, { "confidence": 0.99902344, "end": 120.75, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 1, "start": 120.509995, "word": "start" }, { "confidence": 1, "end": 121.07, "punctuated_word": "spamming", "speaker": 0, "speaker_confidence": 1, "start": 120.75, "word": "spamming" }, { "confidence": 1, "end": 121.229996, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 121.07, "word": "the" }, { "confidence": 1, "end": 121.39, "punctuated_word": "same", "speaker": 0, "speaker_confidence": 1, "start": 121.229996, "word": "same" }, { "confidence": 0.9970703, "end": 121.71, "punctuated_word": "horrible", "speaker": 0, "speaker_confidence": 1, "start": 121.39, "word": "horrible" }, { "confidence": 0.9277344, "end": 122.175, "punctuated_word": "messages", "speaker": 0, "speaker_confidence": 1, "start": 121.71, "word": "messages" }, { "confidence": 0.5004883, "end": 122.415, "punctuated_word": "cuss", "speaker": 0, "speaker_confidence": 1, "start": 122.175, "word": "cuss" }, { "confidence": 0.7001953, "end": 122.535, "punctuated_word": "100", "speaker": 0, "speaker_confidence": 1, "start": 122.415, "word": "100" }, { "confidence": 0.9941406, "end": 122.65501, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 122.535, "word": "of" }, { "confidence": 0.99902344, "end": 123.055, "punctuated_word": "times", "speaker": 0, "speaker_confidence": 1, "start": 122.65501, "word": "times" }, { "confidence": 0.99902344, "end": 123.215004, "punctuated_word": "per", "speaker": 0, "speaker_confidence": 1, "start": 123.055, "word": "per" }, { "confidence": 0.98657227, "end": 123.535, "punctuated_word": "second.", "speaker": 0, "speaker_confidence": 1, "start": 123.215004, "word": "second" }, { "confidence": 0.9980469, "end": 123.695, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 1, "start": 123.535, "word": "in" }, { "confidence": 0.89453125, "end": 123.855, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 1, "start": 123.695, "word": "my" }, { "confidence": 0.9873047, "end": 124.015, "punctuated_word": "chat", "speaker": 0, "speaker_confidence": 1, "start": 123.855, "word": "chat" }, { "confidence": 0.99902344, "end": 124.33501, "punctuated_word": "app,", "speaker": 0, "speaker_confidence": 1, "start": 124.015, "word": "app" }, { "confidence": 1, "end": 124.495, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 1, "start": 124.33501, "word": "all" }, { "confidence": 1, "end": 124.575005, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.93115234, "start": 124.495, "word": "you" }, { "confidence": 1, "end": 124.735, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.93115234, "start": 124.575005, "word": "need" }, { "confidence": 1, "end": 124.895004, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.93115234, "start": 124.735, "word": "is" }, { "confidence": 1, "end": 125.135, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.93115234, "start": 124.895004, "word": "a" }, { "confidence": 0.99121094, "end": 125.535, "punctuated_word": "username", "speaker": 0, "speaker_confidence": 0.93115234, "start": 125.135, "word": "username" }, { "confidence": 0.99902344, "end": 125.855, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.93115234, "start": 125.535, "word": "and" }, { "confidence": 1, "end": 126.33501, "punctuated_word": "password", "speaker": 0, "speaker_confidence": 0.93115234, "start": 125.855, "word": "password" }, { "confidence": 0.99902344, "end": 126.495, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.93115234, "start": 126.33501, "word": "to" }, { "confidence": 1, "end": 126.735, "punctuated_word": "sign", "speaker": 0, "speaker_confidence": 0.93115234, "start": 126.495, "word": "sign" }, { "confidence": 0.9633789, "end": 126.975006, "punctuated_word": "up,", "speaker": 0, "speaker_confidence": 0.93115234, "start": 126.735, "word": "up" }, { "confidence": 1, "end": 127.215004, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.93115234, "start": 126.975006, "word": "but" }, { "confidence": 1, "end": 127.375, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.93115234, "start": 127.215004, "word": "that's" }, { "confidence": 1, "end": 127.535, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.93115234, "start": 127.375, "word": "not" }, { "confidence": 0.99902344, "end": 127.935005, "punctuated_word": "nearly", "speaker": 0, "speaker_confidence": 0.93115234, "start": 127.535, "word": "nearly" }, { "confidence": 1, "end": 128.175, "punctuated_word": "enough", "speaker": 0, "speaker_confidence": 0.93115234, "start": 127.935005, "word": "enough" }, { "confidence": 1, "end": 128.575, "punctuated_word": "friction", "speaker": 0, "speaker_confidence": 0.93115234, "start": 128.175, "word": "friction" }, { "confidence": 1, "end": 128.815, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.93115234, "start": 128.575, "word": "for" }, { "confidence": 1, "end": 129.13501, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 0.93115234, "start": 128.815, "word": "any" }, { "confidence": 1, "end": 129.375, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 0.93115234, "start": 129.13501, "word": "real" }, { "confidence": 1, "end": 129.695, "punctuated_word": "world", "speaker": 0, "speaker_confidence": 0.93115234, "start": 129.375, "word": "world" }, { "confidence": 1, "end": 130.195, "punctuated_word": "application.", "speaker": 0, "speaker_confidence": 0.93115234, "start": 129.695, "word": "application" }, { "confidence": 1, "end": 130.495, "punctuated_word": "At", "speaker": 0, "speaker_confidence": 1, "start": 130.335, "word": "at" }, { "confidence": 1, "end": 130.655, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 130.495, "word": "the" }, { "confidence": 1, "end": 130.815, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 1, "start": 130.655, "word": "very" }, { "confidence": 0.99853516, "end": 131.17, "punctuated_word": "least,", "speaker": 0, "speaker_confidence": 1, "start": 130.815, "word": "least" }, { "confidence": 0.79296875, "end": 131.41, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 131.17, "word": "you" }, { "confidence": 1, "end": 131.56999, "punctuated_word": "should", "speaker": 0, "speaker_confidence": 1, "start": 131.41, "word": "should" }, { "confidence": 0.99902344, "end": 131.89, "punctuated_word": "require", "speaker": 0, "speaker_confidence": 1, "start": 131.56999, "word": "require" }, { "confidence": 0.99902344, "end": 132.13, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 131.89, "word": "an" }, { "confidence": 1, "end": 132.45, "punctuated_word": "email", "speaker": 0, "speaker_confidence": 1, "start": 132.13, "word": "email" }, { "confidence": 0.97314453, "end": 132.61, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 132.45, "word": "and" }, { "confidence": 1, "end": 132.84999, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 1, "start": 132.61, "word": "have" }, { "confidence": 1, "end": 133.01, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 132.84999, "word": "that" }, { "confidence": 1, "end": 133.33, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 1, "start": 133.01, "word": "user" }, { "confidence": 0.9921875, "end": 133.73, "punctuated_word": "verify", "speaker": 0, "speaker_confidence": 1, "start": 133.33, "word": "verify" }, { "confidence": 0.9892578, "end": 133.89, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 133.73, "word": "the" }, { "confidence": 1, "end": 134.29, "punctuated_word": "email", "speaker": 0, "speaker_confidence": 1, "start": 133.89, "word": "email" }, { "confidence": 1, "end": 134.53, "punctuated_word": "before", "speaker": 0, "speaker_confidence": 1, "start": 134.29, "word": "before" }, { "confidence": 1, "end": 134.69, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 1, "start": 134.53, "word": "they" }, { "confidence": 1, "end": 134.93, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 1, "start": 134.69, "word": "start" }, { "confidence": 0.99902344, "end": 135.33, "punctuated_word": "posting", "speaker": 0, "speaker_confidence": 1, "start": 134.93, "word": "posting" }, { "confidence": 1, "end": 135.83, "punctuated_word": "messages.", "speaker": 0, "speaker_confidence": 1, "start": 135.33, "word": "messages" }, { "confidence": 0.7687988, "end": 136.45, "punctuated_word": "Pocketbase", "speaker": 0, "speaker_confidence": 1, "start": 135.97, "word": "pocketbase" }, { "confidence": 0.99902344, "end": 136.61, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 1, "start": 136.45, "word": "has" }, { "confidence": 0.9980469, "end": 136.77, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 136.61, "word": "a" }, { "confidence": 1, "end": 137.01, "punctuated_word": "built", "speaker": 0, "speaker_confidence": 1, "start": 136.77, "word": "built" }, { "confidence": 0.984375, "end": 137.17, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 137.01, "word": "in" }, { "confidence": 0.99902344, "end": 137.56999, "punctuated_word": "email", "speaker": 0, "speaker_confidence": 1, "start": 137.17, "word": "email" }, { "confidence": 0.99902344, "end": 137.97, "punctuated_word": "system", "speaker": 0, "speaker_confidence": 1, "start": 137.56999, "word": "system" }, { "confidence": 0.94384766, "end": 138.215, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 137.97, "word": "that" }, { "confidence": 0.97509766, "end": 138.375, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 138.295, "word": "can" }, { "confidence": 0.9633789, "end": 138.69499, "punctuated_word": "handle", "speaker": 0, "speaker_confidence": 1, "start": 138.375, "word": "handle" }, { "confidence": 0.8305664, "end": 138.855, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 1, "start": 138.69499, "word": "this" }, { "confidence": 0.98828125, "end": 139.095, "punctuated_word": "step", "speaker": 0, "speaker_confidence": 1, "start": 138.855, "word": "step" }, { "confidence": 1, "end": 139.25499, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 139.095, "word": "for" }, { "confidence": 0.91064453, "end": 139.575, "punctuated_word": "you.", "speaker": 0, "speaker_confidence": 1, "start": 139.25499, "word": "you" }, { "confidence": 0.99902344, "end": 139.735, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 1, "start": 139.575, "word": "then" }, { "confidence": 0.98828125, "end": 139.89499, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 139.735, "word": "you" }, { "confidence": 0.9970703, "end": 139.97499, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 139.89499, "word": "can" }, { "confidence": 1, "end": 140.215, "punctuated_word": "check", "speaker": 0, "speaker_confidence": 1, "start": 139.97499, "word": "check" }, { "confidence": 0.99902344, "end": 140.295, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 140.215, "word": "the" }, { "confidence": 0.9980469, "end": 140.775, "punctuated_word": "verified", "speaker": 0, "speaker_confidence": 1, "start": 140.295, "word": "verified" }, { "confidence": 1, "end": 141.095, "punctuated_word": "status", "speaker": 0, "speaker_confidence": 1, "start": 140.775, "word": "status" }, { "confidence": 0.9873047, "end": 141.25499, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 141.095, "word": "and" }, { "confidence": 1, "end": 141.735, "punctuated_word": "security", "speaker": 0, "speaker_confidence": 1, "start": 141.25499, "word": "security" }, { "confidence": 0.99902344, "end": 142.135, "punctuated_word": "rules", "speaker": 0, "speaker_confidence": 1, "start": 141.735, "word": "rules" }, { "confidence": 0.99902344, "end": 142.375, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 142.135, "word": "for" }, { "confidence": 0.9951172, "end": 142.875, "punctuated_word": "messages.", "speaker": 0, "speaker_confidence": 1, "start": 142.375, "word": "messages" }, { "confidence": 0.9975586, "end": 143.33499, "punctuated_word": "That's", "speaker": 0, "speaker_confidence": 1, "start": 143.095, "word": "that's" }, { "confidence": 1, "end": 143.415, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 143.33499, "word": "a" }, { "confidence": 1, "end": 143.655, "punctuated_word": "step", "speaker": 0, "speaker_confidence": 1, "start": 143.415, "word": "step" }, { "confidence": 1, "end": 143.735, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7211914, "start": 143.655, "word": "in" }, { "confidence": 1, "end": 143.89499, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7211914, "start": 143.735, "word": "the" }, { "confidence": 1, "end": 144.055, "punctuated_word": "right", "speaker": 0, "speaker_confidence": 0.7211914, "start": 143.89499, "word": "right" }, { "confidence": 0.99194336, "end": 144.535, "punctuated_word": "direction,", "speaker": 0, "speaker_confidence": 0.7211914, "start": 144.055, "word": "direction" }, { "confidence": 1, "end": 144.69499, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.7211914, "start": 144.535, "word": "but" }, { "confidence": 0.9995117, "end": 144.935, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.7211914, "start": 144.69499, "word": "it's" }, { "confidence": 1, "end": 145.175, "punctuated_word": "still", "speaker": 0, "speaker_confidence": 0.7211914, "start": 144.935, "word": "still" }, { "confidence": 1, "end": 145.25499, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.7211914, "start": 145.175, "word": "not" }, { "confidence": 1, "end": 145.71, "punctuated_word": "perfect.", "speaker": 0, "speaker_confidence": 0.7211914, "start": 145.25499, "word": "perfect" }, { "confidence": 0.72180176, "end": 145.95001, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 1, "start": 145.79001, "word": "it's" }, { "confidence": 0.99902344, "end": 146.19, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 1, "start": 145.95001, "word": "not" }, { "confidence": 0.9980469, "end": 146.51001, "punctuated_word": "hard", "speaker": 0, "speaker_confidence": 1, "start": 146.19, "word": "hard" }, { "confidence": 0.9980469, "end": 146.67001, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 146.51001, "word": "to" }, { "confidence": 0.99902344, "end": 146.99, "punctuated_word": "verify", "speaker": 0, "speaker_confidence": 1, "start": 146.67001, "word": "verify" }, { "confidence": 0.96875, "end": 147.15001, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 146.99, "word": "a" }, { "confidence": 0.9970703, "end": 147.55, "punctuated_word": "burner", "speaker": 0, "speaker_confidence": 1, "start": 147.15001, "word": "burner" }, { "confidence": 0.98999023, "end": 147.95001, "punctuated_word": "email.", "speaker": 0, "speaker_confidence": 1, "start": 147.55, "word": "email" }, { "confidence": 0.9970703, "end": 148.19, "punctuated_word": "That's", "speaker": 0, "speaker_confidence": 1, "start": 147.95001, "word": "that's" }, { "confidence": 0.9980469, "end": 148.35, "punctuated_word": "why", "speaker": 0, "speaker_confidence": 1, "start": 148.19, "word": "why" }, { "confidence": 0.78808594, "end": 148.83, "punctuated_word": "nowadays,", "speaker": 0, "speaker_confidence": 1, "start": 148.35, "word": "nowadays" }, { "confidence": 0.9951172, "end": 148.99, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 148.83, "word": "you" }, { "confidence": 0.99609375, "end": 149.15001, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 1, "start": 148.99, "word": "see" }, { "confidence": 0.9980469, "end": 149.55, "punctuated_word": "almost", "speaker": 0, "speaker_confidence": 1, "start": 149.15001, "word": "almost" }, { "confidence": 0.99316406, "end": 149.79001, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 1, "start": 149.55, "word": "all" }, { "confidence": 0.99316406, "end": 150.03, "punctuated_word": "large", "speaker": 0, "speaker_confidence": 1, "start": 149.79001, "word": "large" }, { "confidence": 0.9921875, "end": 150.43001, "punctuated_word": "scale", "speaker": 0, "speaker_confidence": 1, "start": 150.03, "word": "scale" }, { "confidence": 0.98095703, "end": 150.93001, "punctuated_word": "applications", "speaker": 0, "speaker_confidence": 1, "start": 150.43001, "word": "applications" }, { "confidence": 0.9873047, "end": 151.79001, "punctuated_word": "requiring", "speaker": 0, "speaker_confidence": 1, "start": 151.39, "word": "requiring" }, { "confidence": 0.4790039, "end": 152.11, "punctuated_word": "multi", "speaker": 0, "speaker_confidence": 1, "start": 151.79001, "word": "multi" }, { "confidence": 0.8852539, "end": 152.61, "punctuated_word": "factor", "speaker": 0, "speaker_confidence": 1, "start": 152.11, "word": "factor" }, { "confidence": 0.8964844, "end": 153.475, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 1, "start": 153.315, "word": "where" }, { "confidence": 0.94970703, "end": 153.63501, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 153.475, "word": "a" }, { "confidence": 1, "end": 153.955, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 1, "start": 153.63501, "word": "user" }, { "confidence": 1, "end": 154.195, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 1, "start": 153.955, "word": "also" }, { "confidence": 0.99902344, "end": 154.515, "punctuated_word": "needs", "speaker": 0, "speaker_confidence": 1, "start": 154.195, "word": "needs" }, { "confidence": 0.99902344, "end": 154.675, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 154.515, "word": "to" }, { "confidence": 1, "end": 154.99501, "punctuated_word": "verify", "speaker": 0, "speaker_confidence": 1, "start": 154.675, "word": "verify" }, { "confidence": 0.9980469, "end": 155.155, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 154.99501, "word": "a" }, { "confidence": 1, "end": 155.315, "punctuated_word": "phone", "speaker": 0, "speaker_confidence": 1, "start": 155.155, "word": "phone" }, { "confidence": 0.99902344, "end": 155.71501, "punctuated_word": "number", "speaker": 0, "speaker_confidence": 1, "start": 155.315, "word": "number" }, { "confidence": 0.99121094, "end": 155.875, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 155.71501, "word": "with" }, { "confidence": 1, "end": 155.955, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 155.875, "word": "a" }, { "confidence": 1, "end": 156.27501, "punctuated_word": "text", "speaker": 0, "speaker_confidence": 1, "start": 155.955, "word": "text" }, { "confidence": 1, "end": 156.595, "punctuated_word": "message", "speaker": 0, "speaker_confidence": 1, "start": 156.27501, "word": "message" }, { "confidence": 0.9951172, "end": 156.835, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 1, "start": 156.595, "word": "or" }, { "confidence": 0.99902344, "end": 157.07501, "punctuated_word": "via", "speaker": 0, "speaker_confidence": 1, "start": 156.835, "word": "via" }, { "confidence": 0.9970703, "end": 157.235, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 157.07501, "word": "an" }, { "confidence": 0.97875977, "end": 157.735, "punctuated_word": "authenticator", "speaker": 0, "speaker_confidence": 1, "start": 157.235, "word": "authenticator" }, { "confidence": 0.99902344, "end": 158.035, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 1, "start": 157.795, "word": "app" }, { "confidence": 0.9951172, "end": 158.195, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 158.035, "word": "to" }, { "confidence": 1, "end": 158.35501, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 1, "start": 158.195, "word": "do" }, { "confidence": 1, "end": 158.675, "punctuated_word": "anything", "speaker": 0, "speaker_confidence": 1, "start": 158.35501, "word": "anything" }, { "confidence": 0.9941406, "end": 159.175, "punctuated_word": "important.", "speaker": 0, "speaker_confidence": 1, "start": 158.675, "word": "important" }, { "confidence": 0.87597656, "end": 159.475, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 1, "start": 159.315, "word": "this" }, { "confidence": 0.9970703, "end": 159.71501, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 159.475, "word": "can" }, { "confidence": 0.9970703, "end": 159.955, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 1, "start": 159.71501, "word": "also" }, { "confidence": 0.9921875, "end": 160.115, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 1, "start": 159.955, "word": "be" }, { "confidence": 0.9436035, "end": 160.35501, "punctuated_word": "faked,", "speaker": 0, "speaker_confidence": 1, "start": 160.115, "word": "faked" }, { "confidence": 0.75439453, "end": 160.55, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 1, "start": 160.35501, "word": "but" }, { "confidence": 0.7536621, "end": 160.79001, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 1, "start": 160.71, "word": "it's" }, { "confidence": 0.99121094, "end": 161.03, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 1, "start": 160.79001, "word": "way" }, { "confidence": 0.99902344, "end": 161.19, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 1, "start": 161.03, "word": "more" }, { "confidence": 0.99902344, "end": 161.67, "punctuated_word": "difficult.", "speaker": 0, "speaker_confidence": 1, "start": 161.19, "word": "difficult" }, { "confidence": 0.99609375, "end": 161.83, "punctuated_word": "Still", "speaker": 0, "speaker_confidence": 1, "start": 161.67, "word": "still" }, { "confidence": 0.9494629, "end": 162.07, "punctuated_word": "though,", "speaker": 0, "speaker_confidence": 1, "start": 161.83, "word": "though" }, { "confidence": 0.9863281, "end": 162.31, "punctuated_word": "someone", "speaker": 0, "speaker_confidence": 1, "start": 162.07, "word": "someone" }, { "confidence": 0.9707031, "end": 162.47, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 1, "start": 162.31, "word": "could" }, { "confidence": 1, "end": 162.87001, "punctuated_word": "register", "speaker": 0, "speaker_confidence": 1, "start": 162.47, "word": "register" }, { "confidence": 1, "end": 162.99, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 162.87001, "word": "with" }, { "confidence": 0.99316406, "end": 163.11, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 162.99, "word": "a" }, { "confidence": 1, "end": 163.51001, "punctuated_word": "burner", "speaker": 0, "speaker_confidence": 1, "start": 163.11, "word": "burner" }, { "confidence": 0.8803711, "end": 163.75, "punctuated_word": "phone,", "speaker": 0, "speaker_confidence": 1, "start": 163.51001, "word": "phone" }, { "confidence": 1, "end": 163.99, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 163.75, "word": "and" }, { "confidence": 0.9921875, "end": 164.15001, "punctuated_word": "once", "speaker": 0, "speaker_confidence": 1, "start": 163.99, "word": "once" }, { "confidence": 0.9951172, "end": 164.39, "punctuated_word": "again", "speaker": 0, "speaker_confidence": 1, "start": 164.15001, "word": "again" }, { "confidence": 0.57373047, "end": 164.71, "punctuated_word": "spam", "speaker": 0, "speaker_confidence": 1, "start": 164.39, "word": "spam" }, { "confidence": 0.9951172, "end": 164.79001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 164.71, "word": "the" }, { "confidence": 0.99902344, "end": 165.03, "punctuated_word": "chat", "speaker": 0, "speaker_confidence": 1, "start": 164.79001, "word": "chat" }, { "confidence": 1, "end": 165.19, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 165.03, "word": "with" }, { "confidence": 0.9980469, "end": 165.51001, "punctuated_word": "horrible", "speaker": 0, "speaker_confidence": 1, "start": 165.19, "word": "horrible" }, { "confidence": 0.9995117, "end": 166.01001, "punctuated_word": "messages.", "speaker": 0, "speaker_confidence": 1, "start": 165.51001, "word": "messages" }, { "confidence": 0.98535156, "end": 166.39, "punctuated_word": "Another", "speaker": 0, "speaker_confidence": 1, "start": 166.07, "word": "another" }, { "confidence": 1, "end": 166.63, "punctuated_word": "step", "speaker": 0, "speaker_confidence": 1, "start": 166.39, "word": "step" }, { "confidence": 0.9980469, "end": 166.71, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 166.63, "word": "you" }, { "confidence": 0.99902344, "end": 166.87, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 166.71, "word": "can" }, { "confidence": 0.9970703, "end": 167.11, "punctuated_word": "take", "speaker": 0, "speaker_confidence": 1, "start": 166.87, "word": "take" }, { "confidence": 0.96240234, "end": 167.35, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 167.11, "word": "is" }, { "confidence": 0.99902344, "end": 167.51001, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 167.35, "word": "to" }, { "confidence": 0.99902344, "end": 167.83, "punctuated_word": "verify", "speaker": 0, "speaker_confidence": 1, "start": 167.51001, "word": "verify" }, { "confidence": 0.9970703, "end": 167.99, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 167.83, "word": "that" }, { "confidence": 0.9941406, "end": 168.07, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7685547, "start": 167.99, "word": "the" }, { "confidence": 1, "end": 168.47, "punctuated_word": "person", "speaker": 0, "speaker_confidence": 0.7685547, "start": 168.07, "word": "person" }, { "confidence": 0.99902344, "end": 168.55, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.7685547, "start": 168.47, "word": "on" }, { "confidence": 0.9970703, "end": 168.71, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7685547, "start": 168.55, "word": "the" }, { "confidence": 0.9980469, "end": 168.95, "punctuated_word": "front", "speaker": 0, "speaker_confidence": 0.7685547, "start": 168.71, "word": "front" }, { "confidence": 0.97314453, "end": 169.11, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.7685547, "start": 168.95, "word": "end" }, { "confidence": 0.9921875, "end": 169.27, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7685547, "start": 169.11, "word": "is" }, { "confidence": 0.9951172, "end": 169.43001, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.7685547, "start": 169.27, "word": "an" }, { "confidence": 0.9951172, "end": 169.83, "punctuated_word": "actual", "speaker": 0, "speaker_confidence": 0.7685547, "start": 169.43001, "word": "actual" }, { "confidence": 0.67089844, "end": 170.115, "punctuated_word": "human.", "speaker": 0, "speaker_confidence": 0.7685547, "start": 169.83, "word": "human" }, { "confidence": 0.82910156, "end": 170.27501, "punctuated_word": "Can", "speaker": 0, "speaker_confidence": 1, "start": 170.195, "word": "can" }, { "confidence": 0.5151367, "end": 170.515, "punctuated_word": "By", "speaker": 0, "speaker_confidence": 1, "start": 170.35501, "word": "by" }, { "confidence": 1, "end": 170.99501, "punctuated_word": "implementing", "speaker": 0, "speaker_confidence": 1, "start": 170.515, "word": "implementing" }, { "confidence": 0.9941406, "end": 171.155, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 170.99501, "word": "a" }, { "confidence": 0.9061279, "end": 171.655, "punctuated_word": "CAPTCHA,", "speaker": 0, "speaker_confidence": 1, "start": 171.155, "word": "captcha" }, { "confidence": 1, "end": 171.875, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 171.71501, "word": "that" }, { "confidence": 0.94921875, "end": 172.035, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 171.875, "word": "in" }, { "confidence": 1, "end": 172.35501, "punctuated_word": "theory", "speaker": 0, "speaker_confidence": 1, "start": 172.035, "word": "theory" }, { "confidence": 0.8911133, "end": 172.595, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 172.35501, "word": "can" }, { "confidence": 0.99902344, "end": 172.835, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 1, "start": 172.595, "word": "only" }, { "confidence": 1, "end": 173.07501, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 1, "start": 172.835, "word": "be" }, { "confidence": 1, "end": 173.395, "punctuated_word": "solved", "speaker": 0, "speaker_confidence": 1, "start": 173.07501, "word": "solved" }, { "confidence": 1, "end": 173.55501, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 1, "start": 173.395, "word": "by" }, { "confidence": 0.99902344, "end": 173.71501, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 173.55501, "word": "a" }, { "confidence": 1, "end": 174.035, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 1, "start": 173.71501, "word": "real" }, { "confidence": 0.9951172, "end": 174.35501, "punctuated_word": "human.", "speaker": 0, "speaker_confidence": 1, "start": 174.035, "word": "human" }, { "confidence": 0.99902344, "end": 174.85501, "punctuated_word": "Google's", "speaker": 0, "speaker_confidence": 1, "start": 174.35501, "word": "google's" }, { "confidence": 0.9104004, "end": 175.395, "punctuated_word": "reCAPTCHA", "speaker": 0, "speaker_confidence": 1, "start": 174.91501, "word": "recaptcha" }, { "confidence": 0.99902344, "end": 175.55501, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 175.395, "word": "is" }, { "confidence": 1, "end": 175.71501, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 175.55501, "word": "the" }, { "confidence": 1, "end": 175.955, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 1, "start": 175.71501, "word": "most" }, { "confidence": 1, "end": 176.27501, "punctuated_word": "popular", "speaker": 0, "speaker_confidence": 1, "start": 175.955, "word": "popular" }, { "confidence": 0.97753906, "end": 176.755, "punctuated_word": "option,", "speaker": 0, "speaker_confidence": 1, "start": 176.27501, "word": "option" }, { "confidence": 0.99902344, "end": 176.91501, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 1, "start": 176.755, "word": "but" }, { "confidence": 0.9160156, "end": 177.25, "punctuated_word": "Cloud", "speaker": 0, "speaker_confidence": 1, "start": 176.91501, "word": "cloud" }, { "confidence": 0.74450684, "end": 177.57, "punctuated_word": "Flutter", "speaker": 0, "speaker_confidence": 1, "start": 177.33, "word": "flutter" }, { "confidence": 0.9970703, "end": 177.73, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 1, "start": 177.57, "word": "also" }, { "confidence": 0.9980469, "end": 177.97, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 1, "start": 177.73, "word": "now" }, { "confidence": 0.99902344, "end": 178.21, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 1, "start": 177.97, "word": "has" }, { "confidence": 0.99902344, "end": 178.37, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 178.21, "word": "a" }, { "confidence": 1, "end": 178.69, "punctuated_word": "free", "speaker": 0, "speaker_confidence": 1, "start": 178.37, "word": "free" }, { "confidence": 1, "end": 179.17, "punctuated_word": "alternative", "speaker": 0, "speaker_confidence": 1, "start": 178.69, "word": "alternative" }, { "confidence": 0.9941406, "end": 179.49, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 1, "start": 179.17, "word": "called" }, { "confidence": 0.57820636, "end": 179.99, "punctuated_word": "turnstyle,", "speaker": 0, "speaker_confidence": 1, "start": 179.49, "word": "turnstyle" }, { "confidence": 1, "end": 180.45, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 180.29, "word": "and" }, { "confidence": 1, "end": 180.69, "punctuated_word": "either", "speaker": 0, "speaker_confidence": 1, "start": 180.45, "word": "either" }, { "confidence": 0.99902344, "end": 181.01, "punctuated_word": "option", "speaker": 0, "speaker_confidence": 1, "start": 180.69, "word": "option" }, { "confidence": 0.7270508, "end": 181.25, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 181.01, "word": "can" }, { "confidence": 0.99902344, "end": 181.41, "punctuated_word": "help", "speaker": 0, "speaker_confidence": 1, "start": 181.25, "word": "help" }, { "confidence": 1, "end": 181.91, "punctuated_word": "validate", "speaker": 0, "speaker_confidence": 1, "start": 181.41, "word": "validate" }, { "confidence": 0.9921875, "end": 182.13, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 181.97, "word": "that" }, { "confidence": 0.8803711, "end": 182.53, "punctuated_word": "requests", "speaker": 0, "speaker_confidence": 1, "start": 182.13, "word": "requests" }, { "confidence": 0.99121094, "end": 182.69, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 1, "start": 182.53, "word": "are" }, { "confidence": 0.9980469, "end": 183.01, "punctuated_word": "actually", "speaker": 0, "speaker_confidence": 1, "start": 182.69, "word": "actually" }, { "confidence": 1, "end": 183.25, "punctuated_word": "coming", "speaker": 0, "speaker_confidence": 1, "start": 183.01, "word": "coming" }, { "confidence": 1, "end": 183.49, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 1, "start": 183.25, "word": "from" }, { "confidence": 0.99902344, "end": 183.65, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 183.49, "word": "a" }, { "confidence": 1, "end": 183.97, "punctuated_word": "human", "speaker": 0, "speaker_confidence": 1, "start": 183.65, "word": "human" }, { "confidence": 1, "end": 184.29, "punctuated_word": "inside", "speaker": 0, "speaker_confidence": 1, "start": 183.97, "word": "inside" }, { "confidence": 0.9980469, "end": 184.45, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 1, "start": 184.29, "word": "your" }, { "confidence": 0.9995117, "end": 184.77, "punctuated_word": "app.", "speaker": 0, "speaker_confidence": 1, "start": 184.45, "word": "app" }, { "confidence": 1, "end": 184.85, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 1, "start": 184.77, "word": "if" }, { "confidence": 1, "end": 185.01, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 1, "start": 184.85, "word": "you're" }, { "confidence": 1, "end": 185.17, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 185.01, "word": "a" }, { "confidence": 0.9926758, "end": 185.57, "punctuated_word": "Firebase", "speaker": 0, "speaker_confidence": 1, "start": 185.17, "word": "firebase" }, { "confidence": 0.9995117, "end": 185.97, "punctuated_word": "user,", "speaker": 0, "speaker_confidence": 1, "start": 185.57, "word": "user" }, { "confidence": 0.99902344, "end": 186.13, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 1, "start": 185.97, "word": "this" }, { "confidence": 0.99902344, "end": 186.21, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 186.13, "word": "is" }, { "confidence": 0.9980469, "end": 186.665, "punctuated_word": "actually", "speaker": 0, "speaker_confidence": 1, "start": 186.21, "word": "actually" }, { "confidence": 0.88671875, "end": 186.825, "punctuated_word": "built", "speaker": 0, "speaker_confidence": 1, "start": 186.745, "word": "built" }, { "confidence": 0.8178711, "end": 187.06499, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 1, "start": 186.825, "word": "into" }, { "confidence": 0.99121094, "end": 187.14499, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 187.06499, "word": "the" }, { "confidence": 0.99902344, "end": 187.625, "punctuated_word": "platform", "speaker": 0, "speaker_confidence": 1, "start": 187.14499, "word": "platform" }, { "confidence": 0.99902344, "end": 187.86499, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 187.625, "word": "with" }, { "confidence": 0.9970703, "end": 187.94499, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 187.86499, "word": "a" }, { "confidence": 0.9980469, "end": 188.185, "punctuated_word": "tool", "speaker": 0, "speaker_confidence": 1, "start": 187.94499, "word": "tool" }, { "confidence": 0.9980469, "end": 188.50499, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 1, "start": 188.185, "word": "called" }, { "confidence": 0.77978516, "end": 188.665, "punctuated_word": "App", "speaker": 0, "speaker_confidence": 1, "start": 188.50499, "word": "app" }, { "confidence": 0.82958984, "end": 188.985, "punctuated_word": "Check,", "speaker": 0, "speaker_confidence": 1, "start": 188.665, "word": "check" }, { "confidence": 1, "end": 189.22499, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 1, "start": 188.985, "word": "which" }, { "confidence": 0.98828125, "end": 189.305, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 1, "start": 189.22499, "word": "has" }, { "confidence": 0.99902344, "end": 189.625, "punctuated_word": "saved", "speaker": 0, "speaker_confidence": 1, "start": 189.305, "word": "saved" }, { "confidence": 0.99902344, "end": 189.70499, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 1, "start": 189.625, "word": "my" }, { "confidence": 0.98291016, "end": 189.94499, "punctuated_word": "ass", "speaker": 0, "speaker_confidence": 1, "start": 189.70499, "word": "ass" }, { "confidence": 1, "end": 190.34499, "punctuated_word": "multiple", "speaker": 0, "speaker_confidence": 1, "start": 189.94499, "word": "multiple" }, { "confidence": 0.99902344, "end": 190.745, "punctuated_word": "times.", "speaker": 0, "speaker_confidence": 1, "start": 190.34499, "word": "times" }, { "confidence": 0.96777344, "end": 190.905, "punctuated_word": "That", "speaker": 0, "speaker_confidence": 1, "start": 190.745, "word": "that" }, { "confidence": 0.9980469, "end": 191.06499, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 190.905, "word": "can" }, { "confidence": 0.99902344, "end": 191.305, "punctuated_word": "help", "speaker": 0, "speaker_confidence": 1, "start": 191.06499, "word": "help" }, { "confidence": 0.99902344, "end": 191.465, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 191.305, "word": "with" }, { "confidence": 0.9628906, "end": 191.86499, "punctuated_word": "bots,", "speaker": 0, "speaker_confidence": 1, "start": 191.465, "word": "bots" }, { "confidence": 1, "end": 192.025, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 1, "start": 191.86499, "word": "but" }, { "confidence": 0.99902344, "end": 192.185, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 1, "start": 192.025, "word": "it's" }, { "confidence": 1, "end": 192.34499, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 1, "start": 192.185, "word": "not" }, { "confidence": 0.9980469, "end": 192.58499, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 1, "start": 192.34499, "word": "going" }, { "confidence": 0.99609375, "end": 192.665, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 192.58499, "word": "to" }, { "confidence": 1, "end": 192.98499, "punctuated_word": "stop", "speaker": 0, "speaker_confidence": 1, "start": 192.665, "word": "stop" }, { "confidence": 0.9980469, "end": 193.14499, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 1, "start": 192.98499, "word": "some" }, { "confidence": 0.99365234, "end": 193.545, "punctuated_word": "deranged", "speaker": 0, "speaker_confidence": 1, "start": 193.14499, "word": "deranged" }, { "confidence": 0.9995117, "end": 194.045, "punctuated_word": "lunatic", "speaker": 0, "speaker_confidence": 1, "start": 193.545, "word": "lunatic" }, { "confidence": 0.28637695, "end": 194.37001, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 1, "start": 194.21, "word": "or" }, { "confidence": 0.99902344, "end": 194.61, "punctuated_word": "someone", "speaker": 0, "speaker_confidence": 1, "start": 194.37001, "word": "someone" }, { "confidence": 0.99902344, "end": 194.85, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 1, "start": 194.61, "word": "from" }, { "confidence": 0.9980469, "end": 195.01001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 194.85, "word": "the" }, { "confidence": 0.99316406, "end": 195.49, "punctuated_word": "FBI", "speaker": 0, "speaker_confidence": 1, "start": 195.01001, "word": "fbi" }, { "confidence": 0.7109375, "end": 195.81, "punctuated_word": "social", "speaker": 0, "speaker_confidence": 1, "start": 195.49, "word": "social" }, { "confidence": 1, "end": 196.13, "punctuated_word": "media", "speaker": 0, "speaker_confidence": 1, "start": 195.81, "word": "media" }, { "confidence": 0.9980469, "end": 196.45001, "punctuated_word": "team", "speaker": 0, "speaker_confidence": 1, "start": 196.13, "word": "team" }, { "confidence": 0.9951172, "end": 196.69, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 1, "start": 196.45001, "word": "from" }, { "confidence": 1, "end": 197.09001, "punctuated_word": "posting", "speaker": 0, "speaker_confidence": 1, "start": 196.69, "word": "posting" }, { "confidence": 0.99902344, "end": 197.41, "punctuated_word": "awful", "speaker": 0, "speaker_confidence": 1, "start": 197.09001, "word": "awful" }, { "confidence": 1, "end": 197.89, "punctuated_word": "messages", "speaker": 0, "speaker_confidence": 1, "start": 197.41, "word": "messages" }, { "confidence": 0.99902344, "end": 198.05, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 1, "start": 197.89, "word": "as" }, { "confidence": 1, "end": 198.21, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 198.05, "word": "a" }, { "confidence": 1, "end": 198.69, "punctuated_word": "legitimate", "speaker": 0, "speaker_confidence": 1, "start": 198.21, "word": "legitimate" }, { "confidence": 1, "end": 199.01001, "punctuated_word": "human", "speaker": 0, "speaker_confidence": 1, "start": 198.69, "word": "human" }, { "confidence": 0.9975586, "end": 199.25, "punctuated_word": "being.", "speaker": 0, "speaker_confidence": 1, "start": 199.01001, "word": "being" }, { "confidence": 0.99902344, "end": 199.65001, "punctuated_word": "Another", "speaker": 0, "speaker_confidence": 1, "start": 199.25, "word": "another" }, { "confidence": 1, "end": 199.81, "punctuated_word": "step", "speaker": 0, "speaker_confidence": 1, "start": 199.65001, "word": "step" }, { "confidence": 0.7281494, "end": 200.05, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 1, "start": 199.81, "word": "you'll" }, { "confidence": 0.7597656, "end": 200.29001, "punctuated_word": "wanna", "speaker": 0, "speaker_confidence": 1, "start": 200.05, "word": "wanna" }, { "confidence": 0.97265625, "end": 200.61, "punctuated_word": "take", "speaker": 0, "speaker_confidence": 1, "start": 200.29001, "word": "take" }, { "confidence": 0.9970703, "end": 200.77, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 200.61, "word": "is" }, { "confidence": 0.99902344, "end": 201.01001, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 200.77, "word": "to" }, { "confidence": 1, "end": 201.41, "punctuated_word": "implement", "speaker": 0, "speaker_confidence": 1, "start": 201.01001, "word": "implement" }, { "confidence": 0.99902344, "end": 201.65001, "punctuated_word": "rate", "speaker": 0, "speaker_confidence": 1, "start": 201.41, "word": "rate" }, { "confidence": 1, "end": 202.05, "punctuated_word": "limiting", "speaker": 0, "speaker_confidence": 1, "start": 201.65001, "word": "limiting" }, { "confidence": 0.99902344, "end": 202.21, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 1, "start": 202.05, "word": "on" }, { "confidence": 1, "end": 202.37001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 202.21, "word": "the" }, { "confidence": 0.8701172, "end": 202.53, "punctuated_word": "back", "speaker": 0, "speaker_confidence": 1, "start": 202.37001, "word": "back" }, { "confidence": 0.99902344, "end": 202.85, "punctuated_word": "end.", "speaker": 0, "speaker_confidence": 1, "start": 202.53, "word": "end" }, { "confidence": 1, "end": 203.01001, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 1, "start": 202.85, "word": "this" }, { "confidence": 0.99902344, "end": 203.41, "punctuated_word": "prevents", "speaker": 0, "speaker_confidence": 1, "start": 203.01001, "word": "prevents" }, { "confidence": 0.5830078, "end": 203.65001, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 1, "start": 203.41, "word": "one" }, { "confidence": 0.9951172, "end": 203.905, "punctuated_word": "single", "speaker": 0, "speaker_confidence": 1, "start": 203.65001, "word": "single" }, { "confidence": 0.2709961, "end": 204.065, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 1, "start": 203.905, "word": "could" }, { "confidence": 0.7817383, "end": 204.145, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 1, "start": 204.065, "word": "use" }, { "confidence": 0.9819336, "end": 204.305, "punctuated_word": "her", "speaker": 0, "speaker_confidence": 1, "start": 204.145, "word": "her" }, { "confidence": 0.9921875, "end": 204.385, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.71728516, "start": 204.305, "word": "from" }, { "confidence": 0.9980469, "end": 204.865, "punctuated_word": "submitting", "speaker": 0, "speaker_confidence": 0.71728516, "start": 204.385, "word": "submitting" }, { "confidence": 0.99316406, "end": 205.105, "punctuated_word": "too", "speaker": 0, "speaker_confidence": 0.71728516, "start": 204.865, "word": "too" }, { "confidence": 1, "end": 205.345, "punctuated_word": "many", "speaker": 0, "speaker_confidence": 0.71728516, "start": 205.105, "word": "many" }, { "confidence": 0.96533203, "end": 205.745, "punctuated_word": "requests", "speaker": 0, "speaker_confidence": 0.71728516, "start": 205.345, "word": "requests" }, { "confidence": 0.99902344, "end": 205.985, "punctuated_word": "within", "speaker": 0, "speaker_confidence": 0.71728516, "start": 205.745, "word": "within" }, { "confidence": 0.9223633, "end": 206.145, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.71728516, "start": 205.985, "word": "a" }, { "confidence": 0.99902344, "end": 206.465, "punctuated_word": "given", "speaker": 0, "speaker_confidence": 0.71728516, "start": 206.145, "word": "given" }, { "confidence": 0.9980469, "end": 206.545, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.71728516, "start": 206.465, "word": "time" }, { "confidence": 0.99853516, "end": 207.025, "punctuated_word": "period.", "speaker": 0, "speaker_confidence": 0.71728516, "start": 206.545, "word": "period" }, { "confidence": 0.9980469, "end": 207.105, "punctuated_word": "A", "speaker": 0, "speaker_confidence": 0.5527344, "start": 207.025, "word": "a" }, { "confidence": 1, "end": 207.425, "punctuated_word": "human", "speaker": 0, "speaker_confidence": 0.5527344, "start": 207.105, "word": "human" }, { "confidence": 0.99902344, "end": 207.58499, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.5527344, "start": 207.425, "word": "can" }, { "confidence": 1, "end": 207.825, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.5527344, "start": 207.58499, "word": "only" }, { "confidence": 0.99902344, "end": 207.985, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.5527344, "start": 207.825, "word": "do" }, { "confidence": 1, "end": 208.065, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.58984375, "start": 207.985, "word": "so" }, { "confidence": 0.8852539, "end": 208.385, "punctuated_word": "much,", "speaker": 0, "speaker_confidence": 0.58984375, "start": 208.065, "word": "much" }, { "confidence": 1, "end": 208.545, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.58984375, "start": 208.385, "word": "and" }, { "confidence": 1, "end": 208.705, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.58984375, "start": 208.545, "word": "if" }, { "confidence": 1, "end": 208.785, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.58984375, "start": 208.705, "word": "you" }, { "confidence": 0.9970703, "end": 208.94499, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.58984375, "start": 208.785, "word": "see" }, { "confidence": 0.99902344, "end": 209.025, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.81152344, "start": 208.94499, "word": "an" }, { "confidence": 1, "end": 209.345, "punctuated_word": "account", "speaker": 0, "speaker_confidence": 0.81152344, "start": 209.025, "word": "account" }, { "confidence": 1, "end": 209.745, "punctuated_word": "breaking", "speaker": 0, "speaker_confidence": 0.81152344, "start": 209.345, "word": "breaking" }, { "confidence": 0.9248047, "end": 209.985, "punctuated_word": "past", "speaker": 0, "speaker_confidence": 0.81152344, "start": 209.745, "word": "past" }, { "confidence": 0.9980469, "end": 210.145, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.81152344, "start": 209.985, "word": "that" }, { "confidence": 0.98583984, "end": 210.645, "punctuated_word": "threshold,", "speaker": 0, "speaker_confidence": 0.81152344, "start": 210.145, "word": "threshold" }, { "confidence": 0.99902344, "end": 210.865, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.81152344, "start": 210.705, "word": "then" }, { "confidence": 0.99902344, "end": 210.94499, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.81152344, "start": 210.865, "word": "you" }, { "confidence": 0.9951172, "end": 211.105, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.81152344, "start": 210.94499, "word": "just" }, { "confidence": 0.9951172, "end": 211.4, "punctuated_word": "shut", "speaker": 0, "speaker_confidence": 0.81152344, "start": 211.105, "word": "shut" }, { "confidence": 0.8574219, "end": 211.48, "punctuated_word": "cut", "speaker": 0, "speaker_confidence": 0.81152344, "start": 211.4, "word": "cut" }, { "confidence": 0.9760742, "end": 211.64, "punctuated_word": "off", "speaker": 0, "speaker_confidence": 0.81152344, "start": 211.48, "word": "off" }, { "confidence": 1, "end": 211.72, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.81152344, "start": 211.64, "word": "for" }, { "confidence": 0.98828125, "end": 211.79999, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.81152344, "start": 211.72, "word": "a" }, { "confidence": 1, "end": 212.2, "punctuated_word": "while.", "speaker": 0, "speaker_confidence": 0.81152344, "start": 211.79999, "word": "while" }, { "confidence": 1, "end": 212.43999, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.81152344, "start": 212.2, "word": "now" }, { "confidence": 0.8857422, "end": 212.59999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.81152344, "start": 212.43999, "word": "the" }, { "confidence": 1, "end": 212.84, "punctuated_word": "final", "speaker": 0, "speaker_confidence": 0.81152344, "start": 212.59999, "word": "final" }, { "confidence": 1, "end": 213, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.81152344, "start": 212.84, "word": "thing" }, { "confidence": 0.99902344, "end": 213.07999, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 1, "start": 213, "word": "i" }, { "confidence": 0.84765625, "end": 213.31999, "punctuated_word": "wanna", "speaker": 0, "speaker_confidence": 1, "start": 213.07999, "word": "wanna" }, { "confidence": 0.9941406, "end": 213.56, "punctuated_word": "talk", "speaker": 0, "speaker_confidence": 1, "start": 213.31999, "word": "talk" }, { "confidence": 1, "end": 213.87999, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 1, "start": 213.56, "word": "about" }, { "confidence": 0.9980469, "end": 214.12, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 213.87999, "word": "is" }, { "confidence": 0.84472656, "end": 214.59999, "punctuated_word": "problems", "speaker": 0, "speaker_confidence": 1, "start": 214.12, "word": "problems" }, { "confidence": 0.9980469, "end": 214.92, "punctuated_word": "scaling", "speaker": 0, "speaker_confidence": 1, "start": 214.59999, "word": "scaling" }, { "confidence": 0.9980469, "end": 215.15999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 214.92, "word": "the" }, { "confidence": 0.99902344, "end": 215.65999, "punctuated_word": "infrastructure.", "speaker": 0, "speaker_confidence": 1, "start": 215.15999, "word": "infrastructure" }, { "confidence": 1, "end": 216.36, "punctuated_word": "Normally", "speaker": 0, "speaker_confidence": 1, "start": 216.04, "word": "normally" }, { "confidence": 0.60009766, "end": 216.51999, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 1, "start": 216.36, "word": "on" }, { "confidence": 1, "end": 216.59999, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 1, "start": 216.51999, "word": "this" }, { "confidence": 0.98217773, "end": 216.92, "punctuated_word": "channel,", "speaker": 0, "speaker_confidence": 1, "start": 216.59999, "word": "channel" }, { "confidence": 1, "end": 217.07999, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 1, "start": 216.92, "word": "we" }, { "confidence": 0.9951172, "end": 217.31999, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 1, "start": 217.07999, "word": "use" }, { "confidence": 0.9741211, "end": 217.72, "punctuated_word": "serverless", "speaker": 0, "speaker_confidence": 1, "start": 217.31999, "word": "serverless" }, { "confidence": 0.99902344, "end": 218.12, "punctuated_word": "tools", "speaker": 0, "speaker_confidence": 1, "start": 217.72, "word": "tools" }, { "confidence": 1, "end": 218.28, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 218.12, "word": "that" }, { "confidence": 1, "end": 218.43999, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 218.28, "word": "can" }, { "confidence": 1, "end": 218.76, "punctuated_word": "scale", "speaker": 0, "speaker_confidence": 1, "start": 218.43999, "word": "scale" }, { "confidence": 1, "end": 219.23999, "punctuated_word": "infinitely", "speaker": 0, "speaker_confidence": 1, "start": 218.76, "word": "infinitely" }, { "confidence": 0.9980469, "end": 219.4, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 219.23999, "word": "in" }, { "confidence": 0.9980469, "end": 219.48, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 219.4, "word": "the" }, { "confidence": 0.9716797, "end": 219.87999, "punctuated_word": "cloud", "speaker": 0, "speaker_confidence": 1, "start": 219.48, "word": "cloud" }, { "confidence": 0.9873047, "end": 220.2, "punctuated_word": "without", "speaker": 0, "speaker_confidence": 1, "start": 219.87999, "word": "without" }, { "confidence": 0.9970703, "end": 220.425, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 1, "start": 220.2, "word": "any" }, { "confidence": 0.4555664, "end": 220.825, "punctuated_word": "regard", "speaker": 0, "speaker_confidence": 1, "start": 220.505, "word": "regard" }, { "confidence": 0.99902344, "end": 220.905, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 220.825, "word": "for" }, { "confidence": 0.99902344, "end": 221.145, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 1, "start": 220.905, "word": "your" }, { "confidence": 0.99609375, "end": 221.645, "punctuated_word": "wallet.", "speaker": 0, "speaker_confidence": 1, "start": 221.145, "word": "wallet" }, { "confidence": 0.8222656, "end": 221.945, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 1, "start": 221.705, "word": "this" }, { "confidence": 1, "end": 222.265, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 1, "start": 221.945, "word": "video" }, { "confidence": 0.82470703, "end": 222.425, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 1, "start": 222.265, "word": "was" }, { "confidence": 1, "end": 222.74501, "punctuated_word": "unique", "speaker": 0, "speaker_confidence": 1, "start": 222.425, "word": "unique" }, { "confidence": 0.9614258, "end": 222.985, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 1, "start": 222.74501, "word": "because" }, { "confidence": 1, "end": 223.145, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 1, "start": 222.985, "word": "we" }, { "confidence": 1, "end": 223.545, "punctuated_word": "hosted", "speaker": 0, "speaker_confidence": 1, "start": 223.145, "word": "hosted" }, { "confidence": 1, "end": 223.625, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 223.545, "word": "the" }, { "confidence": 0.9980469, "end": 224.125, "punctuated_word": "entirety", "speaker": 0, "speaker_confidence": 1, "start": 223.625, "word": "entirety" }, { "confidence": 0.99902344, "end": 224.345, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 224.185, "word": "of" }, { "confidence": 1, "end": 224.505, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 224.345, "word": "the" }, { "confidence": 0.84716797, "end": 224.66501, "punctuated_word": "back", "speaker": 0, "speaker_confidence": 1, "start": 224.505, "word": "back" }, { "confidence": 1, "end": 225.145, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 1, "start": 224.66501, "word": "end" }, { "confidence": 0.8569336, "end": 225.30501, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 225.145, "word": "that" }, { "confidence": 1, "end": 225.705, "punctuated_word": "includes", "speaker": 0, "speaker_confidence": 1, "start": 225.30501, "word": "includes" }, { "confidence": 0.9980469, "end": 225.785, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 225.705, "word": "the" }, { "confidence": 0.68066406, "end": 226.105, "punctuated_word": "rest", "speaker": 0, "speaker_confidence": 1, "start": 225.785, "word": "rest" }, { "confidence": 0.9946289, "end": 226.585, "punctuated_word": "API,", "speaker": 0, "speaker_confidence": 1, "start": 226.105, "word": "api" }, { "confidence": 0.99902344, "end": 226.825, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 226.585, "word": "the" }, { "confidence": 0.9921875, "end": 227.225, "punctuated_word": "admin", "speaker": 0, "speaker_confidence": 1, "start": 226.825, "word": "admin" }, { "confidence": 0.9848633, "end": 227.705, "punctuated_word": "dashboard,", "speaker": 0, "speaker_confidence": 1, "start": 227.225, "word": "dashboard" }, { "confidence": 0.9970703, "end": 227.865, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 227.705, "word": "and" }, { "confidence": 0.9951172, "end": 228.02501, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 227.865, "word": "the" }, { "confidence": 0.9970703, "end": 228.52501, "punctuated_word": "database", "speaker": 0, "speaker_confidence": 1, "start": 228.02501, "word": "database" }, { "confidence": 0.43652344, "end": 228.71, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 228.55, "word": "can" }, { "confidence": 0.9428711, "end": 228.79001, "punctuated_word": "sell", "speaker": 0, "speaker_confidence": 1, "start": 228.71, "word": "sell" }, { "confidence": 0.9902344, "end": 228.91, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8642578, "start": 228.79001, "word": "on" }, { "confidence": 0.99902344, "end": 229.03, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8642578, "start": 228.91, "word": "a" }, { "confidence": 0.99609375, "end": 229.53, "punctuated_word": "$5", "speaker": 0, "speaker_confidence": 0.8642578, "start": 229.03, "word": "$5" }, { "confidence": 0.9770508, "end": 229.99, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 0.8642578, "start": 229.67, "word": "linux" }, { "confidence": 0.93969727, "end": 230.47, "punctuated_word": "server.", "speaker": 0, "speaker_confidence": 0.8642578, "start": 229.99, "word": "server" }, { "confidence": 0.99902344, "end": 230.63, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.8642578, "start": 230.47, "word": "in" }, { "confidence": 1, "end": 230.87001, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.8642578, "start": 230.63, "word": "just" }, { "confidence": 0.98535156, "end": 231.11, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.8642578, "start": 230.87001, "word": "one" }, { "confidence": 0.99658203, "end": 231.43001, "punctuated_word": "day,", "speaker": 0, "speaker_confidence": 0.8642578, "start": 231.11, "word": "day" }, { "confidence": 1, "end": 231.75, "punctuated_word": "over", "speaker": 0, "speaker_confidence": 0.8642578, "start": 231.43001, "word": "over" }, { "confidence": 0.95686847, "end": 232.25, "punctuated_word": "300,000", "speaker": 0, "speaker_confidence": 0.8642578, "start": 231.75, "word": "300,000" }, { "confidence": 1, "end": 232.87, "punctuated_word": "messages", "speaker": 0, "speaker_confidence": 0.8642578, "start": 232.47, "word": "messages" }, { "confidence": 1, "end": 233.03, "punctuated_word": "were", "speaker": 0, "speaker_confidence": 0.8642578, "start": 232.87, "word": "were" }, { "confidence": 0.8334961, "end": 233.51001, "punctuated_word": "created,", "speaker": 0, "speaker_confidence": 0.8642578, "start": 233.03, "word": "created" }, { "confidence": 1, "end": 233.75, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8642578, "start": 233.51001, "word": "and" }, { "confidence": 0.71777344, "end": 234.23, "punctuated_word": "Pocketbase", "speaker": 0, "speaker_confidence": 0.8642578, "start": 233.75, "word": "pocketbase" }, { "confidence": 1, "end": 234.55, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.8642578, "start": 234.23, "word": "also" }, { "confidence": 1, "end": 234.95, "punctuated_word": "recorded", "speaker": 0, "speaker_confidence": 0.8642578, "start": 234.55, "word": "recorded" }, { "confidence": 0.95703125, "end": 235.27, "punctuated_word": "millions", "speaker": 0, "speaker_confidence": 0.8642578, "start": 234.95, "word": "millions" }, { "confidence": 1, "end": 235.51001, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8642578, "start": 235.27, "word": "of" }, { "confidence": 0.56640625, "end": 235.83, "punctuated_word": "logging", "speaker": 0, "speaker_confidence": 0.8642578, "start": 235.51001, "word": "logging" }, { "confidence": 1, "end": 236.315, "punctuated_word": "records", "speaker": 0, "speaker_confidence": 0.8642578, "start": 235.83, "word": "records" }, { "confidence": 0.5444336, "end": 236.475, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8642578, "start": 236.395, "word": "to" }, { "confidence": 0.9980469, "end": 236.715, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.8642578, "start": 236.475, "word": "go" }, { "confidence": 0.99902344, "end": 236.795, "punctuated_word": "along", "speaker": 0, "speaker_confidence": 0.8642578, "start": 236.715, "word": "along" }, { "confidence": 0.99902344, "end": 237.035, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.76464844, "start": 236.795, "word": "with" }, { "confidence": 0.99902344, "end": 237.27501, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.76464844, "start": 237.035, "word": "all" }, { "confidence": 0.99609375, "end": 237.435, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.76464844, "start": 237.27501, "word": "the" }, { "confidence": 0.9580078, "end": 237.755, "punctuated_word": "requests", "speaker": 0, "speaker_confidence": 0.76464844, "start": 237.435, "word": "requests" }, { "confidence": 0.99609375, "end": 237.91501, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.76464844, "start": 237.755, "word": "to" }, { "confidence": 0.99902344, "end": 238.075, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.76464844, "start": 237.91501, "word": "the" }, { "confidence": 0.99316406, "end": 238.55501, "punctuated_word": "API.", "speaker": 0, "speaker_confidence": 0.76464844, "start": 238.075, "word": "api" }, { "confidence": 0.9941406, "end": 238.715, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.76464844, "start": 238.55501, "word": "the" }, { "confidence": 0.578125, "end": 239.035, "punctuated_word": "pocket", "speaker": 0, "speaker_confidence": 0.76464844, "start": 238.715, "word": "pocket" }, { "confidence": 0.72265625, "end": 239.195, "punctuated_word": "based", "speaker": 0, "speaker_confidence": 0.76464844, "start": 239.035, "word": "based" }, { "confidence": 0.99609375, "end": 239.595, "punctuated_word": "creator", "speaker": 0, "speaker_confidence": 0.76464844, "start": 239.195, "word": "creator" }, { "confidence": 0.99902344, "end": 239.755, "punctuated_word": "left", "speaker": 0, "speaker_confidence": 0.76464844, "start": 239.595, "word": "left" }, { "confidence": 0.9892578, "end": 239.835, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.76464844, "start": 239.755, "word": "a" }, { "confidence": 0.9980469, "end": 240.075, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 0.76464844, "start": 239.835, "word": "really" }, { "confidence": 0.99902344, "end": 240.315, "punctuated_word": "nice", "speaker": 0, "speaker_confidence": 0.76464844, "start": 240.075, "word": "nice" }, { "confidence": 0.99902344, "end": 240.63501, "punctuated_word": "comment", "speaker": 0, "speaker_confidence": 0.76464844, "start": 240.315, "word": "comment" }, { "confidence": 0.9980469, "end": 240.795, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.76464844, "start": 240.63501, "word": "on" }, { "confidence": 0.99902344, "end": 240.875, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 240.795, "word": "that" }, { "confidence": 0.99902344, "end": 241.375, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 1, "start": 240.875, "word": "video" }, { "confidence": 0.8310547, "end": 241.91501, "punctuated_word": "explaining", "speaker": 0, "speaker_confidence": 1, "start": 241.435, "word": "explaining" }, { "confidence": 0.99609375, "end": 242.075, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 1, "start": 241.91501, "word": "some" }, { "confidence": 0.99316406, "end": 242.475, "punctuated_word": "improvements", "speaker": 0, "speaker_confidence": 1, "start": 242.075, "word": "improvements" }, { "confidence": 0.98535156, "end": 242.55501, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 1, "start": 242.475, "word": "we" }, { "confidence": 0.98095703, "end": 242.715, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 1, "start": 242.55501, "word": "could" }, { "confidence": 0.8288574, "end": 243.035, "punctuated_word": "make,", "speaker": 0, "speaker_confidence": 1, "start": 242.715, "word": "make" }, { "confidence": 0.93603516, "end": 243.51, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 243.035, "word": "like" }, { "confidence": 0.6953125, "end": 243.83, "punctuated_word": "creasing", "speaker": 0, "speaker_confidence": 1, "start": 243.59, "word": "creasing" }, { "confidence": 0.99609375, "end": 243.90999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 243.83, "word": "the" }, { "confidence": 0.99902344, "end": 244.15, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 1, "start": 243.90999, "word": "open" }, { "confidence": 0.99902344, "end": 244.47, "punctuated_word": "file", "speaker": 0, "speaker_confidence": 1, "start": 244.15, "word": "file" }, { "confidence": 0.99902344, "end": 244.70999, "punctuated_word": "limit", "speaker": 0, "speaker_confidence": 1, "start": 244.47, "word": "limit" }, { "confidence": 0.9970703, "end": 244.87, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 244.70999, "word": "to" }, { "confidence": 1, "end": 245.03, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 1, "start": 244.87, "word": "get" }, { "confidence": 0.9970703, "end": 245.18999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 245.03, "word": "the" }, { "confidence": 1, "end": 245.34999, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 1, "start": 245.18999, "word": "real" }, { "confidence": 0.9941406, "end": 245.59, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 1, "start": 245.34999, "word": "time" }, { "confidence": 1, "end": 246.06999, "punctuated_word": "connections", "speaker": 0, "speaker_confidence": 1, "start": 245.59, "word": "connections" }, { "confidence": 0.99902344, "end": 246.31, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 246.06999, "word": "to" }, { "confidence": 0.9980469, "end": 246.54999, "punctuated_word": "scale", "speaker": 0, "speaker_confidence": 1, "start": 246.31, "word": "scale" }, { "confidence": 1, "end": 246.87, "punctuated_word": "better.", "speaker": 0, "speaker_confidence": 1, "start": 246.54999, "word": "better" }, { "confidence": 0.80322266, "end": 247.18999, "punctuated_word": "Also,", "speaker": 0, "speaker_confidence": 1, "start": 246.87, "word": "also" }, { "confidence": 1, "end": 247.34999, "punctuated_word": "keep", "speaker": 0, "speaker_confidence": 1, "start": 247.18999, "word": "keep" }, { "confidence": 1, "end": 247.51, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 247.34999, "word": "in" }, { "confidence": 1, "end": 247.75, "punctuated_word": "mind", "speaker": 0, "speaker_confidence": 1, "start": 247.51, "word": "mind" }, { "confidence": 0.98828125, "end": 247.90999, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 247.75, "word": "that" }, { "confidence": 0.74072266, "end": 248.23, "punctuated_word": "pocket", "speaker": 0, "speaker_confidence": 1, "start": 247.90999, "word": "pocket" }, { "confidence": 0.6542969, "end": 248.47, "punctuated_word": "base", "speaker": 0, "speaker_confidence": 1, "start": 248.23, "word": "base" }, { "confidence": 1, "end": 248.62999, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 248.47, "word": "is" }, { "confidence": 0.99902344, "end": 248.70999, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 248.62999, "word": "a" }, { "confidence": 1, "end": 249.03, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 1, "start": 248.70999, "word": "very" }, { "confidence": 1, "end": 249.34999, "punctuated_word": "early", "speaker": 0, "speaker_confidence": 1, "start": 249.03, "word": "early" }, { "confidence": 0.9980469, "end": 249.59, "punctuated_word": "stage", "speaker": 0, "speaker_confidence": 1, "start": 249.34999, "word": "stage" }, { "confidence": 1, "end": 250.06999, "punctuated_word": "project", "speaker": 0, "speaker_confidence": 1, "start": 249.59, "word": "project" }, { "confidence": 0.9873047, "end": 250.23, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 250.06999, "word": "that" }, { "confidence": 0.9995117, "end": 250.47, "punctuated_word": "hasn't", "speaker": 0, "speaker_confidence": 1, "start": 250.23, "word": "hasn't" }, { "confidence": 0.99902344, "end": 250.70999, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 1, "start": 250.47, "word": "even" }, { "confidence": 0.9970703, "end": 250.945, "punctuated_word": "hit", "speaker": 0, "speaker_confidence": 1, "start": 250.70999, "word": "hit" }, { "confidence": 0.5678711, "end": 251.10501, "punctuated_word": "1", "speaker": 0, "speaker_confidence": 1, "start": 251.02501, "word": "1" }, { "confidence": 0.5678711, "end": 251.345, "punctuated_word": "point", "speaker": 0, "speaker_confidence": 1, "start": 251.10501, "word": "point" }, { "confidence": 0.9135742, "end": 251.425, "punctuated_word": "o", "speaker": 0, "speaker_confidence": 1, "start": 251.345, "word": "o" }, { "confidence": 0.98779297, "end": 251.82501, "punctuated_word": "yet.", "speaker": 0, "speaker_confidence": 1, "start": 251.425, "word": "yet" }, { "confidence": 0.9980469, "end": 252.145, "punctuated_word": "Overall,", "speaker": 0, "speaker_confidence": 1, "start": 251.82501, "word": "overall" }, { "confidence": 0.99902344, "end": 252.30501, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 1, "start": 252.145, "word": "i'm" }, { "confidence": 1, "end": 252.705, "punctuated_word": "extremely", "speaker": 0, "speaker_confidence": 1, "start": 252.30501, "word": "extremely" }, { "confidence": 1, "end": 253.02501, "punctuated_word": "impressed", "speaker": 0, "speaker_confidence": 1, "start": 252.705, "word": "impressed" }, { "confidence": 0.9550781, "end": 253.18501, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 1, "start": 253.02501, "word": "at" }, { "confidence": 1, "end": 253.26501, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 1, "start": 253.18501, "word": "how" }, { "confidence": 0.9838867, "end": 253.425, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 253.26501, "word": "it" }, { "confidence": 0.64501953, "end": 253.82501, "punctuated_word": "scaled", "speaker": 0, "speaker_confidence": 1, "start": 253.425, "word": "scaled" }, { "confidence": 0.9716797, "end": 254.065, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 253.82501, "word": "with" }, { "confidence": 0.9921875, "end": 254.225, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 1, "start": 254.065, "word": "its" }, { "confidence": 1, "end": 254.705, "punctuated_word": "limited", "speaker": 0, "speaker_confidence": 1, "start": 254.225, "word": "limited" }, { "confidence": 1, "end": 255.205, "punctuated_word": "resources", "speaker": 0, "speaker_confidence": 1, "start": 254.705, "word": "resources" }, { "confidence": 0.99609375, "end": 255.585, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 255.345, "word": "and" }, { "confidence": 0.9448242, "end": 255.985, "punctuated_word": "thousands", "speaker": 0, "speaker_confidence": 1, "start": 255.585, "word": "thousands" }, { "confidence": 1, "end": 256.14502, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 255.985, "word": "of" }, { "confidence": 1, "end": 256.385, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 1, "start": 256.14502, "word": "real" }, { "confidence": 0.9970703, "end": 256.625, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 1, "start": 256.385, "word": "time" }, { "confidence": 1, "end": 257.125, "punctuated_word": "connections.", "speaker": 0, "speaker_confidence": 1, "start": 256.625, "word": "connections" }, { "confidence": 0.9980469, "end": 257.42502, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 1, "start": 257.265, "word": "the" }, { "confidence": 0.640625, "end": 257.58502, "punctuated_word": "front", "speaker": 0, "speaker_confidence": 1, "start": 257.42502, "word": "front" }, { "confidence": 0.68896484, "end": 257.825, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 1, "start": 257.58502, "word": "end" }, { "confidence": 0.9951172, "end": 257.98502, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 1, "start": 257.825, "word": "app" }, { "confidence": 1, "end": 258.225, "punctuated_word": "got", "speaker": 0, "speaker_confidence": 1, "start": 257.98502, "word": "got" }, { "confidence": 1, "end": 258.465, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 1, "start": 258.225, "word": "really" }, { "confidence": 0.98535156, "end": 258.83, "punctuated_word": "laggy", "speaker": 0, "speaker_confidence": 1, "start": 258.465, "word": "laggy" }, { "confidence": 0.38134766, "end": 258.99, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 258.90997, "word": "can" }, { "confidence": 0.7368164, "end": 259.15, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 1, "start": 258.99, "word": "just" }, { "confidence": 0.44360352, "end": 259.22998, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 1, "start": 259.15, "word": "do" }, { "confidence": 0.94628906, "end": 259.31, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 259.22998, "word": "to" }, { "confidence": 0.9165039, "end": 259.55, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 259.31, "word": "the" }, { "confidence": 0.9980469, "end": 259.87, "punctuated_word": "fire", "speaker": 0, "speaker_confidence": 1, "start": 259.55, "word": "fire" }, { "confidence": 0.8881836, "end": 260.11, "punctuated_word": "hose", "speaker": 0, "speaker_confidence": 1, "start": 259.87, "word": "hose" }, { "confidence": 0.99902344, "end": 260.18997, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 260.11, "word": "of" }, { "confidence": 0.7384033, "end": 260.68997, "punctuated_word": "messages,", "speaker": 0, "speaker_confidence": 1, "start": 260.18997, "word": "messages" }, { "confidence": 0.99902344, "end": 261.06998, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 260.83, "word": "and" }, { "confidence": 0.99902344, "end": 261.15, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7246094, "start": 261.06998, "word": "the" }, { "confidence": 0.9560547, "end": 261.55, "punctuated_word": "admin", "speaker": 0, "speaker_confidence": 0.7246094, "start": 261.15, "word": "admin" }, { "confidence": 0.99902344, "end": 261.78998, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.7246094, "start": 261.55, "word": "app" }, { "confidence": 0.9970703, "end": 262.03, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.7246094, "start": 261.78998, "word": "also" }, { "confidence": 0.9980469, "end": 262.27, "punctuated_word": "froze", "speaker": 0, "speaker_confidence": 0.7246094, "start": 262.03, "word": "froze" }, { "confidence": 0.99902344, "end": 262.43, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.7246094, "start": 262.27, "word": "up" }, { "confidence": 1, "end": 262.59, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7246094, "start": 262.43, "word": "a" }, { "confidence": 1, "end": 262.83, "punctuated_word": "couple", "speaker": 0, "speaker_confidence": 0.7246094, "start": 262.59, "word": "couple" }, { "confidence": 0.9902344, "end": 262.90997, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7246094, "start": 262.83, "word": "of" }, { "confidence": 0.99902344, "end": 263.31, "punctuated_word": "times", "speaker": 0, "speaker_confidence": 0.7246094, "start": 262.90997, "word": "times" }, { "confidence": 0.9873047, "end": 263.47, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.7246094, "start": 263.31, "word": "when" }, { "confidence": 0.9970703, "end": 263.62997, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.7246094, "start": 263.47, "word": "i" }, { "confidence": 0.9863281, "end": 263.78998, "punctuated_word": "tried", "speaker": 0, "speaker_confidence": 0.7246094, "start": 263.62997, "word": "tried" }, { "confidence": 1, "end": 263.87, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.83935547, "start": 263.78998, "word": "to" }, { "confidence": 0.99902344, "end": 264.18997, "punctuated_word": "delete", "speaker": 0, "speaker_confidence": 0.83935547, "start": 263.87, "word": "delete" }, { "confidence": 0.99902344, "end": 264.34998, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.83935547, "start": 264.18997, "word": "some" }, { "confidence": 1, "end": 264.43, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.83935547, "start": 264.34998, "word": "of" }, { "confidence": 0.9980469, "end": 264.50998, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.83935547, "start": 264.43, "word": "the" }, { "confidence": 0.96972656, "end": 264.83, "punctuated_word": "worst", "speaker": 0, "speaker_confidence": 0.83935547, "start": 264.50998, "word": "worst" }, { "confidence": 0.9980469, "end": 265.15, "punctuated_word": "users", "speaker": 0, "speaker_confidence": 0.83935547, "start": 264.83, "word": "users" }, { "confidence": 0.8154297, "end": 265.31, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.83935547, "start": 265.15, "word": "and" }, { "confidence": 0.8232422, "end": 265.81, "punctuated_word": "messages.", "speaker": 0, "speaker_confidence": 0.83935547, "start": 265.31, "word": "messages" }, { "confidence": 0.97314453, "end": 266.03, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.83935547, "start": 265.87, "word": "but" }, { "confidence": 0.82666016, "end": 266.385, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.83935547, "start": 266.03, "word": "the" }, { "confidence": 0.50341797, "end": 266.625, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.83935547, "start": 266.465, "word": "the" }, { "confidence": 0.9863281, "end": 266.945, "punctuated_word": "dashboard", "speaker": 0, "speaker_confidence": 0.83935547, "start": 266.625, "word": "dashboard" }, { "confidence": 0.99609375, "end": 267.265, "punctuated_word": "never", "speaker": 0, "speaker_confidence": 0.83935547, "start": 266.945, "word": "never" }, { "confidence": 0.66064453, "end": 267.58502, "punctuated_word": "crashed", "speaker": 0, "speaker_confidence": 0.83935547, "start": 267.265, "word": "crashed" }, { "confidence": 1, "end": 267.98502, "punctuated_word": "completely", "speaker": 0, "speaker_confidence": 0.83935547, "start": 267.58502, "word": "completely" }, { "confidence": 0.7324219, "end": 268.105, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.83935547, "start": 267.98502, "word": "and" }, { "confidence": 0.9951172, "end": 268.225, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.85839844, "start": 268.105, "word": "i" }, { "confidence": 0.87890625, "end": 268.385, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.85839844, "start": 268.225, "word": "could" }, { "confidence": 0.99902344, "end": 268.70502, "punctuated_word": "always", "speaker": 0, "speaker_confidence": 0.85839844, "start": 268.385, "word": "always" }, { "confidence": 0.99902344, "end": 269.02502, "punctuated_word": "access", "speaker": 0, "speaker_confidence": 0.85839844, "start": 268.70502, "word": "access" }, { "confidence": 1, "end": 269.185, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.85839844, "start": 269.02502, "word": "the" }, { "confidence": 1, "end": 269.42502, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.85839844, "start": 269.185, "word": "data" }, { "confidence": 0.9980469, "end": 269.745, "punctuated_word": "there.", "speaker": 0, "speaker_confidence": 0.85839844, "start": 269.42502, "word": "there" }, { "confidence": 0.9951172, "end": 270.065, "punctuated_word": "Most", "speaker": 0, "speaker_confidence": 0.85839844, "start": 269.745, "word": "most" }, { "confidence": 0.98950195, "end": 270.545, "punctuated_word": "importantly,", "speaker": 0, "speaker_confidence": 0.85839844, "start": 270.065, "word": "importantly" }, { "confidence": 0.99902344, "end": 270.70502, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.85839844, "start": 270.545, "word": "i" }, { "confidence": 0.7397461, "end": 270.86502, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.85839844, "start": 270.70502, "word": "could" }, { "confidence": 1, "end": 271.105, "punctuated_word": "always", "speaker": 0, "speaker_confidence": 0.85839844, "start": 270.86502, "word": "always" }, { "confidence": 0.9980469, "end": 271.42502, "punctuated_word": "update", "speaker": 0, "speaker_confidence": 0.85839844, "start": 271.105, "word": "update" }, { "confidence": 0.99902344, "end": 271.505, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.85839844, "start": 271.42502, "word": "the" }, { "confidence": 0.96435547, "end": 271.905, "punctuated_word": "rules", "speaker": 0, "speaker_confidence": 0.85839844, "start": 271.505, "word": "rules" }, { "confidence": 0.89746094, "end": 272.14502, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.85839844, "start": 271.905, "word": "to" }, { "confidence": 0.9790039, "end": 272.625, "punctuated_word": "globally", "speaker": 0, "speaker_confidence": 0.85839844, "start": 272.14502, "word": "globally" }, { "confidence": 0.9951172, "end": 273.02502, "punctuated_word": "disable", "speaker": 0, "speaker_confidence": 0.85839844, "start": 272.625, "word": "disable" }, { "confidence": 0.9980469, "end": 273.265, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.85839844, "start": 273.02502, "word": "new" }, { "confidence": 0.99902344, "end": 273.58502, "punctuated_word": "message", "speaker": 0, "speaker_confidence": 0.85839844, "start": 273.265, "word": "message" }, { "confidence": 0.9980469, "end": 274.08502, "punctuated_word": "creation.", "speaker": 0, "speaker_confidence": 0.85839844, "start": 273.58502, "word": "creation" }, { "confidence": 0.22558594, "end": 274.25, "punctuated_word": "Can", "speaker": 0, "speaker_confidence": 0.6401367, "start": 274.21, "word": "can" }, { "confidence": 0.97314453, "end": 274.37, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.6401367, "start": 274.28998, "word": "i" }, { "confidence": 1, "end": 274.53, "punctuated_word": "did", "speaker": 0, "speaker_confidence": 0.6401367, "start": 274.37, "word": "did" }, { "confidence": 0.99902344, "end": 274.61, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.6401367, "start": 274.53, "word": "that" }, { "confidence": 1, "end": 274.69, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.6401367, "start": 274.61, "word": "for" }, { "confidence": 0.99609375, "end": 275.00998, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.6401367, "start": 274.69, "word": "about" }, { "confidence": 0.99902344, "end": 275.16998, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.6401367, "start": 275.00998, "word": "an" }, { "confidence": 0.79052734, "end": 275.56998, "punctuated_word": "hour,", "speaker": 0, "speaker_confidence": 0.6401367, "start": 275.16998, "word": "hour" }, { "confidence": 1, "end": 275.81, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.6401367, "start": 275.56998, "word": "so" }, { "confidence": 0.99609375, "end": 275.88998, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.6401367, "start": 275.81, "word": "i" }, { "confidence": 0.99121094, "end": 275.97, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.6401367, "start": 275.88998, "word": "could" }, { "confidence": 0.9970703, "end": 276.13, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.6401367, "start": 275.97, "word": "go" }, { "confidence": 0.9980469, "end": 276.21, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.6401367, "start": 276.13, "word": "have" }, { "confidence": 0.9980469, "end": 276.28998, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7089844, "start": 276.21, "word": "a" }, { "confidence": 1, "end": 276.61, "punctuated_word": "nice", "speaker": 0, "speaker_confidence": 0.7089844, "start": 276.28998, "word": "nice" }, { "confidence": 0.7919922, "end": 276.93, "punctuated_word": "healthy", "speaker": 0, "speaker_confidence": 0.7089844, "start": 276.61, "word": "healthy" }, { "confidence": 0.9902344, "end": 277.25, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7089844, "start": 276.93, "word": "and" }, { "confidence": 1, "end": 277.72998, "punctuated_word": "relaxing", "speaker": 0, "speaker_confidence": 0.7089844, "start": 277.25, "word": "relaxing" }, { "confidence": 0.99902344, "end": 277.97, "punctuated_word": "lunch", "speaker": 0, "speaker_confidence": 0.7089844, "start": 277.72998, "word": "lunch" }, { "confidence": 0.9941406, "end": 278.13, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.7089844, "start": 277.97, "word": "at" }, { "confidence": 0.9975586, "end": 278.61, "punctuated_word": "Arby's?", "speaker": 0, "speaker_confidence": 0.7089844, "start": 278.13, "word": "arby's" }, { "confidence": 0.9980469, "end": 278.69, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.91308594, "start": 278.61, "word": "i" }, { "confidence": 1, "end": 278.93, "punctuated_word": "left", "speaker": 0, "speaker_confidence": 0.91308594, "start": 278.69, "word": "left" }, { "confidence": 0.99902344, "end": 279.00998, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.91308594, "start": 278.93, "word": "a" }, { "confidence": 1, "end": 279.25, "punctuated_word": "message", "speaker": 0, "speaker_confidence": 0.91308594, "start": 279.00998, "word": "message" }, { "confidence": 0.99902344, "end": 279.49, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.91308594, "start": 279.25, "word": "from" }, { "confidence": 1, "end": 279.65, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.91308594, "start": 279.49, "word": "the" }, { "confidence": 0.99609375, "end": 279.97, "punctuated_word": "official", "speaker": 0, "speaker_confidence": 0.91308594, "start": 279.65, "word": "official" }, { "confidence": 0.44714355, "end": 280.44998, "punctuated_word": "FireShip", "speaker": 0, "speaker_confidence": 0.91308594, "start": 279.97, "word": "fireship" }, { "confidence": 0.9980469, "end": 280.94998, "punctuated_word": "account", "speaker": 0, "speaker_confidence": 0.91308594, "start": 280.44998, "word": "account" }, { "confidence": 0.66064453, "end": 281.41, "punctuated_word": "explaining", "speaker": 0, "speaker_confidence": 0.91308594, "start": 281.00998, "word": "explaining" }, { "confidence": 0.99609375, "end": 281.56998, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.91308594, "start": 281.41, "word": "that" }, { "confidence": 0.9980469, "end": 281.65, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.91308594, "start": 281.56998, "word": "the" }, { "confidence": 1, "end": 281.88998, "punctuated_word": "chat", "speaker": 0, "speaker_confidence": 0.91308594, "start": 281.65, "word": "chat" }, { "confidence": 0.97802734, "end": 281.97, "punctuated_word": "had", "speaker": 0, "speaker_confidence": 0.91308594, "start": 281.88998, "word": "had" }, { "confidence": 1, "end": 282.13, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.91308594, "start": 281.97, "word": "been" }, { "confidence": 1, "end": 282.61, "punctuated_word": "disabled", "speaker": 0, "speaker_confidence": 0.91308594, "start": 282.13, "word": "disabled" }, { "confidence": 0.9980469, "end": 282.77, "punctuated_word": "due", "speaker": 0, "speaker_confidence": 0.91308594, "start": 282.61, "word": "due" }, { "confidence": 1, "end": 282.93, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.91308594, "start": 282.77, "word": "to" }, { "confidence": 1, "end": 283.33, "punctuated_word": "extreme", "speaker": 0, "speaker_confidence": 0.91308594, "start": 282.93, "word": "extreme" }, { "confidence": 0.99609375, "end": 283.83, "punctuated_word": "toxicity.", "speaker": 0, "speaker_confidence": 0.91308594, "start": 283.33, "word": "toxicity" }, { "confidence": 0.9970703, "end": 284.105, "punctuated_word": "As", "speaker": 0, "speaker_confidence": 0.91308594, "start": 283.88998, "word": "as" }, { "confidence": 0.8105469, "end": 284.225, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.91308594, "start": 284.185, "word": "as" }, { "confidence": 0.99609375, "end": 284.265, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.91308594, "start": 284.225, "word": "i" }, { "confidence": 0.99902344, "end": 284.42502, "punctuated_word": "sat", "speaker": 0, "speaker_confidence": 0.9941406, "start": 284.265, "word": "sat" }, { "confidence": 1, "end": 284.58502, "punctuated_word": "down", "speaker": 0, "speaker_confidence": 0.9941406, "start": 284.42502, "word": "down" }, { "confidence": 0.9902344, "end": 284.825, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9941406, "start": 284.58502, "word": "and" }, { "confidence": 0.9970703, "end": 285.14502, "punctuated_word": "began", "speaker": 0, "speaker_confidence": 0.9941406, "start": 284.825, "word": "began" }, { "confidence": 1, "end": 285.30502, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9941406, "start": 285.14502, "word": "to" }, { "confidence": 1, "end": 285.625, "punctuated_word": "enjoy", "speaker": 0, "speaker_confidence": 0.9941406, "start": 285.30502, "word": "enjoy" }, { "confidence": 0.9980469, "end": 285.785, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.9941406, "start": 285.625, "word": "my" }, { "confidence": 1, "end": 285.945, "punctuated_word": "roast", "speaker": 0, "speaker_confidence": 0.9941406, "start": 285.785, "word": "roast" }, { "confidence": 0.99902344, "end": 286.185, "punctuated_word": "beef", "speaker": 0, "speaker_confidence": 0.9941406, "start": 285.945, "word": "beef" }, { "confidence": 0.9980469, "end": 286.58502, "punctuated_word": "sandwich", "speaker": 0, "speaker_confidence": 0.9941406, "start": 286.185, "word": "sandwich" }, { "confidence": 0.99121094, "end": 286.74503, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9941406, "start": 286.58502, "word": "and" }, { "confidence": 0.9980469, "end": 287.065, "punctuated_word": "curly", "speaker": 0, "speaker_confidence": 0.9941406, "start": 286.74503, "word": "curly" }, { "confidence": 0.99072266, "end": 287.545, "punctuated_word": "fries,", "speaker": 0, "speaker_confidence": 0.9941406, "start": 287.065, "word": "fries" }, { "confidence": 0.99902344, "end": 287.70502, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.9941406, "start": 287.545, "word": "i" }, { "confidence": 1, "end": 287.86502, "punctuated_word": "went", "speaker": 0, "speaker_confidence": 0.9941406, "start": 287.70502, "word": "went" }, { "confidence": 0.8461914, "end": 287.945, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9941406, "start": 287.86502, "word": "in" }, { "confidence": 0.99902344, "end": 288.185, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9941406, "start": 287.945, "word": "to" }, { "confidence": 1, "end": 288.42502, "punctuated_word": "double", "speaker": 0, "speaker_confidence": 0.9941406, "start": 288.185, "word": "double" }, { "confidence": 0.9819336, "end": 288.58502, "punctuated_word": "check", "speaker": 0, "speaker_confidence": 0.9941406, "start": 288.42502, "word": "check" }, { "confidence": 0.9970703, "end": 288.74503, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9941406, "start": 288.58502, "word": "the" }, { "confidence": 0.9980469, "end": 289.065, "punctuated_word": "chat", "speaker": 0, "speaker_confidence": 0.9941406, "start": 288.74503, "word": "chat" }, { "confidence": 0.921875, "end": 289.225, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9941406, "start": 289.065, "word": "and" }, { "confidence": 0.99316406, "end": 289.385, "punctuated_word": "found", "speaker": 0, "speaker_confidence": 0.9941406, "start": 289.225, "word": "found" }, { "confidence": 0.9980469, "end": 289.70502, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9941406, "start": 289.385, "word": "that" }, { "confidence": 0.82405597, "end": 290.20502, "punctuated_word": "Toshimichi", "speaker": 0, "speaker_confidence": 0.9941406, "start": 289.70502, "word": "toshimichi" }, { "confidence": 0.59472656, "end": 291.005, "punctuated_word": "17", "speaker": 0, "speaker_confidence": 0.9941406, "start": 290.505, "word": "17" }, { "confidence": 0.7192383, "end": 291.6, "punctuated_word": "before", "speaker": 0, "speaker_confidence": 0.9941406, "start": 291.19998, "word": "before" }, { "confidence": 0.9482422, "end": 291.84, "punctuated_word": "found", "speaker": 0, "speaker_confidence": 0.9941406, "start": 291.6, "word": "found" }, { "confidence": 0.9970703, "end": 292, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.9941406, "start": 291.84, "word": "an" }, { "confidence": 1, "end": 292.4, "punctuated_word": "exploit", "speaker": 0, "speaker_confidence": 0.9941406, "start": 292, "word": "exploit" }, { "confidence": 0.9970703, "end": 292.63998, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9941406, "start": 292.4, "word": "to" }, { "confidence": 0.97265625, "end": 293.04, "punctuated_word": "overwrite", "speaker": 0, "speaker_confidence": 0.9941406, "start": 292.63998, "word": "overwrite" }, { "confidence": 1, "end": 293.19998, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.9941406, "start": 293.04, "word": "my" }, { "confidence": 1, "end": 293.69998, "punctuated_word": "message", "speaker": 0, "speaker_confidence": 0.9941406, "start": 293.19998, "word": "message" }, { "confidence": 0.8959961, "end": 293.91998, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9941406, "start": 293.76, "word": "in" }, { "confidence": 1, "end": 294.24, "punctuated_word": "addition", "speaker": 0, "speaker_confidence": 0.9941406, "start": 293.91998, "word": "addition" }, { "confidence": 1, "end": 294.4, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9941406, "start": 294.24, "word": "to" }, { "confidence": 0.99902344, "end": 294.63998, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 0.9941406, "start": 294.4, "word": "any" }, { "confidence": 0.99902344, "end": 294.88, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.9941406, "start": 294.63998, "word": "other" }, { "confidence": 1, "end": 295.12, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 0.9941406, "start": 294.88, "word": "user" }, { "confidence": 1, "end": 295.28, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9941406, "start": 295.12, "word": "in" }, { "confidence": 0.99902344, "end": 295.44, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9941406, "start": 295.28, "word": "the" }, { "confidence": 1, "end": 295.68, "punctuated_word": "chat.", "speaker": 0, "speaker_confidence": 0.9941406, "start": 295.44, "word": "chat" }, { "confidence": 1, "end": 295.91998, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.9941406, "start": 295.68, "word": "this" }, { "confidence": 0.9951172, "end": 296, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9941406, "start": 295.91998, "word": "is" }, { "confidence": 0.99902344, "end": 296.24, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.9941406, "start": 296, "word": "my" }, { "confidence": 1, "end": 296.47998, "punctuated_word": "fault", "speaker": 0, "speaker_confidence": 0.9941406, "start": 296.24, "word": "fault" }, { "confidence": 1, "end": 296.72, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.9941406, "start": 296.47998, "word": "for" }, { "confidence": 1, "end": 296.88, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.9941406, "start": 296.72, "word": "not" }, { "confidence": 0.9863281, "end": 297.28, "punctuated_word": "defining", "speaker": 0, "speaker_confidence": 0.9941406, "start": 296.88, "word": "defining" }, { "confidence": 0.9980469, "end": 297.76, "punctuated_word": "robust", "speaker": 0, "speaker_confidence": 0.9941406, "start": 297.28, "word": "robust" }, { "confidence": 1, "end": 298.16, "punctuated_word": "security", "speaker": 0, "speaker_confidence": 0.9941406, "start": 297.76, "word": "security" }, { "confidence": 0.98999023, "end": 298.47998, "punctuated_word": "rules,", "speaker": 0, "speaker_confidence": 0.9941406, "start": 298.16, "word": "rules" }, { "confidence": 1, "end": 298.72, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.9941406, "start": 298.47998, "word": "but" }, { "confidence": 1, "end": 298.88, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.9941406, "start": 298.72, "word": "all" }, { "confidence": 1, "end": 298.96, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.68310547, "start": 298.88, "word": "i" }, { "confidence": 0.9838867, "end": 299.12, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.68310547, "start": 298.96, "word": "could" }, { "confidence": 0.99902344, "end": 299.36, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.68310547, "start": 299.12, "word": "do" }, { "confidence": 0.99316406, "end": 299.52, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.68310547, "start": 299.36, "word": "was" }, { "confidence": 1, "end": 299.68, "punctuated_word": "sit", "speaker": 0, "speaker_confidence": 0.68310547, "start": 299.52, "word": "sit" }, { "confidence": 0.99902344, "end": 299.91998, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.68310547, "start": 299.68, "word": "there" }, { "confidence": 0.99902344, "end": 300, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.68310547, "start": 299.91998, "word": "and" }, { "confidence": 1, "end": 300.385, "punctuated_word": "cry", "speaker": 0, "speaker_confidence": 0.68310547, "start": 300, "word": "cry" }, { "confidence": 0.4453125, "end": 300.625, "punctuated_word": "came", "speaker": 0, "speaker_confidence": 0.796875, "start": 300.385, "word": "came" }, { "confidence": 0.75439453, "end": 300.785, "punctuated_word": "while", "speaker": 0, "speaker_confidence": 0.796875, "start": 300.625, "word": "while" }, { "confidence": 1, "end": 300.86502, "punctuated_word": "eating", "speaker": 0, "speaker_confidence": 0.796875, "start": 300.785, "word": "eating" }, { "confidence": 0.9980469, "end": 301.185, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.796875, "start": 300.86502, "word": "my" }, { "confidence": 0.9970703, "end": 301.58502, "punctuated_word": "strawberries", "speaker": 0, "speaker_confidence": 0.796875, "start": 301.185, "word": "strawberries" }, { "confidence": 0.9951172, "end": 301.825, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.796875, "start": 301.58502, "word": "and" }, { "confidence": 0.97314453, "end": 302.065, "punctuated_word": "cream", "speaker": 0, "speaker_confidence": 0.796875, "start": 301.825, "word": "cream" }, { "confidence": 0.98828125, "end": 302.30502, "punctuated_word": "fried", "speaker": 0, "speaker_confidence": 0.796875, "start": 302.065, "word": "fried" }, { "confidence": 0.74731445, "end": 302.625, "punctuated_word": "pie,", "speaker": 0, "speaker_confidence": 0.796875, "start": 302.30502, "word": "pie" }, { "confidence": 0.99902344, "end": 302.86502, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 0.796875, "start": 302.625, "word": "now" }, { "confidence": 0.9980469, "end": 303.185, "punctuated_word": "available", "speaker": 0, "speaker_confidence": 0.796875, "start": 302.86502, "word": "available" }, { "confidence": 0.99902344, "end": 303.345, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.796875, "start": 303.185, "word": "for" }, { "confidence": 0.99902344, "end": 303.42502, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.796875, "start": 303.345, "word": "a" }, { "confidence": 1, "end": 303.745, "punctuated_word": "limited", "speaker": 0, "speaker_confidence": 0.796875, "start": 303.42502, "word": "limited" }, { "confidence": 1, "end": 303.98502, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.796875, "start": 303.745, "word": "time" }, { "confidence": 0.97314453, "end": 304.14502, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.796875, "start": 303.98502, "word": "at" }, { "confidence": 0.99902344, "end": 304.64502, "punctuated_word": "participating", "speaker": 0, "speaker_confidence": 0.796875, "start": 304.14502, "word": "participating" }, { "confidence": 0.9941406, "end": 305.20502, "punctuated_word": "restaurants.", "speaker": 0, "speaker_confidence": 0.796875, "start": 304.70502, "word": "restaurants" }, { "confidence": 0.99902344, "end": 305.505, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.70654297, "start": 305.265, "word": "now" }, { "confidence": 0.87060547, "end": 305.665, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 0.70654297, "start": 305.505, "word": "even" }, { "confidence": 1, "end": 305.825, "punctuated_word": "though", "speaker": 0, "speaker_confidence": 0.70654297, "start": 305.665, "word": "though" }, { "confidence": 0.99902344, "end": 305.98502, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.70654297, "start": 305.825, "word": "you" }, { "confidence": 1, "end": 306.14502, "punctuated_word": "guys", "speaker": 0, "speaker_confidence": 0.70654297, "start": 305.98502, "word": "guys" }, { "confidence": 0.98828125, "end": 306.30502, "punctuated_word": "were", "speaker": 0, "speaker_confidence": 0.70654297, "start": 306.14502, "word": "were" }, { "confidence": 1, "end": 306.545, "punctuated_word": "able", "speaker": 0, "speaker_confidence": 0.70654297, "start": 306.30502, "word": "able" }, { "confidence": 0.99902344, "end": 306.785, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.70654297, "start": 306.545, "word": "to" }, { "confidence": 0.99609375, "end": 307.265, "punctuated_word": "overwhelm", "speaker": 0, "speaker_confidence": 0.70654297, "start": 306.785, "word": "overwhelm" }, { "confidence": 1, "end": 307.505, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.70654297, "start": 307.265, "word": "and" }, { "confidence": 1, "end": 307.905, "punctuated_word": "totally", "speaker": 0, "speaker_confidence": 0.70654297, "start": 307.505, "word": "totally" }, { "confidence": 0.9970703, "end": 308.15, "punctuated_word": "wreck", "speaker": 0, "speaker_confidence": 0.70654297, "start": 307.905, "word": "wreck" }, { "confidence": 0.4116211, "end": 308.63, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.7050781, "start": 308.55, "word": "i" }, { "confidence": 0.9995117, "end": 308.79, "punctuated_word": "don't", "speaker": 0, "speaker_confidence": 0.7050781, "start": 308.63, "word": "don't" }, { "confidence": 1, "end": 309.11, "punctuated_word": "feel", "speaker": 0, "speaker_confidence": 0.7050781, "start": 308.79, "word": "feel" }, { "confidence": 0.99902344, "end": 309.43, "punctuated_word": "ashamed", "speaker": 0, "speaker_confidence": 0.7050781, "start": 309.11, "word": "ashamed" }, { "confidence": 0.9980469, "end": 309.66998, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.7050781, "start": 309.43, "word": "or" }, { "confidence": 0.99902344, "end": 310.16998, "punctuated_word": "humiliated", "speaker": 0, "speaker_confidence": 0.7050781, "start": 309.66998, "word": "humiliated" }, { "confidence": 0.99902344, "end": 310.38998, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.7050781, "start": 310.22998, "word": "for" }, { "confidence": 0.9970703, "end": 310.63, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.7050781, "start": 310.38998, "word": "this" }, { "confidence": 0.97509766, "end": 310.87, "punctuated_word": "great", "speaker": 0, "speaker_confidence": 0.7050781, "start": 310.63, "word": "great" }, { "confidence": 0.9916992, "end": 311.19, "punctuated_word": "dishonor", "speaker": 0, "speaker_confidence": 0.7050781, "start": 310.87, "word": "dishonor" }, { "confidence": 0.7414551, "end": 311.43, "punctuated_word": "I've", "speaker": 0, "speaker_confidence": 0.7050781, "start": 311.19, "word": "i've" }, { "confidence": 0.9980469, "end": 311.66998, "punctuated_word": "brought", "speaker": 0, "speaker_confidence": 0.7050781, "start": 311.43, "word": "brought" }, { "confidence": 0.97265625, "end": 311.99, "punctuated_word": "upon", "speaker": 0, "speaker_confidence": 0.7050781, "start": 311.66998, "word": "upon" }, { "confidence": 1, "end": 312.07, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7050781, "start": 311.99, "word": "the" }, { "confidence": 0.99902344, "end": 312.31, "punctuated_word": "art", "speaker": 0, "speaker_confidence": 0.7050781, "start": 312.07, "word": "art" }, { "confidence": 0.99902344, "end": 312.38998, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7050781, "start": 312.31, "word": "of" }, { "confidence": 0.99853516, "end": 312.88998, "punctuated_word": "programming.", "speaker": 0, "speaker_confidence": 0.7050781, "start": 312.38998, "word": "programming" }, { "confidence": 0.9970703, "end": 313.44998, "punctuated_word": "Ultimately,", "speaker": 0, "speaker_confidence": 1, "start": 312.94998, "word": "ultimately" }, { "confidence": 1, "end": 314.16998, "punctuated_word": "moderating", "speaker": 0, "speaker_confidence": 1, "start": 313.66998, "word": "moderating" }, { "confidence": 0.9980469, "end": 314.38998, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 314.22998, "word": "and" }, { "confidence": 0.9980469, "end": 314.88998, "punctuated_word": "controlling", "speaker": 0, "speaker_confidence": 1, "start": 314.38998, "word": "controlling" }, { "confidence": 0.9980469, "end": 315.19, "punctuated_word": "spam", "speaker": 0, "speaker_confidence": 1, "start": 314.94998, "word": "spam" }, { "confidence": 0.99902344, "end": 315.35, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 1, "start": 315.19, "word": "on" }, { "confidence": 0.9980469, "end": 315.50998, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 315.35, "word": "a" }, { "confidence": 0.9980469, "end": 315.83, "punctuated_word": "massive", "speaker": 0, "speaker_confidence": 1, "start": 315.50998, "word": "massive" }, { "confidence": 0.99609375, "end": 316.07, "punctuated_word": "chat", "speaker": 0, "speaker_confidence": 1, "start": 315.83, "word": "chat" }, { "confidence": 0.9902344, "end": 316.38998, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 1, "start": 316.07, "word": "app" }, { "confidence": 0.99121094, "end": 316.55, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 316.38998, "word": "is" }, { "confidence": 0.99121094, "end": 316.71, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 316.55, "word": "a" }, { "confidence": 0.99902344, "end": 317.11, "punctuated_word": "nearly", "speaker": 0, "speaker_confidence": 1, "start": 316.71, "word": "nearly" }, { "confidence": 1, "end": 317.50998, "punctuated_word": "impossible", "speaker": 0, "speaker_confidence": 1, "start": 317.11, "word": "impossible" }, { "confidence": 0.9851074, "end": 317.91, "punctuated_word": "task.", "speaker": 0, "speaker_confidence": 1, "start": 317.50998, "word": "task" }, { "confidence": 0.9770508, "end": 318.135, "punctuated_word": "Even", "speaker": 0, "speaker_confidence": 1, "start": 317.91, "word": "even" }, { "confidence": 0.9716797, "end": 318.375, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 318.215, "word": "in" }, { "confidence": 0.85058594, "end": 318.61502, "punctuated_word": "Discord", "speaker": 0, "speaker_confidence": 1, "start": 318.375, "word": "discord" }, { "confidence": 0.8574219, "end": 319.015, "punctuated_word": "struggles", "speaker": 0, "speaker_confidence": 1, "start": 318.61502, "word": "struggles" }, { "confidence": 1, "end": 319.095, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 319.015, "word": "with" }, { "confidence": 1, "end": 319.255, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 319.095, "word": "it" }, { "confidence": 0.9980469, "end": 319.415, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 319.255, "word": "to" }, { "confidence": 1, "end": 319.575, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 1, "start": 319.415, "word": "this" }, { "confidence": 1, "end": 319.975, "punctuated_word": "day.", "speaker": 0, "speaker_confidence": 1, "start": 319.575, "word": "day" }, { "confidence": 0.99853516, "end": 320.215, "punctuated_word": "We've", "speaker": 0, "speaker_confidence": 1, "start": 319.975, "word": "we've" }, { "confidence": 1, "end": 320.375, "punctuated_word": "had", "speaker": 0, "speaker_confidence": 1, "start": 320.215, "word": "had" }, { "confidence": 1, "end": 320.45502, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 320.375, "word": "to" }, { "confidence": 1, "end": 320.695, "punctuated_word": "jump", "speaker": 0, "speaker_confidence": 1, "start": 320.45502, "word": "jump" }, { "confidence": 1, "end": 320.77502, "punctuated_word": "through", "speaker": 0, "speaker_confidence": 1, "start": 320.695, "word": "through" }, { "confidence": 1, "end": 320.935, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 1, "start": 320.77502, "word": "all" }, { "confidence": 0.9980469, "end": 321.095, "punctuated_word": "kinds", "speaker": 0, "speaker_confidence": 1, "start": 320.935, "word": "kinds" }, { "confidence": 1, "end": 321.255, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 321.095, "word": "of" }, { "confidence": 0.99902344, "end": 321.575, "punctuated_word": "hoops", "speaker": 0, "speaker_confidence": 1, "start": 321.255, "word": "hoops" }, { "confidence": 0.99902344, "end": 321.655, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 321.575, "word": "to" }, { "confidence": 1, "end": 322.05502, "punctuated_word": "prevent", "speaker": 0, "speaker_confidence": 1, "start": 321.655, "word": "prevent" }, { "confidence": 0.9838867, "end": 322.295, "punctuated_word": "raids", "speaker": 0, "speaker_confidence": 1, "start": 322.05502, "word": "raids" }, { "confidence": 0.99902344, "end": 322.45502, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 322.295, "word": "and" }, { "confidence": 0.99902344, "end": 322.77502, "punctuated_word": "spam", "speaker": 0, "speaker_confidence": 1, "start": 322.45502, "word": "spam" }, { "confidence": 0.99902344, "end": 322.935, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 1, "start": 322.77502, "word": "on" }, { "confidence": 1, "end": 323.015, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 1, "start": 322.935, "word": "our" }, { "confidence": 0.9404297, "end": 323.415, "punctuated_word": "Discord", "speaker": 0, "speaker_confidence": 1, "start": 323.015, "word": "discord" }, { "confidence": 0.98657227, "end": 323.73502, "punctuated_word": "server.", "speaker": 0, "speaker_confidence": 1, "start": 323.415, "word": "server" }, { "confidence": 0.99902344, "end": 323.89502, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 1, "start": 323.73502, "word": "if" }, { "confidence": 0.9995117, "end": 324.05502, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 1, "start": 323.89502, "word": "you're" }, { "confidence": 1, "end": 324.295, "punctuated_word": "crazy", "speaker": 0, "speaker_confidence": 1, "start": 324.05502, "word": "crazy" }, { "confidence": 1, "end": 324.61502, "punctuated_word": "enough", "speaker": 0, "speaker_confidence": 1, "start": 324.295, "word": "enough" }, { "confidence": 1, "end": 324.695, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 324.61502, "word": "to" }, { "confidence": 0.99902344, "end": 324.935, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 1, "start": 324.695, "word": "build" }, { "confidence": 0.9951172, "end": 325.17502, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 1, "start": 324.935, "word": "your" }, { "confidence": 1, "end": 325.415, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 1, "start": 325.17502, "word": "own" }, { "confidence": 0.99902344, "end": 325.815, "punctuated_word": "massive", "speaker": 0, "speaker_confidence": 1, "start": 325.415, "word": "massive" }, { "confidence": 0.9951172, "end": 326.05502, "punctuated_word": "public", "speaker": 0, "speaker_confidence": 1, "start": 325.815, "word": "public" }, { "confidence": 1, "end": 326.41, "punctuated_word": "chat", "speaker": 0, "speaker_confidence": 1, "start": 326.05502, "word": "chat" }, { "confidence": 0.49743652, "end": 326.65, "punctuated_word": "room.", "speaker": 0, "speaker_confidence": 1, "start": 326.49, "word": "room" }, { "confidence": 0.9980469, "end": 326.81, "punctuated_word": "All", "speaker": 0, "speaker_confidence": 0.83984375, "start": 326.65, "word": "all" }, { "confidence": 0.99902344, "end": 326.89, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.83984375, "start": 326.81, "word": "i" }, { "confidence": 0.9980469, "end": 327.21, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.83984375, "start": 326.89, "word": "can" }, { "confidence": 0.99902344, "end": 327.45, "punctuated_word": "say", "speaker": 0, "speaker_confidence": 0.83984375, "start": 327.21, "word": "say" }, { "confidence": 0.99609375, "end": 327.69, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.83984375, "start": 327.45, "word": "is" }, { "confidence": 0.9536133, "end": 327.93, "punctuated_word": "good", "speaker": 0, "speaker_confidence": 0.83984375, "start": 327.69, "word": "good" }, { "confidence": 1, "end": 328.33002, "punctuated_word": "luck", "speaker": 0, "speaker_confidence": 0.83984375, "start": 327.93, "word": "luck" }, { "confidence": 0.5229492, "end": 328.57, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.83984375, "start": 328.33002, "word": "and" }, { "confidence": 0.99121094, "end": 328.73, "punctuated_word": "may", "speaker": 0, "speaker_confidence": 0.83984375, "start": 328.57, "word": "may" }, { "confidence": 0.9741211, "end": 328.97, "punctuated_word": "God", "speaker": 0, "speaker_confidence": 0.83984375, "start": 328.73, "word": "god" }, { "confidence": 1, "end": 329.13, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.83984375, "start": 328.97, "word": "be" }, { "confidence": 1, "end": 329.29, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.83984375, "start": 329.13, "word": "with" }, { "confidence": 0.9975586, "end": 329.61002, "punctuated_word": "you.", "speaker": 0, "speaker_confidence": 0.83984375, "start": 329.29, "word": "you" }, { "confidence": 1, "end": 329.85, "punctuated_word": "Thanks", "speaker": 0, "speaker_confidence": 0.83984375, "start": 329.61002, "word": "thanks" }, { "confidence": 1, "end": 330.01, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.83984375, "start": 329.85, "word": "for" }, { "confidence": 0.9387207, "end": 330.49, "punctuated_word": "watching,", "speaker": 0, "speaker_confidence": 0.83984375, "start": 330.01, "word": "watching" }, { "confidence": 1, "end": 330.65, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.83984375, "start": 330.49, "word": "and" }, { "confidence": 0.99902344, "end": 330.81, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.6044922, "start": 330.65, "word": "i" }, { "confidence": 0.99902344, "end": 330.97, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.6044922, "start": 330.81, "word": "will" }, { "confidence": 0.99902344, "end": 331.21, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.6044922, "start": 330.97, "word": "see" }, { "confidence": 1, "end": 331.37, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.6044922, "start": 331.21, "word": "you" }, { "confidence": 0.9980469, "end": 331.53, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.6044922, "start": 331.37, "word": "in" }, { "confidence": 1, "end": 331.69, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6044922, "start": 331.53, "word": "the" }, { "confidence": 1, "end": 331.93, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.6044922, "start": 331.69, "word": "next" }, { "confidence": 0.9885254, "end": 332.43, "punctuated_word": "one.", "speaker": 0, "speaker_confidence": 0.6044922, "start": 331.93, "word": "one" } ] } ], "detected_language": "", "language_confidence": 0, "search": null } ], "summary": { "result": "success", "short": "The speaker discusses the problems with their app, including spamming users with negative comments and user generated data. They suggest ways to mitigate these issues, including using a bad word filter and a bad word filter directly in the front end code. The speaker also mentions the challenges of scaling infrastructure and the need for moderating and controlling spam on a large chat app." }, "utterances": null } }
downloads\Why_my_chat_app_broke…_a_cautionary_tale.wav
https://www.youtube.com/watch?v=M93w3TjzVUE
Why my chat app broke… a cautionary tale
387,509
Fireship
502
Why are there so many Linux distros? Take a brief journey through the history of Linux to understand hundreds of different distros exist today https://fireship.io/ 00:00 In the Beginning 01:10 GNU + Linux 02:44 What is a Distro? 03:29 Slackware 03:48 Debian 05:30 Redhat 06:17 Arch 06:59 Independent Distros 07:58 Bonus Mindblower #linux #dev #history References: Linux https://www.linux.org/ 96.3% of servers run Linux https://www.zdnet.com/article/can-the-internet-exist-without-linux/ Torvalds uses Fedora https://www.zdnet.com/article/look-whats-inside-linus-torvalds-latest-linux-development-pc/ GNU/Linux Unified Logo https://www.reddit.com/r/linux/comments/2a8xvf/solved_gnulinux_unified_logo_3/ Linux Army https://www.reddit.com/r/linuxmasterrace/comments/29718s/linux_army_anyone/ Distro Timeline https://upload.wikimedia.org/wikipedia/commons/1/1b/Linux_Distribution_Timeline.svg
{ "metadata": { "channels": 1, "created": "2024-02-04T14:14:08.666Z", "duration": 502.24762, "model_info": { "30089e05-99d1-4376-b32e-c263170674af": { "arch": "nova-2", "name": "2-general-nova", "version": "2024-01-09.29447" } }, "models": [ "30089e05-99d1-4376-b32e-c263170674af" ], "request_id": "edd6f480-3d44-4458-b2fc-561a87873e77", "sha256": "f1bcaa73bf060defe457a2be8d4daa905e76277ee2326de2ffabc504ba5e6ee5", "summary_info": { "input_tokens": 1987, "model_uuid": "67875a7f-c9c4-48a0-aa55-5bdb8a91c34a", "output_tokens": 200 }, "transaction_key": "deprecated", "warnings": null }, "results": { "channels": [ { "alternatives": [ { "confidence": 0.9970703, "entities": null, "paragraphs": { "paragraphs": [ { "end": 22.7, "num_words": 63, "sentences": [ { "end": 4.8199997, "start": 3.1999998, "text": "August 25, 1991." }, { "end": 11.165, "start": 5.12, "text": "A 21 year old graduate student in Helsinki named Linus Torvalds announces he's doing a free operating system." }, { "end": 13.645, "start": 11.225, "text": "Just a hobby won't be a big professional thing." }, { "end": 19.68, "start": 13.785, "text": "Fast forward a few years later, and that hobby evolves into one of the most important projects in the history free of computing." }, { "end": 22.7, "start": 19.82, "text": "Most operating systems were created to make shitloads of money." } ], "speaker": 0, "start": 3.1999998 }, { "end": 27.04, "num_words": 17, "sentences": [ { "end": 23.52, "start": 22.7, "text": "That's right." }, { "end": 24.400002, "start": 23.58, "text": "It's $99." }, { "end": 26.368572, "start": 24.78, "text": "It's an incredible value, but it's true." }, { "end": 26.505714, "start": 26.368572, "text": "It's Windows from Microsoft." }, { "end": 27.04, "start": 26.505714, "text": "Order today." } ], "speaker": 1, "start": 22.7 }, { "end": 30.275002, "num_words": 4, "sentences": [ { "end": 30.275002, "start": 27.18, "text": "But he order today." } ], "speaker": 1, "start": 27.18 }, { "end": 52.535004, "num_words": 76, "sentences": [ { "end": 33.635002, "start": 30.575, "text": "But Linux was a revolution based on a simple principle." }, { "end": 35.695, "start": 33.775, "text": "Software should be free and open." }, { "end": 42.15, "start": 35.695, "text": "Today, we'll take a look at the weird history of Linux and, in the process, answer the question of why are there so many Linux distros?" }, { "end": 46.695004, "start": 42.53, "text": "But before we can even talk about Linux, we need to travel back to 19 69." }, { "end": 52.535004, "start": 46.755, "text": "While grandpa was dropping acid at Woodstock, Ken Thompson and Dennis Ritchie were creating the Unix operating system." } ], "speaker": 0, "start": 30.575 }, { "end": 70.395004, "num_words": 56, "sentences": [ { "end": 55.890003, "start": 52.755, "text": "Unix was well loved by both businesses had universities." }, { "end": 57.41, "start": 56.190002, "text": "There was one problem though." }, { "end": 59.47, "start": 57.47, "text": "The code was owned by AT and T." }, { "end": 65.735, "start": 59.47, "text": "And in 1977, when UC Berkeley created their own Berkeley placed software distribution, AT and T sued them." }, { "end": 70.395004, "start": 65.735, "text": "That put limitations on Unix development and led to a period known as the Unix Wars." } ], "speaker": 0, "start": 52.755 }, { "end": 101.57, "num_words": 102, "sentences": [ { "end": 78.409996, "start": 70.615, "text": "A few years later in 1983, Richard Stallman creates the GNU project, which was intended to be a free and open replacement for Unix." }, { "end": 85.005005, "start": 78.63, "text": "But Unix was a big YIG Complex project with 100 of different applications, and replacing it was no easy task." }, { "end": 89.78001, "start": 85.145004, "text": "Over the next few years, the project created many of the applications that you know and love today." }, { "end": 94.975006, "start": 89.840004, "text": "Tools that are often used synonymously with Linux, like tar, bash, and emacs, just to name a few." }, { "end": 101.57, "start": 95.035, "text": "By the early nineties, GNU had all this great software, but it was missing one essential component, the operating system some kernel." } ], "speaker": 0, "start": 70.615 }, { "end": 134.7, "num_words": 109, "sentences": [ { "end": 111.085, "start": 101.57, "text": "A complete operating system needs a kernel to sit in between the hardware and the software, where it can allocate CPU UN memory resources to run software applications." }, { "end": 116.86, "start": 111.465004, "text": "Luckily, it was right around this time that Linus Torvalds was working on his his hobby operating system." }, { "end": 121.26, "start": 117, "text": "Originally, it was going to be called Freeaxe because the name Linux was too egotistical." }, { "end": 129.455, "start": 121.56, "text": "But as fate would have it, the admin for the FTP PC server at the time didn't like the name and changed it without his consent, and the name stuck from there on out." }, { "end": 134.7, "start": 129.515, "text": "Initially, Linux was released with a proprietary license that had limitations on commercial use." } ], "speaker": 0, "start": 101.57 }, { "end": 164.665, "num_words": 102, "sentences": [ { "end": 139.52, "start": 134.7, "text": "However, by the end of 1992, it was released under the GNU general public license." }, { "end": 144.565, "start": 139.66, "text": "And this gave birth to a complete operating system that we know today as GNU plus Linux." }, { "end": 150.24501, "start": 144.705, "text": "The following year, hundreds of developers jumped on the Linux project and started adapting it to the GNU environment." }, { "end": 158.73999, "start": 150.30501, "text": "The the beauty of the Linux kernel is that it gave developers the ability to build custom operating systems that felt like Unix, but didn't come with the fear of being sued down the road." }, { "end": 164.665, "start": 158.73999, "text": "Ultimately, this led to some of the 1st Linux distributions, like Soft Landing, Yggdrasil, and Slackware." } ], "speaker": 0, "start": 134.7 }, { "end": 194.33499, "num_words": 88, "sentences": [ { "end": 166.905, "start": 164.965, "text": "But what is a Linux distro exactly?" }, { "end": 180.035, "start": 167.125, "text": "A distro is a complete operating system based on the Linux kernel that contains a bunch of packages and libraries, and typically a package manager to install all additional applications, and possibly a Windows system if there's a GUI involved." }, { "end": 183.075, "start": 180.175, "text": "Many distros might share the same default user interface." }, { "end": 188.85, "start": 183.33, "text": "Popular UI options include GNOME, kdePlasma, mate, cinnamon, and a bunch of others." }, { "end": 194.33499, "start": 188.85, "text": "Today, there's nearly a 1000 different Linux distros out there, and they've all been customized to serve different purposes." } ], "speaker": 0, "start": 164.965 }, { "end": 215.975, "num_words": 66, "sentences": [ { "end": 198.575, "start": 194.555, "text": "Some of them are designed for enterprise users, while others are for home users." }, { "end": 203.87, "start": 198.715, "text": "Some distros only run on servers, while others are designed for desktop, mobile, and embedded devices." }, { "end": 209.655, "start": 204.01001, "text": "And each distro is usually backed by a community that has its own set philosophical and technical opinions." }, { "end": 214.375, "start": 209.79501, "text": "Most of these older distros are no longer maintained and just considered historical artifacts." }, { "end": 215.975, "start": 214.515, "text": "One exception is Slackware." } ], "speaker": 0, "start": 194.555 }, { "end": 242.36, "num_words": 83, "sentences": [ { "end": 220.71, "start": 216.195, "text": "It had a release recently as 2016, and has spawned a bunch of different variations." }, { "end": 228.785, "start": 220.93, "text": "Most notably, it led to the OpenSUSE project, which remains a very popular general purpose distro, and is usually associated did with professional power users." }, { "end": 232.625, "start": 228.925, "text": "But the most significant distro to come out of 1993 was Debian." }, { "end": 237.78, "start": 232.765, "text": "It was established by Ian Murdoch, and its name comes from his name combined with his ex wife's name." }, { "end": 242.36, "start": 237.78, "text": "And its first official release came in 1996 as version 1.1 buzzed." } ], "speaker": 0, "start": 216.195 }, { "end": 271.06, "num_words": 96, "sentences": [ { "end": 246.345, "start": 242.42, "text": "And since then, each release contains a codename with a Toy Story character." }, { "end": 254.02501, "start": 246.485, "text": "A few years later, it led to the creation of Advanced Package Tool or APT, although it was originally developed under the codename deity." }, { "end": 261.325, "start": 254.16501, "text": "The the Debian community is huge and it's a great distro today and very popular on servers, but can also be used as a general purpose distro." }, { "end": 266.945, "start": 261.48502, "text": "It's minimal and stable, which are traits that have allowed it to father a huge number of offspring distros." }, { "end": 271.06, "start": 267.08502, "text": "Some of them are highly specialized like Raspberry Pi OS or Steam OS." } ], "speaker": 0, "start": 242.42 }, { "end": 311.73502, "num_words": 135, "sentences": [ { "end": 278.76498, "start": 271.12, "text": "But, by far, the most popular child of Debian is Ubuntu, which was first released in 2004 and is managed by a British company called Canonical." }, { "end": 286.63, "start": 279.065, "text": "It follows a semi annual release schedule where each release is named after an animal and a word with the same letter, like cosmic cuttlefish." }, { "end": 293.285, "start": 286.93, "text": "It's extremely beginner friendly and was really one of the first distros to open up Linux to the main stream home computer user." }, { "end": 300.78, "start": 293.345, "text": "In recent years, though, it's received a lot of hate from the Linux community for releasing closed source software and also selling data that 2 third party companies." }, { "end": 311.73502, "start": 300.84, "text": "In any case, it remains extremely popular, and it even has a variety of different flavors like Kubuntu, Zubantu, and Lubantu, which are their own distributions that offer slight variations on the original." } ], "speaker": 0, "start": 271.12 }, { "end": 351, "num_words": 120, "sentences": [ { "end": 318.27, "start": 311.875, "text": "Like, Kubuntu, for example, is designed to be a great entry point if you're transitioning from Microsoft Windows to Linux." }, { "end": 326.875, "start": 318.56998, "text": "In addition, Ubuntu has spawned many other variations like Linux Mint, Peppermint, and Pop!OS just to name a few of the most popular options." }, { "end": 335.02, "start": 327.175, "text": "Debian has a huge family tree, but if we go back to 1994, there is another Linux distro that also has a huge family tree called Red Hat." }, { "end": 341.01498, "start": 335.02, "text": "It was created by Mark Ewing and is known for its focus on security and reliability for enterprise users." }, { "end": 351, "start": 341.395, "text": "Red Hat adopted a business model where they maintain an open source operating system, then make money by selling consulting integration and add on services to big enterprise clients." } ], "speaker": 0, "start": 311.875 }, { "end": 386.61, "num_words": 120, "sentences": [ { "end": 357.065, "start": 351.06, "text": "Today, it generates 1,000,000,000 of dollars in revenue and was recently acquired by IBM for an 11 figure price tag." }, { "end": 365.03003, "start": 357.125, "text": "Red Hat has given birth to a bunch of children, most of which are associated with enterprise work, and use either the RPM or Yum package manager." }, { "end": 376.89502, "start": 365.25, "text": "Popular descendants include rhel, CentOS, and Fedora, which is not only great for enterprise servers, but also works well as a personal work station, and it's even the distro of choice by Linus Torvalds himself." }, { "end": 382.66998, "start": 377.195, "text": "Now, one thing that you'll notice about Linux distros is that many of them do a lot of stuff that you don't actually need." }, { "end": 386.61, "start": 382.66998, "text": "That takes up space on your hardware and ultimately makes your life more complex." } ], "speaker": 0, "start": 351.06 }, { "end": 414.495, "num_words": 90, "sentences": [ { "end": 393.295, "start": 386.66998, "text": "There are 2 Linux families that came out in the early 2000 that are focused on simplicity, performance, and minimalism." }, { "end": 398.33502, "start": 393.755, "text": "Gentoo, with its Enoch distro, came out in 2000 and Arch came out in 2002." }, { "end": 402.89, "start": 398.79, "text": "If you like to keep things simple, then you'll probably like the Arch family of Linux distros." }, { "end": 407.61002, "start": 402.95, "text": "It has its own package manager called Pacman and has adopted a rolling release model." }, { "end": 414.495, "start": 407.835, "text": "Like Ubuntu that has a new major release every 6 months, Arch releases small updates that can be continuously updated in the OS." } ], "speaker": 0, "start": 386.66998 }, { "end": 447.365, "num_words": 120, "sentences": [ { "end": 419.4, "start": 414.795, "text": "Arch is also the parent of Manjaro, which is one of the most popular distros up today." }, { "end": 430.87, "start": 419.46, "text": "In addition to all these families that we've looked at, there are many popular independent distros, like the extremely lightweight Alpine, Fire OS for Amazon Devices, and Android, which is used by billions of people every day." }, { "end": 437.05, "start": 430.87, "text": "When you think of the Linux kernel like the engine in your car, it starts to answer the question of why are there so many Linux distros." }, { "end": 442.965, "start": 437.27, "text": "Some cars are designed to go fast, others for comfort, some are engineered for enterprise and others are just for fun." }, { "end": 447.365, "start": 443.025, "text": "As a developer, Linux is like a free engine that you can use to build your own car." } ], "speaker": 0, "start": 414.795 }, { "end": 472.475, "num_words": 88, "sentences": [ { "end": 455.835, "start": 447.425, "text": "That freedom, along with GNU and the greater open source ecosystem, motivates people to try new things and to profit by creating innovation within that system." }, { "end": 461.695, "start": 455.835, "text": "People who are threatened by it call it communism, but in reality, it's the polar opposite and the free market at its finest." }, { "end": 465.63, "start": 461.755, "text": "Today, even Microsoft he fully supports Linux through its WSL project." }, { "end": 467.21002, "start": 465.69, "text": "I'm gonna go ahead and wrap things up there." }, { "end": 472.475, "start": 467.21002, "text": "There's a lot of aspects of the Linux history and the histories of individual distros that we didn't cover." } ], "speaker": 0, "start": 447.425 }, { "end": 493.175, "num_words": 69, "sentences": [ { "end": 478.715, "start": 472.475, "text": "But, hopefully, this gives you a general idea of how Linux came into existence and the evolution of Linux distros over time." }, { "end": 481.12, "start": 478.715, "text": "Oh, and there's one random thing I almost forgot." }, { "end": 486.5, "start": 481.12, "text": "Back in 2005, the source code for Linux was managed under a version control system called BitKeeper." }, { "end": 489.51498, "start": 486.72, "text": "That was controversial though because it's proprietary software." }, { "end": 493.175, "start": 489.655, "text": "So Linus Torvalds did what any legend would do and he created Git." } ], "speaker": 0, "start": 472.475 }, { "end": 501.14, "num_words": 34, "sentences": [ { "end": 498.32, "start": 493.175, "text": "Before you go, make sure to like and subscribe and stay tuned for a lot more Linux his content on this channel." }, { "end": 501.14, "start": 498.32, "text": "Thanks for watching and I will see you in the next one." } ], "speaker": 0, "start": 493.175 } ], "transcript": "\nSpeaker 0: August 25, 1991. A 21 year old graduate student in Helsinki named Linus Torvalds announces he's doing a free operating system. Just a hobby won't be a big professional thing. Fast forward a few years later, and that hobby evolves into one of the most important projects in the history free of computing. Most operating systems were created to make shitloads of money.\n\nSpeaker 1: That's right. It's $99. It's an incredible value, but it's true. It's Windows from Microsoft. Order today.\n\nBut he order today.\n\nSpeaker 0: But Linux was a revolution based on a simple principle. Software should be free and open. Today, we'll take a look at the weird history of Linux and, in the process, answer the question of why are there so many Linux distros? But before we can even talk about Linux, we need to travel back to 19 69. While grandpa was dropping acid at Woodstock, Ken Thompson and Dennis Ritchie were creating the Unix operating system.\n\nUnix was well loved by both businesses had universities. There was one problem though. The code was owned by AT and T. And in 1977, when UC Berkeley created their own Berkeley placed software distribution, AT and T sued them. That put limitations on Unix development and led to a period known as the Unix Wars.\n\nA few years later in 1983, Richard Stallman creates the GNU project, which was intended to be a free and open replacement for Unix. But Unix was a big YIG Complex project with 100 of different applications, and replacing it was no easy task. Over the next few years, the project created many of the applications that you know and love today. Tools that are often used synonymously with Linux, like tar, bash, and emacs, just to name a few. By the early nineties, GNU had all this great software, but it was missing one essential component, the operating system some kernel.\n\nA complete operating system needs a kernel to sit in between the hardware and the software, where it can allocate CPU UN memory resources to run software applications. Luckily, it was right around this time that Linus Torvalds was working on his his hobby operating system. Originally, it was going to be called Freeaxe because the name Linux was too egotistical. But as fate would have it, the admin for the FTP PC server at the time didn't like the name and changed it without his consent, and the name stuck from there on out. Initially, Linux was released with a proprietary license that had limitations on commercial use.\n\nHowever, by the end of 1992, it was released under the GNU general public license. And this gave birth to a complete operating system that we know today as GNU plus Linux. The following year, hundreds of developers jumped on the Linux project and started adapting it to the GNU environment. The the beauty of the Linux kernel is that it gave developers the ability to build custom operating systems that felt like Unix, but didn't come with the fear of being sued down the road. Ultimately, this led to some of the 1st Linux distributions, like Soft Landing, Yggdrasil, and Slackware.\n\nBut what is a Linux distro exactly? A distro is a complete operating system based on the Linux kernel that contains a bunch of packages and libraries, and typically a package manager to install all additional applications, and possibly a Windows system if there's a GUI involved. Many distros might share the same default user interface. Popular UI options include GNOME, kdePlasma, mate, cinnamon, and a bunch of others. Today, there's nearly a 1000 different Linux distros out there, and they've all been customized to serve different purposes.\n\nSome of them are designed for enterprise users, while others are for home users. Some distros only run on servers, while others are designed for desktop, mobile, and embedded devices. And each distro is usually backed by a community that has its own set philosophical and technical opinions. Most of these older distros are no longer maintained and just considered historical artifacts. One exception is Slackware.\n\nIt had a release recently as 2016, and has spawned a bunch of different variations. Most notably, it led to the OpenSUSE project, which remains a very popular general purpose distro, and is usually associated did with professional power users. But the most significant distro to come out of 1993 was Debian. It was established by Ian Murdoch, and its name comes from his name combined with his ex wife's name. And its first official release came in 1996 as version 1.1 buzzed.\n\nAnd since then, each release contains a codename with a Toy Story character. A few years later, it led to the creation of Advanced Package Tool or APT, although it was originally developed under the codename deity. The the Debian community is huge and it's a great distro today and very popular on servers, but can also be used as a general purpose distro. It's minimal and stable, which are traits that have allowed it to father a huge number of offspring distros. Some of them are highly specialized like Raspberry Pi OS or Steam OS.\n\nBut, by far, the most popular child of Debian is Ubuntu, which was first released in 2004 and is managed by a British company called Canonical. It follows a semi annual release schedule where each release is named after an animal and a word with the same letter, like cosmic cuttlefish. It's extremely beginner friendly and was really one of the first distros to open up Linux to the main stream home computer user. In recent years, though, it's received a lot of hate from the Linux community for releasing closed source software and also selling data that 2 third party companies. In any case, it remains extremely popular, and it even has a variety of different flavors like Kubuntu, Zubantu, and Lubantu, which are their own distributions that offer slight variations on the original.\n\nLike, Kubuntu, for example, is designed to be a great entry point if you're transitioning from Microsoft Windows to Linux. In addition, Ubuntu has spawned many other variations like Linux Mint, Peppermint, and Pop!OS just to name a few of the most popular options. Debian has a huge family tree, but if we go back to 1994, there is another Linux distro that also has a huge family tree called Red Hat. It was created by Mark Ewing and is known for its focus on security and reliability for enterprise users. Red Hat adopted a business model where they maintain an open source operating system, then make money by selling consulting integration and add on services to big enterprise clients.\n\nToday, it generates 1,000,000,000 of dollars in revenue and was recently acquired by IBM for an 11 figure price tag. Red Hat has given birth to a bunch of children, most of which are associated with enterprise work, and use either the RPM or Yum package manager. Popular descendants include rhel, CentOS, and Fedora, which is not only great for enterprise servers, but also works well as a personal work station, and it's even the distro of choice by Linus Torvalds himself. Now, one thing that you'll notice about Linux distros is that many of them do a lot of stuff that you don't actually need. That takes up space on your hardware and ultimately makes your life more complex.\n\nThere are 2 Linux families that came out in the early 2000 that are focused on simplicity, performance, and minimalism. Gentoo, with its Enoch distro, came out in 2000 and Arch came out in 2002. If you like to keep things simple, then you'll probably like the Arch family of Linux distros. It has its own package manager called Pacman and has adopted a rolling release model. Like Ubuntu that has a new major release every 6 months, Arch releases small updates that can be continuously updated in the OS.\n\nArch is also the parent of Manjaro, which is one of the most popular distros up today. In addition to all these families that we've looked at, there are many popular independent distros, like the extremely lightweight Alpine, Fire OS for Amazon Devices, and Android, which is used by billions of people every day. When you think of the Linux kernel like the engine in your car, it starts to answer the question of why are there so many Linux distros. Some cars are designed to go fast, others for comfort, some are engineered for enterprise and others are just for fun. As a developer, Linux is like a free engine that you can use to build your own car.\n\nThat freedom, along with GNU and the greater open source ecosystem, motivates people to try new things and to profit by creating innovation within that system. People who are threatened by it call it communism, but in reality, it's the polar opposite and the free market at its finest. Today, even Microsoft he fully supports Linux through its WSL project. I'm gonna go ahead and wrap things up there. There's a lot of aspects of the Linux history and the histories of individual distros that we didn't cover.\n\nBut, hopefully, this gives you a general idea of how Linux came into existence and the evolution of Linux distros over time. Oh, and there's one random thing I almost forgot. Back in 2005, the source code for Linux was managed under a version control system called BitKeeper. That was controversial though because it's proprietary software. So Linus Torvalds did what any legend would do and he created Git.\n\nBefore you go, make sure to like and subscribe and stay tuned for a lot more Linux his content on this channel. Thanks for watching and I will see you in the next one." }, "summaries": null, "topics": [ { "end_word": 80, "start_word": 0, "text": "August 25, 1991. A 21 year old graduate student in Helsinki named Linus Torvalds announces he's doing a free operating system. Just a hobby won't be a big professional thing. Fast forward a few years later, and that hobby evolves into one of the most important projects in the history free of computing. Most operating systems were created to make shitloads of money. That's right. It's $99. It's an incredible value, but it's true. It's Windows from Microsoft. Order today.", "topics": [ { "confidence": 0.99184245, "topic": "microsoft" }, { "confidence": 0.31220222, "topic": "computer science" }, { "confidence": 0.09806543, "topic": "technology" }, { "confidence": 0.07608735, "topic": "software" }, { "confidence": 0.03249464, "topic": "computers" } ] }, { "end_word": 240, "start_word": 80, "text": "But he order today. But Linux was a revolution based on a simple principle. Software should be free and open. Today, we'll take a look at the weird history of Linux and, in the process, answer the question of why are there so many Linux distros? But before we can even talk about Linux, we need to travel back to 19 69. While grandpa was dropping acid at Woodstock, Ken Thompson and Dennis Ritchie were creating the Unix operating system. Unix was well loved by both businesses had universities. There was one problem though. The code was owned by AT and T. And in 1977, when UC Berkeley created their own Berkeley placed software distribution, AT and T sued them. That put limitations on Unix development and led to a period known as the Unix Wars. A few years later in 1983, Richard Stallman creates the GNU project, which was intended to be a free and open replacement for Unix.", "topics": [] }, { "end_word": 346, "start_word": 240, "text": "But Unix was a big YIG Complex project with 100 of different applications, and replacing it was no easy task. Over the next few years, the project created many of the applications that you know and love today. Tools that are often used synonymously with Linux, like tar, bash, and emacs, just to name a few. By the early nineties, GNU had all this great software, but it was missing one essential component, the operating system some kernel. A complete operating system needs a kernel to sit in between the hardware and the software, where it can allocate CPU UN memory resources to run software applications.", "topics": [ { "confidence": 0.023029326, "topic": "computer science" }, { "confidence": 0.020212583, "topic": "software" }, { "confidence": 0.018113963, "topic": "software development" } ] }, { "end_word": 379, "start_word": 346, "text": "Luckily, it was right around this time that Linus Torvalds was working on his his hobby operating system. Originally, it was going to be called Freeaxe because the name Linux was too egotistical.", "topics": [] }, { "end_word": 478, "start_word": 379, "text": "But as fate would have it, the admin for the FTP PC server at the time didn't like the name and changed it without his consent, and the name stuck from there on out. Initially, Linux was released with a proprietary license that had limitations on commercial use. However, by the end of 1992, it was released under the GNU general public license. And this gave birth to a complete operating system that we know today as GNU plus Linux. The following year, hundreds of developers jumped on the Linux project and started adapting it to the GNU environment.", "topics": [ { "confidence": 0.31755537, "topic": "copyright licenses" }, { "confidence": 0.009198056, "topic": "software development" } ] }, { "end_word": 888, "start_word": 478, "text": "The the beauty of the Linux kernel is that it gave developers the ability to build custom operating systems that felt like Unix, but didn't come with the fear of being sued down the road. Ultimately, this led to some of the 1st Linux distributions, like Soft Landing, Yggdrasil, and Slackware. But what is a Linux distro exactly? A distro is a complete operating system based on the Linux kernel that contains a bunch of packages and libraries, and typically a package manager to install all additional applications, and possibly a Windows system if there's a GUI involved. Many distros might share the same default user interface. Popular UI options include GNOME, kdePlasma, mate, cinnamon, and a bunch of others. Today, there's nearly a 1000 different Linux distros out there, and they've all been customized to serve different purposes. Some of them are designed for enterprise users, while others are for home users. Some distros only run on servers, while others are designed for desktop, mobile, and embedded devices. And each distro is usually backed by a community that has its own set philosophical and technical opinions. Most of these older distros are no longer maintained and just considered historical artifacts. One exception is Slackware. It had a release recently as 2016, and has spawned a bunch of different variations. Most notably, it led to the OpenSUSE project, which remains a very popular general purpose distro, and is usually associated did with professional power users. But the most significant distro to come out of 1993 was Debian. It was established by Ian Murdoch, and its name comes from his name combined with his ex wife's name. And its first official release came in 1996 as version 1.1 buzzed. And since then, each release contains a codename with a Toy Story character. A few years later, it led to the creation of Advanced Package Tool or APT, although it was originally developed under the codename deity. The the Debian community is huge and it's a great distro today and very popular on servers, but can also be used as a general purpose distro. It's minimal and stable, which are traits that have allowed it to father a huge number of offspring distros. Some of them are highly specialized like Raspberry Pi OS or Steam OS. But, by far, the most popular child of Debian is Ubuntu, which was first released in 2004 and is managed by a British company called Canonical.", "topics": [] }, { "end_word": 964, "start_word": 888, "text": "It follows a semi annual release schedule where each release is named after an animal and a word with the same letter, like cosmic cuttlefish. It's extremely beginner friendly and was really one of the first distros to open up Linux to the main stream home computer user. In recent years, though, it's received a lot of hate from the Linux community for releasing closed source software and also selling data that 2 third party companies.", "topics": [ { "confidence": 0.008934995, "topic": "software" } ] }, { "end_word": 1069, "start_word": 964, "text": "In any case, it remains extremely popular, and it even has a variety of different flavors like Kubuntu, Zubantu, and Lubantu, which are their own distributions that offer slight variations on the original. Like, Kubuntu, for example, is designed to be a great entry point if you're transitioning from Microsoft Windows to Linux. In addition, Ubuntu has spawned many other variations like Linux Mint, Peppermint, and Pop!OS just to name a few of the most popular options. Debian has a huge family tree, but if we go back to 1994, there is another Linux distro that also has a huge family tree called Red Hat.", "topics": [] }, { "end_word": 1137, "start_word": 1069, "text": "It was created by Mark Ewing and is known for its focus on security and reliability for enterprise users. Red Hat adopted a business model where they maintain an open source operating system, then make money by selling consulting integration and add on services to big enterprise clients. Today, it generates 1,000,000,000 of dollars in revenue and was recently acquired by IBM for an 11 figure price tag.", "topics": [ { "confidence": 0.04865669, "topic": "technology" }, { "confidence": 0.021632139, "topic": "industry" }, { "confidence": 0.00728395, "topic": "business" } ] }, { "end_word": 1408, "start_word": 1137, "text": "Red Hat has given birth to a bunch of children, most of which are associated with enterprise work, and use either the RPM or Yum package manager. Popular descendants include rhel, CentOS, and Fedora, which is not only great for enterprise servers, but also works well as a personal work station, and it's even the distro of choice by Linus Torvalds himself. Now, one thing that you'll notice about Linux distros is that many of them do a lot of stuff that you don't actually need. That takes up space on your hardware and ultimately makes your life more complex. There are 2 Linux families that came out in the early 2000 that are focused on simplicity, performance, and minimalism. Gentoo, with its Enoch distro, came out in 2000 and Arch came out in 2002. If you like to keep things simple, then you'll probably like the Arch family of Linux distros. It has its own package manager called Pacman and has adopted a rolling release model. Like Ubuntu that has a new major release every 6 months, Arch releases small updates that can be continuously updated in the OS. Arch is also the parent of Manjaro, which is one of the most popular distros up today. In addition to all these families that we've looked at, there are many popular independent distros, like the extremely lightweight Alpine, Fire OS for Amazon Devices, and Android, which is used by billions of people every day. When you think of the Linux kernel like the engine in your car, it starts to answer the question of why are there so many Linux distros.", "topics": [] }, { "end_word": 1535, "start_word": 1408, "text": "Some cars are designed to go fast, others for comfort, some are engineered for enterprise and others are just for fun. As a developer, Linux is like a free engine that you can use to build your own car. That freedom, along with GNU and the greater open source ecosystem, motivates people to try new things and to profit by creating innovation within that system. People who are threatened by it call it communism, but in reality, it's the polar opposite and the free market at its finest. Today, even Microsoft he fully supports Linux through its WSL project. I'm gonna go ahead and wrap things up there. There's a lot of aspects of the Linux history and the histories of individual distros that we didn't cover.", "topics": [ { "confidence": 0.9281511, "topic": "communism" }, { "confidence": 0.4205325, "topic": "socialism" }, { "confidence": 0.07274878, "topic": "electric vehicles" }, { "confidence": 0.025690587, "topic": "democracy" }, { "confidence": 0.01083393, "topic": "totalitarianism" }, { "confidence": 0.0099572325, "topic": "capitalism" }, { "confidence": 0.007455602, "topic": "software development" } ] }, { "end_word": 1566, "start_word": 1535, "text": "But, hopefully, this gives you a general idea of how Linux came into existence and the evolution of Linux distros over time. Oh, and there's one random thing I almost forgot.", "topics": [] }, { "end_word": 1626, "start_word": 1566, "text": "Back in 2005, the source code for Linux was managed under a version control system called BitKeeper. That was controversial though because it's proprietary software. So Linus Torvalds did what any legend would do and he created Git. Before you go, make sure to like and subscribe and stay tuned for a lot more Linux his content on this channel.", "topics": [ { "confidence": 0.0537204, "topic": "software" }, { "confidence": 0.008021598, "topic": "software development" } ] }, { "end_word": 1638, "start_word": 1626, "text": "Thanks for watching and I will see you in the next one.", "topics": [] } ], "transcript": "August 25, 1991. A 21 year old graduate student in Helsinki named Linus Torvalds announces he's doing a free operating system. Just a hobby won't be a big professional thing. Fast forward a few years later, and that hobby evolves into one of the most important projects in the history free of computing. Most operating systems were created to make shitloads of money. That's right. It's $99. It's an incredible value, but it's true. It's Windows from Microsoft. Order today. But he order today. But Linux was a revolution based on a simple principle. Software should be free and open. Today, we'll take a look at the weird history of Linux and, in the process, answer the question of why are there so many Linux distros? But before we can even talk about Linux, we need to travel back to 19 69. While grandpa was dropping acid at Woodstock, Ken Thompson and Dennis Ritchie were creating the Unix operating system. Unix was well loved by both businesses had universities. There was one problem though. The code was owned by AT and T. And in 1977, when UC Berkeley created their own Berkeley placed software distribution, AT and T sued them. That put limitations on Unix development and led to a period known as the Unix Wars. A few years later in 1983, Richard Stallman creates the GNU project, which was intended to be a free and open replacement for Unix. But Unix was a big YIG Complex project with 100 of different applications, and replacing it was no easy task. Over the next few years, the project created many of the applications that you know and love today. Tools that are often used synonymously with Linux, like tar, bash, and emacs, just to name a few. By the early nineties, GNU had all this great software, but it was missing one essential component, the operating system some kernel. A complete operating system needs a kernel to sit in between the hardware and the software, where it can allocate CPU UN memory resources to run software applications. Luckily, it was right around this time that Linus Torvalds was working on his his hobby operating system. Originally, it was going to be called Freeaxe because the name Linux was too egotistical. But as fate would have it, the admin for the FTP PC server at the time didn't like the name and changed it without his consent, and the name stuck from there on out. Initially, Linux was released with a proprietary license that had limitations on commercial use. However, by the end of 1992, it was released under the GNU general public license. And this gave birth to a complete operating system that we know today as GNU plus Linux. The following year, hundreds of developers jumped on the Linux project and started adapting it to the GNU environment. The the beauty of the Linux kernel is that it gave developers the ability to build custom operating systems that felt like Unix, but didn't come with the fear of being sued down the road. Ultimately, this led to some of the 1st Linux distributions, like Soft Landing, Yggdrasil, and Slackware. But what is a Linux distro exactly? A distro is a complete operating system based on the Linux kernel that contains a bunch of packages and libraries, and typically a package manager to install all additional applications, and possibly a Windows system if there's a GUI involved. Many distros might share the same default user interface. Popular UI options include GNOME, kdePlasma, mate, cinnamon, and a bunch of others. Today, there's nearly a 1000 different Linux distros out there, and they've all been customized to serve different purposes. Some of them are designed for enterprise users, while others are for home users. Some distros only run on servers, while others are designed for desktop, mobile, and embedded devices. And each distro is usually backed by a community that has its own set philosophical and technical opinions. Most of these older distros are no longer maintained and just considered historical artifacts. One exception is Slackware. It had a release recently as 2016, and has spawned a bunch of different variations. Most notably, it led to the OpenSUSE project, which remains a very popular general purpose distro, and is usually associated did with professional power users. But the most significant distro to come out of 1993 was Debian. It was established by Ian Murdoch, and its name comes from his name combined with his ex wife's name. And its first official release came in 1996 as version 1.1 buzzed. And since then, each release contains a codename with a Toy Story character. A few years later, it led to the creation of Advanced Package Tool or APT, although it was originally developed under the codename deity. The the Debian community is huge and it's a great distro today and very popular on servers, but can also be used as a general purpose distro. It's minimal and stable, which are traits that have allowed it to father a huge number of offspring distros. Some of them are highly specialized like Raspberry Pi OS or Steam OS. But, by far, the most popular child of Debian is Ubuntu, which was first released in 2004 and is managed by a British company called Canonical. It follows a semi annual release schedule where each release is named after an animal and a word with the same letter, like cosmic cuttlefish. It's extremely beginner friendly and was really one of the first distros to open up Linux to the main stream home computer user. In recent years, though, it's received a lot of hate from the Linux community for releasing closed source software and also selling data that 2 third party companies. In any case, it remains extremely popular, and it even has a variety of different flavors like Kubuntu, Zubantu, and Lubantu, which are their own distributions that offer slight variations on the original. Like, Kubuntu, for example, is designed to be a great entry point if you're transitioning from Microsoft Windows to Linux. In addition, Ubuntu has spawned many other variations like Linux Mint, Peppermint, and Pop!OS just to name a few of the most popular options. Debian has a huge family tree, but if we go back to 1994, there is another Linux distro that also has a huge family tree called Red Hat. It was created by Mark Ewing and is known for its focus on security and reliability for enterprise users. Red Hat adopted a business model where they maintain an open source operating system, then make money by selling consulting integration and add on services to big enterprise clients. Today, it generates 1,000,000,000 of dollars in revenue and was recently acquired by IBM for an 11 figure price tag. Red Hat has given birth to a bunch of children, most of which are associated with enterprise work, and use either the RPM or Yum package manager. Popular descendants include rhel, CentOS, and Fedora, which is not only great for enterprise servers, but also works well as a personal work station, and it's even the distro of choice by Linus Torvalds himself. Now, one thing that you'll notice about Linux distros is that many of them do a lot of stuff that you don't actually need. That takes up space on your hardware and ultimately makes your life more complex. There are 2 Linux families that came out in the early 2000 that are focused on simplicity, performance, and minimalism. Gentoo, with its Enoch distro, came out in 2000 and Arch came out in 2002. If you like to keep things simple, then you'll probably like the Arch family of Linux distros. It has its own package manager called Pacman and has adopted a rolling release model. Like Ubuntu that has a new major release every 6 months, Arch releases small updates that can be continuously updated in the OS. Arch is also the parent of Manjaro, which is one of the most popular distros up today. In addition to all these families that we've looked at, there are many popular independent distros, like the extremely lightweight Alpine, Fire OS for Amazon Devices, and Android, which is used by billions of people every day. When you think of the Linux kernel like the engine in your car, it starts to answer the question of why are there so many Linux distros. Some cars are designed to go fast, others for comfort, some are engineered for enterprise and others are just for fun. As a developer, Linux is like a free engine that you can use to build your own car. That freedom, along with GNU and the greater open source ecosystem, motivates people to try new things and to profit by creating innovation within that system. People who are threatened by it call it communism, but in reality, it's the polar opposite and the free market at its finest. Today, even Microsoft he fully supports Linux through its WSL project. I'm gonna go ahead and wrap things up there. There's a lot of aspects of the Linux history and the histories of individual distros that we didn't cover. But, hopefully, this gives you a general idea of how Linux came into existence and the evolution of Linux distros over time. Oh, and there's one random thing I almost forgot. Back in 2005, the source code for Linux was managed under a version control system called BitKeeper. That was controversial though because it's proprietary software. So Linus Torvalds did what any legend would do and he created Git. Before you go, make sure to like and subscribe and stay tuned for a lot more Linux his content on this channel. Thanks for watching and I will see you in the next one.", "translations": null, "words": [ { "confidence": 0.9863281, "end": 3.6, "punctuated_word": "August", "speaker": 0, "speaker_confidence": 0.6977539, "start": 3.1999998, "word": "august" }, { "confidence": 0.8691406, "end": 4.1, "punctuated_word": "25,", "speaker": 0, "speaker_confidence": 0.6977539, "start": 3.6, "word": "25" }, { "confidence": 0.8186035, "end": 4.8199997, "punctuated_word": "1991.", "speaker": 0, "speaker_confidence": 0.6977539, "start": 4.3199997, "word": "1991" }, { "confidence": 0.9902344, "end": 5.3599997, "punctuated_word": "A", "speaker": 0, "speaker_confidence": 0.6977539, "start": 5.12, "word": "a" }, { "confidence": 0.94189453, "end": 5.6, "punctuated_word": "21", "speaker": 0, "speaker_confidence": 0.6977539, "start": 5.3599997, "word": "21" }, { "confidence": 0.9970703, "end": 5.8399997, "punctuated_word": "year", "speaker": 0, "speaker_confidence": 0.6977539, "start": 5.6, "word": "year" }, { "confidence": 0.9980469, "end": 6, "punctuated_word": "old", "speaker": 0, "speaker_confidence": 0.6977539, "start": 5.8399997, "word": "old" }, { "confidence": 0.9970703, "end": 6.3199997, "punctuated_word": "graduate", "speaker": 0, "speaker_confidence": 0.6977539, "start": 6, "word": "graduate" }, { "confidence": 1, "end": 6.64, "punctuated_word": "student", "speaker": 0, "speaker_confidence": 0.6977539, "start": 6.3199997, "word": "student" }, { "confidence": 0.9980469, "end": 6.8799996, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.6977539, "start": 6.64, "word": "in" }, { "confidence": 1, "end": 7.3799996, "punctuated_word": "Helsinki", "speaker": 0, "speaker_confidence": 0.6977539, "start": 6.8799996, "word": "helsinki" }, { "confidence": 0.98095703, "end": 7.7599998, "punctuated_word": "named", "speaker": 0, "speaker_confidence": 0.6977539, "start": 7.44, "word": "named" }, { "confidence": 0.9711914, "end": 8.16, "punctuated_word": "Linus", "speaker": 0, "speaker_confidence": 0.6977539, "start": 7.7599998, "word": "linus" }, { "confidence": 0.96484375, "end": 8.66, "punctuated_word": "Torvalds", "speaker": 0, "speaker_confidence": 0.6977539, "start": 8.16, "word": "torvalds" }, { "confidence": 0.9658203, "end": 9.3, "punctuated_word": "announces", "speaker": 0, "speaker_confidence": 0.6977539, "start": 8.8, "word": "announces" }, { "confidence": 0.97216797, "end": 9.545, "punctuated_word": "he's", "speaker": 0, "speaker_confidence": 0.6977539, "start": 9.465, "word": "he's" }, { "confidence": 0.99902344, "end": 9.785, "punctuated_word": "doing", "speaker": 0, "speaker_confidence": 0.6977539, "start": 9.545, "word": "doing" }, { "confidence": 0.9980469, "end": 9.865, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6977539, "start": 9.785, "word": "a" }, { "confidence": 0.99609375, "end": 10.265, "punctuated_word": "free", "speaker": 0, "speaker_confidence": 0.6977539, "start": 9.865, "word": "free" }, { "confidence": 0.9902344, "end": 10.665, "punctuated_word": "operating", "speaker": 0, "speaker_confidence": 0.6977539, "start": 10.265, "word": "operating" }, { "confidence": 0.9848633, "end": 11.165, "punctuated_word": "system.", "speaker": 0, "speaker_confidence": 0.6977539, "start": 10.665, "word": "system" }, { "confidence": 0.97314453, "end": 11.465, "punctuated_word": "Just", "speaker": 0, "speaker_confidence": 0.32421875, "start": 11.225, "word": "just" }, { "confidence": 0.99902344, "end": 11.625, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.32421875, "start": 11.465, "word": "a" }, { "confidence": 0.99902344, "end": 12.025, "punctuated_word": "hobby", "speaker": 0, "speaker_confidence": 0.32421875, "start": 11.625, "word": "hobby" }, { "confidence": 0.9111328, "end": 12.265, "punctuated_word": "won't", "speaker": 0, "speaker_confidence": 0.32421875, "start": 12.025, "word": "won't" }, { "confidence": 1, "end": 12.425, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.32421875, "start": 12.265, "word": "be" }, { "confidence": 0.9980469, "end": 12.505, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6269531, "start": 12.425, "word": "a" }, { "confidence": 1, "end": 12.745, "punctuated_word": "big", "speaker": 0, "speaker_confidence": 0.6269531, "start": 12.505, "word": "big" }, { "confidence": 0.9902344, "end": 13.145, "punctuated_word": "professional", "speaker": 0, "speaker_confidence": 0.6269531, "start": 12.745, "word": "professional" }, { "confidence": 0.99902344, "end": 13.645, "punctuated_word": "thing.", "speaker": 0, "speaker_confidence": 0.6269531, "start": 13.145, "word": "thing" }, { "confidence": 0.99902344, "end": 14.105, "punctuated_word": "Fast", "speaker": 0, "speaker_confidence": 0.6269531, "start": 13.785, "word": "fast" }, { "confidence": 0.9970703, "end": 14.425, "punctuated_word": "forward", "speaker": 0, "speaker_confidence": 0.6269531, "start": 14.105, "word": "forward" }, { "confidence": 0.9760742, "end": 14.585, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6269531, "start": 14.425, "word": "a" }, { "confidence": 0.99902344, "end": 14.745, "punctuated_word": "few", "speaker": 0, "speaker_confidence": 0.6269531, "start": 14.585, "word": "few" }, { "confidence": 1, "end": 15.065001, "punctuated_word": "years", "speaker": 0, "speaker_confidence": 0.6269531, "start": 14.745, "word": "years" }, { "confidence": 0.86499023, "end": 15.465, "punctuated_word": "later,", "speaker": 0, "speaker_confidence": 0.6269531, "start": 15.065001, "word": "later" }, { "confidence": 0.9951172, "end": 15.625, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6269531, "start": 15.465, "word": "and" }, { "confidence": 0.99902344, "end": 15.865, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.6269531, "start": 15.625, "word": "that" }, { "confidence": 0.9980469, "end": 16.265, "punctuated_word": "hobby", "speaker": 0, "speaker_confidence": 0.6269531, "start": 15.865, "word": "hobby" }, { "confidence": 0.9921875, "end": 16.585, "punctuated_word": "evolves", "speaker": 0, "speaker_confidence": 0.6269531, "start": 16.265, "word": "evolves" }, { "confidence": 0.9970703, "end": 16.825, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.6269531, "start": 16.585, "word": "into" }, { "confidence": 0.94628906, "end": 16.905, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.6269531, "start": 16.825, "word": "one" }, { "confidence": 0.98291016, "end": 17.065, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.5214844, "start": 16.905, "word": "of" }, { "confidence": 0.9873047, "end": 17.145, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5214844, "start": 17.065, "word": "the" }, { "confidence": 0.9921875, "end": 17.465, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 0.5214844, "start": 17.145, "word": "most" }, { "confidence": 0.9921875, "end": 17.945, "punctuated_word": "important", "speaker": 0, "speaker_confidence": 0.5214844, "start": 17.465, "word": "important" }, { "confidence": 0.98828125, "end": 18.345001, "punctuated_word": "projects", "speaker": 0, "speaker_confidence": 0.5214844, "start": 17.945, "word": "projects" }, { "confidence": 0.8256836, "end": 18.425, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.5214844, "start": 18.345001, "word": "in" }, { "confidence": 0.7270508, "end": 18.585, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6875, "start": 18.425, "word": "the" }, { "confidence": 0.62353516, "end": 18.86, "punctuated_word": "history", "speaker": 0, "speaker_confidence": 0.6875, "start": 18.585, "word": "history" }, { "confidence": 0.34692383, "end": 19.02, "punctuated_word": "free", "speaker": 0, "speaker_confidence": 0.6875, "start": 18.94, "word": "free" }, { "confidence": 0.9892578, "end": 19.18, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.6875, "start": 19.02, "word": "of" }, { "confidence": 0.9313965, "end": 19.68, "punctuated_word": "computing.", "speaker": 0, "speaker_confidence": 0.6875, "start": 19.18, "word": "computing" }, { "confidence": 0.9770508, "end": 20.060001, "punctuated_word": "Most", "speaker": 0, "speaker_confidence": 0.6875, "start": 19.82, "word": "most" }, { "confidence": 0.9951172, "end": 20.54, "punctuated_word": "operating", "speaker": 0, "speaker_confidence": 0.6875, "start": 20.060001, "word": "operating" }, { "confidence": 0.99902344, "end": 20.86, "punctuated_word": "systems", "speaker": 0, "speaker_confidence": 0.6875, "start": 20.54, "word": "systems" }, { "confidence": 0.9951172, "end": 21.1, "punctuated_word": "were", "speaker": 0, "speaker_confidence": 0.6875, "start": 20.86, "word": "were" }, { "confidence": 0.9980469, "end": 21.42, "punctuated_word": "created", "speaker": 0, "speaker_confidence": 0.6875, "start": 21.1, "word": "created" }, { "confidence": 1, "end": 21.58, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6875, "start": 21.42, "word": "to" }, { "confidence": 0.99902344, "end": 21.82, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.6875, "start": 21.58, "word": "make" }, { "confidence": 0.953125, "end": 22.140001, "punctuated_word": "shitloads", "speaker": 0, "speaker_confidence": 0.6875, "start": 21.82, "word": "shitloads" }, { "confidence": 0.9980469, "end": 22.300001, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.6875, "start": 22.140001, "word": "of" }, { "confidence": 0.9875488, "end": 22.7, "punctuated_word": "money.", "speaker": 0, "speaker_confidence": 0.6875, "start": 22.300001, "word": "money" }, { "confidence": 0.99658203, "end": 23.02, "punctuated_word": "That's", "speaker": 1, "speaker_confidence": 0.8847656, "start": 22.7, "word": "that's" }, { "confidence": 0.9645996, "end": 23.52, "punctuated_word": "right.", "speaker": 1, "speaker_confidence": 0.8847656, "start": 23.02, "word": "right" }, { "confidence": 0.9914551, "end": 23.900002, "punctuated_word": "It's", "speaker": 1, "speaker_confidence": 0.8847656, "start": 23.58, "word": "it's" }, { "confidence": 0.944987, "end": 24.400002, "punctuated_word": "$99.", "speaker": 1, "speaker_confidence": 0.8847656, "start": 23.900002, "word": "$99" }, { "confidence": 0.9914551, "end": 24.94, "punctuated_word": "It's", "speaker": 1, "speaker_confidence": 0.8847656, "start": 24.78, "word": "it's" }, { "confidence": 0.9902344, "end": 25.18, "punctuated_word": "an", "speaker": 1, "speaker_confidence": 0.8847656, "start": 24.94, "word": "an" }, { "confidence": 0.9970703, "end": 25.68, "punctuated_word": "incredible", "speaker": 1, "speaker_confidence": 0.8847656, "start": 25.18, "word": "incredible" }, { "confidence": 0.9187012, "end": 26.060001, "punctuated_word": "value,", "speaker": 1, "speaker_confidence": 0.8847656, "start": 25.74, "word": "value" }, { "confidence": 0.97265625, "end": 26.300001, "punctuated_word": "but", "speaker": 1, "speaker_confidence": 0.8847656, "start": 26.060001, "word": "but" }, { "confidence": 0.99365234, "end": 26.334288, "punctuated_word": "it's", "speaker": 1, "speaker_confidence": 0.66796875, "start": 26.300001, "word": "it's" }, { "confidence": 0.98413086, "end": 26.368572, "punctuated_word": "true.", "speaker": 1, "speaker_confidence": 0.66796875, "start": 26.334288, "word": "true" }, { "confidence": 0.9621582, "end": 26.402859, "punctuated_word": "It's", "speaker": 1, "speaker_confidence": 0.66796875, "start": 26.368572, "word": "it's" }, { "confidence": 0.8935547, "end": 26.437143, "punctuated_word": "Windows", "speaker": 1, "speaker_confidence": 0.66796875, "start": 26.402859, "word": "windows" }, { "confidence": 0.74316406, "end": 26.47143, "punctuated_word": "from", "speaker": 1, "speaker_confidence": 0.8388672, "start": 26.437143, "word": "from" }, { "confidence": 0.8522949, "end": 26.505714, "punctuated_word": "Microsoft.", "speaker": 1, "speaker_confidence": 0.8388672, "start": 26.47143, "word": "microsoft" }, { "confidence": 0.62597656, "end": 26.54, "punctuated_word": "Order", "speaker": 1, "speaker_confidence": 0.8388672, "start": 26.505714, "word": "order" }, { "confidence": 0.91918945, "end": 27.04, "punctuated_word": "today.", "speaker": 1, "speaker_confidence": 0.8388672, "start": 26.54, "word": "today" }, { "confidence": 0.9716797, "end": 27.68, "punctuated_word": "But", "speaker": 1, "speaker_confidence": 0.8388672, "start": 27.18, "word": "but" }, { "confidence": 0.79248047, "end": 28.975, "punctuated_word": "he", "speaker": 1, "speaker_confidence": 0.8388672, "start": 28.655, "word": "he" }, { "confidence": 0.22692871, "end": 29.775002, "punctuated_word": "order", "speaker": 1, "speaker_confidence": 0.8388672, "start": 29.455, "word": "order" }, { "confidence": 0.99072266, "end": 30.275002, "punctuated_word": "today.", "speaker": 1, "speaker_confidence": 0.8388672, "start": 29.775002, "word": "today" }, { "confidence": 0.98828125, "end": 30.815, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.40478516, "start": 30.575, "word": "but" }, { "confidence": 0.9951172, "end": 31.215, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 0.40478516, "start": 30.815, "word": "linux" }, { "confidence": 0.99902344, "end": 31.455, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.40478516, "start": 31.215, "word": "was" }, { "confidence": 0.9970703, "end": 31.695, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.40478516, "start": 31.455, "word": "a" }, { "confidence": 0.9980469, "end": 32.195, "punctuated_word": "revolution", "speaker": 0, "speaker_confidence": 0.40478516, "start": 31.695, "word": "revolution" }, { "confidence": 0.99609375, "end": 32.495, "punctuated_word": "based", "speaker": 0, "speaker_confidence": 0.40478516, "start": 32.255, "word": "based" }, { "confidence": 0.9980469, "end": 32.735, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.40478516, "start": 32.495, "word": "on" }, { "confidence": 0.99609375, "end": 32.815002, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6459961, "start": 32.735, "word": "a" }, { "confidence": 1, "end": 33.135002, "punctuated_word": "simple", "speaker": 0, "speaker_confidence": 0.6459961, "start": 32.815002, "word": "simple" }, { "confidence": 0.810791, "end": 33.635002, "punctuated_word": "principle.", "speaker": 0, "speaker_confidence": 0.6459961, "start": 33.135002, "word": "principle" }, { "confidence": 0.9951172, "end": 34.255, "punctuated_word": "Software", "speaker": 0, "speaker_confidence": 0.6459961, "start": 33.775, "word": "software" }, { "confidence": 0.9970703, "end": 34.495003, "punctuated_word": "should", "speaker": 0, "speaker_confidence": 0.6459961, "start": 34.255, "word": "should" }, { "confidence": 0.9951172, "end": 34.735, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.6459961, "start": 34.495003, "word": "be" }, { "confidence": 0.9980469, "end": 34.975, "punctuated_word": "free", "speaker": 0, "speaker_confidence": 0.6459961, "start": 34.735, "word": "free" }, { "confidence": 0.9873047, "end": 35.215, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6459961, "start": 34.975, "word": "and" }, { "confidence": 0.99609375, "end": 35.695, "punctuated_word": "open.", "speaker": 0, "speaker_confidence": 0.6459961, "start": 35.215, "word": "open" }, { "confidence": 0.8852539, "end": 35.935, "punctuated_word": "Today,", "speaker": 0, "speaker_confidence": 0.6459961, "start": 35.695, "word": "today" }, { "confidence": 0.8405762, "end": 36.13, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.6459961, "start": 35.935, "word": "we'll" }, { "confidence": 0.99902344, "end": 36.29, "punctuated_word": "take", "speaker": 0, "speaker_confidence": 0.6459961, "start": 36.210003, "word": "take" }, { "confidence": 0.9980469, "end": 36.370003, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7060547, "start": 36.29, "word": "a" }, { "confidence": 1, "end": 36.61, "punctuated_word": "look", "speaker": 0, "speaker_confidence": 0.7060547, "start": 36.370003, "word": "look" }, { "confidence": 0.9980469, "end": 36.77, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.7060547, "start": 36.61, "word": "at" }, { "confidence": 0.99902344, "end": 36.93, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7060547, "start": 36.77, "word": "the" }, { "confidence": 0.9921875, "end": 37.170002, "punctuated_word": "weird", "speaker": 0, "speaker_confidence": 0.7060547, "start": 36.93, "word": "weird" }, { "confidence": 1, "end": 37.49, "punctuated_word": "history", "speaker": 0, "speaker_confidence": 0.7060547, "start": 37.170002, "word": "history" }, { "confidence": 1, "end": 37.65, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7060547, "start": 37.49, "word": "of" }, { "confidence": 0.99902344, "end": 38.13, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 0.7060547, "start": 37.65, "word": "linux" }, { "confidence": 0.58374023, "end": 38.370003, "punctuated_word": "and,", "speaker": 0, "speaker_confidence": 0.7060547, "start": 38.13, "word": "and" }, { "confidence": 1, "end": 38.45, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7060547, "start": 38.370003, "word": "in" }, { "confidence": 0.99902344, "end": 38.61, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7060547, "start": 38.45, "word": "the" }, { "confidence": 0.99902344, "end": 39.09, "punctuated_word": "process,", "speaker": 0, "speaker_confidence": 0.7060547, "start": 38.61, "word": "process" }, { "confidence": 0.9838867, "end": 39.41, "punctuated_word": "answer", "speaker": 0, "speaker_confidence": 0.7060547, "start": 39.09, "word": "answer" }, { "confidence": 0.99902344, "end": 39.57, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7060547, "start": 39.41, "word": "the" }, { "confidence": 0.99902344, "end": 40.05, "punctuated_word": "question", "speaker": 0, "speaker_confidence": 0.7060547, "start": 39.57, "word": "question" }, { "confidence": 0.9980469, "end": 40.370003, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7060547, "start": 40.05, "word": "of" }, { "confidence": 0.6582031, "end": 40.61, "punctuated_word": "why", "speaker": 0, "speaker_confidence": 0.7060547, "start": 40.370003, "word": "why" }, { "confidence": 0.99316406, "end": 40.77, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.7060547, "start": 40.61, "word": "are" }, { "confidence": 0.9980469, "end": 40.93, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.7060547, "start": 40.77, "word": "there" }, { "confidence": 0.99121094, "end": 41.010002, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.51171875, "start": 40.93, "word": "so" }, { "confidence": 1, "end": 41.33, "punctuated_word": "many", "speaker": 0, "speaker_confidence": 0.51171875, "start": 41.010002, "word": "many" }, { "confidence": 0.99902344, "end": 41.65, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 0.51171875, "start": 41.33, "word": "linux" }, { "confidence": 0.88346356, "end": 42.15, "punctuated_word": "distros?", "speaker": 0, "speaker_confidence": 0.51171875, "start": 41.65, "word": "distros" }, { "confidence": 0.9941406, "end": 42.77, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.51171875, "start": 42.53, "word": "but" }, { "confidence": 0.90722656, "end": 42.93, "punctuated_word": "before", "speaker": 0, "speaker_confidence": 0.51171875, "start": 42.77, "word": "before" }, { "confidence": 0.99902344, "end": 43.010002, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.87109375, "start": 42.93, "word": "we" }, { "confidence": 0.99902344, "end": 43.25, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.87109375, "start": 43.010002, "word": "can" }, { "confidence": 0.99902344, "end": 43.49, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 0.87109375, "start": 43.25, "word": "even" }, { "confidence": 1, "end": 43.65, "punctuated_word": "talk", "speaker": 0, "speaker_confidence": 0.87109375, "start": 43.49, "word": "talk" }, { "confidence": 1, "end": 43.89, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.87109375, "start": 43.65, "word": "about" }, { "confidence": 0.9951172, "end": 44.29, "punctuated_word": "Linux,", "speaker": 0, "speaker_confidence": 0.87109375, "start": 43.89, "word": "linux" }, { "confidence": 1, "end": 44.45, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.87109375, "start": 44.29, "word": "we" }, { "confidence": 1, "end": 44.690002, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.87109375, "start": 44.45, "word": "need" }, { "confidence": 1, "end": 44.77, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.87109375, "start": 44.690002, "word": "to" }, { "confidence": 1, "end": 45.170002, "punctuated_word": "travel", "speaker": 0, "speaker_confidence": 0.87109375, "start": 44.77, "word": "travel" }, { "confidence": 1, "end": 45.41, "punctuated_word": "back", "speaker": 0, "speaker_confidence": 0.87109375, "start": 45.170002, "word": "back" }, { "confidence": 1, "end": 45.65, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.87109375, "start": 45.41, "word": "to" }, { "confidence": 0.96533203, "end": 46.115, "punctuated_word": "19", "speaker": 0, "speaker_confidence": 0.87109375, "start": 45.65, "word": "19" }, { "confidence": 0.92529297, "end": 46.695004, "punctuated_word": "69.", "speaker": 0, "speaker_confidence": 0.87109375, "start": 46.195004, "word": "69" }, { "confidence": 0.99609375, "end": 46.995003, "punctuated_word": "While", "speaker": 0, "speaker_confidence": 0.87109375, "start": 46.755, "word": "while" }, { "confidence": 0.93652344, "end": 47.395, "punctuated_word": "grandpa", "speaker": 0, "speaker_confidence": 0.87109375, "start": 46.995003, "word": "grandpa" }, { "confidence": 0.9135742, "end": 47.475002, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.87109375, "start": 47.395, "word": "was" }, { "confidence": 1, "end": 47.795002, "punctuated_word": "dropping", "speaker": 0, "speaker_confidence": 0.87109375, "start": 47.475002, "word": "dropping" }, { "confidence": 0.9863281, "end": 48.115, "punctuated_word": "acid", "speaker": 0, "speaker_confidence": 0.87109375, "start": 47.795002, "word": "acid" }, { "confidence": 0.98095703, "end": 48.275, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.87109375, "start": 48.115, "word": "at" }, { "confidence": 0.9983724, "end": 48.775, "punctuated_word": "Woodstock,", "speaker": 0, "speaker_confidence": 0.87109375, "start": 48.275, "word": "woodstock" }, { "confidence": 0.9970703, "end": 49.075, "punctuated_word": "Ken", "speaker": 0, "speaker_confidence": 0.87109375, "start": 48.835003, "word": "ken" }, { "confidence": 0.9707031, "end": 49.555, "punctuated_word": "Thompson", "speaker": 0, "speaker_confidence": 0.87109375, "start": 49.075, "word": "thompson" }, { "confidence": 0.98828125, "end": 49.715, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.87109375, "start": 49.555, "word": "and" }, { "confidence": 0.9604492, "end": 50.035, "punctuated_word": "Dennis", "speaker": 0, "speaker_confidence": 0.87109375, "start": 49.715, "word": "dennis" }, { "confidence": 0.97753906, "end": 50.435, "punctuated_word": "Ritchie", "speaker": 0, "speaker_confidence": 0.87109375, "start": 50.035, "word": "ritchie" }, { "confidence": 0.9326172, "end": 50.595, "punctuated_word": "were", "speaker": 0, "speaker_confidence": 0.87109375, "start": 50.435, "word": "were" }, { "confidence": 0.99902344, "end": 50.995003, "punctuated_word": "creating", "speaker": 0, "speaker_confidence": 0.87109375, "start": 50.595, "word": "creating" }, { "confidence": 0.9970703, "end": 51.235, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.87109375, "start": 50.995003, "word": "the" }, { "confidence": 0.54589844, "end": 51.715, "punctuated_word": "Unix", "speaker": 0, "speaker_confidence": 0.87109375, "start": 51.235, "word": "unix" }, { "confidence": 0.89453125, "end": 52.035004, "punctuated_word": "operating", "speaker": 0, "speaker_confidence": 0.87109375, "start": 51.715, "word": "operating" }, { "confidence": 0.99853516, "end": 52.535004, "punctuated_word": "system.", "speaker": 0, "speaker_confidence": 0.87109375, "start": 52.035004, "word": "system" }, { "confidence": 0.9902344, "end": 53.155003, "punctuated_word": "Unix", "speaker": 0, "speaker_confidence": 0.87109375, "start": 52.755, "word": "unix" }, { "confidence": 1, "end": 53.395, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.87109375, "start": 53.155003, "word": "was" }, { "confidence": 0.99902344, "end": 53.635002, "punctuated_word": "well", "speaker": 0, "speaker_confidence": 0.87109375, "start": 53.395, "word": "well" }, { "confidence": 1, "end": 53.955, "punctuated_word": "loved", "speaker": 0, "speaker_confidence": 0.87109375, "start": 53.635002, "word": "loved" }, { "confidence": 1, "end": 54.115, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.87109375, "start": 53.955, "word": "by" }, { "confidence": 0.9980469, "end": 54.355003, "punctuated_word": "both", "speaker": 0, "speaker_confidence": 0.87109375, "start": 54.115, "word": "both" }, { "confidence": 0.99316406, "end": 54.855003, "punctuated_word": "businesses", "speaker": 0, "speaker_confidence": 0.87109375, "start": 54.355003, "word": "businesses" }, { "confidence": 0.5566406, "end": 55.390003, "punctuated_word": "had", "speaker": 0, "speaker_confidence": 0.87109375, "start": 55.070004, "word": "had" }, { "confidence": 0.970459, "end": 55.890003, "punctuated_word": "universities.", "speaker": 0, "speaker_confidence": 0.87109375, "start": 55.390003, "word": "universities" }, { "confidence": 0.99902344, "end": 56.350002, "punctuated_word": "There", "speaker": 0, "speaker_confidence": 0.87109375, "start": 56.190002, "word": "there" }, { "confidence": 0.99902344, "end": 56.510002, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.87109375, "start": 56.350002, "word": "was" }, { "confidence": 0.95166016, "end": 56.670002, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.87109375, "start": 56.510002, "word": "one" }, { "confidence": 1, "end": 56.91, "punctuated_word": "problem", "speaker": 0, "speaker_confidence": 0.87109375, "start": 56.670002, "word": "problem" }, { "confidence": 0.79418945, "end": 57.41, "punctuated_word": "though.", "speaker": 0, "speaker_confidence": 0.87109375, "start": 56.91, "word": "though" }, { "confidence": 0.9970703, "end": 57.63, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.87109375, "start": 57.47, "word": "the" }, { "confidence": 0.99902344, "end": 57.95, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.87109375, "start": 57.63, "word": "code" }, { "confidence": 0.99316406, "end": 58.190002, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.87109375, "start": 57.95, "word": "was" }, { "confidence": 0.9980469, "end": 58.43, "punctuated_word": "owned", "speaker": 0, "speaker_confidence": 0.87109375, "start": 58.190002, "word": "owned" }, { "confidence": 0.9951172, "end": 58.670002, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.87109375, "start": 58.43, "word": "by" }, { "confidence": 0.9536133, "end": 58.91, "punctuated_word": "AT", "speaker": 0, "speaker_confidence": 0.87109375, "start": 58.670002, "word": "at" }, { "confidence": 0.99121094, "end": 59.07, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.87109375, "start": 58.91, "word": "and" }, { "confidence": 0.87475586, "end": 59.47, "punctuated_word": "T.", "speaker": 0, "speaker_confidence": 0.87109375, "start": 59.07, "word": "t" }, { "confidence": 0.9951172, "end": 59.710003, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.87109375, "start": 59.47, "word": "and" }, { "confidence": 0.7421875, "end": 59.95, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.87109375, "start": 59.710003, "word": "in" }, { "confidence": 0.9494629, "end": 60.45, "punctuated_word": "1977,", "speaker": 0, "speaker_confidence": 0.87109375, "start": 59.95, "word": "1977" }, { "confidence": 0.9980469, "end": 61.07, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.87109375, "start": 60.83, "word": "when" }, { "confidence": 0.96240234, "end": 61.39, "punctuated_word": "UC", "speaker": 0, "speaker_confidence": 0.87109375, "start": 61.07, "word": "uc" }, { "confidence": 0.99609375, "end": 61.870003, "punctuated_word": "Berkeley", "speaker": 0, "speaker_confidence": 0.87109375, "start": 61.39, "word": "berkeley" }, { "confidence": 0.9921875, "end": 62.190002, "punctuated_word": "created", "speaker": 0, "speaker_confidence": 0.87109375, "start": 61.870003, "word": "created" }, { "confidence": 0.9873047, "end": 62.43, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 0.87109375, "start": 62.190002, "word": "their" }, { "confidence": 0.9707031, "end": 62.59, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 0.87109375, "start": 62.43, "word": "own" }, { "confidence": 0.55371094, "end": 62.935, "punctuated_word": "Berkeley", "speaker": 0, "speaker_confidence": 0.87109375, "start": 62.59, "word": "berkeley" }, { "confidence": 0.43066406, "end": 63.335003, "punctuated_word": "placed", "speaker": 0, "speaker_confidence": 0.87109375, "start": 63.015003, "word": "placed" }, { "confidence": 0.9819336, "end": 63.655003, "punctuated_word": "software", "speaker": 0, "speaker_confidence": 0.87109375, "start": 63.335003, "word": "software" }, { "confidence": 0.97924805, "end": 64.155, "punctuated_word": "distribution,", "speaker": 0, "speaker_confidence": 0.87109375, "start": 63.655003, "word": "distribution" }, { "confidence": 0.9970703, "end": 64.775, "punctuated_word": "AT", "speaker": 0, "speaker_confidence": 0.87109375, "start": 64.615, "word": "at" }, { "confidence": 0.9941406, "end": 64.935, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.87109375, "start": 64.775, "word": "and" }, { "confidence": 0.99121094, "end": 65.255005, "punctuated_word": "T", "speaker": 0, "speaker_confidence": 0.87109375, "start": 64.935, "word": "t" }, { "confidence": 0.9770508, "end": 65.495, "punctuated_word": "sued", "speaker": 0, "speaker_confidence": 0.87109375, "start": 65.255005, "word": "sued" }, { "confidence": 0.9680176, "end": 65.735, "punctuated_word": "them.", "speaker": 0, "speaker_confidence": 0.87109375, "start": 65.495, "word": "them" }, { "confidence": 0.99902344, "end": 65.895004, "punctuated_word": "That", "speaker": 0, "speaker_confidence": 0.87109375, "start": 65.735, "word": "that" }, { "confidence": 0.99902344, "end": 66.135, "punctuated_word": "put", "speaker": 0, "speaker_confidence": 0.87109375, "start": 65.895004, "word": "put" }, { "confidence": 0.99902344, "end": 66.635, "punctuated_word": "limitations", "speaker": 0, "speaker_confidence": 0.87109375, "start": 66.135, "word": "limitations" }, { "confidence": 1, "end": 66.935, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.87109375, "start": 66.775, "word": "on" }, { "confidence": 0.74658203, "end": 67.255005, "punctuated_word": "Unix", "speaker": 0, "speaker_confidence": 0.87109375, "start": 66.935, "word": "unix" }, { "confidence": 0.9350586, "end": 67.755005, "punctuated_word": "development", "speaker": 0, "speaker_confidence": 0.87109375, "start": 67.255005, "word": "development" }, { "confidence": 0.8989258, "end": 67.975, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.87109375, "start": 67.815, "word": "and" }, { "confidence": 0.9863281, "end": 68.215004, "punctuated_word": "led", "speaker": 0, "speaker_confidence": 0.87109375, "start": 67.975, "word": "led" }, { "confidence": 1, "end": 68.375, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.87109375, "start": 68.215004, "word": "to" }, { "confidence": 0.99902344, "end": 68.455, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8027344, "start": 68.375, "word": "a" }, { "confidence": 1, "end": 68.855, "punctuated_word": "period", "speaker": 0, "speaker_confidence": 0.8027344, "start": 68.455, "word": "period" }, { "confidence": 0.9980469, "end": 69.095, "punctuated_word": "known", "speaker": 0, "speaker_confidence": 0.8027344, "start": 68.855, "word": "known" }, { "confidence": 1, "end": 69.335, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.8027344, "start": 69.095, "word": "as" }, { "confidence": 0.9707031, "end": 69.495, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8027344, "start": 69.335, "word": "the" }, { "confidence": 0.9404297, "end": 69.895004, "punctuated_word": "Unix", "speaker": 0, "speaker_confidence": 0.8027344, "start": 69.495, "word": "unix" }, { "confidence": 0.77368164, "end": 70.395004, "punctuated_word": "Wars.", "speaker": 0, "speaker_confidence": 0.8027344, "start": 69.895004, "word": "wars" }, { "confidence": 0.9980469, "end": 70.695, "punctuated_word": "A", "speaker": 0, "speaker_confidence": 0.8027344, "start": 70.615, "word": "a" }, { "confidence": 0.99902344, "end": 70.935, "punctuated_word": "few", "speaker": 0, "speaker_confidence": 0.8027344, "start": 70.695, "word": "few" }, { "confidence": 1, "end": 71.175, "punctuated_word": "years", "speaker": 0, "speaker_confidence": 0.8027344, "start": 70.935, "word": "years" }, { "confidence": 0.99902344, "end": 71.495, "punctuated_word": "later", "speaker": 0, "speaker_confidence": 0.8027344, "start": 71.175, "word": "later" }, { "confidence": 0.78271484, "end": 71.735, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8027344, "start": 71.495, "word": "in" }, { "confidence": 0.9926758, "end": 72.235, "punctuated_word": "1983,", "speaker": 0, "speaker_confidence": 0.8027344, "start": 71.735, "word": "1983" }, { "confidence": 0.9892578, "end": 73.19, "punctuated_word": "Richard", "speaker": 0, "speaker_confidence": 0.8027344, "start": 72.79, "word": "richard" }, { "confidence": 0.96240234, "end": 73.59, "punctuated_word": "Stallman", "speaker": 0, "speaker_confidence": 0.8027344, "start": 73.19, "word": "stallman" }, { "confidence": 0.99121094, "end": 73.909996, "punctuated_word": "creates", "speaker": 0, "speaker_confidence": 0.8027344, "start": 73.59, "word": "creates" }, { "confidence": 0.99609375, "end": 74.07, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8027344, "start": 73.909996, "word": "the" }, { "confidence": 0.95166016, "end": 74.39, "punctuated_word": "GNU", "speaker": 0, "speaker_confidence": 0.8027344, "start": 74.07, "word": "gnu" }, { "confidence": 0.95703125, "end": 74.89, "punctuated_word": "project,", "speaker": 0, "speaker_confidence": 0.8027344, "start": 74.39, "word": "project" }, { "confidence": 0.99902344, "end": 75.19, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.8027344, "start": 74.95, "word": "which" }, { "confidence": 0.9951172, "end": 75.27, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.8027344, "start": 75.19, "word": "was" }, { "confidence": 1, "end": 75.77, "punctuated_word": "intended", "speaker": 0, "speaker_confidence": 0.8027344, "start": 75.27, "word": "intended" }, { "confidence": 0.99902344, "end": 75.909996, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8027344, "start": 75.83, "word": "to" }, { "confidence": 0.99902344, "end": 76.07, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.8027344, "start": 75.909996, "word": "be" }, { "confidence": 0.9980469, "end": 76.229996, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8027344, "start": 76.07, "word": "a" }, { "confidence": 1, "end": 76.549995, "punctuated_word": "free", "speaker": 0, "speaker_confidence": 0.8027344, "start": 76.229996, "word": "free" }, { "confidence": 0.9980469, "end": 76.71, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8027344, "start": 76.549995, "word": "and" }, { "confidence": 0.99902344, "end": 77.03, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.8027344, "start": 76.71, "word": "open" }, { "confidence": 0.99902344, "end": 77.53, "punctuated_word": "replacement", "speaker": 0, "speaker_confidence": 0.8027344, "start": 77.03, "word": "replacement" }, { "confidence": 0.9980469, "end": 77.909996, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.8027344, "start": 77.59, "word": "for" }, { "confidence": 0.8261719, "end": 78.409996, "punctuated_word": "Unix.", "speaker": 0, "speaker_confidence": 0.8027344, "start": 77.909996, "word": "unix" }, { "confidence": 0.9921875, "end": 78.869995, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.8027344, "start": 78.63, "word": "but" }, { "confidence": 0.97998047, "end": 79.27, "punctuated_word": "Unix", "speaker": 0, "speaker_confidence": 0.8027344, "start": 78.869995, "word": "unix" }, { "confidence": 0.9892578, "end": 79.51, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.8027344, "start": 79.27, "word": "was" }, { "confidence": 0.9277344, "end": 79.59, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8027344, "start": 79.51, "word": "a" }, { "confidence": 0.87060547, "end": 79.785, "punctuated_word": "big", "speaker": 0, "speaker_confidence": 0.8027344, "start": 79.59, "word": "big" }, { "confidence": 0.5559082, "end": 79.94501, "punctuated_word": "YIG", "speaker": 0, "speaker_confidence": 0.7236328, "start": 79.865005, "word": "yig" }, { "confidence": 0.44067383, "end": 80.44501, "punctuated_word": "Complex", "speaker": 0, "speaker_confidence": 0.7236328, "start": 79.94501, "word": "complex" }, { "confidence": 0.97509766, "end": 80.985, "punctuated_word": "project", "speaker": 0, "speaker_confidence": 0.7236328, "start": 80.665, "word": "project" }, { "confidence": 0.9980469, "end": 81.305, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.7236328, "start": 80.985, "word": "with" }, { "confidence": 0.58691406, "end": 81.625, "punctuated_word": "100", "speaker": 0, "speaker_confidence": 0.7236328, "start": 81.305, "word": "100" }, { "confidence": 0.97802734, "end": 81.705, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7236328, "start": 81.625, "word": "of" }, { "confidence": 0.9980469, "end": 82.185005, "punctuated_word": "different", "speaker": 0, "speaker_confidence": 0.7236328, "start": 81.705, "word": "different" }, { "confidence": 0.8544922, "end": 82.685005, "punctuated_word": "applications,", "speaker": 0, "speaker_confidence": 0.7236328, "start": 82.185005, "word": "applications" }, { "confidence": 0.99902344, "end": 83.145004, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7236328, "start": 82.90501, "word": "and" }, { "confidence": 1, "end": 83.625, "punctuated_word": "replacing", "speaker": 0, "speaker_confidence": 0.7236328, "start": 83.145004, "word": "replacing" }, { "confidence": 0.9980469, "end": 83.785, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.7236328, "start": 83.625, "word": "it" }, { "confidence": 1, "end": 84.025, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.7236328, "start": 83.785, "word": "was" }, { "confidence": 0.99902344, "end": 84.26501, "punctuated_word": "no", "speaker": 0, "speaker_confidence": 0.7236328, "start": 84.025, "word": "no" }, { "confidence": 0.99902344, "end": 84.505005, "punctuated_word": "easy", "speaker": 0, "speaker_confidence": 0.7236328, "start": 84.26501, "word": "easy" }, { "confidence": 1, "end": 85.005005, "punctuated_word": "task.", "speaker": 0, "speaker_confidence": 0.7236328, "start": 84.505005, "word": "task" }, { "confidence": 1, "end": 85.305, "punctuated_word": "Over", "speaker": 0, "speaker_confidence": 0.58154297, "start": 85.145004, "word": "over" }, { "confidence": 0.99902344, "end": 85.385, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.58154297, "start": 85.305, "word": "the" }, { "confidence": 0.99902344, "end": 85.545006, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.58154297, "start": 85.385, "word": "next" }, { "confidence": 0.99902344, "end": 85.785, "punctuated_word": "few", "speaker": 0, "speaker_confidence": 0.58154297, "start": 85.545006, "word": "few" }, { "confidence": 0.99902344, "end": 86.185005, "punctuated_word": "years,", "speaker": 0, "speaker_confidence": 0.58154297, "start": 85.785, "word": "years" }, { "confidence": 0.98095703, "end": 86.26501, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.58154297, "start": 86.185005, "word": "the" }, { "confidence": 0.9970703, "end": 86.76501, "punctuated_word": "project", "speaker": 0, "speaker_confidence": 0.58154297, "start": 86.26501, "word": "project" }, { "confidence": 1, "end": 87.28001, "punctuated_word": "created", "speaker": 0, "speaker_confidence": 0.58154297, "start": 86.96001, "word": "created" }, { "confidence": 1, "end": 87.44, "punctuated_word": "many", "speaker": 0, "speaker_confidence": 0.58154297, "start": 87.28001, "word": "many" }, { "confidence": 1, "end": 87.600006, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.58154297, "start": 87.44, "word": "of" }, { "confidence": 0.99902344, "end": 87.840004, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.58154297, "start": 87.600006, "word": "the" }, { "confidence": 1, "end": 88.340004, "punctuated_word": "applications", "speaker": 0, "speaker_confidence": 0.58154297, "start": 87.840004, "word": "applications" }, { "confidence": 0.9980469, "end": 88.64, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.58154297, "start": 88.4, "word": "that" }, { "confidence": 0.99902344, "end": 88.72, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.76660156, "start": 88.64, "word": "you" }, { "confidence": 0.99902344, "end": 88.96001, "punctuated_word": "know", "speaker": 0, "speaker_confidence": 0.76660156, "start": 88.72, "word": "know" }, { "confidence": 0.99902344, "end": 89.04, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.76660156, "start": 88.96001, "word": "and" }, { "confidence": 1, "end": 89.28001, "punctuated_word": "love", "speaker": 0, "speaker_confidence": 0.76660156, "start": 89.04, "word": "love" }, { "confidence": 0.78125, "end": 89.78001, "punctuated_word": "today.", "speaker": 0, "speaker_confidence": 0.76660156, "start": 89.28001, "word": "today" }, { "confidence": 0.99902344, "end": 90.08, "punctuated_word": "Tools", "speaker": 0, "speaker_confidence": 0.76660156, "start": 89.840004, "word": "tools" }, { "confidence": 1, "end": 90.240005, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.76660156, "start": 90.08, "word": "that" }, { "confidence": 0.99902344, "end": 90.4, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.76660156, "start": 90.240005, "word": "are" }, { "confidence": 0.99902344, "end": 90.72, "punctuated_word": "often", "speaker": 0, "speaker_confidence": 0.76660156, "start": 90.4, "word": "often" }, { "confidence": 0.99609375, "end": 90.96001, "punctuated_word": "used", "speaker": 0, "speaker_confidence": 0.76660156, "start": 90.72, "word": "used" }, { "confidence": 0.9983724, "end": 91.46001, "punctuated_word": "synonymously", "speaker": 0, "speaker_confidence": 0.76660156, "start": 90.96001, "word": "synonymously" }, { "confidence": 1, "end": 91.840004, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.76660156, "start": 91.600006, "word": "with" }, { "confidence": 0.77905273, "end": 92.240005, "punctuated_word": "Linux,", "speaker": 0, "speaker_confidence": 0.76660156, "start": 91.840004, "word": "linux" }, { "confidence": 1, "end": 92.64, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.76660156, "start": 92.240005, "word": "like" }, { "confidence": 0.9345703, "end": 93.04, "punctuated_word": "tar,", "speaker": 0, "speaker_confidence": 0.76660156, "start": 92.64, "word": "tar" }, { "confidence": 0.9238281, "end": 93.36, "punctuated_word": "bash,", "speaker": 0, "speaker_confidence": 0.76660156, "start": 93.04, "word": "bash" }, { "confidence": 0.9941406, "end": 93.600006, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.76660156, "start": 93.36, "word": "and" }, { "confidence": 0.8540039, "end": 93.995, "punctuated_word": "emacs,", "speaker": 0, "speaker_confidence": 0.76660156, "start": 93.600006, "word": "emacs" }, { "confidence": 0.99902344, "end": 94.15501, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.76660156, "start": 93.995, "word": "just" }, { "confidence": 0.99316406, "end": 94.315, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.76660156, "start": 94.15501, "word": "to" }, { "confidence": 1, "end": 94.395004, "punctuated_word": "name", "speaker": 0, "speaker_confidence": 0.8232422, "start": 94.315, "word": "name" }, { "confidence": 0.99902344, "end": 94.475006, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8232422, "start": 94.395004, "word": "a" }, { "confidence": 0.9970703, "end": 94.975006, "punctuated_word": "few.", "speaker": 0, "speaker_confidence": 0.8232422, "start": 94.475006, "word": "few" }, { "confidence": 0.99902344, "end": 95.195, "punctuated_word": "By", "speaker": 0, "speaker_confidence": 0.8232422, "start": 95.035, "word": "by" }, { "confidence": 0.99902344, "end": 95.355, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8232422, "start": 95.195, "word": "the" }, { "confidence": 0.99902344, "end": 95.595, "punctuated_word": "early", "speaker": 0, "speaker_confidence": 0.8232422, "start": 95.355, "word": "early" }, { "confidence": 0.9977214, "end": 96.095, "punctuated_word": "nineties,", "speaker": 0, "speaker_confidence": 0.8232422, "start": 95.595, "word": "nineties" }, { "confidence": 0.96435547, "end": 96.555, "punctuated_word": "GNU", "speaker": 0, "speaker_confidence": 0.8232422, "start": 96.155, "word": "gnu" }, { "confidence": 0.99902344, "end": 96.715004, "punctuated_word": "had", "speaker": 0, "speaker_confidence": 0.8232422, "start": 96.555, "word": "had" }, { "confidence": 0.9980469, "end": 96.875, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.8232422, "start": 96.715004, "word": "all" }, { "confidence": 0.9902344, "end": 97.115005, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.8232422, "start": 96.875, "word": "this" }, { "confidence": 0.99902344, "end": 97.355, "punctuated_word": "great", "speaker": 0, "speaker_confidence": 0.8232422, "start": 97.115005, "word": "great" }, { "confidence": 0.9807129, "end": 97.855, "punctuated_word": "software,", "speaker": 0, "speaker_confidence": 0.8232422, "start": 97.355, "word": "software" }, { "confidence": 0.99316406, "end": 98.155, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.8232422, "start": 97.995, "word": "but" }, { "confidence": 0.99609375, "end": 98.235, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8232422, "start": 98.155, "word": "it" }, { "confidence": 0.99902344, "end": 98.395004, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.8232422, "start": 98.235, "word": "was" }, { "confidence": 0.99902344, "end": 98.715004, "punctuated_word": "missing", "speaker": 0, "speaker_confidence": 0.8232422, "start": 98.395004, "word": "missing" }, { "confidence": 0.90527344, "end": 98.955, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.8232422, "start": 98.715004, "word": "one" }, { "confidence": 0.9980469, "end": 99.355, "punctuated_word": "essential", "speaker": 0, "speaker_confidence": 0.8232422, "start": 98.955, "word": "essential" }, { "confidence": 0.8647461, "end": 99.855, "punctuated_word": "component,", "speaker": 0, "speaker_confidence": 0.8232422, "start": 99.355, "word": "component" }, { "confidence": 0.8461914, "end": 100.395004, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8232422, "start": 100.075005, "word": "the" }, { "confidence": 0.9223633, "end": 100.715004, "punctuated_word": "operating", "speaker": 0, "speaker_confidence": 0.8232422, "start": 100.395004, "word": "operating" }, { "confidence": 0.7290039, "end": 101.01, "punctuated_word": "system", "speaker": 0, "speaker_confidence": 0.8232422, "start": 100.715004, "word": "system" }, { "confidence": 0.75683594, "end": 101.25, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.8232422, "start": 101.090004, "word": "some" }, { "confidence": 0.94873047, "end": 101.57, "punctuated_word": "kernel.", "speaker": 0, "speaker_confidence": 0.8232422, "start": 101.25, "word": "kernel" }, { "confidence": 0.9970703, "end": 101.89, "punctuated_word": "A", "speaker": 0, "speaker_confidence": 0.8232422, "start": 101.57, "word": "a" }, { "confidence": 0.99902344, "end": 102.21, "punctuated_word": "complete", "speaker": 0, "speaker_confidence": 0.8232422, "start": 101.89, "word": "complete" }, { "confidence": 0.9980469, "end": 102.69, "punctuated_word": "operating", "speaker": 0, "speaker_confidence": 0.8232422, "start": 102.21, "word": "operating" }, { "confidence": 1, "end": 103.090004, "punctuated_word": "system", "speaker": 0, "speaker_confidence": 0.8232422, "start": 102.69, "word": "system" }, { "confidence": 0.9980469, "end": 103.41, "punctuated_word": "needs", "speaker": 0, "speaker_confidence": 0.8232422, "start": 103.090004, "word": "needs" }, { "confidence": 1, "end": 103.57, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8232422, "start": 103.41, "word": "a" }, { "confidence": 0.98828125, "end": 104.05, "punctuated_word": "kernel", "speaker": 0, "speaker_confidence": 0.8232422, "start": 103.57, "word": "kernel" }, { "confidence": 1, "end": 104.21, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8232422, "start": 104.05, "word": "to" }, { "confidence": 0.99902344, "end": 104.450005, "punctuated_word": "sit", "speaker": 0, "speaker_confidence": 0.8232422, "start": 104.21, "word": "sit" }, { "confidence": 0.99902344, "end": 104.61, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8232422, "start": 104.450005, "word": "in" }, { "confidence": 1, "end": 104.93, "punctuated_word": "between", "speaker": 0, "speaker_confidence": 0.8232422, "start": 104.61, "word": "between" }, { "confidence": 0.99902344, "end": 105.090004, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8232422, "start": 104.93, "word": "the" }, { "confidence": 1, "end": 105.590004, "punctuated_word": "hardware", "speaker": 0, "speaker_confidence": 0.8232422, "start": 105.090004, "word": "hardware" }, { "confidence": 0.9873047, "end": 105.810005, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8232422, "start": 105.65, "word": "and" }, { "confidence": 0.7573242, "end": 105.89, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8232422, "start": 105.810005, "word": "the" }, { "confidence": 0.9082031, "end": 106.39, "punctuated_word": "software,", "speaker": 0, "speaker_confidence": 0.8232422, "start": 105.89, "word": "software" }, { "confidence": 1, "end": 106.85, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.8232422, "start": 106.61, "word": "where" }, { "confidence": 1, "end": 106.93, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8232422, "start": 106.85, "word": "it" }, { "confidence": 0.99902344, "end": 107.090004, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7861328, "start": 106.93, "word": "can" }, { "confidence": 0.99902344, "end": 107.590004, "punctuated_word": "allocate", "speaker": 0, "speaker_confidence": 0.7861328, "start": 107.090004, "word": "allocate" }, { "confidence": 0.9970703, "end": 108.025, "punctuated_word": "CPU", "speaker": 0, "speaker_confidence": 0.7861328, "start": 107.65, "word": "cpu" }, { "confidence": 0.8178711, "end": 108.265, "punctuated_word": "UN", "speaker": 0, "speaker_confidence": 0.7861328, "start": 108.025, "word": "un" }, { "confidence": 0.63623047, "end": 108.765, "punctuated_word": "memory", "speaker": 0, "speaker_confidence": 0.7861328, "start": 108.265, "word": "memory" }, { "confidence": 0.97802734, "end": 109.325, "punctuated_word": "resources", "speaker": 0, "speaker_confidence": 0.7861328, "start": 108.825, "word": "resources" }, { "confidence": 0.9951172, "end": 109.705, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7861328, "start": 109.385, "word": "to" }, { "confidence": 0.9951172, "end": 110.025, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.7861328, "start": 109.705, "word": "run" }, { "confidence": 0.99902344, "end": 110.525, "punctuated_word": "software", "speaker": 0, "speaker_confidence": 0.7861328, "start": 110.025, "word": "software" }, { "confidence": 0.9970703, "end": 111.085, "punctuated_word": "applications.", "speaker": 0, "speaker_confidence": 0.7861328, "start": 110.585, "word": "applications" }, { "confidence": 0.9946289, "end": 111.945, "punctuated_word": "Luckily,", "speaker": 0, "speaker_confidence": 0.75927734, "start": 111.465004, "word": "luckily" }, { "confidence": 0.9970703, "end": 112.025, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.75927734, "start": 111.945, "word": "it" }, { "confidence": 0.99902344, "end": 112.185, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.75927734, "start": 112.025, "word": "was" }, { "confidence": 0.9980469, "end": 112.345, "punctuated_word": "right", "speaker": 0, "speaker_confidence": 0.75927734, "start": 112.185, "word": "right" }, { "confidence": 0.99902344, "end": 112.585, "punctuated_word": "around", "speaker": 0, "speaker_confidence": 0.75927734, "start": 112.345, "word": "around" }, { "confidence": 0.9980469, "end": 112.825005, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.75927734, "start": 112.585, "word": "this" }, { "confidence": 0.9970703, "end": 113.145004, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.75927734, "start": 112.825005, "word": "time" }, { "confidence": 0.98535156, "end": 113.305, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.75927734, "start": 113.145004, "word": "that" }, { "confidence": 0.99853516, "end": 113.785, "punctuated_word": "Linus", "speaker": 0, "speaker_confidence": 0.75927734, "start": 113.305, "word": "linus" }, { "confidence": 0.99902344, "end": 114.285, "punctuated_word": "Torvalds", "speaker": 0, "speaker_confidence": 0.75927734, "start": 113.785, "word": "torvalds" }, { "confidence": 0.9951172, "end": 114.585, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.75927734, "start": 114.345, "word": "was" }, { "confidence": 0.99316406, "end": 115.065, "punctuated_word": "working", "speaker": 0, "speaker_confidence": 0.75927734, "start": 114.585, "word": "working" }, { "confidence": 0.9667969, "end": 115.145004, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.75927734, "start": 115.065, "word": "on" }, { "confidence": 0.8095703, "end": 115.4, "punctuated_word": "his", "speaker": 0, "speaker_confidence": 0.53271484, "start": 115.145004, "word": "his" }, { "confidence": 0.98828125, "end": 115.64, "punctuated_word": "his", "speaker": 0, "speaker_confidence": 0.53271484, "start": 115.4, "word": "his" }, { "confidence": 0.7783203, "end": 115.880005, "punctuated_word": "hobby", "speaker": 0, "speaker_confidence": 0.53271484, "start": 115.64, "word": "hobby" }, { "confidence": 0.9941406, "end": 116.36, "punctuated_word": "operating", "speaker": 0, "speaker_confidence": 0.53271484, "start": 115.880005, "word": "operating" }, { "confidence": 0.99902344, "end": 116.86, "punctuated_word": "system.", "speaker": 0, "speaker_confidence": 0.53271484, "start": 116.36, "word": "system" }, { "confidence": 0.9921875, "end": 117.48, "punctuated_word": "Originally,", "speaker": 0, "speaker_confidence": 0.7910156, "start": 117, "word": "originally" }, { "confidence": 0.99902344, "end": 117.56, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.7910156, "start": 117.48, "word": "it" }, { "confidence": 1, "end": 117.8, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.7910156, "start": 117.56, "word": "was" }, { "confidence": 1, "end": 117.96, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.7910156, "start": 117.8, "word": "going" }, { "confidence": 0.99902344, "end": 118.04, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7910156, "start": 117.96, "word": "to" }, { "confidence": 0.99902344, "end": 118.200005, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.7910156, "start": 118.04, "word": "be" }, { "confidence": 1, "end": 118.44, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 0.7910156, "start": 118.200005, "word": "called" }, { "confidence": 0.84350586, "end": 118.94, "punctuated_word": "Freeaxe", "speaker": 0, "speaker_confidence": 0.7910156, "start": 118.44, "word": "freeaxe" }, { "confidence": 0.57666016, "end": 119.48, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.7910156, "start": 119.16, "word": "because" }, { "confidence": 0.99902344, "end": 119.56, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7910156, "start": 119.48, "word": "the" }, { "confidence": 0.99902344, "end": 119.880005, "punctuated_word": "name", "speaker": 0, "speaker_confidence": 0.7910156, "start": 119.56, "word": "name" }, { "confidence": 0.9243164, "end": 120.28, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 0.7910156, "start": 119.880005, "word": "linux" }, { "confidence": 0.99902344, "end": 120.520004, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.7910156, "start": 120.28, "word": "was" }, { "confidence": 0.99902344, "end": 120.76, "punctuated_word": "too", "speaker": 0, "speaker_confidence": 0.7910156, "start": 120.520004, "word": "too" }, { "confidence": 0.91296387, "end": 121.26, "punctuated_word": "egotistical.", "speaker": 0, "speaker_confidence": 0.7910156, "start": 120.76, "word": "egotistical" }, { "confidence": 0.9980469, "end": 121.8, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.7910156, "start": 121.56, "word": "but" }, { "confidence": 0.80566406, "end": 122.04, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.7910156, "start": 121.8, "word": "as" }, { "confidence": 0.99902344, "end": 122.200005, "punctuated_word": "fate", "speaker": 0, "speaker_confidence": 0.7910156, "start": 122.04, "word": "fate" }, { "confidence": 1, "end": 122.36, "punctuated_word": "would", "speaker": 0, "speaker_confidence": 0.7910156, "start": 122.200005, "word": "would" }, { "confidence": 1, "end": 122.520004, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.7910156, "start": 122.36, "word": "have" }, { "confidence": 0.99902344, "end": 122.92, "punctuated_word": "it,", "speaker": 0, "speaker_confidence": 0.7910156, "start": 122.520004, "word": "it" }, { "confidence": 1, "end": 123.08, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7910156, "start": 122.92, "word": "the" }, { "confidence": 0.99902344, "end": 123.4, "punctuated_word": "admin", "speaker": 0, "speaker_confidence": 0.7910156, "start": 123.08, "word": "admin" }, { "confidence": 1, "end": 123.64, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.7910156, "start": 123.4, "word": "for" }, { "confidence": 0.99902344, "end": 123.8, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7910156, "start": 123.64, "word": "the" }, { "confidence": 0.9980469, "end": 124.155, "punctuated_word": "FTP", "speaker": 0, "speaker_confidence": 0.7910156, "start": 123.8, "word": "ftp" }, { "confidence": 0.7553711, "end": 124.395, "punctuated_word": "PC", "speaker": 0, "speaker_confidence": 0.7910156, "start": 124.155, "word": "pc" }, { "confidence": 0.7158203, "end": 124.555, "punctuated_word": "server", "speaker": 0, "speaker_confidence": 0.7910156, "start": 124.395, "word": "server" }, { "confidence": 0.77441406, "end": 124.635, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.8300781, "start": 124.555, "word": "at" }, { "confidence": 0.99609375, "end": 124.875, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8300781, "start": 124.635, "word": "the" }, { "confidence": 1, "end": 125.115, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.8300781, "start": 124.875, "word": "time" }, { "confidence": 0.9621582, "end": 125.354996, "punctuated_word": "didn't", "speaker": 0, "speaker_confidence": 0.8300781, "start": 125.115, "word": "didn't" }, { "confidence": 1, "end": 125.595, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.8300781, "start": 125.354996, "word": "like" }, { "confidence": 1, "end": 125.674995, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8300781, "start": 125.595, "word": "the" }, { "confidence": 1, "end": 125.994995, "punctuated_word": "name", "speaker": 0, "speaker_confidence": 0.8300781, "start": 125.674995, "word": "name" }, { "confidence": 0.9863281, "end": 126.155, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8300781, "start": 125.994995, "word": "and" }, { "confidence": 0.99902344, "end": 126.475, "punctuated_word": "changed", "speaker": 0, "speaker_confidence": 0.8300781, "start": 126.155, "word": "changed" }, { "confidence": 0.99902344, "end": 126.555, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8300781, "start": 126.475, "word": "it" }, { "confidence": 1, "end": 126.875, "punctuated_word": "without", "speaker": 0, "speaker_confidence": 0.8300781, "start": 126.555, "word": "without" }, { "confidence": 0.99902344, "end": 127.034996, "punctuated_word": "his", "speaker": 0, "speaker_confidence": 0.8300781, "start": 126.875, "word": "his" }, { "confidence": 0.89624023, "end": 127.515, "punctuated_word": "consent,", "speaker": 0, "speaker_confidence": 0.8300781, "start": 127.034996, "word": "consent" }, { "confidence": 0.9980469, "end": 127.674995, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8300781, "start": 127.515, "word": "and" }, { "confidence": 0.9970703, "end": 127.835, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8300781, "start": 127.674995, "word": "the" }, { "confidence": 0.9970703, "end": 128.075, "punctuated_word": "name", "speaker": 0, "speaker_confidence": 0.8300781, "start": 127.835, "word": "name" }, { "confidence": 1, "end": 128.475, "punctuated_word": "stuck", "speaker": 0, "speaker_confidence": 0.8300781, "start": 128.075, "word": "stuck" }, { "confidence": 1, "end": 128.635, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.8300781, "start": 128.475, "word": "from" }, { "confidence": 0.9970703, "end": 128.795, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.8300781, "start": 128.635, "word": "there" }, { "confidence": 0.9472656, "end": 128.955, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8300781, "start": 128.795, "word": "on" }, { "confidence": 0.9975586, "end": 129.455, "punctuated_word": "out.", "speaker": 0, "speaker_confidence": 0.8300781, "start": 128.955, "word": "out" }, { "confidence": 1, "end": 130.015, "punctuated_word": "Initially,", "speaker": 0, "speaker_confidence": 0.8300781, "start": 129.515, "word": "initially" }, { "confidence": 0.99902344, "end": 130.475, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 0.8300781, "start": 130.075, "word": "linux" }, { "confidence": 0.9970703, "end": 130.635, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.8300781, "start": 130.475, "word": "was" }, { "confidence": 0.9970703, "end": 130.955, "punctuated_word": "released", "speaker": 0, "speaker_confidence": 0.8300781, "start": 130.635, "word": "released" }, { "confidence": 0.98291016, "end": 131.115, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.8300781, "start": 130.955, "word": "with" }, { "confidence": 0.9326172, "end": 131.275, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8300781, "start": 131.115, "word": "a" }, { "confidence": 0.95410156, "end": 131.775, "punctuated_word": "proprietary", "speaker": 0, "speaker_confidence": 0.8300781, "start": 131.275, "word": "proprietary" }, { "confidence": 0.7553711, "end": 132.22, "punctuated_word": "license", "speaker": 0, "speaker_confidence": 0.8300781, "start": 131.83499, "word": "license" }, { "confidence": 0.84814453, "end": 132.62, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8300781, "start": 132.38, "word": "that" }, { "confidence": 0.8198242, "end": 132.78, "punctuated_word": "had", "speaker": 0, "speaker_confidence": 0.8300781, "start": 132.62, "word": "had" }, { "confidence": 0.99902344, "end": 133.28, "punctuated_word": "limitations", "speaker": 0, "speaker_confidence": 0.8300781, "start": 132.78, "word": "limitations" }, { "confidence": 0.99902344, "end": 133.74, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8300781, "start": 133.5, "word": "on" }, { "confidence": 1, "end": 134.22, "punctuated_word": "commercial", "speaker": 0, "speaker_confidence": 0.8300781, "start": 133.74, "word": "commercial" }, { "confidence": 0.9975586, "end": 134.7, "punctuated_word": "use.", "speaker": 0, "speaker_confidence": 0.8300781, "start": 134.22, "word": "use" }, { "confidence": 0.9995117, "end": 135.2, "punctuated_word": "However,", "speaker": 0, "speaker_confidence": 0.8300781, "start": 134.7, "word": "however" }, { "confidence": 1, "end": 135.42, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.8300781, "start": 135.26, "word": "by" }, { "confidence": 0.9970703, "end": 135.58, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8300781, "start": 135.42, "word": "the" }, { "confidence": 0.99902344, "end": 135.74, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.8300781, "start": 135.58, "word": "end" }, { "confidence": 1, "end": 135.98, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8300781, "start": 135.74, "word": "of" }, { "confidence": 0.9777832, "end": 136.48, "punctuated_word": "1992,", "speaker": 0, "speaker_confidence": 0.8300781, "start": 135.98, "word": "1992" }, { "confidence": 0.9902344, "end": 136.86, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8300781, "start": 136.7, "word": "it" }, { "confidence": 0.9980469, "end": 137.02, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.8300781, "start": 136.86, "word": "was" }, { "confidence": 0.9941406, "end": 137.34, "punctuated_word": "released", "speaker": 0, "speaker_confidence": 0.8300781, "start": 137.02, "word": "released" }, { "confidence": 0.9951172, "end": 137.58, "punctuated_word": "under", "speaker": 0, "speaker_confidence": 0.8300781, "start": 137.34, "word": "under" }, { "confidence": 0.96875, "end": 137.82, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8300781, "start": 137.58, "word": "the" }, { "confidence": 0.97265625, "end": 138.22, "punctuated_word": "GNU", "speaker": 0, "speaker_confidence": 0.8300781, "start": 137.82, "word": "gnu" }, { "confidence": 0.80908203, "end": 138.62, "punctuated_word": "general", "speaker": 0, "speaker_confidence": 0.8300781, "start": 138.22, "word": "general" }, { "confidence": 0.9941406, "end": 139.02, "punctuated_word": "public", "speaker": 0, "speaker_confidence": 0.8300781, "start": 138.62, "word": "public" }, { "confidence": 0.70739746, "end": 139.52, "punctuated_word": "license.", "speaker": 0, "speaker_confidence": 0.8300781, "start": 139.02, "word": "license" }, { "confidence": 0.984375, "end": 139.82, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.8300781, "start": 139.66, "word": "and" }, { "confidence": 0.9375, "end": 140.06, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.8300781, "start": 139.82, "word": "this" }, { "confidence": 0.9941406, "end": 140.22, "punctuated_word": "gave", "speaker": 0, "speaker_confidence": 0.8300781, "start": 140.06, "word": "gave" }, { "confidence": 0.99902344, "end": 140.54001, "punctuated_word": "birth", "speaker": 0, "speaker_confidence": 0.8300781, "start": 140.22, "word": "birth" }, { "confidence": 0.9086914, "end": 140.62, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8300781, "start": 140.54001, "word": "to" }, { "confidence": 0.51953125, "end": 140.945, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8178711, "start": 140.62, "word": "a" }, { "confidence": 0.8125, "end": 141.345, "punctuated_word": "complete", "speaker": 0, "speaker_confidence": 0.8178711, "start": 141.02501, "word": "complete" }, { "confidence": 0.9921875, "end": 141.66501, "punctuated_word": "operating", "speaker": 0, "speaker_confidence": 0.8178711, "start": 141.345, "word": "operating" }, { "confidence": 0.99902344, "end": 142.145, "punctuated_word": "system", "speaker": 0, "speaker_confidence": 0.8178711, "start": 141.66501, "word": "system" }, { "confidence": 0.9633789, "end": 142.38501, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8178711, "start": 142.145, "word": "that" }, { "confidence": 0.99902344, "end": 142.46501, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.8178711, "start": 142.38501, "word": "we" }, { "confidence": 0.9902344, "end": 142.705, "punctuated_word": "know", "speaker": 0, "speaker_confidence": 0.8178711, "start": 142.46501, "word": "know" }, { "confidence": 0.99609375, "end": 143.10501, "punctuated_word": "today", "speaker": 0, "speaker_confidence": 0.8178711, "start": 142.705, "word": "today" }, { "confidence": 0.9863281, "end": 143.425, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.8178711, "start": 143.10501, "word": "as" }, { "confidence": 0.55371094, "end": 143.82501, "punctuated_word": "GNU", "speaker": 0, "speaker_confidence": 0.8178711, "start": 143.425, "word": "gnu" }, { "confidence": 0.7050781, "end": 144.065, "punctuated_word": "plus", "speaker": 0, "speaker_confidence": 0.8178711, "start": 143.82501, "word": "plus" }, { "confidence": 0.9980469, "end": 144.565, "punctuated_word": "Linux.", "speaker": 0, "speaker_confidence": 0.8178711, "start": 144.065, "word": "linux" }, { "confidence": 1, "end": 144.865, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.8178711, "start": 144.705, "word": "the" }, { "confidence": 1, "end": 145.10501, "punctuated_word": "following", "speaker": 0, "speaker_confidence": 0.8178711, "start": 144.865, "word": "following" }, { "confidence": 0.99902344, "end": 145.585, "punctuated_word": "year,", "speaker": 0, "speaker_confidence": 0.8178711, "start": 145.10501, "word": "year" }, { "confidence": 0.5, "end": 145.82501, "punctuated_word": "hundreds", "speaker": 0, "speaker_confidence": 0.8178711, "start": 145.585, "word": "hundreds" }, { "confidence": 1, "end": 146.065, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8178711, "start": 145.82501, "word": "of" }, { "confidence": 1, "end": 146.54501, "punctuated_word": "developers", "speaker": 0, "speaker_confidence": 0.8178711, "start": 146.065, "word": "developers" }, { "confidence": 1, "end": 146.785, "punctuated_word": "jumped", "speaker": 0, "speaker_confidence": 0.8178711, "start": 146.54501, "word": "jumped" }, { "confidence": 1, "end": 146.945, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8178711, "start": 146.785, "word": "on" }, { "confidence": 0.99902344, "end": 147.10501, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8178711, "start": 146.945, "word": "the" }, { "confidence": 1, "end": 147.425, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 0.8178711, "start": 147.10501, "word": "linux" }, { "confidence": 0.99609375, "end": 147.90501, "punctuated_word": "project", "speaker": 0, "speaker_confidence": 0.8178711, "start": 147.425, "word": "project" }, { "confidence": 0.9277344, "end": 148.065, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8178711, "start": 147.90501, "word": "and" }, { "confidence": 0.99902344, "end": 148.46501, "punctuated_word": "started", "speaker": 0, "speaker_confidence": 0.8178711, "start": 148.065, "word": "started" }, { "confidence": 0.9941406, "end": 148.865, "punctuated_word": "adapting", "speaker": 0, "speaker_confidence": 0.8178711, "start": 148.46501, "word": "adapting" }, { "confidence": 0.9980469, "end": 149.10501, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8178711, "start": 148.865, "word": "it" }, { "confidence": 0.9980469, "end": 149.18501, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8178711, "start": 149.10501, "word": "to" }, { "confidence": 0.98535156, "end": 149.425, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8178711, "start": 149.18501, "word": "the" }, { "confidence": 0.83984375, "end": 149.74501, "punctuated_word": "GNU", "speaker": 0, "speaker_confidence": 0.8178711, "start": 149.425, "word": "gnu" }, { "confidence": 0.99609375, "end": 150.24501, "punctuated_word": "environment.", "speaker": 0, "speaker_confidence": 0.8178711, "start": 149.74501, "word": "environment" }, { "confidence": 0.8959961, "end": 150.42, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.8178711, "start": 150.30501, "word": "the" }, { "confidence": 0.91845703, "end": 150.58, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8178711, "start": 150.5, "word": "the" }, { "confidence": 0.9970703, "end": 150.74, "punctuated_word": "beauty", "speaker": 0, "speaker_confidence": 0.8178711, "start": 150.58, "word": "beauty" }, { "confidence": 1, "end": 150.81999, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8178711, "start": 150.74, "word": "of" }, { "confidence": 0.99609375, "end": 150.9, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7998047, "start": 150.81999, "word": "the" }, { "confidence": 0.99902344, "end": 151.3, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 0.7998047, "start": 150.9, "word": "linux" }, { "confidence": 0.9394531, "end": 151.62, "punctuated_word": "kernel", "speaker": 0, "speaker_confidence": 0.7998047, "start": 151.3, "word": "kernel" }, { "confidence": 0.83935547, "end": 151.78, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7998047, "start": 151.62, "word": "is" }, { "confidence": 1, "end": 151.94, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7998047, "start": 151.78, "word": "that" }, { "confidence": 0.9819336, "end": 152.09999, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.7998047, "start": 151.94, "word": "it" }, { "confidence": 0.9980469, "end": 152.26, "punctuated_word": "gave", "speaker": 0, "speaker_confidence": 0.7998047, "start": 152.09999, "word": "gave" }, { "confidence": 0.99902344, "end": 152.74, "punctuated_word": "developers", "speaker": 0, "speaker_confidence": 0.7998047, "start": 152.26, "word": "developers" }, { "confidence": 0.9980469, "end": 152.98, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7998047, "start": 152.74, "word": "the" }, { "confidence": 1, "end": 153.38, "punctuated_word": "ability", "speaker": 0, "speaker_confidence": 0.7998047, "start": 152.98, "word": "ability" }, { "confidence": 0.99902344, "end": 153.54, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7998047, "start": 153.38, "word": "to" }, { "confidence": 1, "end": 153.86, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.7998047, "start": 153.54, "word": "build" }, { "confidence": 1, "end": 154.26, "punctuated_word": "custom", "speaker": 0, "speaker_confidence": 0.7998047, "start": 153.86, "word": "custom" }, { "confidence": 0.9980469, "end": 154.73999, "punctuated_word": "operating", "speaker": 0, "speaker_confidence": 0.7998047, "start": 154.26, "word": "operating" }, { "confidence": 0.99902344, "end": 155.23999, "punctuated_word": "systems", "speaker": 0, "speaker_confidence": 0.7998047, "start": 154.73999, "word": "systems" }, { "confidence": 0.9941406, "end": 155.45999, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7998047, "start": 155.3, "word": "that" }, { "confidence": 1, "end": 155.7, "punctuated_word": "felt", "speaker": 0, "speaker_confidence": 0.7998047, "start": 155.45999, "word": "felt" }, { "confidence": 0.99902344, "end": 155.94, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.7998047, "start": 155.7, "word": "like" }, { "confidence": 0.7470703, "end": 156.34, "punctuated_word": "Unix,", "speaker": 0, "speaker_confidence": 0.7998047, "start": 155.94, "word": "unix" }, { "confidence": 0.99902344, "end": 156.5, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.7998047, "start": 156.34, "word": "but" }, { "confidence": 0.99902344, "end": 156.73999, "punctuated_word": "didn't", "speaker": 0, "speaker_confidence": 0.7998047, "start": 156.5, "word": "didn't" }, { "confidence": 1, "end": 156.9, "punctuated_word": "come", "speaker": 0, "speaker_confidence": 0.7998047, "start": 156.73999, "word": "come" }, { "confidence": 0.9980469, "end": 157.14, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.7998047, "start": 156.9, "word": "with" }, { "confidence": 0.88671875, "end": 157.22, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7998047, "start": 157.14, "word": "the" }, { "confidence": 0.99902344, "end": 157.45999, "punctuated_word": "fear", "speaker": 0, "speaker_confidence": 0.7998047, "start": 157.22, "word": "fear" }, { "confidence": 0.66796875, "end": 157.54, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7998047, "start": 157.45999, "word": "of" }, { "confidence": 0.9980469, "end": 157.78, "punctuated_word": "being", "speaker": 0, "speaker_confidence": 0.7998047, "start": 157.54, "word": "being" }, { "confidence": 1, "end": 158.02, "punctuated_word": "sued", "speaker": 0, "speaker_confidence": 0.7998047, "start": 157.78, "word": "sued" }, { "confidence": 1, "end": 158.18, "punctuated_word": "down", "speaker": 0, "speaker_confidence": 0.7998047, "start": 158.02, "word": "down" }, { "confidence": 1, "end": 158.34, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7998047, "start": 158.18, "word": "the" }, { "confidence": 0.9995117, "end": 158.73999, "punctuated_word": "road.", "speaker": 0, "speaker_confidence": 0.7998047, "start": 158.34, "word": "road" }, { "confidence": 0.9980469, "end": 159.23999, "punctuated_word": "Ultimately,", "speaker": 0, "speaker_confidence": 0.7998047, "start": 158.73999, "word": "ultimately" }, { "confidence": 0.99316406, "end": 159.54, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.7998047, "start": 159.3, "word": "this" }, { "confidence": 0.98095703, "end": 159.7, "punctuated_word": "led", "speaker": 0, "speaker_confidence": 0.7998047, "start": 159.54, "word": "led" }, { "confidence": 0.9902344, "end": 159.94, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7998047, "start": 159.7, "word": "to" }, { "confidence": 0.96435547, "end": 160.02, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.7998047, "start": 159.94, "word": "some" }, { "confidence": 0.97265625, "end": 160.09999, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7001953, "start": 160.02, "word": "of" }, { "confidence": 0.78222656, "end": 160.405, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7001953, "start": 160.09999, "word": "the" }, { "confidence": 0.79589844, "end": 160.645, "punctuated_word": "1st", "speaker": 0, "speaker_confidence": 0.7001953, "start": 160.485, "word": "1st" }, { "confidence": 0.9970703, "end": 161.045, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 0.7001953, "start": 160.645, "word": "linux" }, { "confidence": 0.78100586, "end": 161.545, "punctuated_word": "distributions,", "speaker": 0, "speaker_confidence": 0.7001953, "start": 161.045, "word": "distributions" }, { "confidence": 0.99902344, "end": 162.245, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.7001953, "start": 162.005, "word": "like" }, { "confidence": 0.7919922, "end": 162.565, "punctuated_word": "Soft", "speaker": 0, "speaker_confidence": 0.7001953, "start": 162.245, "word": "soft" }, { "confidence": 0.9909668, "end": 163.065, "punctuated_word": "Landing,", "speaker": 0, "speaker_confidence": 0.7001953, "start": 162.565, "word": "landing" }, { "confidence": 0.9835612, "end": 163.625, "punctuated_word": "Yggdrasil,", "speaker": 0, "speaker_confidence": 0.7001953, "start": 163.125, "word": "yggdrasil" }, { "confidence": 0.99902344, "end": 164.165, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7001953, "start": 163.845, "word": "and" }, { "confidence": 0.97347003, "end": 164.665, "punctuated_word": "Slackware.", "speaker": 0, "speaker_confidence": 0.7001953, "start": 164.165, "word": "slackware" }, { "confidence": 0.99609375, "end": 165.205, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.9946289, "start": 164.965, "word": "but" }, { "confidence": 0.54248047, "end": 165.285, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.9946289, "start": 165.205, "word": "what" }, { "confidence": 1, "end": 165.44499, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9946289, "start": 165.285, "word": "is" }, { "confidence": 1, "end": 165.605, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9946289, "start": 165.44499, "word": "a" }, { "confidence": 0.9980469, "end": 165.925, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 0.9946289, "start": 165.605, "word": "linux" }, { "confidence": 0.9921875, "end": 166.405, "punctuated_word": "distro", "speaker": 0, "speaker_confidence": 0.9946289, "start": 165.925, "word": "distro" }, { "confidence": 0.9470215, "end": 166.905, "punctuated_word": "exactly?", "speaker": 0, "speaker_confidence": 0.9946289, "start": 166.405, "word": "exactly" }, { "confidence": 0.99902344, "end": 167.365, "punctuated_word": "A", "speaker": 0, "speaker_confidence": 0.9946289, "start": 167.125, "word": "a" }, { "confidence": 0.99853516, "end": 167.81, "punctuated_word": "distro", "speaker": 0, "speaker_confidence": 0.9946289, "start": 167.365, "word": "distro" }, { "confidence": 0.64404297, "end": 168.05, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9946289, "start": 167.89, "word": "is" }, { "confidence": 0.99121094, "end": 168.20999, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9946289, "start": 168.05, "word": "a" }, { "confidence": 1, "end": 168.61, "punctuated_word": "complete", "speaker": 0, "speaker_confidence": 0.9946289, "start": 168.20999, "word": "complete" }, { "confidence": 0.9970703, "end": 169.09, "punctuated_word": "operating", "speaker": 0, "speaker_confidence": 0.9946289, "start": 168.61, "word": "operating" }, { "confidence": 0.99902344, "end": 169.41, "punctuated_word": "system", "speaker": 0, "speaker_confidence": 0.9946289, "start": 169.09, "word": "system" }, { "confidence": 0.99316406, "end": 169.65, "punctuated_word": "based", "speaker": 0, "speaker_confidence": 0.9946289, "start": 169.41, "word": "based" }, { "confidence": 1, "end": 169.81, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.9946289, "start": 169.65, "word": "on" }, { "confidence": 0.9980469, "end": 169.89, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9946289, "start": 169.81, "word": "the" }, { "confidence": 0.99902344, "end": 170.20999, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 0.9946289, "start": 169.89, "word": "linux" }, { "confidence": 0.9536133, "end": 170.69, "punctuated_word": "kernel", "speaker": 0, "speaker_confidence": 0.9946289, "start": 170.20999, "word": "kernel" }, { "confidence": 0.96875, "end": 170.93, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9946289, "start": 170.69, "word": "that" }, { "confidence": 1, "end": 171.33, "punctuated_word": "contains", "speaker": 0, "speaker_confidence": 0.9946289, "start": 170.93, "word": "contains" }, { "confidence": 1, "end": 171.48999, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9946289, "start": 171.33, "word": "a" }, { "confidence": 1, "end": 171.65, "punctuated_word": "bunch", "speaker": 0, "speaker_confidence": 0.9946289, "start": 171.48999, "word": "bunch" }, { "confidence": 1, "end": 171.89, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9946289, "start": 171.65, "word": "of" }, { "confidence": 0.99902344, "end": 172.29, "punctuated_word": "packages", "speaker": 0, "speaker_confidence": 0.9946289, "start": 171.89, "word": "packages" }, { "confidence": 0.984375, "end": 172.45, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9946289, "start": 172.29, "word": "and" }, { "confidence": 0.7753906, "end": 172.95, "punctuated_word": "libraries,", "speaker": 0, "speaker_confidence": 0.9946289, "start": 172.45, "word": "libraries" }, { "confidence": 0.9980469, "end": 173.33, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9946289, "start": 173.17, "word": "and" }, { "confidence": 0.66845703, "end": 173.83, "punctuated_word": "typically", "speaker": 0, "speaker_confidence": 0.9946289, "start": 173.33, "word": "typically" }, { "confidence": 0.546875, "end": 174.05, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9946289, "start": 173.89, "word": "a" }, { "confidence": 0.9970703, "end": 174.37, "punctuated_word": "package", "speaker": 0, "speaker_confidence": 0.9946289, "start": 174.05, "word": "package" }, { "confidence": 0.99902344, "end": 174.87, "punctuated_word": "manager", "speaker": 0, "speaker_confidence": 0.9946289, "start": 174.37, "word": "manager" }, { "confidence": 0.9482422, "end": 175.09, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9946289, "start": 174.93, "word": "to" }, { "confidence": 1, "end": 175.455, "punctuated_word": "install", "speaker": 0, "speaker_confidence": 0.9946289, "start": 175.09, "word": "install" }, { "confidence": 0.69140625, "end": 175.695, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.9946289, "start": 175.535, "word": "all" }, { "confidence": 0.99902344, "end": 176.095, "punctuated_word": "additional", "speaker": 0, "speaker_confidence": 0.9946289, "start": 175.695, "word": "additional" }, { "confidence": 0.8039551, "end": 176.595, "punctuated_word": "applications,", "speaker": 0, "speaker_confidence": 0.9946289, "start": 176.095, "word": "applications" }, { "confidence": 0.99902344, "end": 177.215, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9946289, "start": 177.05501, "word": "and" }, { "confidence": 0.95703125, "end": 177.615, "punctuated_word": "possibly", "speaker": 0, "speaker_confidence": 0.9946289, "start": 177.215, "word": "possibly" }, { "confidence": 0.96777344, "end": 177.855, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9946289, "start": 177.615, "word": "a" }, { "confidence": 0.69384766, "end": 178.255, "punctuated_word": "Windows", "speaker": 0, "speaker_confidence": 0.9946289, "start": 177.855, "word": "windows" }, { "confidence": 0.984375, "end": 178.575, "punctuated_word": "system", "speaker": 0, "speaker_confidence": 0.9946289, "start": 178.255, "word": "system" }, { "confidence": 0.69189453, "end": 178.815, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.9946289, "start": 178.575, "word": "if" }, { "confidence": 0.99609375, "end": 179.135, "punctuated_word": "there's", "speaker": 0, "speaker_confidence": 0.9946289, "start": 178.815, "word": "there's" }, { "confidence": 0.9921875, "end": 179.295, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9946289, "start": 179.135, "word": "a" }, { "confidence": 0.98535156, "end": 179.535, "punctuated_word": "GUI", "speaker": 0, "speaker_confidence": 0.9946289, "start": 179.295, "word": "gui" }, { "confidence": 0.9995117, "end": 180.035, "punctuated_word": "involved.", "speaker": 0, "speaker_confidence": 0.9946289, "start": 179.535, "word": "involved" }, { "confidence": 1, "end": 180.41501, "punctuated_word": "Many", "speaker": 0, "speaker_confidence": 0.9946289, "start": 180.175, "word": "many" }, { "confidence": 0.99658203, "end": 180.91501, "punctuated_word": "distros", "speaker": 0, "speaker_confidence": 0.9946289, "start": 180.41501, "word": "distros" }, { "confidence": 1, "end": 181.135, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 0.9946289, "start": 180.975, "word": "might" }, { "confidence": 1, "end": 181.455, "punctuated_word": "share", "speaker": 0, "speaker_confidence": 0.9946289, "start": 181.135, "word": "share" }, { "confidence": 1, "end": 181.535, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9946289, "start": 181.455, "word": "the" }, { "confidence": 1, "end": 181.855, "punctuated_word": "same", "speaker": 0, "speaker_confidence": 0.9946289, "start": 181.535, "word": "same" }, { "confidence": 1, "end": 182.255, "punctuated_word": "default", "speaker": 0, "speaker_confidence": 0.9946289, "start": 181.855, "word": "default" }, { "confidence": 0.99902344, "end": 182.575, "punctuated_word": "user", "speaker": 0, "speaker_confidence": 0.9946289, "start": 182.255, "word": "user" }, { "confidence": 0.9941406, "end": 183.075, "punctuated_word": "interface.", "speaker": 0, "speaker_confidence": 0.9946289, "start": 182.575, "word": "interface" }, { "confidence": 0.98095703, "end": 183.73, "punctuated_word": "Popular", "speaker": 0, "speaker_confidence": 0.9946289, "start": 183.33, "word": "popular" }, { "confidence": 0.9760742, "end": 183.97, "punctuated_word": "UI", "speaker": 0, "speaker_confidence": 0.9946289, "start": 183.73, "word": "ui" }, { "confidence": 0.98828125, "end": 184.37, "punctuated_word": "options", "speaker": 0, "speaker_confidence": 0.9946289, "start": 183.97, "word": "options" }, { "confidence": 0.9770508, "end": 184.77, "punctuated_word": "include", "speaker": 0, "speaker_confidence": 0.9946289, "start": 184.37, "word": "include" }, { "confidence": 0.7949219, "end": 185.27, "punctuated_word": "GNOME,", "speaker": 0, "speaker_confidence": 0.9946289, "start": 184.77, "word": "gnome" }, { "confidence": 0.80009764, "end": 185.83, "punctuated_word": "kdePlasma,", "speaker": 0, "speaker_confidence": 0.9946289, "start": 185.33, "word": "kdeplasma" }, { "confidence": 0.89697266, "end": 187.17, "punctuated_word": "mate,", "speaker": 0, "speaker_confidence": 0.9946289, "start": 186.69, "word": "mate" }, { "confidence": 0.7885742, "end": 187.67, "punctuated_word": "cinnamon,", "speaker": 0, "speaker_confidence": 0.9946289, "start": 187.17, "word": "cinnamon" }, { "confidence": 1, "end": 187.97, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9946289, "start": 187.73, "word": "and" }, { "confidence": 0.99316406, "end": 188.05, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9946289, "start": 187.97, "word": "a" }, { "confidence": 1, "end": 188.29, "punctuated_word": "bunch", "speaker": 0, "speaker_confidence": 0.9946289, "start": 188.05, "word": "bunch" }, { "confidence": 0.9970703, "end": 188.37, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8544922, "start": 188.29, "word": "of" }, { "confidence": 0.9995117, "end": 188.85, "punctuated_word": "others.", "speaker": 0, "speaker_confidence": 0.8544922, "start": 188.37, "word": "others" }, { "confidence": 0.9975586, "end": 189.17, "punctuated_word": "Today,", "speaker": 0, "speaker_confidence": 0.8544922, "start": 188.85, "word": "today" }, { "confidence": 0.9980469, "end": 189.41, "punctuated_word": "there's", "speaker": 0, "speaker_confidence": 0.8544922, "start": 189.17, "word": "there's" }, { "confidence": 0.99902344, "end": 189.73, "punctuated_word": "nearly", "speaker": 0, "speaker_confidence": 0.8544922, "start": 189.41, "word": "nearly" }, { "confidence": 0.9902344, "end": 189.97, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8544922, "start": 189.73, "word": "a" }, { "confidence": 0.59375, "end": 190.29, "punctuated_word": "1000", "speaker": 0, "speaker_confidence": 0.8544922, "start": 189.97, "word": "1000" }, { "confidence": 0.9980469, "end": 190.61, "punctuated_word": "different", "speaker": 0, "speaker_confidence": 0.8544922, "start": 190.29, "word": "different" }, { "confidence": 0.9970703, "end": 191.01, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 0.8544922, "start": 190.61, "word": "linux" }, { "confidence": 0.9875488, "end": 191.41, "punctuated_word": "distros", "speaker": 0, "speaker_confidence": 0.8544922, "start": 191.01, "word": "distros" }, { "confidence": 0.99902344, "end": 191.57, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.8544922, "start": 191.41, "word": "out" }, { "confidence": 0.7770996, "end": 191.915, "punctuated_word": "there,", "speaker": 0, "speaker_confidence": 0.8544922, "start": 191.57, "word": "there" }, { "confidence": 0.58691406, "end": 192.075, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8544922, "start": 191.915, "word": "and" }, { "confidence": 0.9975586, "end": 192.235, "punctuated_word": "they've", "speaker": 0, "speaker_confidence": 0.8544922, "start": 192.075, "word": "they've" }, { "confidence": 0.99902344, "end": 192.39499, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.8544922, "start": 192.235, "word": "all" }, { "confidence": 0.99902344, "end": 192.555, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.8544922, "start": 192.39499, "word": "been" }, { "confidence": 0.9980469, "end": 193.03499, "punctuated_word": "customized", "speaker": 0, "speaker_confidence": 0.8544922, "start": 192.555, "word": "customized" }, { "confidence": 0.99902344, "end": 193.19499, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8544922, "start": 193.03499, "word": "to" }, { "confidence": 1, "end": 193.515, "punctuated_word": "serve", "speaker": 0, "speaker_confidence": 0.8544922, "start": 193.19499, "word": "serve" }, { "confidence": 1, "end": 193.83499, "punctuated_word": "different", "speaker": 0, "speaker_confidence": 0.8544922, "start": 193.515, "word": "different" }, { "confidence": 0.99560547, "end": 194.33499, "punctuated_word": "purposes.", "speaker": 0, "speaker_confidence": 0.8544922, "start": 193.83499, "word": "purposes" }, { "confidence": 0.99316406, "end": 194.795, "punctuated_word": "Some", "speaker": 0, "speaker_confidence": 0.8544922, "start": 194.555, "word": "some" }, { "confidence": 0.99609375, "end": 194.875, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8544922, "start": 194.795, "word": "of" }, { "confidence": 0.9970703, "end": 195.11499, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.8544922, "start": 194.875, "word": "them" }, { "confidence": 0.9863281, "end": 195.275, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.8544922, "start": 195.11499, "word": "are" }, { "confidence": 0.9970703, "end": 195.59499, "punctuated_word": "designed", "speaker": 0, "speaker_confidence": 0.8544922, "start": 195.275, "word": "designed" }, { "confidence": 0.9951172, "end": 195.915, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.8544922, "start": 195.59499, "word": "for" }, { "confidence": 0.9819336, "end": 196.39499, "punctuated_word": "enterprise", "speaker": 0, "speaker_confidence": 0.8544922, "start": 195.915, "word": "enterprise" }, { "confidence": 0.86450195, "end": 196.795, "punctuated_word": "users,", "speaker": 0, "speaker_confidence": 0.8544922, "start": 196.39499, "word": "users" }, { "confidence": 0.9902344, "end": 197.03499, "punctuated_word": "while", "speaker": 0, "speaker_confidence": 0.8544922, "start": 196.795, "word": "while" }, { "confidence": 0.99609375, "end": 197.355, "punctuated_word": "others", "speaker": 0, "speaker_confidence": 0.8544922, "start": 197.03499, "word": "others" }, { "confidence": 0.98291016, "end": 197.59499, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.8544922, "start": 197.355, "word": "are" }, { "confidence": 0.98828125, "end": 197.83499, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.8544922, "start": 197.59499, "word": "for" }, { "confidence": 0.9873047, "end": 198.075, "punctuated_word": "home", "speaker": 0, "speaker_confidence": 0.8544922, "start": 197.83499, "word": "home" }, { "confidence": 0.9543457, "end": 198.575, "punctuated_word": "users.", "speaker": 0, "speaker_confidence": 0.8544922, "start": 198.075, "word": "users" }, { "confidence": 0.8886719, "end": 199.05, "punctuated_word": "Some", "speaker": 0, "speaker_confidence": 0.8544922, "start": 198.715, "word": "some" }, { "confidence": 0.9230957, "end": 199.37001, "punctuated_word": "distros", "speaker": 0, "speaker_confidence": 0.8544922, "start": 199.13, "word": "distros" }, { "confidence": 0.99902344, "end": 199.53, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.8544922, "start": 199.37001, "word": "only" }, { "confidence": 0.9980469, "end": 199.77, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.8544922, "start": 199.53, "word": "run" }, { "confidence": 0.99902344, "end": 199.93001, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8544922, "start": 199.77, "word": "on" }, { "confidence": 0.9230957, "end": 200.41, "punctuated_word": "servers,", "speaker": 0, "speaker_confidence": 0.8544922, "start": 199.93001, "word": "servers" }, { "confidence": 1, "end": 200.65001, "punctuated_word": "while", "speaker": 0, "speaker_confidence": 0.8544922, "start": 200.41, "word": "while" }, { "confidence": 0.99902344, "end": 200.97, "punctuated_word": "others", "speaker": 0, "speaker_confidence": 0.8544922, "start": 200.65001, "word": "others" }, { "confidence": 1, "end": 201.13, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.8544922, "start": 200.97, "word": "are" }, { "confidence": 0.9980469, "end": 201.45, "punctuated_word": "designed", "speaker": 0, "speaker_confidence": 0.8544922, "start": 201.13, "word": "designed" }, { "confidence": 0.99902344, "end": 201.77, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.8544922, "start": 201.45, "word": "for" }, { "confidence": 0.99316406, "end": 202.27, "punctuated_word": "desktop,", "speaker": 0, "speaker_confidence": 0.8544922, "start": 201.77, "word": "desktop" }, { "confidence": 0.97680664, "end": 202.73, "punctuated_word": "mobile,", "speaker": 0, "speaker_confidence": 0.8544922, "start": 202.41, "word": "mobile" }, { "confidence": 1, "end": 202.97, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8544922, "start": 202.73, "word": "and" }, { "confidence": 0.9980469, "end": 203.37, "punctuated_word": "embedded", "speaker": 0, "speaker_confidence": 0.8544922, "start": 202.97, "word": "embedded" }, { "confidence": 0.8515625, "end": 203.87, "punctuated_word": "devices.", "speaker": 0, "speaker_confidence": 0.8544922, "start": 203.37, "word": "devices" }, { "confidence": 0.99316406, "end": 204.17, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.8544922, "start": 204.01001, "word": "and" }, { "confidence": 0.7114258, "end": 204.49, "punctuated_word": "each", "speaker": 0, "speaker_confidence": 0.8544922, "start": 204.17, "word": "each" }, { "confidence": 0.99902344, "end": 204.89, "punctuated_word": "distro", "speaker": 0, "speaker_confidence": 0.8544922, "start": 204.49, "word": "distro" }, { "confidence": 1, "end": 205.05, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8544922, "start": 204.89, "word": "is" }, { "confidence": 0.99316406, "end": 205.37, "punctuated_word": "usually", "speaker": 0, "speaker_confidence": 0.8544922, "start": 205.05, "word": "usually" }, { "confidence": 0.9941406, "end": 205.69, "punctuated_word": "backed", "speaker": 0, "speaker_confidence": 0.8544922, "start": 205.37, "word": "backed" }, { "confidence": 1, "end": 205.85, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.8544922, "start": 205.69, "word": "by" }, { "confidence": 0.99902344, "end": 205.93001, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7402344, "start": 205.85, "word": "a" }, { "confidence": 1, "end": 206.41, "punctuated_word": "community", "speaker": 0, "speaker_confidence": 0.7402344, "start": 205.93001, "word": "community" }, { "confidence": 0.9980469, "end": 206.57, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7402344, "start": 206.41, "word": "that" }, { "confidence": 0.99902344, "end": 206.81, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.7402344, "start": 206.57, "word": "has" }, { "confidence": 0.98291016, "end": 206.97, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.7402344, "start": 206.81, "word": "its" }, { "confidence": 0.99609375, "end": 207.13, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 0.7402344, "start": 206.97, "word": "own" }, { "confidence": 0.99121094, "end": 207.475, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.7402344, "start": 207.13, "word": "set" }, { "confidence": 0.72265625, "end": 208.21501, "punctuated_word": "philosophical", "speaker": 0, "speaker_confidence": 0.7402344, "start": 207.71501, "word": "philosophical" }, { "confidence": 0.9970703, "end": 208.675, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7402344, "start": 208.35501, "word": "and" }, { "confidence": 0.9980469, "end": 209.155, "punctuated_word": "technical", "speaker": 0, "speaker_confidence": 0.7402344, "start": 208.675, "word": "technical" }, { "confidence": 0.99902344, "end": 209.655, "punctuated_word": "opinions.", "speaker": 0, "speaker_confidence": 0.7402344, "start": 209.155, "word": "opinions" }, { "confidence": 0.99902344, "end": 210.115, "punctuated_word": "Most", "speaker": 0, "speaker_confidence": 0.7402344, "start": 209.79501, "word": "most" }, { "confidence": 0.99902344, "end": 210.195, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7402344, "start": 210.115, "word": "of" }, { "confidence": 0.99609375, "end": 210.35501, "punctuated_word": "these", "speaker": 0, "speaker_confidence": 0.75439453, "start": 210.195, "word": "these" }, { "confidence": 0.99902344, "end": 210.675, "punctuated_word": "older", "speaker": 0, "speaker_confidence": 0.75439453, "start": 210.35501, "word": "older" }, { "confidence": 0.9941406, "end": 211.155, "punctuated_word": "distros", "speaker": 0, "speaker_confidence": 0.75439453, "start": 210.675, "word": "distros" }, { "confidence": 0.9980469, "end": 211.315, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.75439453, "start": 211.155, "word": "are" }, { "confidence": 0.99902344, "end": 211.475, "punctuated_word": "no", "speaker": 0, "speaker_confidence": 0.75439453, "start": 211.315, "word": "no" }, { "confidence": 1, "end": 211.79501, "punctuated_word": "longer", "speaker": 0, "speaker_confidence": 0.75439453, "start": 211.475, "word": "longer" }, { "confidence": 0.9980469, "end": 212.29501, "punctuated_word": "maintained", "speaker": 0, "speaker_confidence": 0.75439453, "start": 211.79501, "word": "maintained" }, { "confidence": 0.9614258, "end": 212.515, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.75439453, "start": 212.35501, "word": "and" }, { "confidence": 0.9921875, "end": 212.755, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.75439453, "start": 212.515, "word": "just" }, { "confidence": 0.99609375, "end": 213.235, "punctuated_word": "considered", "speaker": 0, "speaker_confidence": 0.75439453, "start": 212.755, "word": "considered" }, { "confidence": 0.9980469, "end": 213.735, "punctuated_word": "historical", "speaker": 0, "speaker_confidence": 0.75439453, "start": 213.235, "word": "historical" }, { "confidence": 0.9980469, "end": 214.375, "punctuated_word": "artifacts.", "speaker": 0, "speaker_confidence": 0.75439453, "start": 213.875, "word": "artifacts" }, { "confidence": 0.9580078, "end": 214.755, "punctuated_word": "One", "speaker": 0, "speaker_confidence": 0.75439453, "start": 214.515, "word": "one" }, { "confidence": 0.9970703, "end": 215.235, "punctuated_word": "exception", "speaker": 0, "speaker_confidence": 0.75439453, "start": 214.755, "word": "exception" }, { "confidence": 0.9921875, "end": 215.475, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.75439453, "start": 215.235, "word": "is" }, { "confidence": 0.9534505, "end": 215.975, "punctuated_word": "Slackware.", "speaker": 0, "speaker_confidence": 0.75439453, "start": 215.475, "word": "slackware" }, { "confidence": 0.9580078, "end": 216.35501, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.9013672, "start": 216.195, "word": "it" }, { "confidence": 0.9604492, "end": 216.515, "punctuated_word": "had", "speaker": 0, "speaker_confidence": 0.9013672, "start": 216.35501, "word": "had" }, { "confidence": 0.85839844, "end": 216.595, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9013672, "start": 216.515, "word": "a" }, { "confidence": 0.9428711, "end": 217.095, "punctuated_word": "release", "speaker": 0, "speaker_confidence": 0.9013672, "start": 216.595, "word": "release" }, { "confidence": 0.97998047, "end": 217.65, "punctuated_word": "recently", "speaker": 0, "speaker_confidence": 0.9013672, "start": 217.33, "word": "recently" }, { "confidence": 0.9863281, "end": 217.73, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.9013672, "start": 217.65, "word": "as" }, { "confidence": 0.7614746, "end": 218.23, "punctuated_word": "2016,", "speaker": 0, "speaker_confidence": 0.9013672, "start": 217.73, "word": "2016" }, { "confidence": 0.99902344, "end": 218.93, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9013672, "start": 218.69, "word": "and" }, { "confidence": 0.9921875, "end": 219.01, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.9013672, "start": 218.93, "word": "has" }, { "confidence": 0.9970703, "end": 219.33, "punctuated_word": "spawned", "speaker": 0, "speaker_confidence": 0.9013672, "start": 219.01, "word": "spawned" }, { "confidence": 1, "end": 219.49, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9013672, "start": 219.33, "word": "a" }, { "confidence": 1, "end": 219.73, "punctuated_word": "bunch", "speaker": 0, "speaker_confidence": 0.9013672, "start": 219.49, "word": "bunch" }, { "confidence": 0.99902344, "end": 219.81, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9013672, "start": 219.73, "word": "of" }, { "confidence": 0.9941406, "end": 220.21, "punctuated_word": "different", "speaker": 0, "speaker_confidence": 0.9013672, "start": 219.81, "word": "different" }, { "confidence": 0.99658203, "end": 220.71, "punctuated_word": "variations.", "speaker": 0, "speaker_confidence": 0.9013672, "start": 220.21, "word": "variations" }, { "confidence": 0.99609375, "end": 221.17, "punctuated_word": "Most", "speaker": 0, "speaker_confidence": 0.9013672, "start": 220.93, "word": "most" }, { "confidence": 0.99121094, "end": 221.57, "punctuated_word": "notably,", "speaker": 0, "speaker_confidence": 0.9013672, "start": 221.17, "word": "notably" }, { "confidence": 0.99902344, "end": 221.73, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.9013672, "start": 221.57, "word": "it" }, { "confidence": 0.97314453, "end": 221.97, "punctuated_word": "led", "speaker": 0, "speaker_confidence": 0.9013672, "start": 221.73, "word": "led" }, { "confidence": 0.99902344, "end": 222.05, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9013672, "start": 221.97, "word": "to" }, { "confidence": 0.9760742, "end": 222.29, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9013672, "start": 222.05, "word": "the" }, { "confidence": 0.6113281, "end": 222.79, "punctuated_word": "OpenSUSE", "speaker": 0, "speaker_confidence": 0.9013672, "start": 222.29, "word": "opensuse" }, { "confidence": 0.97143555, "end": 223.41, "punctuated_word": "project,", "speaker": 0, "speaker_confidence": 0.9013672, "start": 223.01, "word": "project" }, { "confidence": 0.9980469, "end": 223.65, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.9013672, "start": 223.41, "word": "which" }, { "confidence": 0.99902344, "end": 223.97, "punctuated_word": "remains", "speaker": 0, "speaker_confidence": 0.9013672, "start": 223.65, "word": "remains" }, { "confidence": 0.99316406, "end": 224.13, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9013672, "start": 223.97, "word": "a" }, { "confidence": 0.9980469, "end": 224.37, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 0.9013672, "start": 224.13, "word": "very" }, { "confidence": 0.99902344, "end": 224.77, "punctuated_word": "popular", "speaker": 0, "speaker_confidence": 0.9013672, "start": 224.37, "word": "popular" }, { "confidence": 0.97265625, "end": 225.17, "punctuated_word": "general", "speaker": 0, "speaker_confidence": 0.9013672, "start": 224.77, "word": "general" }, { "confidence": 0.9941406, "end": 225.49, "punctuated_word": "purpose", "speaker": 0, "speaker_confidence": 0.9013672, "start": 225.17, "word": "purpose" }, { "confidence": 0.8178711, "end": 225.97, "punctuated_word": "distro,", "speaker": 0, "speaker_confidence": 0.9013672, "start": 225.49, "word": "distro" }, { "confidence": 0.9770508, "end": 226.13, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9013672, "start": 225.97, "word": "and" }, { "confidence": 0.9633789, "end": 226.37, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9013672, "start": 226.13, "word": "is" }, { "confidence": 0.9873047, "end": 226.61, "punctuated_word": "usually", "speaker": 0, "speaker_confidence": 0.9013672, "start": 226.37, "word": "usually" }, { "confidence": 0.73876953, "end": 227.085, "punctuated_word": "associated", "speaker": 0, "speaker_confidence": 0.9013672, "start": 226.61, "word": "associated" }, { "confidence": 0.59765625, "end": 227.24501, "punctuated_word": "did", "speaker": 0, "speaker_confidence": 0.9013672, "start": 227.16501, "word": "did" }, { "confidence": 0.9658203, "end": 227.485, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.9013672, "start": 227.24501, "word": "with" }, { "confidence": 0.9941406, "end": 227.96501, "punctuated_word": "professional", "speaker": 0, "speaker_confidence": 0.9013672, "start": 227.485, "word": "professional" }, { "confidence": 1, "end": 228.285, "punctuated_word": "power", "speaker": 0, "speaker_confidence": 0.9013672, "start": 227.96501, "word": "power" }, { "confidence": 0.77246094, "end": 228.785, "punctuated_word": "users.", "speaker": 0, "speaker_confidence": 0.9013672, "start": 228.285, "word": "users" }, { "confidence": 0.9980469, "end": 229.16501, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.6953125, "start": 228.925, "word": "but" }, { "confidence": 0.9838867, "end": 229.24501, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6953125, "start": 229.16501, "word": "the" }, { "confidence": 1, "end": 229.485, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 0.6953125, "start": 229.24501, "word": "most" }, { "confidence": 1, "end": 229.96501, "punctuated_word": "significant", "speaker": 0, "speaker_confidence": 0.6953125, "start": 229.485, "word": "significant" }, { "confidence": 0.98999023, "end": 230.365, "punctuated_word": "distro", "speaker": 0, "speaker_confidence": 0.6953125, "start": 229.96501, "word": "distro" }, { "confidence": 1, "end": 230.445, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6953125, "start": 230.365, "word": "to" }, { "confidence": 1, "end": 230.60501, "punctuated_word": "come", "speaker": 0, "speaker_confidence": 0.6953125, "start": 230.445, "word": "come" }, { "confidence": 1, "end": 230.765, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.6953125, "start": 230.60501, "word": "out" }, { "confidence": 1, "end": 231.005, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.6953125, "start": 230.765, "word": "of" }, { "confidence": 0.91845703, "end": 231.505, "punctuated_word": "1993", "speaker": 0, "speaker_confidence": 0.6953125, "start": 231.005, "word": "1993" }, { "confidence": 0.9941406, "end": 232.125, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.6953125, "start": 231.80501, "word": "was" }, { "confidence": 0.9038086, "end": 232.625, "punctuated_word": "Debian.", "speaker": 0, "speaker_confidence": 0.6953125, "start": 232.125, "word": "debian" }, { "confidence": 0.9980469, "end": 232.845, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.6279297, "start": 232.765, "word": "it" }, { "confidence": 1, "end": 233.085, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.6279297, "start": 232.845, "word": "was" }, { "confidence": 0.99609375, "end": 233.565, "punctuated_word": "established", "speaker": 0, "speaker_confidence": 0.6279297, "start": 233.085, "word": "established" }, { "confidence": 1, "end": 233.88501, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.6279297, "start": 233.565, "word": "by" }, { "confidence": 0.8925781, "end": 234.04501, "punctuated_word": "Ian", "speaker": 0, "speaker_confidence": 0.6279297, "start": 233.88501, "word": "ian" }, { "confidence": 0.92163086, "end": 234.54501, "punctuated_word": "Murdoch,", "speaker": 0, "speaker_confidence": 0.6279297, "start": 234.04501, "word": "murdoch" }, { "confidence": 0.90771484, "end": 234.74, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6279297, "start": 234.58, "word": "and" }, { "confidence": 0.9165039, "end": 234.98, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.6279297, "start": 234.74, "word": "its" }, { "confidence": 1, "end": 235.06, "punctuated_word": "name", "speaker": 0, "speaker_confidence": 0.8828125, "start": 234.98, "word": "name" }, { "confidence": 0.99902344, "end": 235.38, "punctuated_word": "comes", "speaker": 0, "speaker_confidence": 0.8828125, "start": 235.06, "word": "comes" }, { "confidence": 0.99902344, "end": 235.62, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.8828125, "start": 235.38, "word": "from" }, { "confidence": 1, "end": 235.86, "punctuated_word": "his", "speaker": 0, "speaker_confidence": 0.8828125, "start": 235.62, "word": "his" }, { "confidence": 1, "end": 236.1, "punctuated_word": "name", "speaker": 0, "speaker_confidence": 0.8828125, "start": 235.86, "word": "name" }, { "confidence": 0.98291016, "end": 236.5, "punctuated_word": "combined", "speaker": 0, "speaker_confidence": 0.8828125, "start": 236.1, "word": "combined" }, { "confidence": 1, "end": 236.66, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.8828125, "start": 236.5, "word": "with" }, { "confidence": 1, "end": 236.90001, "punctuated_word": "his", "speaker": 0, "speaker_confidence": 0.8828125, "start": 236.66, "word": "his" }, { "confidence": 0.9980469, "end": 237.22, "punctuated_word": "ex", "speaker": 0, "speaker_confidence": 0.8828125, "start": 236.90001, "word": "ex" }, { "confidence": 0.9995117, "end": 237.46, "punctuated_word": "wife's", "speaker": 0, "speaker_confidence": 0.8828125, "start": 237.22, "word": "wife's" }, { "confidence": 0.7463379, "end": 237.78, "punctuated_word": "name.", "speaker": 0, "speaker_confidence": 0.8828125, "start": 237.46, "word": "name" }, { "confidence": 0.9863281, "end": 237.94, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.8828125, "start": 237.78, "word": "and" }, { "confidence": 0.9614258, "end": 238.1, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.8828125, "start": 237.94, "word": "its" }, { "confidence": 0.77001953, "end": 238.34, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 0.8828125, "start": 238.1, "word": "first" }, { "confidence": 1, "end": 238.74, "punctuated_word": "official", "speaker": 0, "speaker_confidence": 0.8828125, "start": 238.34, "word": "official" }, { "confidence": 0.99902344, "end": 239.06, "punctuated_word": "release", "speaker": 0, "speaker_confidence": 0.8828125, "start": 238.74, "word": "release" }, { "confidence": 1, "end": 239.3, "punctuated_word": "came", "speaker": 0, "speaker_confidence": 0.8828125, "start": 239.06, "word": "came" }, { "confidence": 1, "end": 239.54001, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8828125, "start": 239.3, "word": "in" }, { "confidence": 0.9892578, "end": 240.04001, "punctuated_word": "1996", "speaker": 0, "speaker_confidence": 0.8828125, "start": 239.54001, "word": "1996" }, { "confidence": 0.94628906, "end": 240.66, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.8828125, "start": 240.42, "word": "as" }, { "confidence": 0.9941406, "end": 241.06, "punctuated_word": "version", "speaker": 0, "speaker_confidence": 0.8828125, "start": 240.66, "word": "version" }, { "confidence": 0.87109375, "end": 241.56, "punctuated_word": "1.1", "speaker": 0, "speaker_confidence": 0.8828125, "start": 241.06, "word": "1.1" }, { "confidence": 0.7347005, "end": 242.36, "punctuated_word": "buzzed.", "speaker": 0, "speaker_confidence": 0.8828125, "start": 241.86, "word": "buzzed" }, { "confidence": 0.9980469, "end": 242.66, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.8828125, "start": 242.42, "word": "and" }, { "confidence": 0.9140625, "end": 242.9, "punctuated_word": "since", "speaker": 0, "speaker_confidence": 0.8828125, "start": 242.66, "word": "since" }, { "confidence": 0.9848633, "end": 243.3, "punctuated_word": "then,", "speaker": 0, "speaker_confidence": 0.8828125, "start": 242.9, "word": "then" }, { "confidence": 1, "end": 243.46, "punctuated_word": "each", "speaker": 0, "speaker_confidence": 0.8828125, "start": 243.3, "word": "each" }, { "confidence": 0.99902344, "end": 243.86, "punctuated_word": "release", "speaker": 0, "speaker_confidence": 0.8828125, "start": 243.46, "word": "release" }, { "confidence": 0.9980469, "end": 244.26, "punctuated_word": "contains", "speaker": 0, "speaker_confidence": 0.8828125, "start": 243.86, "word": "contains" }, { "confidence": 0.89746094, "end": 244.565, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8828125, "start": 244.26, "word": "a" }, { "confidence": 0.79125977, "end": 244.965, "punctuated_word": "codename", "speaker": 0, "speaker_confidence": 0.8828125, "start": 244.565, "word": "codename" }, { "confidence": 0.99902344, "end": 245.045, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.8828125, "start": 244.965, "word": "with" }, { "confidence": 0.9980469, "end": 245.285, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8828125, "start": 245.045, "word": "a" }, { "confidence": 0.9614258, "end": 245.52501, "punctuated_word": "Toy", "speaker": 0, "speaker_confidence": 0.8828125, "start": 245.285, "word": "toy" }, { "confidence": 0.99609375, "end": 245.845, "punctuated_word": "Story", "speaker": 0, "speaker_confidence": 0.8828125, "start": 245.52501, "word": "story" }, { "confidence": 0.99658203, "end": 246.345, "punctuated_word": "character.", "speaker": 0, "speaker_confidence": 0.8828125, "start": 245.845, "word": "character" }, { "confidence": 0.99902344, "end": 246.565, "punctuated_word": "A", "speaker": 0, "speaker_confidence": 0.90966797, "start": 246.485, "word": "a" }, { "confidence": 1, "end": 246.80501, "punctuated_word": "few", "speaker": 0, "speaker_confidence": 0.90966797, "start": 246.565, "word": "few" }, { "confidence": 1, "end": 246.965, "punctuated_word": "years", "speaker": 0, "speaker_confidence": 0.90966797, "start": 246.80501, "word": "years" }, { "confidence": 0.99560547, "end": 247.445, "punctuated_word": "later,", "speaker": 0, "speaker_confidence": 0.90966797, "start": 246.965, "word": "later" }, { "confidence": 0.99902344, "end": 247.52501, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.90966797, "start": 247.445, "word": "it" }, { "confidence": 0.98828125, "end": 247.765, "punctuated_word": "led", "speaker": 0, "speaker_confidence": 0.90966797, "start": 247.52501, "word": "led" }, { "confidence": 0.99902344, "end": 247.925, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.90966797, "start": 247.765, "word": "to" }, { "confidence": 1, "end": 248.005, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.90966797, "start": 247.925, "word": "the" }, { "confidence": 1, "end": 248.505, "punctuated_word": "creation", "speaker": 0, "speaker_confidence": 0.90966797, "start": 248.005, "word": "creation" }, { "confidence": 0.99902344, "end": 248.965, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.90966797, "start": 248.565, "word": "of" }, { "confidence": 0.5395508, "end": 249.445, "punctuated_word": "Advanced", "speaker": 0, "speaker_confidence": 0.90966797, "start": 248.965, "word": "advanced" }, { "confidence": 0.95410156, "end": 249.845, "punctuated_word": "Package", "speaker": 0, "speaker_confidence": 0.90966797, "start": 249.445, "word": "package" }, { "confidence": 0.93603516, "end": 250.325, "punctuated_word": "Tool", "speaker": 0, "speaker_confidence": 0.90966797, "start": 249.845, "word": "tool" }, { "confidence": 0.85546875, "end": 250.565, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.90966797, "start": 250.325, "word": "or" }, { "confidence": 0.89453125, "end": 251.065, "punctuated_word": "APT,", "speaker": 0, "speaker_confidence": 0.90966797, "start": 250.565, "word": "apt" }, { "confidence": 0.99902344, "end": 251.52501, "punctuated_word": "although", "speaker": 0, "speaker_confidence": 0.90966797, "start": 251.285, "word": "although" }, { "confidence": 0.81591797, "end": 251.605, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.90966797, "start": 251.52501, "word": "it" }, { "confidence": 1, "end": 251.845, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.90966797, "start": 251.605, "word": "was" }, { "confidence": 0.99902344, "end": 252.245, "punctuated_word": "originally", "speaker": 0, "speaker_confidence": 0.90966797, "start": 251.845, "word": "originally" }, { "confidence": 0.99902344, "end": 252.645, "punctuated_word": "developed", "speaker": 0, "speaker_confidence": 0.90966797, "start": 252.245, "word": "developed" }, { "confidence": 1, "end": 252.88501, "punctuated_word": "under", "speaker": 0, "speaker_confidence": 0.90966797, "start": 252.645, "word": "under" }, { "confidence": 0.9970703, "end": 252.965, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.90966797, "start": 252.88501, "word": "the" }, { "confidence": 0.96191406, "end": 253.465, "punctuated_word": "codename", "speaker": 0, "speaker_confidence": 0.90966797, "start": 252.965, "word": "codename" }, { "confidence": 0.78125, "end": 254.02501, "punctuated_word": "deity.", "speaker": 0, "speaker_confidence": 0.90966797, "start": 253.52501, "word": "deity" }, { "confidence": 0.51904297, "end": 254.31, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.90966797, "start": 254.16501, "word": "the" }, { "confidence": 0.9921875, "end": 254.47, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.90966797, "start": 254.39, "word": "the" }, { "confidence": 0.8173828, "end": 254.70999, "punctuated_word": "Debian", "speaker": 0, "speaker_confidence": 0.90966797, "start": 254.47, "word": "debian" }, { "confidence": 0.9863281, "end": 255.11, "punctuated_word": "community", "speaker": 0, "speaker_confidence": 0.90966797, "start": 254.70999, "word": "community" }, { "confidence": 0.9970703, "end": 255.27, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.90966797, "start": 255.11, "word": "is" }, { "confidence": 1, "end": 255.59, "punctuated_word": "huge", "speaker": 0, "speaker_confidence": 0.90966797, "start": 255.27, "word": "huge" }, { "confidence": 0.58935547, "end": 255.83, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.90966797, "start": 255.59, "word": "and" }, { "confidence": 0.9951172, "end": 255.98999, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.90966797, "start": 255.83, "word": "it's" }, { "confidence": 0.9970703, "end": 256.07, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.90966797, "start": 255.98999, "word": "a" }, { "confidence": 1, "end": 256.31, "punctuated_word": "great", "speaker": 0, "speaker_confidence": 0.90966797, "start": 256.07, "word": "great" }, { "confidence": 0.9970703, "end": 256.71, "punctuated_word": "distro", "speaker": 0, "speaker_confidence": 0.90966797, "start": 256.31, "word": "distro" }, { "confidence": 0.99902344, "end": 257.11, "punctuated_word": "today", "speaker": 0, "speaker_confidence": 0.90966797, "start": 256.71, "word": "today" }, { "confidence": 0.97265625, "end": 257.35, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.90966797, "start": 257.11, "word": "and" }, { "confidence": 1, "end": 257.59, "punctuated_word": "very", "speaker": 0, "speaker_confidence": 0.90966797, "start": 257.35, "word": "very" }, { "confidence": 1, "end": 258.07, "punctuated_word": "popular", "speaker": 0, "speaker_confidence": 0.90966797, "start": 257.59, "word": "popular" }, { "confidence": 1, "end": 258.23, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.90966797, "start": 258.07, "word": "on" }, { "confidence": 0.9694824, "end": 258.73, "punctuated_word": "servers,", "speaker": 0, "speaker_confidence": 0.90966797, "start": 258.23, "word": "servers" }, { "confidence": 1, "end": 259.11, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.90966797, "start": 258.95, "word": "but" }, { "confidence": 0.99121094, "end": 259.27, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.90966797, "start": 259.11, "word": "can" }, { "confidence": 0.99902344, "end": 259.51, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.90966797, "start": 259.27, "word": "also" }, { "confidence": 1, "end": 259.59, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.90966797, "start": 259.51, "word": "be" }, { "confidence": 1, "end": 259.83, "punctuated_word": "used", "speaker": 0, "speaker_confidence": 0.90966797, "start": 259.59, "word": "used" }, { "confidence": 1, "end": 260.07, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.90966797, "start": 259.83, "word": "as" }, { "confidence": 0.99902344, "end": 260.23, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.90966797, "start": 260.07, "word": "a" }, { "confidence": 1, "end": 260.47, "punctuated_word": "general", "speaker": 0, "speaker_confidence": 0.90966797, "start": 260.23, "word": "general" }, { "confidence": 1, "end": 260.87, "punctuated_word": "purpose", "speaker": 0, "speaker_confidence": 0.90966797, "start": 260.47, "word": "purpose" }, { "confidence": 0.9983724, "end": 261.325, "punctuated_word": "distro.", "speaker": 0, "speaker_confidence": 0.90966797, "start": 260.87, "word": "distro" }, { "confidence": 0.96118164, "end": 261.80502, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.90966797, "start": 261.48502, "word": "it's" }, { "confidence": 0.99902344, "end": 262.20502, "punctuated_word": "minimal", "speaker": 0, "speaker_confidence": 0.90966797, "start": 261.80502, "word": "minimal" }, { "confidence": 0.99609375, "end": 262.445, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.90966797, "start": 262.20502, "word": "and" }, { "confidence": 0.96069336, "end": 262.92502, "punctuated_word": "stable,", "speaker": 0, "speaker_confidence": 0.90966797, "start": 262.445, "word": "stable" }, { "confidence": 1, "end": 263.165, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.90966797, "start": 262.92502, "word": "which" }, { "confidence": 0.9980469, "end": 263.325, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.90966797, "start": 263.165, "word": "are" }, { "confidence": 0.99902344, "end": 263.64502, "punctuated_word": "traits", "speaker": 0, "speaker_confidence": 0.90966797, "start": 263.325, "word": "traits" }, { "confidence": 1, "end": 263.80502, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.90966797, "start": 263.64502, "word": "that" }, { "confidence": 0.98828125, "end": 263.885, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.90966797, "start": 263.80502, "word": "have" }, { "confidence": 1, "end": 264.125, "punctuated_word": "allowed", "speaker": 0, "speaker_confidence": 0.90966797, "start": 263.885, "word": "allowed" }, { "confidence": 0.9863281, "end": 264.285, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.90966797, "start": 264.125, "word": "it" }, { "confidence": 1, "end": 264.445, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.90966797, "start": 264.285, "word": "to" }, { "confidence": 0.9589844, "end": 264.845, "punctuated_word": "father", "speaker": 0, "speaker_confidence": 0.90966797, "start": 264.445, "word": "father" }, { "confidence": 0.9970703, "end": 265.08502, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.90966797, "start": 264.845, "word": "a" }, { "confidence": 1, "end": 265.325, "punctuated_word": "huge", "speaker": 0, "speaker_confidence": 0.90966797, "start": 265.08502, "word": "huge" }, { "confidence": 1, "end": 265.64502, "punctuated_word": "number", "speaker": 0, "speaker_confidence": 0.90966797, "start": 265.325, "word": "number" }, { "confidence": 0.9970703, "end": 266.045, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.90966797, "start": 265.64502, "word": "of" }, { "confidence": 0.9902344, "end": 266.445, "punctuated_word": "offspring", "speaker": 0, "speaker_confidence": 0.90966797, "start": 266.045, "word": "offspring" }, { "confidence": 0.9848633, "end": 266.945, "punctuated_word": "distros.", "speaker": 0, "speaker_confidence": 0.90966797, "start": 266.445, "word": "distros" }, { "confidence": 0.9970703, "end": 267.24503, "punctuated_word": "Some", "speaker": 0, "speaker_confidence": 1, "start": 267.08502, "word": "some" }, { "confidence": 0.9980469, "end": 267.325, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 267.24503, "word": "of" }, { "confidence": 0.9980469, "end": 267.48502, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 1, "start": 267.325, "word": "them" }, { "confidence": 0.98535156, "end": 267.64502, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 1, "start": 267.48502, "word": "are" }, { "confidence": 0.9902344, "end": 267.96503, "punctuated_word": "highly", "speaker": 0, "speaker_confidence": 1, "start": 267.64502, "word": "highly" }, { "confidence": 0.7080078, "end": 268.4, "punctuated_word": "specialized", "speaker": 0, "speaker_confidence": 1, "start": 267.96503, "word": "specialized" }, { "confidence": 0.8125, "end": 268.88, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 268.63998, "word": "like" }, { "confidence": 0.9291992, "end": 269.36, "punctuated_word": "Raspberry", "speaker": 0, "speaker_confidence": 1, "start": 268.88, "word": "raspberry" }, { "confidence": 0.97509766, "end": 269.68, "punctuated_word": "Pi", "speaker": 0, "speaker_confidence": 1, "start": 269.36, "word": "pi" }, { "confidence": 0.9614258, "end": 270, "punctuated_word": "OS", "speaker": 0, "speaker_confidence": 1, "start": 269.68, "word": "os" }, { "confidence": 0.84228516, "end": 270.24, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 1, "start": 270, "word": "or" }, { "confidence": 0.97314453, "end": 270.56, "punctuated_word": "Steam", "speaker": 0, "speaker_confidence": 1, "start": 270.24, "word": "steam" }, { "confidence": 0.6894531, "end": 271.06, "punctuated_word": "OS.", "speaker": 0, "speaker_confidence": 1, "start": 270.56, "word": "os" }, { "confidence": 0.7993164, "end": 271.36, "punctuated_word": "But,", "speaker": 0, "speaker_confidence": 1, "start": 271.12, "word": "but" }, { "confidence": 1, "end": 271.52, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 1, "start": 271.36, "word": "by" }, { "confidence": 0.9794922, "end": 271.75998, "punctuated_word": "far,", "speaker": 0, "speaker_confidence": 1, "start": 271.52, "word": "far" }, { "confidence": 1, "end": 271.84, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 271.75998, "word": "the" }, { "confidence": 1, "end": 272.16, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 1, "start": 271.84, "word": "most" }, { "confidence": 1, "end": 272.56, "punctuated_word": "popular", "speaker": 0, "speaker_confidence": 1, "start": 272.16, "word": "popular" }, { "confidence": 1, "end": 272.72, "punctuated_word": "child", "speaker": 0, "speaker_confidence": 1, "start": 272.56, "word": "child" }, { "confidence": 0.9980469, "end": 272.88, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 272.72, "word": "of" }, { "confidence": 0.9980469, "end": 273.38, "punctuated_word": "Debian", "speaker": 0, "speaker_confidence": 1, "start": 272.88, "word": "debian" }, { "confidence": 0.99316406, "end": 273.68, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 273.44, "word": "is" }, { "confidence": 0.99609375, "end": 274.18, "punctuated_word": "Ubuntu,", "speaker": 0, "speaker_confidence": 1, "start": 273.68, "word": "ubuntu" }, { "confidence": 1, "end": 274.63998, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 1, "start": 274.4, "word": "which" }, { "confidence": 1, "end": 274.8, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 1, "start": 274.63998, "word": "was" }, { "confidence": 0.9921875, "end": 275.04, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 1, "start": 274.8, "word": "first" }, { "confidence": 0.9980469, "end": 275.36, "punctuated_word": "released", "speaker": 0, "speaker_confidence": 1, "start": 275.04, "word": "released" }, { "confidence": 0.9970703, "end": 275.6, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 275.36, "word": "in" }, { "confidence": 0.7919922, "end": 276.1, "punctuated_word": "2004", "speaker": 0, "speaker_confidence": 1, "start": 275.6, "word": "2004" }, { "confidence": 0.7651367, "end": 276.4, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 276.16, "word": "and" }, { "confidence": 0.9428711, "end": 276.585, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 276.4, "word": "is" }, { "confidence": 0.99316406, "end": 276.905, "punctuated_word": "managed", "speaker": 0, "speaker_confidence": 1, "start": 276.66498, "word": "managed" }, { "confidence": 1, "end": 277.065, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 1, "start": 276.905, "word": "by" }, { "confidence": 0.99609375, "end": 277.225, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 277.065, "word": "a" }, { "confidence": 0.9921875, "end": 277.625, "punctuated_word": "British", "speaker": 0, "speaker_confidence": 1, "start": 277.225, "word": "british" }, { "confidence": 0.9863281, "end": 278.025, "punctuated_word": "company", "speaker": 0, "speaker_confidence": 1, "start": 277.625, "word": "company" }, { "confidence": 0.9970703, "end": 278.26498, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 1, "start": 278.025, "word": "called" }, { "confidence": 0.9067383, "end": 278.76498, "punctuated_word": "Canonical.", "speaker": 0, "speaker_confidence": 1, "start": 278.26498, "word": "canonical" }, { "confidence": 0.99902344, "end": 279.225, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 1, "start": 279.065, "word": "it" }, { "confidence": 1, "end": 279.54498, "punctuated_word": "follows", "speaker": 0, "speaker_confidence": 1, "start": 279.225, "word": "follows" }, { "confidence": 0.9970703, "end": 279.785, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 279.54498, "word": "a" }, { "confidence": 0.7963867, "end": 280.10498, "punctuated_word": "semi", "speaker": 0, "speaker_confidence": 1, "start": 279.785, "word": "semi" }, { "confidence": 0.9970703, "end": 280.425, "punctuated_word": "annual", "speaker": 0, "speaker_confidence": 1, "start": 280.10498, "word": "annual" }, { "confidence": 0.9921875, "end": 280.745, "punctuated_word": "release", "speaker": 0, "speaker_confidence": 1, "start": 280.425, "word": "release" }, { "confidence": 0.99902344, "end": 281.225, "punctuated_word": "schedule", "speaker": 0, "speaker_confidence": 1, "start": 280.745, "word": "schedule" }, { "confidence": 0.5800781, "end": 281.465, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 1, "start": 281.225, "word": "where" }, { "confidence": 1, "end": 281.625, "punctuated_word": "each", "speaker": 0, "speaker_confidence": 1, "start": 281.465, "word": "each" }, { "confidence": 1, "end": 282.10498, "punctuated_word": "release", "speaker": 0, "speaker_confidence": 1, "start": 281.625, "word": "release" }, { "confidence": 1, "end": 282.345, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 282.10498, "word": "is" }, { "confidence": 1, "end": 282.745, "punctuated_word": "named", "speaker": 0, "speaker_confidence": 1, "start": 282.345, "word": "named" }, { "confidence": 1, "end": 283.065, "punctuated_word": "after", "speaker": 0, "speaker_confidence": 1, "start": 282.745, "word": "after" }, { "confidence": 0.99902344, "end": 283.225, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 283.065, "word": "an" }, { "confidence": 1, "end": 283.725, "punctuated_word": "animal", "speaker": 0, "speaker_confidence": 1, "start": 283.225, "word": "animal" }, { "confidence": 0.8256836, "end": 283.97, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 283.81, "word": "and" }, { "confidence": 0.9921875, "end": 284.21, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 283.97, "word": "a" }, { "confidence": 1, "end": 284.29, "punctuated_word": "word", "speaker": 0, "speaker_confidence": 1, "start": 284.21, "word": "word" }, { "confidence": 1, "end": 284.53, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 284.29, "word": "with" }, { "confidence": 0.99902344, "end": 284.69, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 284.53, "word": "the" }, { "confidence": 0.99902344, "end": 284.93, "punctuated_word": "same", "speaker": 0, "speaker_confidence": 1, "start": 284.69, "word": "same" }, { "confidence": 0.8581543, "end": 285.33, "punctuated_word": "letter,", "speaker": 0, "speaker_confidence": 1, "start": 284.93, "word": "letter" }, { "confidence": 0.99902344, "end": 285.65, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 285.33, "word": "like" }, { "confidence": 0.90234375, "end": 286.13, "punctuated_word": "cosmic", "speaker": 0, "speaker_confidence": 1, "start": 285.65, "word": "cosmic" }, { "confidence": 0.99157715, "end": 286.63, "punctuated_word": "cuttlefish.", "speaker": 0, "speaker_confidence": 1, "start": 286.13, "word": "cuttlefish" }, { "confidence": 0.9995117, "end": 287.16998, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 1, "start": 286.93, "word": "it's" }, { "confidence": 1, "end": 287.65, "punctuated_word": "extremely", "speaker": 0, "speaker_confidence": 1, "start": 287.16998, "word": "extremely" }, { "confidence": 1, "end": 287.97, "punctuated_word": "beginner", "speaker": 0, "speaker_confidence": 1, "start": 287.65, "word": "beginner" }, { "confidence": 0.9980469, "end": 288.45, "punctuated_word": "friendly", "speaker": 0, "speaker_confidence": 1, "start": 287.97, "word": "friendly" }, { "confidence": 0.91503906, "end": 288.61, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 288.45, "word": "and" }, { "confidence": 0.9980469, "end": 288.77, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 1, "start": 288.61, "word": "was" }, { "confidence": 0.99609375, "end": 289.01, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 1, "start": 288.77, "word": "really" }, { "confidence": 0.99121094, "end": 289.16998, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 1, "start": 289.01, "word": "one" }, { "confidence": 1, "end": 289.25, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 289.16998, "word": "of" }, { "confidence": 0.99902344, "end": 289.33, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 289.25, "word": "the" }, { "confidence": 0.8071289, "end": 289.57, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 1, "start": 289.33, "word": "first" }, { "confidence": 0.99365234, "end": 290.07, "punctuated_word": "distros", "speaker": 0, "speaker_confidence": 1, "start": 289.57, "word": "distros" }, { "confidence": 1, "end": 290.29, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 290.13, "word": "to" }, { "confidence": 1, "end": 290.53, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 1, "start": 290.29, "word": "open" }, { "confidence": 1, "end": 290.69, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 1, "start": 290.53, "word": "up" }, { "confidence": 0.9980469, "end": 291.09, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 1, "start": 290.69, "word": "linux" }, { "confidence": 1, "end": 291.25, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 291.09, "word": "to" }, { "confidence": 1, "end": 291.41, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 291.25, "word": "the" }, { "confidence": 0.9941406, "end": 291.665, "punctuated_word": "main", "speaker": 0, "speaker_confidence": 1, "start": 291.41, "word": "main" }, { "confidence": 0.5541992, "end": 292.14502, "punctuated_word": "stream", "speaker": 0, "speaker_confidence": 1, "start": 291.745, "word": "stream" }, { "confidence": 0.45385742, "end": 292.30502, "punctuated_word": "home", "speaker": 0, "speaker_confidence": 1, "start": 292.14502, "word": "home" }, { "confidence": 0.94140625, "end": 292.785, "punctuated_word": "computer", "speaker": 0, "speaker_confidence": 1, "start": 292.30502, "word": "computer" }, { "confidence": 0.9904785, "end": 293.285, "punctuated_word": "user.", "speaker": 0, "speaker_confidence": 1, "start": 292.785, "word": "user" }, { "confidence": 1, "end": 293.42502, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 1, "start": 293.345, "word": "in" }, { "confidence": 1, "end": 293.665, "punctuated_word": "recent", "speaker": 0, "speaker_confidence": 1, "start": 293.42502, "word": "recent" }, { "confidence": 0.74975586, "end": 293.905, "punctuated_word": "years,", "speaker": 0, "speaker_confidence": 1, "start": 293.665, "word": "years" }, { "confidence": 0.99902344, "end": 294.225, "punctuated_word": "though,", "speaker": 0, "speaker_confidence": 1, "start": 293.905, "word": "though" }, { "confidence": 0.9951172, "end": 294.465, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 1, "start": 294.225, "word": "it's" }, { "confidence": 1, "end": 294.785, "punctuated_word": "received", "speaker": 0, "speaker_confidence": 1, "start": 294.465, "word": "received" }, { "confidence": 1, "end": 294.86502, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 294.785, "word": "a" }, { "confidence": 1, "end": 295.105, "punctuated_word": "lot", "speaker": 0, "speaker_confidence": 1, "start": 294.86502, "word": "lot" }, { "confidence": 0.9980469, "end": 295.185, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 295.105, "word": "of" }, { "confidence": 0.99609375, "end": 295.345, "punctuated_word": "hate", "speaker": 0, "speaker_confidence": 1, "start": 295.185, "word": "hate" }, { "confidence": 1, "end": 295.505, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 1, "start": 295.345, "word": "from" }, { "confidence": 0.99902344, "end": 295.665, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 295.505, "word": "the" }, { "confidence": 0.99902344, "end": 295.98502, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 1, "start": 295.665, "word": "linux" }, { "confidence": 0.99316406, "end": 296.465, "punctuated_word": "community", "speaker": 0, "speaker_confidence": 1, "start": 295.98502, "word": "community" }, { "confidence": 0.9819336, "end": 296.70502, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 296.465, "word": "for" }, { "confidence": 0.99902344, "end": 297.185, "punctuated_word": "releasing", "speaker": 0, "speaker_confidence": 1, "start": 296.70502, "word": "releasing" }, { "confidence": 0.9326172, "end": 297.505, "punctuated_word": "closed", "speaker": 0, "speaker_confidence": 1, "start": 297.185, "word": "closed" }, { "confidence": 0.9716797, "end": 297.745, "punctuated_word": "source", "speaker": 0, "speaker_confidence": 1, "start": 297.505, "word": "source" }, { "confidence": 0.99902344, "end": 298.245, "punctuated_word": "software", "speaker": 0, "speaker_confidence": 1, "start": 297.745, "word": "software" }, { "confidence": 0.96240234, "end": 298.545, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 298.30502, "word": "and" }, { "confidence": 0.98535156, "end": 298.86502, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 1, "start": 298.545, "word": "also" }, { "confidence": 0.97998047, "end": 299.185, "punctuated_word": "selling", "speaker": 0, "speaker_confidence": 1, "start": 298.86502, "word": "selling" }, { "confidence": 0.8618164, "end": 299.4, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 1, "start": 299.185, "word": "data" }, { "confidence": 0.30371094, "end": 299.72, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 299.4, "word": "that" }, { "confidence": 0.75927734, "end": 299.8, "punctuated_word": "2", "speaker": 0, "speaker_confidence": 1, "start": 299.72, "word": "2" }, { "confidence": 0.84228516, "end": 299.88, "punctuated_word": "third", "speaker": 0, "speaker_confidence": 1, "start": 299.8, "word": "third" }, { "confidence": 0.99902344, "end": 300.28, "punctuated_word": "party", "speaker": 0, "speaker_confidence": 1, "start": 299.88, "word": "party" }, { "confidence": 0.99609375, "end": 300.78, "punctuated_word": "companies.", "speaker": 0, "speaker_confidence": 1, "start": 300.28, "word": "companies" }, { "confidence": 0.99902344, "end": 301, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 1, "start": 300.84, "word": "in" }, { "confidence": 1, "end": 301.16, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 1, "start": 301, "word": "any" }, { "confidence": 0.9995117, "end": 301.4, "punctuated_word": "case,", "speaker": 0, "speaker_confidence": 1, "start": 301.16, "word": "case" }, { "confidence": 0.99902344, "end": 301.56, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 301.4, "word": "it" }, { "confidence": 1, "end": 301.96, "punctuated_word": "remains", "speaker": 0, "speaker_confidence": 1, "start": 301.56, "word": "remains" }, { "confidence": 1, "end": 302.44, "punctuated_word": "extremely", "speaker": 0, "speaker_confidence": 1, "start": 301.96, "word": "extremely" }, { "confidence": 0.8039551, "end": 302.84, "punctuated_word": "popular,", "speaker": 0, "speaker_confidence": 1, "start": 302.44, "word": "popular" }, { "confidence": 1, "end": 303.08, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 302.84, "word": "and" }, { "confidence": 1, "end": 303.24, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 303.08, "word": "it" }, { "confidence": 1, "end": 303.47998, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 1, "start": 303.24, "word": "even" }, { "confidence": 1, "end": 303.63998, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 1, "start": 303.47998, "word": "has" }, { "confidence": 1, "end": 303.8, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 303.63998, "word": "a" }, { "confidence": 1, "end": 304.12, "punctuated_word": "variety", "speaker": 0, "speaker_confidence": 1, "start": 303.8, "word": "variety" }, { "confidence": 1, "end": 304.28, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 304.12, "word": "of" }, { "confidence": 0.99902344, "end": 304.6, "punctuated_word": "different", "speaker": 0, "speaker_confidence": 1, "start": 304.28, "word": "different" }, { "confidence": 1, "end": 305.08, "punctuated_word": "flavors", "speaker": 0, "speaker_confidence": 1, "start": 304.6, "word": "flavors" }, { "confidence": 0.7451172, "end": 305.4, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 305.08, "word": "like" }, { "confidence": 0.6723633, "end": 305.9, "punctuated_word": "Kubuntu,", "speaker": 0, "speaker_confidence": 1, "start": 305.4, "word": "kubuntu" }, { "confidence": 0.69104004, "end": 306.69998, "punctuated_word": "Zubantu,", "speaker": 0, "speaker_confidence": 1, "start": 306.19998, "word": "zubantu" }, { "confidence": 0.9980469, "end": 307.08, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 306.84, "word": "and" }, { "confidence": 0.8354492, "end": 307.58, "punctuated_word": "Lubantu,", "speaker": 0, "speaker_confidence": 1, "start": 307.08, "word": "lubantu" }, { "confidence": 0.9970703, "end": 308.275, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 1, "start": 308.115, "word": "which" }, { "confidence": 0.9980469, "end": 308.435, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 1, "start": 308.275, "word": "are" }, { "confidence": 0.99902344, "end": 308.515, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 1, "start": 308.435, "word": "their" }, { "confidence": 1, "end": 308.915, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 1, "start": 308.515, "word": "own" }, { "confidence": 0.9970703, "end": 309.415, "punctuated_word": "distributions", "speaker": 0, "speaker_confidence": 1, "start": 308.915, "word": "distributions" }, { "confidence": 0.99902344, "end": 309.715, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 309.475, "word": "that" }, { "confidence": 0.9760742, "end": 310.035, "punctuated_word": "offer", "speaker": 0, "speaker_confidence": 1, "start": 309.715, "word": "offer" }, { "confidence": 0.9970703, "end": 310.355, "punctuated_word": "slight", "speaker": 0, "speaker_confidence": 1, "start": 310.035, "word": "slight" }, { "confidence": 1, "end": 310.855, "punctuated_word": "variations", "speaker": 0, "speaker_confidence": 1, "start": 310.355, "word": "variations" }, { "confidence": 1, "end": 311.155, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 1, "start": 310.995, "word": "on" }, { "confidence": 0.99902344, "end": 311.23502, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 311.155, "word": "the" }, { "confidence": 0.9309082, "end": 311.73502, "punctuated_word": "original.", "speaker": 0, "speaker_confidence": 1, "start": 311.23502, "word": "original" }, { "confidence": 0.69262695, "end": 312.195, "punctuated_word": "Like,", "speaker": 0, "speaker_confidence": 1, "start": 311.875, "word": "like" }, { "confidence": 0.7185872, "end": 312.695, "punctuated_word": "Kubuntu,", "speaker": 0, "speaker_confidence": 1, "start": 312.195, "word": "kubuntu" }, { "confidence": 1, "end": 312.915, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 312.755, "word": "for" }, { "confidence": 0.9970703, "end": 313.415, "punctuated_word": "example,", "speaker": 0, "speaker_confidence": 1, "start": 312.915, "word": "example" }, { "confidence": 0.88671875, "end": 313.635, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 313.475, "word": "is" }, { "confidence": 1, "end": 314.035, "punctuated_word": "designed", "speaker": 0, "speaker_confidence": 1, "start": 313.635, "word": "designed" }, { "confidence": 0.9980469, "end": 314.115, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 314.035, "word": "to" }, { "confidence": 0.9951172, "end": 314.355, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 1, "start": 314.115, "word": "be" }, { "confidence": 0.9863281, "end": 314.435, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 314.355, "word": "a" }, { "confidence": 0.9970703, "end": 314.755, "punctuated_word": "great", "speaker": 0, "speaker_confidence": 1, "start": 314.435, "word": "great" }, { "confidence": 0.99902344, "end": 314.995, "punctuated_word": "entry", "speaker": 0, "speaker_confidence": 1, "start": 314.755, "word": "entry" }, { "confidence": 0.9838867, "end": 315.315, "punctuated_word": "point", "speaker": 0, "speaker_confidence": 1, "start": 314.995, "word": "point" }, { "confidence": 0.96875, "end": 315.475, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 1, "start": 315.315, "word": "if" }, { "confidence": 0.9880371, "end": 315.77, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 1, "start": 315.475, "word": "you're" }, { "confidence": 0.98291016, "end": 316.25, "punctuated_word": "transitioning", "speaker": 0, "speaker_confidence": 1, "start": 315.84998, "word": "transitioning" }, { "confidence": 1, "end": 316.65, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 1, "start": 316.25, "word": "from" }, { "confidence": 1, "end": 317.12997, "punctuated_word": "Microsoft", "speaker": 0, "speaker_confidence": 1, "start": 316.65, "word": "microsoft" }, { "confidence": 0.9941406, "end": 317.61, "punctuated_word": "Windows", "speaker": 0, "speaker_confidence": 1, "start": 317.12997, "word": "windows" }, { "confidence": 0.97314453, "end": 317.77, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 317.61, "word": "to" }, { "confidence": 0.99902344, "end": 318.27, "punctuated_word": "Linux.", "speaker": 0, "speaker_confidence": 1, "start": 317.77, "word": "linux" }, { "confidence": 0.99902344, "end": 318.72998, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 1, "start": 318.56998, "word": "in" }, { "confidence": 1, "end": 319.21, "punctuated_word": "addition,", "speaker": 0, "speaker_confidence": 1, "start": 318.72998, "word": "addition" }, { "confidence": 0.9716797, "end": 319.71, "punctuated_word": "Ubuntu", "speaker": 0, "speaker_confidence": 1, "start": 319.21, "word": "ubuntu" }, { "confidence": 0.9980469, "end": 320.00998, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 1, "start": 319.77, "word": "has" }, { "confidence": 1, "end": 320.41, "punctuated_word": "spawned", "speaker": 0, "speaker_confidence": 1, "start": 320.00998, "word": "spawned" }, { "confidence": 1, "end": 320.65, "punctuated_word": "many", "speaker": 0, "speaker_confidence": 1, "start": 320.41, "word": "many" }, { "confidence": 0.99902344, "end": 320.97, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 1, "start": 320.65, "word": "other" }, { "confidence": 1, "end": 321.47, "punctuated_word": "variations", "speaker": 0, "speaker_confidence": 1, "start": 320.97, "word": "variations" }, { "confidence": 0.5961914, "end": 321.93, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 321.61, "word": "like" }, { "confidence": 0.8618164, "end": 322.25, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 1, "start": 321.93, "word": "linux" }, { "confidence": 0.98339844, "end": 322.75, "punctuated_word": "Mint,", "speaker": 0, "speaker_confidence": 1, "start": 322.25, "word": "mint" }, { "confidence": 0.8922526, "end": 323.31, "punctuated_word": "Peppermint,", "speaker": 0, "speaker_confidence": 1, "start": 322.81, "word": "peppermint" }, { "confidence": 0.5234375, "end": 323.895, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 323.735, "word": "and" }, { "confidence": 0.7892253, "end": 324.395, "punctuated_word": "Pop!OS", "speaker": 0, "speaker_confidence": 1, "start": 323.895, "word": "pop!os" }, { "confidence": 0.49047852, "end": 324.855, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 1, "start": 324.615, "word": "just" }, { "confidence": 0.9770508, "end": 324.935, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 324.855, "word": "to" }, { "confidence": 1, "end": 325.095, "punctuated_word": "name", "speaker": 0, "speaker_confidence": 1, "start": 324.935, "word": "name" }, { "confidence": 0.9980469, "end": 325.175, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 325.095, "word": "a" }, { "confidence": 1, "end": 325.495, "punctuated_word": "few", "speaker": 0, "speaker_confidence": 1, "start": 325.175, "word": "few" }, { "confidence": 0.9970703, "end": 325.575, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 325.495, "word": "of" }, { "confidence": 1, "end": 325.655, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 325.575, "word": "the" }, { "confidence": 0.99902344, "end": 325.975, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 1, "start": 325.655, "word": "most" }, { "confidence": 1, "end": 326.375, "punctuated_word": "popular", "speaker": 0, "speaker_confidence": 1, "start": 325.975, "word": "popular" }, { "confidence": 0.99853516, "end": 326.875, "punctuated_word": "options.", "speaker": 0, "speaker_confidence": 1, "start": 326.375, "word": "options" }, { "confidence": 0.94921875, "end": 327.575, "punctuated_word": "Debian", "speaker": 0, "speaker_confidence": 1, "start": 327.175, "word": "debian" }, { "confidence": 0.9970703, "end": 327.815, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 1, "start": 327.575, "word": "has" }, { "confidence": 0.99609375, "end": 327.895, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 327.815, "word": "a" }, { "confidence": 1, "end": 328.135, "punctuated_word": "huge", "speaker": 0, "speaker_confidence": 1, "start": 327.895, "word": "huge" }, { "confidence": 0.99902344, "end": 328.455, "punctuated_word": "family", "speaker": 0, "speaker_confidence": 1, "start": 328.135, "word": "family" }, { "confidence": 0.951416, "end": 328.935, "punctuated_word": "tree,", "speaker": 0, "speaker_confidence": 1, "start": 328.455, "word": "tree" }, { "confidence": 1, "end": 329.095, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 1, "start": 328.935, "word": "but" }, { "confidence": 0.98095703, "end": 329.255, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 1, "start": 329.095, "word": "if" }, { "confidence": 0.99902344, "end": 329.335, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 1, "start": 329.255, "word": "we" }, { "confidence": 0.99902344, "end": 329.495, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 1, "start": 329.335, "word": "go" }, { "confidence": 1, "end": 329.735, "punctuated_word": "back", "speaker": 0, "speaker_confidence": 1, "start": 329.495, "word": "back" }, { "confidence": 1, "end": 330.055, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 329.735, "word": "to" }, { "confidence": 0.9589844, "end": 330.555, "punctuated_word": "1994,", "speaker": 0, "speaker_confidence": 1, "start": 330.055, "word": "1994" }, { "confidence": 0.9951172, "end": 331.1, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 1, "start": 330.94, "word": "there" }, { "confidence": 0.9838867, "end": 331.34, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 331.1, "word": "is" }, { "confidence": 0.9951172, "end": 331.66, "punctuated_word": "another", "speaker": 0, "speaker_confidence": 1, "start": 331.34, "word": "another" }, { "confidence": 0.9790039, "end": 331.98, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 1, "start": 331.66, "word": "linux" }, { "confidence": 0.967041, "end": 332.38, "punctuated_word": "distro", "speaker": 0, "speaker_confidence": 1, "start": 331.98, "word": "distro" }, { "confidence": 0.9970703, "end": 332.54, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 332.38, "word": "that" }, { "confidence": 1, "end": 332.86002, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 1, "start": 332.54, "word": "also" }, { "confidence": 1, "end": 333.02, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 1, "start": 332.86002, "word": "has" }, { "confidence": 0.99902344, "end": 333.1, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 333.02, "word": "a" }, { "confidence": 1, "end": 333.34, "punctuated_word": "huge", "speaker": 0, "speaker_confidence": 1, "start": 333.1, "word": "huge" }, { "confidence": 0.9970703, "end": 333.74, "punctuated_word": "family", "speaker": 0, "speaker_confidence": 1, "start": 333.34, "word": "family" }, { "confidence": 1, "end": 334.06, "punctuated_word": "tree", "speaker": 0, "speaker_confidence": 1, "start": 333.74, "word": "tree" }, { "confidence": 0.9770508, "end": 334.3, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 1, "start": 334.06, "word": "called" }, { "confidence": 0.8173828, "end": 334.54, "punctuated_word": "Red", "speaker": 0, "speaker_confidence": 1, "start": 334.3, "word": "red" }, { "confidence": 0.95996094, "end": 335.02, "punctuated_word": "Hat.", "speaker": 0, "speaker_confidence": 1, "start": 334.54, "word": "hat" }, { "confidence": 0.99902344, "end": 335.1, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 1, "start": 335.02, "word": "it" }, { "confidence": 1, "end": 335.26, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 1, "start": 335.1, "word": "was" }, { "confidence": 1, "end": 335.66, "punctuated_word": "created", "speaker": 0, "speaker_confidence": 1, "start": 335.26, "word": "created" }, { "confidence": 1, "end": 335.82, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 1, "start": 335.66, "word": "by" }, { "confidence": 0.82373047, "end": 336.06, "punctuated_word": "Mark", "speaker": 0, "speaker_confidence": 1, "start": 335.82, "word": "mark" }, { "confidence": 0.8937988, "end": 336.46, "punctuated_word": "Ewing", "speaker": 0, "speaker_confidence": 1, "start": 336.06, "word": "ewing" }, { "confidence": 0.98828125, "end": 336.62, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 336.46, "word": "and" }, { "confidence": 0.99121094, "end": 336.78, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 336.62, "word": "is" }, { "confidence": 1, "end": 337.02, "punctuated_word": "known", "speaker": 0, "speaker_confidence": 1, "start": 336.78, "word": "known" }, { "confidence": 1, "end": 337.26, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 337.02, "word": "for" }, { "confidence": 0.9980469, "end": 337.5, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 1, "start": 337.26, "word": "its" }, { "confidence": 1, "end": 337.955, "punctuated_word": "focus", "speaker": 0, "speaker_confidence": 1, "start": 337.5, "word": "focus" }, { "confidence": 0.9667969, "end": 338.19498, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 1, "start": 338.03497, "word": "on" }, { "confidence": 0.984375, "end": 338.675, "punctuated_word": "security", "speaker": 0, "speaker_confidence": 1, "start": 338.19498, "word": "security" }, { "confidence": 0.99609375, "end": 338.995, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 338.675, "word": "and" }, { "confidence": 0.9892578, "end": 339.495, "punctuated_word": "reliability", "speaker": 0, "speaker_confidence": 1, "start": 338.995, "word": "reliability" }, { "confidence": 0.9980469, "end": 340.115, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 339.79498, "word": "for" }, { "confidence": 0.9741211, "end": 340.51498, "punctuated_word": "enterprise", "speaker": 0, "speaker_confidence": 1, "start": 340.115, "word": "enterprise" }, { "confidence": 0.9980469, "end": 341.01498, "punctuated_word": "users.", "speaker": 0, "speaker_confidence": 1, "start": 340.51498, "word": "users" }, { "confidence": 0.9941406, "end": 341.63498, "punctuated_word": "Red", "speaker": 0, "speaker_confidence": 1, "start": 341.395, "word": "red" }, { "confidence": 0.9790039, "end": 341.875, "punctuated_word": "Hat", "speaker": 0, "speaker_confidence": 1, "start": 341.63498, "word": "hat" }, { "confidence": 0.9951172, "end": 342.275, "punctuated_word": "adopted", "speaker": 0, "speaker_confidence": 1, "start": 341.875, "word": "adopted" }, { "confidence": 1, "end": 342.435, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 342.275, "word": "a" }, { "confidence": 0.99902344, "end": 342.75497, "punctuated_word": "business", "speaker": 0, "speaker_confidence": 1, "start": 342.435, "word": "business" }, { "confidence": 1, "end": 343.07498, "punctuated_word": "model", "speaker": 0, "speaker_confidence": 1, "start": 342.75497, "word": "model" }, { "confidence": 0.82958984, "end": 343.31497, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 1, "start": 343.07498, "word": "where" }, { "confidence": 0.99902344, "end": 343.47498, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 1, "start": 343.31497, "word": "they" }, { "confidence": 0.9921875, "end": 343.79498, "punctuated_word": "maintain", "speaker": 0, "speaker_confidence": 1, "start": 343.47498, "word": "maintain" }, { "confidence": 0.9970703, "end": 343.955, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 343.79498, "word": "an" }, { "confidence": 0.984375, "end": 344.19498, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 1, "start": 343.955, "word": "open" }, { "confidence": 0.9873047, "end": 344.51498, "punctuated_word": "source", "speaker": 0, "speaker_confidence": 1, "start": 344.19498, "word": "source" }, { "confidence": 0.9941406, "end": 344.91498, "punctuated_word": "operating", "speaker": 0, "speaker_confidence": 1, "start": 344.51498, "word": "operating" }, { "confidence": 0.9038086, "end": 345.41498, "punctuated_word": "system,", "speaker": 0, "speaker_confidence": 1, "start": 344.91498, "word": "system" }, { "confidence": 0.99902344, "end": 345.715, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 1, "start": 345.47498, "word": "then" }, { "confidence": 0.99609375, "end": 345.875, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 1, "start": 345.715, "word": "make" }, { "confidence": 1, "end": 346.26, "punctuated_word": "money", "speaker": 0, "speaker_confidence": 1, "start": 345.875, "word": "money" }, { "confidence": 0.9838867, "end": 346.5, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 1, "start": 346.34, "word": "by" }, { "confidence": 1, "end": 346.82, "punctuated_word": "selling", "speaker": 0, "speaker_confidence": 1, "start": 346.5, "word": "selling" }, { "confidence": 0.9770508, "end": 347.32, "punctuated_word": "consulting", "speaker": 0, "speaker_confidence": 1, "start": 346.82, "word": "consulting" }, { "confidence": 0.5151367, "end": 347.96002, "punctuated_word": "integration", "speaker": 0, "speaker_confidence": 1, "start": 347.46002, "word": "integration" }, { "confidence": 0.98095703, "end": 348.42, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 348.18002, "word": "and" }, { "confidence": 0.96533203, "end": 348.66, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 1, "start": 348.42, "word": "add" }, { "confidence": 0.9980469, "end": 348.82, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 1, "start": 348.66, "word": "on" }, { "confidence": 0.99609375, "end": 349.32, "punctuated_word": "services", "speaker": 0, "speaker_confidence": 1, "start": 348.82, "word": "services" }, { "confidence": 0.9970703, "end": 349.62, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 349.38, "word": "to" }, { "confidence": 0.9863281, "end": 350.02002, "punctuated_word": "big", "speaker": 0, "speaker_confidence": 1, "start": 349.62, "word": "big" }, { "confidence": 0.9921875, "end": 350.5, "punctuated_word": "enterprise", "speaker": 0, "speaker_confidence": 1, "start": 350.02002, "word": "enterprise" }, { "confidence": 0.9921875, "end": 351, "punctuated_word": "clients.", "speaker": 0, "speaker_confidence": 1, "start": 350.5, "word": "clients" }, { "confidence": 0.9941406, "end": 351.54, "punctuated_word": "Today,", "speaker": 0, "speaker_confidence": 1, "start": 351.06, "word": "today" }, { "confidence": 0.99902344, "end": 351.7, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 351.54, "word": "it" }, { "confidence": 1, "end": 352.1, "punctuated_word": "generates", "speaker": 0, "speaker_confidence": 1, "start": 351.7, "word": "generates" }, { "confidence": 0.9924665, "end": 352.5, "punctuated_word": "1,000,000,000", "speaker": 0, "speaker_confidence": 1, "start": 352.1, "word": "1,000,000,000" }, { "confidence": 0.99609375, "end": 352.58002, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 352.5, "word": "of" }, { "confidence": 0.99902344, "end": 352.82, "punctuated_word": "dollars", "speaker": 0, "speaker_confidence": 1, "start": 352.58002, "word": "dollars" }, { "confidence": 0.9902344, "end": 352.90002, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 352.82, "word": "in" }, { "confidence": 0.9980469, "end": 353.38, "punctuated_word": "revenue", "speaker": 0, "speaker_confidence": 1, "start": 352.90002, "word": "revenue" }, { "confidence": 0.8569336, "end": 353.54, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 353.38, "word": "and" }, { "confidence": 0.98095703, "end": 353.7, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 1, "start": 353.54, "word": "was" }, { "confidence": 0.99902344, "end": 354.1, "punctuated_word": "recently", "speaker": 0, "speaker_confidence": 1, "start": 353.7, "word": "recently" }, { "confidence": 0.9980469, "end": 354.5, "punctuated_word": "acquired", "speaker": 0, "speaker_confidence": 1, "start": 354.1, "word": "acquired" }, { "confidence": 0.99121094, "end": 354.74002, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 1, "start": 354.5, "word": "by" }, { "confidence": 0.9980469, "end": 355.22, "punctuated_word": "IBM", "speaker": 0, "speaker_confidence": 1, "start": 354.74002, "word": "ibm" }, { "confidence": 0.97265625, "end": 355.46002, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 355.22, "word": "for" }, { "confidence": 0.7939453, "end": 355.765, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 355.46002, "word": "an" }, { "confidence": 0.8989258, "end": 356.005, "punctuated_word": "11", "speaker": 0, "speaker_confidence": 1, "start": 355.845, "word": "11" }, { "confidence": 0.98828125, "end": 356.24503, "punctuated_word": "figure", "speaker": 0, "speaker_confidence": 1, "start": 356.005, "word": "figure" }, { "confidence": 0.96972656, "end": 356.565, "punctuated_word": "price", "speaker": 0, "speaker_confidence": 1, "start": 356.24503, "word": "price" }, { "confidence": 0.99853516, "end": 357.065, "punctuated_word": "tag.", "speaker": 0, "speaker_confidence": 1, "start": 356.565, "word": "tag" }, { "confidence": 0.98828125, "end": 357.36502, "punctuated_word": "Red", "speaker": 0, "speaker_confidence": 1, "start": 357.125, "word": "red" }, { "confidence": 0.94970703, "end": 357.605, "punctuated_word": "Hat", "speaker": 0, "speaker_confidence": 1, "start": 357.36502, "word": "hat" }, { "confidence": 0.9970703, "end": 357.765, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 1, "start": 357.605, "word": "has" }, { "confidence": 0.99902344, "end": 358.08502, "punctuated_word": "given", "speaker": 0, "speaker_confidence": 1, "start": 357.765, "word": "given" }, { "confidence": 1, "end": 358.325, "punctuated_word": "birth", "speaker": 0, "speaker_confidence": 1, "start": 358.08502, "word": "birth" }, { "confidence": 0.99902344, "end": 358.48502, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 358.325, "word": "to" }, { "confidence": 0.99902344, "end": 358.565, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 358.48502, "word": "a" }, { "confidence": 1, "end": 358.80502, "punctuated_word": "bunch", "speaker": 0, "speaker_confidence": 1, "start": 358.565, "word": "bunch" }, { "confidence": 1, "end": 358.96503, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 358.80502, "word": "of" }, { "confidence": 0.98999023, "end": 359.46503, "punctuated_word": "children,", "speaker": 0, "speaker_confidence": 1, "start": 358.96503, "word": "children" }, { "confidence": 0.99902344, "end": 359.845, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 1, "start": 359.605, "word": "most" }, { "confidence": 1, "end": 359.92502, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 359.845, "word": "of" }, { "confidence": 1, "end": 360.165, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 1, "start": 359.92502, "word": "which" }, { "confidence": 0.9980469, "end": 360.325, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 1, "start": 360.165, "word": "are" }, { "confidence": 1, "end": 360.825, "punctuated_word": "associated", "speaker": 0, "speaker_confidence": 1, "start": 360.325, "word": "associated" }, { "confidence": 1, "end": 361.125, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 360.885, "word": "with" }, { "confidence": 0.95947266, "end": 361.52502, "punctuated_word": "enterprise", "speaker": 0, "speaker_confidence": 1, "start": 361.125, "word": "enterprise" }, { "confidence": 0.78759766, "end": 361.92502, "punctuated_word": "work,", "speaker": 0, "speaker_confidence": 1, "start": 361.52502, "word": "work" }, { "confidence": 1, "end": 362.165, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 361.92502, "word": "and" }, { "confidence": 0.9902344, "end": 362.48502, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 1, "start": 362.165, "word": "use" }, { "confidence": 0.99902344, "end": 362.725, "punctuated_word": "either", "speaker": 0, "speaker_confidence": 1, "start": 362.48502, "word": "either" }, { "confidence": 0.97509766, "end": 362.96503, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 362.725, "word": "the" }, { "confidence": 0.8491211, "end": 363.445, "punctuated_word": "RPM", "speaker": 0, "speaker_confidence": 1, "start": 362.96503, "word": "rpm" }, { "confidence": 0.9428711, "end": 363.89, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 1, "start": 363.445, "word": "or" }, { "confidence": 0.6687012, "end": 364.05002, "punctuated_word": "Yum", "speaker": 0, "speaker_confidence": 1, "start": 363.89, "word": "yum" }, { "confidence": 0.79052734, "end": 364.53003, "punctuated_word": "package", "speaker": 0, "speaker_confidence": 1, "start": 364.05002, "word": "package" }, { "confidence": 0.99658203, "end": 365.03003, "punctuated_word": "manager.", "speaker": 0, "speaker_confidence": 1, "start": 364.53003, "word": "manager" }, { "confidence": 0.9980469, "end": 365.65002, "punctuated_word": "Popular", "speaker": 0, "speaker_confidence": 1, "start": 365.25, "word": "popular" }, { "confidence": 0.9941406, "end": 366.15002, "punctuated_word": "descendants", "speaker": 0, "speaker_confidence": 1, "start": 365.65002, "word": "descendants" }, { "confidence": 0.9980469, "end": 366.69, "punctuated_word": "include", "speaker": 0, "speaker_confidence": 1, "start": 366.21002, "word": "include" }, { "confidence": 0.7171224, "end": 367.19, "punctuated_word": "rhel,", "speaker": 0, "speaker_confidence": 1, "start": 366.69, "word": "rhel" }, { "confidence": 0.6062012, "end": 368.07, "punctuated_word": "CentOS,", "speaker": 0, "speaker_confidence": 1, "start": 367.57, "word": "centos" }, { "confidence": 0.9980469, "end": 368.69, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 368.45, "word": "and" }, { "confidence": 0.9812012, "end": 369.19, "punctuated_word": "Fedora,", "speaker": 0, "speaker_confidence": 1, "start": 368.69, "word": "fedora" }, { "confidence": 0.99902344, "end": 369.57, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 1, "start": 369.41, "word": "which" }, { "confidence": 1, "end": 369.73, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 369.57, "word": "is" }, { "confidence": 0.99902344, "end": 369.89, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 1, "start": 369.73, "word": "not" }, { "confidence": 1, "end": 370.13, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 1, "start": 369.89, "word": "only" }, { "confidence": 0.99902344, "end": 370.37003, "punctuated_word": "great", "speaker": 0, "speaker_confidence": 1, "start": 370.13, "word": "great" }, { "confidence": 1, "end": 370.61002, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 1, "start": 370.37003, "word": "for" }, { "confidence": 0.9873047, "end": 371.01, "punctuated_word": "enterprise", "speaker": 0, "speaker_confidence": 1, "start": 370.61002, "word": "enterprise" }, { "confidence": 0.9511719, "end": 371.49002, "punctuated_word": "servers,", "speaker": 0, "speaker_confidence": 1, "start": 371.01, "word": "servers" }, { "confidence": 1, "end": 371.73, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 1, "start": 371.49002, "word": "but" }, { "confidence": 0.9980469, "end": 371.97, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 1, "start": 371.73, "word": "also" }, { "confidence": 1, "end": 372.29, "punctuated_word": "works", "speaker": 0, "speaker_confidence": 1, "start": 371.97, "word": "works" }, { "confidence": 1, "end": 372.53003, "punctuated_word": "well", "speaker": 0, "speaker_confidence": 1, "start": 372.29, "word": "well" }, { "confidence": 1, "end": 372.77002, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 1, "start": 372.53003, "word": "as" }, { "confidence": 1, "end": 372.85, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 372.77002, "word": "a" }, { "confidence": 1, "end": 373.25, "punctuated_word": "personal", "speaker": 0, "speaker_confidence": 1, "start": 372.85, "word": "personal" }, { "confidence": 1, "end": 373.515, "punctuated_word": "work", "speaker": 0, "speaker_confidence": 1, "start": 373.25, "word": "work" }, { "confidence": 0.57470703, "end": 373.795, "punctuated_word": "station,", "speaker": 0, "speaker_confidence": 1, "start": 373.595, "word": "station" }, { "confidence": 0.99902344, "end": 373.99503, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 373.795, "word": "and" }, { "confidence": 0.9975586, "end": 374.23502, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 1, "start": 373.99503, "word": "it's" }, { "confidence": 1, "end": 374.475, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 1, "start": 374.23502, "word": "even" }, { "confidence": 0.99609375, "end": 374.55502, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 374.475, "word": "the" }, { "confidence": 0.9724121, "end": 374.95502, "punctuated_word": "distro", "speaker": 0, "speaker_confidence": 1, "start": 374.55502, "word": "distro" }, { "confidence": 0.95166016, "end": 375.035, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 374.95502, "word": "of" }, { "confidence": 0.9980469, "end": 375.355, "punctuated_word": "choice", "speaker": 0, "speaker_confidence": 1, "start": 375.035, "word": "choice" }, { "confidence": 0.99902344, "end": 375.595, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 1, "start": 375.355, "word": "by" }, { "confidence": 0.9995117, "end": 375.915, "punctuated_word": "Linus", "speaker": 0, "speaker_confidence": 1, "start": 375.595, "word": "linus" }, { "confidence": 0.9992676, "end": 376.39502, "punctuated_word": "Torvalds", "speaker": 0, "speaker_confidence": 1, "start": 375.915, "word": "torvalds" }, { "confidence": 0.99609375, "end": 376.89502, "punctuated_word": "himself.", "speaker": 0, "speaker_confidence": 1, "start": 376.39502, "word": "himself" }, { "confidence": 0.9013672, "end": 377.43503, "punctuated_word": "Now,", "speaker": 0, "speaker_confidence": 1, "start": 377.195, "word": "now" }, { "confidence": 0.99121094, "end": 377.515, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 1, "start": 377.43503, "word": "one" }, { "confidence": 1, "end": 377.67502, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.76904297, "start": 377.515, "word": "thing" }, { "confidence": 0.9921875, "end": 377.755, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.76904297, "start": 377.67502, "word": "that" }, { "confidence": 0.9995117, "end": 377.99503, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 0.76904297, "start": 377.755, "word": "you'll" }, { "confidence": 1, "end": 378.315, "punctuated_word": "notice", "speaker": 0, "speaker_confidence": 0.76904297, "start": 377.99503, "word": "notice" }, { "confidence": 1, "end": 378.55502, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.76904297, "start": 378.315, "word": "about" }, { "confidence": 0.9980469, "end": 378.795, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 0.76904297, "start": 378.55502, "word": "linux" }, { "confidence": 0.9555664, "end": 379.295, "punctuated_word": "distros", "speaker": 0, "speaker_confidence": 0.76904297, "start": 378.795, "word": "distros" }, { "confidence": 0.9790039, "end": 379.515, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.76904297, "start": 379.355, "word": "is" }, { "confidence": 1, "end": 379.67502, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.76904297, "start": 379.515, "word": "that" }, { "confidence": 0.98291016, "end": 379.915, "punctuated_word": "many", "speaker": 0, "speaker_confidence": 0.76904297, "start": 379.67502, "word": "many" }, { "confidence": 1, "end": 380.075, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.76904297, "start": 379.915, "word": "of" }, { "confidence": 1, "end": 380.315, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.76904297, "start": 380.075, "word": "them" }, { "confidence": 1, "end": 380.59, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.76904297, "start": 380.315, "word": "do" }, { "confidence": 0.97998047, "end": 380.83, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.76904297, "start": 380.66998, "word": "a" }, { "confidence": 0.9970703, "end": 380.99, "punctuated_word": "lot", "speaker": 0, "speaker_confidence": 0.76904297, "start": 380.83, "word": "lot" }, { "confidence": 0.9980469, "end": 381.07, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7236328, "start": 380.99, "word": "of" }, { "confidence": 0.99902344, "end": 381.38998, "punctuated_word": "stuff", "speaker": 0, "speaker_confidence": 0.7236328, "start": 381.07, "word": "stuff" }, { "confidence": 0.9970703, "end": 381.55, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7236328, "start": 381.38998, "word": "that" }, { "confidence": 1, "end": 381.71, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7236328, "start": 381.55, "word": "you" }, { "confidence": 1, "end": 381.87, "punctuated_word": "don't", "speaker": 0, "speaker_confidence": 0.7236328, "start": 381.71, "word": "don't" }, { "confidence": 1, "end": 382.27, "punctuated_word": "actually", "speaker": 0, "speaker_confidence": 0.7236328, "start": 381.87, "word": "actually" }, { "confidence": 0.87280273, "end": 382.66998, "punctuated_word": "need.", "speaker": 0, "speaker_confidence": 0.7236328, "start": 382.27, "word": "need" }, { "confidence": 1, "end": 382.91, "punctuated_word": "That", "speaker": 0, "speaker_confidence": 0.7236328, "start": 382.66998, "word": "that" }, { "confidence": 1, "end": 383.15, "punctuated_word": "takes", "speaker": 0, "speaker_confidence": 0.7236328, "start": 382.91, "word": "takes" }, { "confidence": 0.99902344, "end": 383.23, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.7236328, "start": 383.15, "word": "up" }, { "confidence": 0.9980469, "end": 383.55, "punctuated_word": "space", "speaker": 0, "speaker_confidence": 0.7236328, "start": 383.23, "word": "space" }, { "confidence": 0.99902344, "end": 383.71, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.7236328, "start": 383.55, "word": "on" }, { "confidence": 1, "end": 383.79, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.91552734, "start": 383.71, "word": "your" }, { "confidence": 1, "end": 384.27, "punctuated_word": "hardware", "speaker": 0, "speaker_confidence": 0.91552734, "start": 383.79, "word": "hardware" }, { "confidence": 0.9375, "end": 384.51, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.91552734, "start": 384.27, "word": "and" }, { "confidence": 0.67822266, "end": 385.01, "punctuated_word": "ultimately", "speaker": 0, "speaker_confidence": 0.91552734, "start": 384.51, "word": "ultimately" }, { "confidence": 0.7866211, "end": 385.31, "punctuated_word": "makes", "speaker": 0, "speaker_confidence": 0.91552734, "start": 385.07, "word": "makes" }, { "confidence": 0.9941406, "end": 385.47, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.91552734, "start": 385.31, "word": "your" }, { "confidence": 0.99902344, "end": 385.79, "punctuated_word": "life", "speaker": 0, "speaker_confidence": 0.91552734, "start": 385.47, "word": "life" }, { "confidence": 1, "end": 386.11, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.91552734, "start": 385.79, "word": "more" }, { "confidence": 1, "end": 386.61, "punctuated_word": "complex.", "speaker": 0, "speaker_confidence": 0.91552734, "start": 386.11, "word": "complex" }, { "confidence": 1, "end": 386.91, "punctuated_word": "There", "speaker": 0, "speaker_confidence": 0.91552734, "start": 386.66998, "word": "there" }, { "confidence": 1, "end": 387.07, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.91552734, "start": 386.91, "word": "are" }, { "confidence": 0.88134766, "end": 387.31, "punctuated_word": "2", "speaker": 0, "speaker_confidence": 0.91552734, "start": 387.07, "word": "2" }, { "confidence": 0.9980469, "end": 387.63, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 0.91552734, "start": 387.31, "word": "linux" }, { "confidence": 0.93359375, "end": 388.03, "punctuated_word": "families", "speaker": 0, "speaker_confidence": 0.91552734, "start": 387.63, "word": "families" }, { "confidence": 0.9980469, "end": 388.19, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.91552734, "start": 388.03, "word": "that" }, { "confidence": 1, "end": 388.43, "punctuated_word": "came", "speaker": 0, "speaker_confidence": 0.91552734, "start": 388.19, "word": "came" }, { "confidence": 1, "end": 388.59, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.91552734, "start": 388.43, "word": "out" }, { "confidence": 1, "end": 388.75, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.91552734, "start": 388.59, "word": "in" }, { "confidence": 0.9980469, "end": 388.83, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.91552734, "start": 388.75, "word": "the" }, { "confidence": 0.9951172, "end": 389.22998, "punctuated_word": "early", "speaker": 0, "speaker_confidence": 0.91552734, "start": 388.83, "word": "early" }, { "confidence": 0.83740234, "end": 389.72998, "punctuated_word": "2000", "speaker": 0, "speaker_confidence": 0.91552734, "start": 389.22998, "word": "2000" }, { "confidence": 0.98535156, "end": 390.155, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.91552734, "start": 389.995, "word": "that" }, { "confidence": 0.76123047, "end": 390.315, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.91552734, "start": 390.155, "word": "are" }, { "confidence": 0.99902344, "end": 390.795, "punctuated_word": "focused", "speaker": 0, "speaker_confidence": 0.91552734, "start": 390.315, "word": "focused" }, { "confidence": 1, "end": 391.11502, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.91552734, "start": 390.795, "word": "on" }, { "confidence": 0.99609375, "end": 391.61502, "punctuated_word": "simplicity,", "speaker": 0, "speaker_confidence": 0.91552734, "start": 391.11502, "word": "simplicity" }, { "confidence": 0.94750977, "end": 392.33502, "punctuated_word": "performance,", "speaker": 0, "speaker_confidence": 0.91552734, "start": 391.83502, "word": "performance" }, { "confidence": 1, "end": 392.795, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.91552734, "start": 392.55502, "word": "and" }, { "confidence": 0.99934894, "end": 393.295, "punctuated_word": "minimalism.", "speaker": 0, "speaker_confidence": 0.91552734, "start": 392.795, "word": "minimalism" }, { "confidence": 0.91227216, "end": 394.155, "punctuated_word": "Gentoo,", "speaker": 0, "speaker_confidence": 0.91552734, "start": 393.755, "word": "gentoo" }, { "confidence": 0.99902344, "end": 394.315, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.91552734, "start": 394.155, "word": "with" }, { "confidence": 0.88671875, "end": 394.635, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.91552734, "start": 394.315, "word": "its" }, { "confidence": 0.85961914, "end": 394.95502, "punctuated_word": "Enoch", "speaker": 0, "speaker_confidence": 0.91552734, "start": 394.635, "word": "enoch" }, { "confidence": 0.78434247, "end": 395.355, "punctuated_word": "distro,", "speaker": 0, "speaker_confidence": 0.91552734, "start": 394.95502, "word": "distro" }, { "confidence": 1, "end": 395.515, "punctuated_word": "came", "speaker": 0, "speaker_confidence": 0.91552734, "start": 395.355, "word": "came" }, { "confidence": 1, "end": 395.755, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.91552734, "start": 395.515, "word": "out" }, { "confidence": 0.9970703, "end": 395.915, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.91552734, "start": 395.755, "word": "in" }, { "confidence": 0.57958984, "end": 396.415, "punctuated_word": "2000", "speaker": 0, "speaker_confidence": 0.91552734, "start": 395.915, "word": "2000" }, { "confidence": 0.57128906, "end": 396.95502, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.91552734, "start": 396.635, "word": "and" }, { "confidence": 0.9951172, "end": 397.275, "punctuated_word": "Arch", "speaker": 0, "speaker_confidence": 0.91552734, "start": 396.95502, "word": "arch" }, { "confidence": 0.9741211, "end": 397.435, "punctuated_word": "came", "speaker": 0, "speaker_confidence": 0.91552734, "start": 397.275, "word": "came" }, { "confidence": 1, "end": 397.595, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.91552734, "start": 397.435, "word": "out" }, { "confidence": 0.97802734, "end": 397.83502, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.91552734, "start": 397.595, "word": "in" }, { "confidence": 0.85595703, "end": 398.33502, "punctuated_word": "2002.", "speaker": 0, "speaker_confidence": 0.91552734, "start": 397.83502, "word": "2002" }, { "confidence": 0.98828125, "end": 398.95, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.91552734, "start": 398.79, "word": "if" }, { "confidence": 1, "end": 399.03, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.91552734, "start": 398.95, "word": "you" }, { "confidence": 0.9140625, "end": 399.19, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.91552734, "start": 399.03, "word": "like" }, { "confidence": 0.9951172, "end": 399.27002, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9238281, "start": 399.19, "word": "to" }, { "confidence": 0.99902344, "end": 399.43002, "punctuated_word": "keep", "speaker": 0, "speaker_confidence": 0.9238281, "start": 399.27002, "word": "keep" }, { "confidence": 0.99902344, "end": 399.67, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 0.9238281, "start": 399.43002, "word": "things" }, { "confidence": 0.9914551, "end": 400.15, "punctuated_word": "simple,", "speaker": 0, "speaker_confidence": 0.9238281, "start": 399.67, "word": "simple" }, { "confidence": 1, "end": 400.31, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.9238281, "start": 400.15, "word": "then" }, { "confidence": 0.99658203, "end": 400.47, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 0.9238281, "start": 400.31, "word": "you'll" }, { "confidence": 1, "end": 400.87, "punctuated_word": "probably", "speaker": 0, "speaker_confidence": 0.9238281, "start": 400.47, "word": "probably" }, { "confidence": 0.99902344, "end": 401.11002, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.9238281, "start": 400.87, "word": "like" }, { "confidence": 0.9951172, "end": 401.35, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9238281, "start": 401.11002, "word": "the" }, { "confidence": 0.98291016, "end": 401.51, "punctuated_word": "Arch", "speaker": 0, "speaker_confidence": 0.9238281, "start": 401.35, "word": "arch" }, { "confidence": 0.9277344, "end": 401.83002, "punctuated_word": "family", "speaker": 0, "speaker_confidence": 0.9238281, "start": 401.51, "word": "family" }, { "confidence": 1, "end": 401.99002, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9238281, "start": 401.83002, "word": "of" }, { "confidence": 0.9580078, "end": 402.39, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 0.9238281, "start": 401.99002, "word": "linux" }, { "confidence": 0.8610026, "end": 402.89, "punctuated_word": "distros.", "speaker": 0, "speaker_confidence": 0.9238281, "start": 402.39, "word": "distros" }, { "confidence": 1, "end": 403.11002, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.9238281, "start": 402.95, "word": "it" }, { "confidence": 1, "end": 403.27002, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.9238281, "start": 403.11002, "word": "has" }, { "confidence": 0.99121094, "end": 403.43002, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.9238281, "start": 403.27002, "word": "its" }, { "confidence": 1, "end": 403.67, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 0.9238281, "start": 403.43002, "word": "own" }, { "confidence": 0.9980469, "end": 403.99002, "punctuated_word": "package", "speaker": 0, "speaker_confidence": 0.9238281, "start": 403.67, "word": "package" }, { "confidence": 0.9980469, "end": 404.31, "punctuated_word": "manager", "speaker": 0, "speaker_confidence": 0.9238281, "start": 403.99002, "word": "manager" }, { "confidence": 0.97509766, "end": 404.63, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 0.9238281, "start": 404.31, "word": "called" }, { "confidence": 0.70214844, "end": 405.13, "punctuated_word": "Pacman", "speaker": 0, "speaker_confidence": 0.9238281, "start": 404.63, "word": "pacman" }, { "confidence": 0.8618164, "end": 405.51, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9238281, "start": 405.27002, "word": "and" }, { "confidence": 0.9980469, "end": 405.83002, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.9238281, "start": 405.51, "word": "has" }, { "confidence": 0.9941406, "end": 406.23, "punctuated_word": "adopted", "speaker": 0, "speaker_confidence": 0.9238281, "start": 405.83002, "word": "adopted" }, { "confidence": 0.99121094, "end": 406.47, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9238281, "start": 406.23, "word": "a" }, { "confidence": 0.99902344, "end": 406.79, "punctuated_word": "rolling", "speaker": 0, "speaker_confidence": 0.9238281, "start": 406.47, "word": "rolling" }, { "confidence": 0.9951172, "end": 407.11002, "punctuated_word": "release", "speaker": 0, "speaker_confidence": 0.9238281, "start": 406.79, "word": "release" }, { "confidence": 0.9916992, "end": 407.61002, "punctuated_word": "model.", "speaker": 0, "speaker_confidence": 0.9238281, "start": 407.11002, "word": "model" }, { "confidence": 0.9116211, "end": 407.995, "punctuated_word": "Like", "speaker": 0, "speaker_confidence": 0.9238281, "start": 407.835, "word": "like" }, { "confidence": 0.9892578, "end": 408.475, "punctuated_word": "Ubuntu", "speaker": 0, "speaker_confidence": 0.9238281, "start": 407.995, "word": "ubuntu" }, { "confidence": 0.9536133, "end": 408.635, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9238281, "start": 408.475, "word": "that" }, { "confidence": 0.99902344, "end": 408.795, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.9238281, "start": 408.635, "word": "has" }, { "confidence": 0.9980469, "end": 408.95502, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9238281, "start": 408.795, "word": "a" }, { "confidence": 0.99609375, "end": 409.115, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.9238281, "start": 408.95502, "word": "new" }, { "confidence": 0.9970703, "end": 409.435, "punctuated_word": "major", "speaker": 0, "speaker_confidence": 0.9238281, "start": 409.115, "word": "major" }, { "confidence": 0.99902344, "end": 409.835, "punctuated_word": "release", "speaker": 0, "speaker_confidence": 0.9238281, "start": 409.435, "word": "release" }, { "confidence": 0.99902344, "end": 410.075, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 0.9238281, "start": 409.835, "word": "every" }, { "confidence": 0.9790039, "end": 410.315, "punctuated_word": "6", "speaker": 0, "speaker_confidence": 0.9238281, "start": 410.075, "word": "6" }, { "confidence": 0.9562988, "end": 410.795, "punctuated_word": "months,", "speaker": 0, "speaker_confidence": 0.9238281, "start": 410.315, "word": "months" }, { "confidence": 0.99609375, "end": 411.035, "punctuated_word": "Arch", "speaker": 0, "speaker_confidence": 0.9238281, "start": 410.795, "word": "arch" }, { "confidence": 0.9951172, "end": 411.435, "punctuated_word": "releases", "speaker": 0, "speaker_confidence": 0.9238281, "start": 411.035, "word": "releases" }, { "confidence": 0.99902344, "end": 411.67502, "punctuated_word": "small", "speaker": 0, "speaker_confidence": 0.9238281, "start": 411.435, "word": "small" }, { "confidence": 1, "end": 412.155, "punctuated_word": "updates", "speaker": 0, "speaker_confidence": 0.9238281, "start": 411.67502, "word": "updates" }, { "confidence": 1, "end": 412.23502, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9238281, "start": 412.155, "word": "that" }, { "confidence": 0.99902344, "end": 412.475, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9238281, "start": 412.23502, "word": "can" }, { "confidence": 0.99609375, "end": 412.555, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.9238281, "start": 412.475, "word": "be" }, { "confidence": 0.9941406, "end": 413.055, "punctuated_word": "continuously", "speaker": 0, "speaker_confidence": 0.9238281, "start": 412.555, "word": "continuously" }, { "confidence": 0.99902344, "end": 413.755, "punctuated_word": "updated", "speaker": 0, "speaker_confidence": 0.9238281, "start": 413.275, "word": "updated" }, { "confidence": 1, "end": 413.915, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9238281, "start": 413.755, "word": "in" }, { "confidence": 1, "end": 413.995, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9238281, "start": 413.915, "word": "the" }, { "confidence": 0.9951172, "end": 414.495, "punctuated_word": "OS.", "speaker": 0, "speaker_confidence": 0.9238281, "start": 413.995, "word": "os" }, { "confidence": 0.9980469, "end": 415.115, "punctuated_word": "Arch", "speaker": 0, "speaker_confidence": 0.9238281, "start": 414.795, "word": "arch" }, { "confidence": 0.9970703, "end": 415.355, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9238281, "start": 415.115, "word": "is" }, { "confidence": 0.99902344, "end": 415.595, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.9238281, "start": 415.355, "word": "also" }, { "confidence": 1, "end": 415.755, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9238281, "start": 415.595, "word": "the" }, { "confidence": 0.99902344, "end": 416.18, "punctuated_word": "parent", "speaker": 0, "speaker_confidence": 0.9238281, "start": 415.755, "word": "parent" }, { "confidence": 0.94140625, "end": 416.34, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9238281, "start": 416.18, "word": "of" }, { "confidence": 0.96313477, "end": 416.84, "punctuated_word": "Manjaro,", "speaker": 0, "speaker_confidence": 0.9238281, "start": 416.34, "word": "manjaro" }, { "confidence": 0.99902344, "end": 417.22, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.9238281, "start": 417.06, "word": "which" }, { "confidence": 1, "end": 417.38, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9238281, "start": 417.22, "word": "is" }, { "confidence": 0.9951172, "end": 417.46, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.9238281, "start": 417.38, "word": "one" }, { "confidence": 0.99902344, "end": 417.53998, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8647461, "start": 417.46, "word": "of" }, { "confidence": 1, "end": 417.69998, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8647461, "start": 417.53998, "word": "the" }, { "confidence": 0.99902344, "end": 417.86, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 0.8647461, "start": 417.69998, "word": "most" }, { "confidence": 1, "end": 418.25998, "punctuated_word": "popular", "speaker": 0, "speaker_confidence": 0.8647461, "start": 417.86, "word": "popular" }, { "confidence": 0.9975586, "end": 418.74, "punctuated_word": "distros", "speaker": 0, "speaker_confidence": 0.8647461, "start": 418.25998, "word": "distros" }, { "confidence": 0.69970703, "end": 418.9, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.8647461, "start": 418.74, "word": "up" }, { "confidence": 0.88378906, "end": 419.4, "punctuated_word": "today.", "speaker": 0, "speaker_confidence": 0.8647461, "start": 418.9, "word": "today" }, { "confidence": 0.99902344, "end": 419.69998, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.8647461, "start": 419.46, "word": "in" }, { "confidence": 1, "end": 420.02, "punctuated_word": "addition", "speaker": 0, "speaker_confidence": 0.8647461, "start": 419.69998, "word": "addition" }, { "confidence": 0.9980469, "end": 420.18, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8647461, "start": 420.02, "word": "to" }, { "confidence": 0.99902344, "end": 420.34, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.8647461, "start": 420.18, "word": "all" }, { "confidence": 0.99316406, "end": 420.5, "punctuated_word": "these", "speaker": 0, "speaker_confidence": 0.8647461, "start": 420.34, "word": "these" }, { "confidence": 1, "end": 420.82, "punctuated_word": "families", "speaker": 0, "speaker_confidence": 0.8647461, "start": 420.5, "word": "families" }, { "confidence": 0.99902344, "end": 420.97998, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8647461, "start": 420.82, "word": "that" }, { "confidence": 0.99609375, "end": 421.13998, "punctuated_word": "we've", "speaker": 0, "speaker_confidence": 0.8647461, "start": 420.97998, "word": "we've" }, { "confidence": 1, "end": 421.3, "punctuated_word": "looked", "speaker": 0, "speaker_confidence": 0.8647461, "start": 421.13998, "word": "looked" }, { "confidence": 0.99853516, "end": 421.53998, "punctuated_word": "at,", "speaker": 0, "speaker_confidence": 0.8647461, "start": 421.3, "word": "at" }, { "confidence": 1, "end": 421.78, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.8647461, "start": 421.53998, "word": "there" }, { "confidence": 0.99902344, "end": 421.86, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.8647461, "start": 421.78, "word": "are" }, { "confidence": 0.99902344, "end": 422.1, "punctuated_word": "many", "speaker": 0, "speaker_confidence": 0.8647461, "start": 421.86, "word": "many" }, { "confidence": 1, "end": 422.58, "punctuated_word": "popular", "speaker": 0, "speaker_confidence": 0.8647461, "start": 422.1, "word": "popular" }, { "confidence": 0.984375, "end": 423.08, "punctuated_word": "independent", "speaker": 0, "speaker_confidence": 0.8647461, "start": 422.58, "word": "independent" }, { "confidence": 0.91829425, "end": 423.63998, "punctuated_word": "distros,", "speaker": 0, "speaker_confidence": 0.8647461, "start": 423.13998, "word": "distros" }, { "confidence": 0.9086914, "end": 424.04498, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.8647461, "start": 423.805, "word": "like" }, { "confidence": 0.7705078, "end": 424.125, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8647461, "start": 424.04498, "word": "the" }, { "confidence": 0.99902344, "end": 424.60498, "punctuated_word": "extremely", "speaker": 0, "speaker_confidence": 0.8647461, "start": 424.125, "word": "extremely" }, { "confidence": 0.9741211, "end": 425.085, "punctuated_word": "lightweight", "speaker": 0, "speaker_confidence": 0.8647461, "start": 424.60498, "word": "lightweight" }, { "confidence": 0.91918945, "end": 425.585, "punctuated_word": "Alpine,", "speaker": 0, "speaker_confidence": 0.8647461, "start": 425.085, "word": "alpine" }, { "confidence": 0.8222656, "end": 426.04498, "punctuated_word": "Fire", "speaker": 0, "speaker_confidence": 0.8647461, "start": 425.72498, "word": "fire" }, { "confidence": 0.6582031, "end": 426.44498, "punctuated_word": "OS", "speaker": 0, "speaker_confidence": 0.8647461, "start": 426.04498, "word": "os" }, { "confidence": 0.95703125, "end": 426.685, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.8647461, "start": 426.44498, "word": "for" }, { "confidence": 0.99121094, "end": 427.16498, "punctuated_word": "Amazon", "speaker": 0, "speaker_confidence": 0.8647461, "start": 426.685, "word": "amazon" }, { "confidence": 0.78222656, "end": 427.66498, "punctuated_word": "Devices,", "speaker": 0, "speaker_confidence": 0.8647461, "start": 427.16498, "word": "devices" }, { "confidence": 0.9951172, "end": 428.04498, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8647461, "start": 427.805, "word": "and" }, { "confidence": 0.8935547, "end": 428.54498, "punctuated_word": "Android,", "speaker": 0, "speaker_confidence": 0.8647461, "start": 428.04498, "word": "android" }, { "confidence": 0.9980469, "end": 428.76498, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.75927734, "start": 428.60498, "word": "which" }, { "confidence": 0.99902344, "end": 428.925, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.75927734, "start": 428.76498, "word": "is" }, { "confidence": 0.99902344, "end": 429.16498, "punctuated_word": "used", "speaker": 0, "speaker_confidence": 0.75927734, "start": 428.925, "word": "used" }, { "confidence": 0.99902344, "end": 429.32498, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.75927734, "start": 429.16498, "word": "by" }, { "confidence": 0.7758789, "end": 429.645, "punctuated_word": "billions", "speaker": 0, "speaker_confidence": 0.75927734, "start": 429.32498, "word": "billions" }, { "confidence": 0.9980469, "end": 429.88498, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.75927734, "start": 429.645, "word": "of" }, { "confidence": 1, "end": 430.205, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.75927734, "start": 429.88498, "word": "people" }, { "confidence": 0.8496094, "end": 430.44498, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 0.75927734, "start": 430.205, "word": "every" }, { "confidence": 0.9975586, "end": 430.87, "punctuated_word": "day.", "speaker": 0, "speaker_confidence": 0.75927734, "start": 430.44498, "word": "day" }, { "confidence": 0.9892578, "end": 431.03, "punctuated_word": "When", "speaker": 0, "speaker_confidence": 0.75927734, "start": 430.87, "word": "when" }, { "confidence": 1, "end": 431.11, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.75927734, "start": 431.03, "word": "you" }, { "confidence": 1, "end": 431.27, "punctuated_word": "think", "speaker": 0, "speaker_confidence": 0.75927734, "start": 431.11, "word": "think" }, { "confidence": 1, "end": 431.35, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.75927734, "start": 431.27, "word": "of" }, { "confidence": 0.9970703, "end": 431.51, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.75927734, "start": 431.35, "word": "the" }, { "confidence": 0.9970703, "end": 431.99, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 0.75927734, "start": 431.51, "word": "linux" }, { "confidence": 0.96972656, "end": 432.31, "punctuated_word": "kernel", "speaker": 0, "speaker_confidence": 0.75927734, "start": 431.99, "word": "kernel" }, { "confidence": 0.94140625, "end": 432.55, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.75927734, "start": 432.31, "word": "like" }, { "confidence": 0.9980469, "end": 432.71, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.75927734, "start": 432.55, "word": "the" }, { "confidence": 0.99609375, "end": 433.03, "punctuated_word": "engine", "speaker": 0, "speaker_confidence": 0.75927734, "start": 432.71, "word": "engine" }, { "confidence": 0.9951172, "end": 433.11, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7109375, "start": 433.03, "word": "in" }, { "confidence": 0.99902344, "end": 433.27, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.7109375, "start": 433.11, "word": "your" }, { "confidence": 0.99853516, "end": 433.66998, "punctuated_word": "car,", "speaker": 0, "speaker_confidence": 0.7109375, "start": 433.27, "word": "car" }, { "confidence": 0.99902344, "end": 433.91, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.7109375, "start": 433.66998, "word": "it" }, { "confidence": 0.99902344, "end": 434.15, "punctuated_word": "starts", "speaker": 0, "speaker_confidence": 0.7109375, "start": 433.91, "word": "starts" }, { "confidence": 1, "end": 434.31, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7109375, "start": 434.15, "word": "to" }, { "confidence": 0.99902344, "end": 434.63, "punctuated_word": "answer", "speaker": 0, "speaker_confidence": 0.7109375, "start": 434.31, "word": "answer" }, { "confidence": 0.9980469, "end": 434.71, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7109375, "start": 434.63, "word": "the" }, { "confidence": 0.99902344, "end": 435.19, "punctuated_word": "question", "speaker": 0, "speaker_confidence": 0.7109375, "start": 434.71, "word": "question" }, { "confidence": 0.9980469, "end": 435.43, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7109375, "start": 435.19, "word": "of" }, { "confidence": 0.7705078, "end": 435.59, "punctuated_word": "why", "speaker": 0, "speaker_confidence": 0.7109375, "start": 435.43, "word": "why" }, { "confidence": 0.98828125, "end": 435.66998, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.7109375, "start": 435.59, "word": "are" }, { "confidence": 0.99902344, "end": 435.91, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.7109375, "start": 435.66998, "word": "there" }, { "confidence": 0.99121094, "end": 435.99, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.67578125, "start": 435.91, "word": "so" }, { "confidence": 0.99902344, "end": 436.31, "punctuated_word": "many", "speaker": 0, "speaker_confidence": 0.67578125, "start": 435.99, "word": "many" }, { "confidence": 0.9951172, "end": 436.55, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 0.67578125, "start": 436.31, "word": "linux" }, { "confidence": 0.8305664, "end": 437.05, "punctuated_word": "distros.", "speaker": 0, "speaker_confidence": 0.67578125, "start": 436.55, "word": "distros" }, { "confidence": 1, "end": 437.43, "punctuated_word": "Some", "speaker": 0, "speaker_confidence": 0.67578125, "start": 437.27, "word": "some" }, { "confidence": 0.99902344, "end": 437.66998, "punctuated_word": "cars", "speaker": 0, "speaker_confidence": 0.67578125, "start": 437.43, "word": "cars" }, { "confidence": 1, "end": 437.75, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.67578125, "start": 437.66998, "word": "are" }, { "confidence": 1, "end": 438.15, "punctuated_word": "designed", "speaker": 0, "speaker_confidence": 0.67578125, "start": 437.75, "word": "designed" }, { "confidence": 1, "end": 438.22998, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.67578125, "start": 438.15, "word": "to" }, { "confidence": 1, "end": 438.38998, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.53515625, "start": 438.22998, "word": "go" }, { "confidence": 0.94433594, "end": 438.79, "punctuated_word": "fast,", "speaker": 0, "speaker_confidence": 0.53515625, "start": 438.38998, "word": "fast" }, { "confidence": 0.9980469, "end": 439.11, "punctuated_word": "others", "speaker": 0, "speaker_confidence": 0.53515625, "start": 438.79, "word": "others" }, { "confidence": 0.99121094, "end": 439.27, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.53515625, "start": 439.11, "word": "for" }, { "confidence": 0.9904785, "end": 439.745, "punctuated_word": "comfort,", "speaker": 0, "speaker_confidence": 0.53515625, "start": 439.27, "word": "comfort" }, { "confidence": 0.9560547, "end": 439.905, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.73828125, "start": 439.82498, "word": "some" }, { "confidence": 0.99121094, "end": 440.145, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.73828125, "start": 439.905, "word": "are" }, { "confidence": 0.99902344, "end": 440.54498, "punctuated_word": "engineered", "speaker": 0, "speaker_confidence": 0.73828125, "start": 440.145, "word": "engineered" }, { "confidence": 0.99609375, "end": 440.785, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.73828125, "start": 440.54498, "word": "for" }, { "confidence": 0.93603516, "end": 441.285, "punctuated_word": "enterprise", "speaker": 0, "speaker_confidence": 0.73828125, "start": 440.785, "word": "enterprise" }, { "confidence": 0.82470703, "end": 441.665, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.73828125, "start": 441.425, "word": "and" }, { "confidence": 1, "end": 441.985, "punctuated_word": "others", "speaker": 0, "speaker_confidence": 0.73828125, "start": 441.665, "word": "others" }, { "confidence": 0.99902344, "end": 442.145, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.73828125, "start": 441.985, "word": "are" }, { "confidence": 0.99902344, "end": 442.305, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.73828125, "start": 442.145, "word": "just" }, { "confidence": 0.99902344, "end": 442.465, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.73828125, "start": 442.305, "word": "for" }, { "confidence": 1, "end": 442.965, "punctuated_word": "fun.", "speaker": 0, "speaker_confidence": 0.73828125, "start": 442.465, "word": "fun" }, { "confidence": 1, "end": 443.185, "punctuated_word": "As", "speaker": 0, "speaker_confidence": 0.9838867, "start": 443.025, "word": "as" }, { "confidence": 1, "end": 443.26498, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9838867, "start": 443.185, "word": "a" }, { "confidence": 1, "end": 443.76498, "punctuated_word": "developer,", "speaker": 0, "speaker_confidence": 0.9838867, "start": 443.26498, "word": "developer" }, { "confidence": 0.9980469, "end": 444.305, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 0.9838867, "start": 443.985, "word": "linux" }, { "confidence": 1, "end": 444.465, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9838867, "start": 444.305, "word": "is" }, { "confidence": 0.9980469, "end": 444.625, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.9838867, "start": 444.465, "word": "like" }, { "confidence": 1, "end": 444.865, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9838867, "start": 444.625, "word": "a" }, { "confidence": 0.99902344, "end": 445.10498, "punctuated_word": "free", "speaker": 0, "speaker_confidence": 0.9838867, "start": 444.865, "word": "free" }, { "confidence": 1, "end": 445.505, "punctuated_word": "engine", "speaker": 0, "speaker_confidence": 0.9838867, "start": 445.10498, "word": "engine" }, { "confidence": 0.99609375, "end": 445.665, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9838867, "start": 445.505, "word": "that" }, { "confidence": 1, "end": 445.82498, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.9838867, "start": 445.665, "word": "you" }, { "confidence": 0.99902344, "end": 445.905, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9838867, "start": 445.82498, "word": "can" }, { "confidence": 1, "end": 446.145, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.9838867, "start": 445.905, "word": "use" }, { "confidence": 1, "end": 446.305, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9838867, "start": 446.145, "word": "to" }, { "confidence": 1, "end": 446.54498, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.9838867, "start": 446.305, "word": "build" }, { "confidence": 1, "end": 446.705, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.9838867, "start": 446.54498, "word": "your" }, { "confidence": 1, "end": 446.865, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 0.9838867, "start": 446.705, "word": "own" }, { "confidence": 1, "end": 447.365, "punctuated_word": "car.", "speaker": 0, "speaker_confidence": 0.9838867, "start": 446.865, "word": "car" }, { "confidence": 1, "end": 447.69, "punctuated_word": "That", "speaker": 0, "speaker_confidence": 0.9838867, "start": 447.425, "word": "that" }, { "confidence": 0.6801758, "end": 448.17, "punctuated_word": "freedom,", "speaker": 0, "speaker_confidence": 0.9838867, "start": 447.77, "word": "freedom" }, { "confidence": 1, "end": 448.41, "punctuated_word": "along", "speaker": 0, "speaker_confidence": 0.9838867, "start": 448.17, "word": "along" }, { "confidence": 0.99902344, "end": 448.57, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.9838867, "start": 448.41, "word": "with" }, { "confidence": 0.54345703, "end": 448.97, "punctuated_word": "GNU", "speaker": 0, "speaker_confidence": 0.9838867, "start": 448.57, "word": "gnu" }, { "confidence": 0.9111328, "end": 449.21, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9838867, "start": 448.97, "word": "and" }, { "confidence": 0.9614258, "end": 449.29, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9838867, "start": 449.21, "word": "the" }, { "confidence": 0.97314453, "end": 449.61002, "punctuated_word": "greater", "speaker": 0, "speaker_confidence": 0.9838867, "start": 449.29, "word": "greater" }, { "confidence": 0.97265625, "end": 449.93, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.9838867, "start": 449.61002, "word": "open" }, { "confidence": 0.99316406, "end": 450.17, "punctuated_word": "source", "speaker": 0, "speaker_confidence": 0.9838867, "start": 449.93, "word": "source" }, { "confidence": 0.97216797, "end": 450.67, "punctuated_word": "ecosystem,", "speaker": 0, "speaker_confidence": 0.9838867, "start": 450.17, "word": "ecosystem" }, { "confidence": 1, "end": 451.53, "punctuated_word": "motivates", "speaker": 0, "speaker_confidence": 0.9838867, "start": 451.05, "word": "motivates" }, { "confidence": 0.9951172, "end": 451.77, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.9838867, "start": 451.53, "word": "people" }, { "confidence": 0.99902344, "end": 451.93, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9838867, "start": 451.77, "word": "to" }, { "confidence": 0.9970703, "end": 452.17, "punctuated_word": "try", "speaker": 0, "speaker_confidence": 0.9838867, "start": 451.93, "word": "try" }, { "confidence": 0.99902344, "end": 452.41, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.9838867, "start": 452.17, "word": "new" }, { "confidence": 0.9941406, "end": 452.73, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 0.9838867, "start": 452.41, "word": "things" }, { "confidence": 0.9453125, "end": 452.97, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9838867, "start": 452.73, "word": "and" }, { "confidence": 0.9951172, "end": 453.13, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9838867, "start": 452.97, "word": "to" }, { "confidence": 1, "end": 453.61002, "punctuated_word": "profit", "speaker": 0, "speaker_confidence": 0.9838867, "start": 453.13, "word": "profit" }, { "confidence": 0.99316406, "end": 453.77, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.9838867, "start": 453.61002, "word": "by" }, { "confidence": 0.99902344, "end": 454.09, "punctuated_word": "creating", "speaker": 0, "speaker_confidence": 0.9838867, "start": 453.77, "word": "creating" }, { "confidence": 0.99609375, "end": 454.57, "punctuated_word": "innovation", "speaker": 0, "speaker_confidence": 0.9838867, "start": 454.09, "word": "innovation" }, { "confidence": 0.9941406, "end": 454.81, "punctuated_word": "within", "speaker": 0, "speaker_confidence": 0.9838867, "start": 454.57, "word": "within" }, { "confidence": 0.9506836, "end": 455.275, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9838867, "start": 454.81, "word": "that" }, { "confidence": 0.9277344, "end": 455.835, "punctuated_word": "system.", "speaker": 0, "speaker_confidence": 0.9838867, "start": 455.35498, "word": "system" }, { "confidence": 1, "end": 456.155, "punctuated_word": "People", "speaker": 0, "speaker_confidence": 0.9838867, "start": 455.835, "word": "people" }, { "confidence": 0.9921875, "end": 456.315, "punctuated_word": "who", "speaker": 0, "speaker_confidence": 0.9838867, "start": 456.155, "word": "who" }, { "confidence": 0.9550781, "end": 456.475, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.9838867, "start": 456.315, "word": "are" }, { "confidence": 0.99902344, "end": 456.79498, "punctuated_word": "threatened", "speaker": 0, "speaker_confidence": 0.9838867, "start": 456.475, "word": "threatened" }, { "confidence": 0.99902344, "end": 456.955, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.9838867, "start": 456.79498, "word": "by" }, { "confidence": 0.99609375, "end": 457.035, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.9838867, "start": 456.955, "word": "it" }, { "confidence": 0.97314453, "end": 457.195, "punctuated_word": "call", "speaker": 0, "speaker_confidence": 0.8359375, "start": 457.035, "word": "call" }, { "confidence": 0.99902344, "end": 457.35498, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8359375, "start": 457.195, "word": "it" }, { "confidence": 0.87475586, "end": 457.85498, "punctuated_word": "communism,", "speaker": 0, "speaker_confidence": 0.8359375, "start": 457.35498, "word": "communism" }, { "confidence": 0.99902344, "end": 458.235, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.8359375, "start": 458.07498, "word": "but" }, { "confidence": 0.640625, "end": 458.475, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8359375, "start": 458.235, "word": "in" }, { "confidence": 0.9655762, "end": 458.875, "punctuated_word": "reality,", "speaker": 0, "speaker_confidence": 0.8359375, "start": 458.475, "word": "reality" }, { "confidence": 0.9995117, "end": 459.115, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.8359375, "start": 458.875, "word": "it's" }, { "confidence": 0.9970703, "end": 459.195, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8359375, "start": 459.115, "word": "the" }, { "confidence": 0.99902344, "end": 459.595, "punctuated_word": "polar", "speaker": 0, "speaker_confidence": 0.8359375, "start": 459.195, "word": "polar" }, { "confidence": 1, "end": 459.995, "punctuated_word": "opposite", "speaker": 0, "speaker_confidence": 0.8359375, "start": 459.595, "word": "opposite" }, { "confidence": 0.92822266, "end": 460.155, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8359375, "start": 459.995, "word": "and" }, { "confidence": 0.99316406, "end": 460.315, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8359375, "start": 460.155, "word": "the" }, { "confidence": 0.99902344, "end": 460.555, "punctuated_word": "free", "speaker": 0, "speaker_confidence": 0.8359375, "start": 460.315, "word": "free" }, { "confidence": 0.99902344, "end": 460.875, "punctuated_word": "market", "speaker": 0, "speaker_confidence": 0.8359375, "start": 460.555, "word": "market" }, { "confidence": 0.9941406, "end": 461.035, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.8359375, "start": 460.875, "word": "at" }, { "confidence": 0.9863281, "end": 461.195, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.8359375, "start": 461.035, "word": "its" }, { "confidence": 0.9970703, "end": 461.695, "punctuated_word": "finest.", "speaker": 0, "speaker_confidence": 0.8359375, "start": 461.195, "word": "finest" }, { "confidence": 0.9975586, "end": 462.155, "punctuated_word": "Today,", "speaker": 0, "speaker_confidence": 0.8359375, "start": 461.755, "word": "today" }, { "confidence": 0.9951172, "end": 462.475, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 0.8359375, "start": 462.155, "word": "even" }, { "confidence": 0.98828125, "end": 462.89, "punctuated_word": "Microsoft", "speaker": 0, "speaker_confidence": 0.8359375, "start": 462.475, "word": "microsoft" }, { "confidence": 0.4189453, "end": 463.13, "punctuated_word": "he", "speaker": 0, "speaker_confidence": 0.8359375, "start": 462.97, "word": "he" }, { "confidence": 0.82470703, "end": 463.29, "punctuated_word": "fully", "speaker": 0, "speaker_confidence": 0.8359375, "start": 463.13, "word": "fully" }, { "confidence": 0.99316406, "end": 463.69, "punctuated_word": "supports", "speaker": 0, "speaker_confidence": 0.8359375, "start": 463.29, "word": "supports" }, { "confidence": 0.9873047, "end": 464.01, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 0.8359375, "start": 463.69, "word": "linux" }, { "confidence": 0.99609375, "end": 464.25, "punctuated_word": "through", "speaker": 0, "speaker_confidence": 0.8359375, "start": 464.01, "word": "through" }, { "confidence": 0.9038086, "end": 464.49002, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.8359375, "start": 464.25, "word": "its" }, { "confidence": 0.939209, "end": 464.99002, "punctuated_word": "WSL", "speaker": 0, "speaker_confidence": 0.8359375, "start": 464.49002, "word": "wsl" }, { "confidence": 0.9885254, "end": 465.63, "punctuated_word": "project.", "speaker": 0, "speaker_confidence": 0.8359375, "start": 465.13, "word": "project" }, { "confidence": 0.9980469, "end": 465.85, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.8359375, "start": 465.69, "word": "i'm" }, { "confidence": 0.9790039, "end": 466.01, "punctuated_word": "gonna", "speaker": 0, "speaker_confidence": 0.8359375, "start": 465.85, "word": "gonna" }, { "confidence": 0.9921875, "end": 466.09003, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.8359375, "start": 466.01, "word": "go" }, { "confidence": 1, "end": 466.25, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 0.8359375, "start": 466.09003, "word": "ahead" }, { "confidence": 0.9970703, "end": 466.33002, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8359375, "start": 466.25, "word": "and" }, { "confidence": 1, "end": 466.49002, "punctuated_word": "wrap", "speaker": 0, "speaker_confidence": 0.7529297, "start": 466.33002, "word": "wrap" }, { "confidence": 1, "end": 466.73, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 0.7529297, "start": 466.49002, "word": "things" }, { "confidence": 1, "end": 466.89, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.7529297, "start": 466.73, "word": "up" }, { "confidence": 0.9951172, "end": 467.21002, "punctuated_word": "there.", "speaker": 0, "speaker_confidence": 0.7529297, "start": 466.89, "word": "there" }, { "confidence": 0.9995117, "end": 467.45, "punctuated_word": "There's", "speaker": 0, "speaker_confidence": 0.7529297, "start": 467.21002, "word": "there's" }, { "confidence": 1, "end": 467.53003, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7529297, "start": 467.45, "word": "a" }, { "confidence": 1, "end": 467.69, "punctuated_word": "lot", "speaker": 0, "speaker_confidence": 0.7529297, "start": 467.53003, "word": "lot" }, { "confidence": 1, "end": 467.85, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7529297, "start": 467.69, "word": "of" }, { "confidence": 0.99902344, "end": 468.25, "punctuated_word": "aspects", "speaker": 0, "speaker_confidence": 0.7529297, "start": 467.85, "word": "aspects" }, { "confidence": 1, "end": 468.41, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7529297, "start": 468.25, "word": "of" }, { "confidence": 0.99609375, "end": 468.57, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7529297, "start": 468.41, "word": "the" }, { "confidence": 1, "end": 468.89, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 0.7529297, "start": 468.57, "word": "linux" }, { "confidence": 0.98828125, "end": 469.37003, "punctuated_word": "history", "speaker": 0, "speaker_confidence": 0.7529297, "start": 468.89, "word": "history" }, { "confidence": 0.9770508, "end": 469.69, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7529297, "start": 469.37003, "word": "and" }, { "confidence": 0.99609375, "end": 469.77002, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7529297, "start": 469.69, "word": "the" }, { "confidence": 0.99902344, "end": 470.25, "punctuated_word": "histories", "speaker": 0, "speaker_confidence": 0.7529297, "start": 469.77002, "word": "histories" }, { "confidence": 0.99902344, "end": 470.475, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7529297, "start": 470.25, "word": "of" }, { "confidence": 0.96533203, "end": 470.95502, "punctuated_word": "individual", "speaker": 0, "speaker_confidence": 0.7529297, "start": 470.715, "word": "individual" }, { "confidence": 0.98999023, "end": 471.435, "punctuated_word": "distros", "speaker": 0, "speaker_confidence": 0.7529297, "start": 470.95502, "word": "distros" }, { "confidence": 0.99902344, "end": 471.595, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7529297, "start": 471.435, "word": "that" }, { "confidence": 1, "end": 471.755, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.7529297, "start": 471.595, "word": "we" }, { "confidence": 1, "end": 471.995, "punctuated_word": "didn't", "speaker": 0, "speaker_confidence": 0.7529297, "start": 471.755, "word": "didn't" }, { "confidence": 0.890625, "end": 472.475, "punctuated_word": "cover.", "speaker": 0, "speaker_confidence": 0.7529297, "start": 471.995, "word": "cover" }, { "confidence": 0.89501953, "end": 472.635, "punctuated_word": "But,", "speaker": 0, "speaker_confidence": 0.45898438, "start": 472.475, "word": "but" }, { "confidence": 0.99609375, "end": 473.11502, "punctuated_word": "hopefully,", "speaker": 0, "speaker_confidence": 0.45898438, "start": 472.635, "word": "hopefully" }, { "confidence": 0.9707031, "end": 473.275, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.45898438, "start": 473.11502, "word": "this" }, { "confidence": 0.99902344, "end": 473.435, "punctuated_word": "gives", "speaker": 0, "speaker_confidence": 0.45898438, "start": 473.275, "word": "gives" }, { "confidence": 1, "end": 473.595, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.45898438, "start": 473.435, "word": "you" }, { "confidence": 1, "end": 473.67502, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.63134766, "start": 473.595, "word": "a" }, { "confidence": 1, "end": 473.995, "punctuated_word": "general", "speaker": 0, "speaker_confidence": 0.63134766, "start": 473.67502, "word": "general" }, { "confidence": 1, "end": 474.39502, "punctuated_word": "idea", "speaker": 0, "speaker_confidence": 0.63134766, "start": 473.995, "word": "idea" }, { "confidence": 1, "end": 474.555, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.63134766, "start": 474.39502, "word": "of" }, { "confidence": 1, "end": 474.715, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.63134766, "start": 474.555, "word": "how" }, { "confidence": 0.9970703, "end": 475.035, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 0.63134766, "start": 474.715, "word": "linux" }, { "confidence": 1, "end": 475.275, "punctuated_word": "came", "speaker": 0, "speaker_confidence": 0.63134766, "start": 475.035, "word": "came" }, { "confidence": 0.99902344, "end": 475.515, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.63134766, "start": 475.275, "word": "into" }, { "confidence": 0.99902344, "end": 476.015, "punctuated_word": "existence", "speaker": 0, "speaker_confidence": 0.63134766, "start": 475.515, "word": "existence" }, { "confidence": 0.97314453, "end": 476.39502, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.63134766, "start": 476.23502, "word": "and" }, { "confidence": 1, "end": 476.475, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.63134766, "start": 476.39502, "word": "the" }, { "confidence": 0.99902344, "end": 476.975, "punctuated_word": "evolution", "speaker": 0, "speaker_confidence": 0.79052734, "start": 476.475, "word": "evolution" }, { "confidence": 1, "end": 477.275, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.79052734, "start": 477.035, "word": "of" }, { "confidence": 0.99609375, "end": 477.67502, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 0.79052734, "start": 477.275, "word": "linux" }, { "confidence": 0.9663086, "end": 478.155, "punctuated_word": "distros", "speaker": 0, "speaker_confidence": 0.79052734, "start": 477.67502, "word": "distros" }, { "confidence": 0.9873047, "end": 478.39502, "punctuated_word": "over", "speaker": 0, "speaker_confidence": 0.79052734, "start": 478.155, "word": "over" }, { "confidence": 1, "end": 478.715, "punctuated_word": "time.", "speaker": 0, "speaker_confidence": 0.79052734, "start": 478.39502, "word": "time" }, { "confidence": 0.88720703, "end": 479.035, "punctuated_word": "Oh,", "speaker": 0, "speaker_confidence": 0.79052734, "start": 478.715, "word": "oh" }, { "confidence": 1, "end": 479.115, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.79052734, "start": 479.035, "word": "and" }, { "confidence": 0.98291016, "end": 479.355, "punctuated_word": "there's", "speaker": 0, "speaker_confidence": 0.79052734, "start": 479.115, "word": "there's" }, { "confidence": 0.9819336, "end": 479.595, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.79052734, "start": 479.355, "word": "one" }, { "confidence": 0.99902344, "end": 479.835, "punctuated_word": "random", "speaker": 0, "speaker_confidence": 0.79052734, "start": 479.595, "word": "random" }, { "confidence": 1, "end": 479.995, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.79052734, "start": 479.835, "word": "thing" }, { "confidence": 0.9194336, "end": 480.16, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.79052734, "start": 479.995, "word": "i" }, { "confidence": 0.99902344, "end": 480.64, "punctuated_word": "almost", "speaker": 0, "speaker_confidence": 0.79052734, "start": 480.24, "word": "almost" }, { "confidence": 0.9914551, "end": 481.12, "punctuated_word": "forgot.", "speaker": 0, "speaker_confidence": 0.79052734, "start": 480.64, "word": "forgot" }, { "confidence": 0.9453125, "end": 481.36002, "punctuated_word": "Back", "speaker": 0, "speaker_confidence": 0.79052734, "start": 481.12, "word": "back" }, { "confidence": 0.99609375, "end": 481.52, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.79052734, "start": 481.36002, "word": "in" }, { "confidence": 0.8791504, "end": 482.02, "punctuated_word": "2005,", "speaker": 0, "speaker_confidence": 0.79052734, "start": 481.52, "word": "2005" }, { "confidence": 0.9770508, "end": 482.32, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.79052734, "start": 482.16, "word": "the" }, { "confidence": 0.99902344, "end": 482.64, "punctuated_word": "source", "speaker": 0, "speaker_confidence": 0.79052734, "start": 482.32, "word": "source" }, { "confidence": 0.99902344, "end": 482.88, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.79052734, "start": 482.64, "word": "code" }, { "confidence": 0.9921875, "end": 483.12, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.79052734, "start": 482.88, "word": "for" }, { "confidence": 0.99316406, "end": 483.52, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 0.79052734, "start": 483.12, "word": "linux" }, { "confidence": 0.99902344, "end": 483.68, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.79052734, "start": 483.52, "word": "was" }, { "confidence": 0.9970703, "end": 484.08002, "punctuated_word": "managed", "speaker": 0, "speaker_confidence": 0.79052734, "start": 483.68, "word": "managed" }, { "confidence": 0.9980469, "end": 484.32, "punctuated_word": "under", "speaker": 0, "speaker_confidence": 0.79052734, "start": 484.08002, "word": "under" }, { "confidence": 0.9506836, "end": 484.4, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.79052734, "start": 484.32, "word": "a" }, { "confidence": 0.9892578, "end": 484.80002, "punctuated_word": "version", "speaker": 0, "speaker_confidence": 0.79052734, "start": 484.4, "word": "version" }, { "confidence": 0.9951172, "end": 485.2, "punctuated_word": "control", "speaker": 0, "speaker_confidence": 0.79052734, "start": 484.80002, "word": "control" }, { "confidence": 0.99609375, "end": 485.68, "punctuated_word": "system", "speaker": 0, "speaker_confidence": 0.79052734, "start": 485.2, "word": "system" }, { "confidence": 0.99316406, "end": 486, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 0.79052734, "start": 485.68, "word": "called" }, { "confidence": 0.9737549, "end": 486.5, "punctuated_word": "BitKeeper.", "speaker": 0, "speaker_confidence": 0.79052734, "start": 486, "word": "bitkeeper" }, { "confidence": 0.96875, "end": 486.88, "punctuated_word": "That", "speaker": 0, "speaker_confidence": 0.79052734, "start": 486.72, "word": "that" }, { "confidence": 0.9604492, "end": 487.175, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.79052734, "start": 486.88, "word": "was" }, { "confidence": 0.9604492, "end": 487.655, "punctuated_word": "controversial", "speaker": 0, "speaker_confidence": 0.79052734, "start": 487.335, "word": "controversial" }, { "confidence": 0.6767578, "end": 487.895, "punctuated_word": "though", "speaker": 0, "speaker_confidence": 0.79052734, "start": 487.655, "word": "though" }, { "confidence": 0.8852539, "end": 488.13498, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.79052734, "start": 487.895, "word": "because" }, { "confidence": 0.97265625, "end": 488.375, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.79052734, "start": 488.13498, "word": "it's" }, { "confidence": 0.9741211, "end": 488.875, "punctuated_word": "proprietary", "speaker": 0, "speaker_confidence": 0.79052734, "start": 488.375, "word": "proprietary" }, { "confidence": 0.9770508, "end": 489.51498, "punctuated_word": "software.", "speaker": 0, "speaker_confidence": 0.79052734, "start": 489.01498, "word": "software" }, { "confidence": 0.99902344, "end": 489.815, "punctuated_word": "So", "speaker": 0, "speaker_confidence": 0.7807617, "start": 489.655, "word": "so" }, { "confidence": 0.9592285, "end": 490.13498, "punctuated_word": "Linus", "speaker": 0, "speaker_confidence": 0.7807617, "start": 489.815, "word": "linus" }, { "confidence": 0.9995117, "end": 490.63498, "punctuated_word": "Torvalds", "speaker": 0, "speaker_confidence": 0.7807617, "start": 490.13498, "word": "torvalds" }, { "confidence": 0.99902344, "end": 490.85498, "punctuated_word": "did", "speaker": 0, "speaker_confidence": 0.7807617, "start": 490.69498, "word": "did" }, { "confidence": 0.99902344, "end": 491.01498, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.7807617, "start": 490.85498, "word": "what" }, { "confidence": 0.99902344, "end": 491.25497, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 0.7807617, "start": 491.01498, "word": "any" }, { "confidence": 0.99902344, "end": 491.495, "punctuated_word": "legend", "speaker": 0, "speaker_confidence": 0.7807617, "start": 491.25497, "word": "legend" }, { "confidence": 1, "end": 491.655, "punctuated_word": "would", "speaker": 0, "speaker_confidence": 0.7807617, "start": 491.495, "word": "would" }, { "confidence": 0.99902344, "end": 491.97498, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.7807617, "start": 491.655, "word": "do" }, { "confidence": 0.8354492, "end": 492.13498, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7807617, "start": 491.97498, "word": "and" }, { "confidence": 1, "end": 492.375, "punctuated_word": "he", "speaker": 0, "speaker_confidence": 0.7807617, "start": 492.13498, "word": "he" }, { "confidence": 1, "end": 492.775, "punctuated_word": "created", "speaker": 0, "speaker_confidence": 0.7807617, "start": 492.375, "word": "created" }, { "confidence": 0.94677734, "end": 493.175, "punctuated_word": "Git.", "speaker": 0, "speaker_confidence": 0.7807617, "start": 492.775, "word": "git" }, { "confidence": 0.99902344, "end": 493.495, "punctuated_word": "Before", "speaker": 0, "speaker_confidence": 0.7807617, "start": 493.175, "word": "before" }, { "confidence": 1, "end": 493.655, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7807617, "start": 493.495, "word": "you" }, { "confidence": 0.9951172, "end": 493.895, "punctuated_word": "go,", "speaker": 0, "speaker_confidence": 0.7807617, "start": 493.655, "word": "go" }, { "confidence": 1, "end": 494.055, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.7807617, "start": 493.895, "word": "make" }, { "confidence": 1, "end": 494.29498, "punctuated_word": "sure", "speaker": 0, "speaker_confidence": 0.7807617, "start": 494.055, "word": "sure" }, { "confidence": 0.99902344, "end": 494.455, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7807617, "start": 494.29498, "word": "to" }, { "confidence": 0.9560547, "end": 494.69498, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.7807617, "start": 494.455, "word": "like" }, { "confidence": 0.99609375, "end": 494.85498, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7807617, "start": 494.69498, "word": "and" }, { "confidence": 1, "end": 495.35498, "punctuated_word": "subscribe", "speaker": 0, "speaker_confidence": 0.7807617, "start": 494.85498, "word": "subscribe" }, { "confidence": 0.5126953, "end": 495.57498, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7807617, "start": 495.41498, "word": "and" }, { "confidence": 0.99902344, "end": 495.735, "punctuated_word": "stay", "speaker": 0, "speaker_confidence": 0.7807617, "start": 495.57498, "word": "stay" }, { "confidence": 0.99609375, "end": 496.055, "punctuated_word": "tuned", "speaker": 0, "speaker_confidence": 0.7807617, "start": 495.735, "word": "tuned" }, { "confidence": 0.99902344, "end": 496.29498, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.7807617, "start": 496.055, "word": "for" }, { "confidence": 0.9970703, "end": 496.375, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7807617, "start": 496.29498, "word": "a" }, { "confidence": 0.99902344, "end": 496.53497, "punctuated_word": "lot", "speaker": 0, "speaker_confidence": 0.40673828, "start": 496.375, "word": "lot" }, { "confidence": 0.9980469, "end": 496.69498, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.40673828, "start": 496.53497, "word": "more" }, { "confidence": 0.9589844, "end": 497.04, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 0.40673828, "start": 496.69498, "word": "linux" }, { "confidence": 0.40795898, "end": 497.28, "punctuated_word": "his", "speaker": 0, "speaker_confidence": 0.40673828, "start": 497.12, "word": "his" }, { "confidence": 0.99316406, "end": 497.52002, "punctuated_word": "content", "speaker": 0, "speaker_confidence": 0.40673828, "start": 497.28, "word": "content" }, { "confidence": 1, "end": 497.6, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.6386719, "start": 497.52002, "word": "on" }, { "confidence": 0.9941406, "end": 497.92, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.6386719, "start": 497.6, "word": "this" }, { "confidence": 0.99853516, "end": 498.32, "punctuated_word": "channel.", "speaker": 0, "speaker_confidence": 0.6386719, "start": 497.92, "word": "channel" }, { "confidence": 0.99902344, "end": 498.56, "punctuated_word": "Thanks", "speaker": 0, "speaker_confidence": 0.6386719, "start": 498.32, "word": "thanks" }, { "confidence": 1, "end": 498.72, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.6386719, "start": 498.56, "word": "for" }, { "confidence": 1, "end": 499.12, "punctuated_word": "watching", "speaker": 0, "speaker_confidence": 0.6386719, "start": 498.72, "word": "watching" }, { "confidence": 0.7392578, "end": 499.36002, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6386719, "start": 499.12, "word": "and" }, { "confidence": 0.99902344, "end": 499.52002, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.6386719, "start": 499.36002, "word": "i" }, { "confidence": 0.99902344, "end": 499.76, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.6386719, "start": 499.52002, "word": "will" }, { "confidence": 1, "end": 499.92, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.6386719, "start": 499.76, "word": "see" }, { "confidence": 1, "end": 500.16, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.6386719, "start": 499.92, "word": "you" }, { "confidence": 1, "end": 500.32, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.6386719, "start": 500.16, "word": "in" }, { "confidence": 1, "end": 500.4, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6386719, "start": 500.32, "word": "the" }, { "confidence": 1, "end": 500.64, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.6386719, "start": 500.4, "word": "next" }, { "confidence": 0.97998047, "end": 501.14, "punctuated_word": "one.", "speaker": 0, "speaker_confidence": 0.6386719, "start": 500.64, "word": "one" } ] } ], "detected_language": "", "language_confidence": 0, "search": null } ], "summary": { "result": "success", "short": "The \" Free virtual machine\" (VIT) and \" Free operating system\" (FOO) were created to replace the \" Free operating system\" with a complete Linux based operating system, and the \" Free virtual machine\" (VIT) project was created to replace the \" Free operating system\" with a complete Linux based operating system. The \" Free virtual machine\" project was created to replace the \" Free operating system\" with a complete Linux based operating system, and the \" Free virtual machine\" project was created to replace the \" Free operating system\" with a complete Linux based operating system. The \" Free virtual machine\" project was created to replace the \" Free operating system\" with a complete Linux based operating system, and the \" Free virtual machine\" project was created to replace the \" Free operating system\" with a complete Linux based operating system. The \" Free virtual machine\" project was created to replace the \" Free operating system\" with a complete Linux based operating system, and the \" Free virtual" }, "utterances": null } }
downloads\Why_so_many_distros_The_Weird_History_of_Linux.wav
https://www.youtube.com/watch?v=ShcR4Zfc6Dw
Why so many distros? The Weird History of Linux
1,410,860
Fireship
210
Worldcoin is a cryptocurrency that uses biometric iris data to verify people before making financial transactions. It is a controversial project co-founded by Sam Altman of OpenAI. Some call it a dystopian scam, while others believe it will make the global economy more equitable. #tech #crypto #thecodereport #ai 💬 Chat with Me on Discord https://discord.gg/fireship 🔗 Resources Worldcoin https://worldcoin.org Worldcoin raises 115M https://techcrunch.com/2023/05/25/sam-altmans-crypto-project-worldcoin-got-more-coin-in-latest-115m-raise AI Regulation https://youtu.be/CDokUdux0rc 🔥 Get More Content - Upgrade to PRO Upgrade at https://fireship.io/pro Use code YT25 for 25% off PRO access 🎨 My Editor Settings - Atom One Dark - vscode-icons - Fira Code Font 🔖 Topics Covered - What is Worldcoin? - Is worldcoin safe? - Who is funding Worldcoin? - Top cryptocurrency projects - The risks of AI - What is a sybil attack? - How Iris scanning works - What is a Zero Knowledge Proof ZKP
{ "metadata": { "channels": 1, "created": "2024-02-04T13:22:51.370Z", "duration": 210.41919, "model_info": { "30089e05-99d1-4376-b32e-c263170674af": { "arch": "nova-2", "name": "2-general-nova", "version": "2024-01-09.29447" } }, "models": [ "30089e05-99d1-4376-b32e-c263170674af" ], "request_id": "8baf7254-fdc9-4281-909b-e91f13c819d9", "sha256": "b8618c012f06c29b3092c06291e69f57bb3b10947a59e06f57f03d5c77d951e2", "summary_info": { "input_tokens": 983, "model_uuid": "67875a7f-c9c4-48a0-aa55-5bdb8a91c34a", "output_tokens": 89 }, "transaction_key": "deprecated", "warnings": null }, "results": { "channels": [ { "alternatives": [ { "confidence": 0.9980469, "entities": null, "paragraphs": { "paragraphs": [ { "end": 13.385, "num_words": 49, "sentences": [ { "end": 4, "start": 0.24, "text": "It is May 29, 2023 and you're watching the code report." }, { "end": 7.945, "start": 4, "text": "If you're a poor person from a third world country, I have an incredible opportunity for you." }, { "end": 12.184999, "start": 8.025001, "text": "You look into this orb so I can harvest immutable biometric data from your eye holes." }, { "end": 12.745, "start": 12.184999, "text": "It doesn't hurt." }, { "end": 13.385, "start": 12.745, "text": "I promise." } ], "speaker": 0, "start": 0.24 }, { "end": 43.705, "num_words": 111, "sentences": [ { "end": 19.91, "start": 13.385, "text": "In exchange, I give you some of this shiny cryptocurrency that some rich dudes in San Francisco created out of thin air with zero economic effort." }, { "end": 26.865, "start": 19.91, "text": "It's called Worldcoin, and its goal is to scan a 1,000,000,000 eyeballs over the next few years to create mobile identity platform and payment network." }, { "end": 29.265, "start": 26.865, "text": "And, no, this isn't the plot of a Black Mirror episode." }, { "end": 34.225, "start": 29.265, "text": "It's a real project that just raised a $115,000,000 and already has over a 1000000 users." }, { "end": 43.705, "start": 34.225, "text": "It's co founded by the benevolent AI king Sam Altman, and is backed by a bunch of VCs like Andreessen Horowitz, which is behind many other crypto projects like Alchemy, Coinbase and Solana." } ], "speaker": 0, "start": 13.385 }, { "end": 65.825, "num_words": 83, "sentences": [ { "end": 46.165, "start": 43.845, "text": "And even Sam Bankman Fried is an early investor." }, { "end": 52.38, "start": 46.165, "text": "In fact, you may have already seen people wearing these Worldcoin t shirts walking around your village, putting these weird balls in Spaces." }, { "end": 56.78, "start": 52.38, "text": "These are your friendly World Coin operators, and every time they scan an eyeball, they get some crypto." }, { "end": 58.14, "start": 56.78, "text": "It's an ingenious business model." }, { "end": 65.825, "start": 58.14, "text": "It has all the same Ponzi nomics of your favorite cryptocurrencies, but is hacking team humans to do the actual physical labor of collecting and processing biometric data." } ], "speaker": 0, "start": 43.845 }, { "end": 90.58, "num_words": 99, "sentences": [ { "end": 75.64, "start": 65.825, "text": "The way it works is it takes a bunch of images of your iris, which like a Fingerprint is unique to every human, which is then used to verify your personhood so you can start using Worldcoin for everyday transactions." }, { "end": 80.765, "start": 75.78, "text": "The actual images and biometric TricData itself is deleted from the orb, so there's no reason to worry about your privacy." }, { "end": 82.625, "start": 80.765, "text": "The technology is actually quite transparent." }, { "end": 87.808, "start": 82.685, "text": "They explain in great detail how the orb is manufactured and some Some of the source code is available on GitHub." }, { "end": 90.58, "start": 87.808, "text": "Ultimately, it's just a machine that can establish proof of personhood." } ], "speaker": 0, "start": 65.825 }, { "end": 117.305, "num_words": 106, "sentences": [ { "end": 92.88, "start": 90.72, "text": "But why would we need a proof of personhood protocol?" }, { "end": 97.895004, "start": 92.88, "text": "Well, the main reason is the rise of artificial intelligence and the need to differentiate between man and machine." }, { "end": 108.11, "start": 97.895004, "text": "When it comes to financial systems, it can protect against civil attacks, which is named after a book about I'm a lady with multiple personality disorder, where one person assumes the identity of multiple accounts to game the system." }, { "end": 111.385, "start": 108.11, "text": "That can be a problem in crypto, but not really an issue in traditional banking." }, { "end": 117.305, "start": 111.385, "text": "The bigger problem is that AI tools like deep fakes and voice cloning can create digital clones of people from their Internet presence." } ], "speaker": 0, "start": 90.72 }, { "end": 159.575, "num_words": 166, "sentences": [ { "end": 125.67, "start": 117.305, "text": "And that's why it's more important than ever that The people who run these AI companies provide us with a global digital passport to keep us safe from these AI monstrosities that they created." }, { "end": 128.315, "start": 125.67, "text": "It's not About money, it's all about making the world a better place." }, { "end": 141.935, "start": 128.315, "text": "The Worldcoin Foundation is the initial steward of the protocol, but is intended to become a public open So it's network owned by everybody, and it could potentially evolve into a global universal basic income, which we're definitely going to need after GPT 5 takes all our jobs for good." }, { "end": 147.775, "start": 141.935, "text": "That sounds awesome, and I can't wait to just hang out all day and play video games, but Worldcoin has a long uphill battle ahead of itself." }, { "end": 159.575, "start": 147.775, "text": "The MIT Technology Review released a scathing article last year that alleged deceptive marketing practices among a variety of other issues, and then you already have a black market emerging in China for Iris data to exploit Avoid the world coin system." } ], "speaker": 0, "start": 117.305 }, { "end": 182.625, "num_words": 94, "sentences": [ { "end": 162.695, "start": 159.575, "text": "The biggest issue though is that people are resistant to look into the orb." }, { "end": 163.895, "start": 162.695, "text": "The orb is your friend." }, { "end": 165.175, "start": 163.895, "text": "You must look into the orb." }, { "end": 172.37, "start": 165.175, "text": "What's funny though is that most of us have already given All of our facial biometric data to companies like Apple, Meta, and TikTok in a far less transparent way." }, { "end": 182.625, "start": 172.37, "text": "After the orb verifies that you're a human, your identity is added to a list of verified humans, and then the Worldcoin app generates a zero knowledge proof to prove your identity without revealing any of your secret information." } ], "speaker": 0, "start": 159.575 }, { "end": 206.02, "num_words": 94, "sentences": [ { "end": 197.905, "start": 182.625, "text": "In theory, you could be totally anonymous on Worldcoin, but many are skeptical and think it's just laying the groundwork for a world currency that will be implemented by the upcoming One World Government after the alien invasion of 2027, at which point they'll no longer scan our eyeballs, but instead Zed use far more reliable alien probes." }, { "end": 198.925, "start": 198.125, "text": "Oh my god." }, { "end": 200.04501, "start": 198.925, "text": "I just cracked the code." }, { "end": 201.80501, "start": 200.04501, "text": "You can't spell probe without orb." }, { "end": 206.02, "start": 201.80501, "text": "I could be wrong here, but But just to be safe, I'm gonna stick with Monero for all my anonymous crypto needs." } ], "speaker": 0, "start": 182.625 }, { "end": 209.8, "num_words": 18, "sentences": [ { "end": 207.14, "start": 206.02, "text": "This has been the Cove Report." }, { "end": 209.8, "start": 207.14, "text": "Thanks for watching, and I will see you in the next one." } ], "speaker": 0, "start": 206.02 } ], "transcript": "\nSpeaker 0: It is May 29, 2023 and you're watching the code report. If you're a poor person from a third world country, I have an incredible opportunity for you. You look into this orb so I can harvest immutable biometric data from your eye holes. It doesn't hurt. I promise.\n\nIn exchange, I give you some of this shiny cryptocurrency that some rich dudes in San Francisco created out of thin air with zero economic effort. It's called Worldcoin, and its goal is to scan a 1,000,000,000 eyeballs over the next few years to create mobile identity platform and payment network. And, no, this isn't the plot of a Black Mirror episode. It's a real project that just raised a $115,000,000 and already has over a 1000000 users. It's co founded by the benevolent AI king Sam Altman, and is backed by a bunch of VCs like Andreessen Horowitz, which is behind many other crypto projects like Alchemy, Coinbase and Solana.\n\nAnd even Sam Bankman Fried is an early investor. In fact, you may have already seen people wearing these Worldcoin t shirts walking around your village, putting these weird balls in Spaces. These are your friendly World Coin operators, and every time they scan an eyeball, they get some crypto. It's an ingenious business model. It has all the same Ponzi nomics of your favorite cryptocurrencies, but is hacking team humans to do the actual physical labor of collecting and processing biometric data.\n\nThe way it works is it takes a bunch of images of your iris, which like a Fingerprint is unique to every human, which is then used to verify your personhood so you can start using Worldcoin for everyday transactions. The actual images and biometric TricData itself is deleted from the orb, so there's no reason to worry about your privacy. The technology is actually quite transparent. They explain in great detail how the orb is manufactured and some Some of the source code is available on GitHub. Ultimately, it's just a machine that can establish proof of personhood.\n\nBut why would we need a proof of personhood protocol? Well, the main reason is the rise of artificial intelligence and the need to differentiate between man and machine. When it comes to financial systems, it can protect against civil attacks, which is named after a book about I'm a lady with multiple personality disorder, where one person assumes the identity of multiple accounts to game the system. That can be a problem in crypto, but not really an issue in traditional banking. The bigger problem is that AI tools like deep fakes and voice cloning can create digital clones of people from their Internet presence.\n\nAnd that's why it's more important than ever that The people who run these AI companies provide us with a global digital passport to keep us safe from these AI monstrosities that they created. It's not About money, it's all about making the world a better place. The Worldcoin Foundation is the initial steward of the protocol, but is intended to become a public open So it's network owned by everybody, and it could potentially evolve into a global universal basic income, which we're definitely going to need after GPT 5 takes all our jobs for good. That sounds awesome, and I can't wait to just hang out all day and play video games, but Worldcoin has a long uphill battle ahead of itself. The MIT Technology Review released a scathing article last year that alleged deceptive marketing practices among a variety of other issues, and then you already have a black market emerging in China for Iris data to exploit Avoid the world coin system.\n\nThe biggest issue though is that people are resistant to look into the orb. The orb is your friend. You must look into the orb. What's funny though is that most of us have already given All of our facial biometric data to companies like Apple, Meta, and TikTok in a far less transparent way. After the orb verifies that you're a human, your identity is added to a list of verified humans, and then the Worldcoin app generates a zero knowledge proof to prove your identity without revealing any of your secret information.\n\nIn theory, you could be totally anonymous on Worldcoin, but many are skeptical and think it's just laying the groundwork for a world currency that will be implemented by the upcoming One World Government after the alien invasion of 2027, at which point they'll no longer scan our eyeballs, but instead Zed use far more reliable alien probes. Oh my god. I just cracked the code. You can't spell probe without orb. I could be wrong here, but But just to be safe, I'm gonna stick with Monero for all my anonymous crypto needs.\n\nThis has been the Cove Report. Thanks for watching, and I will see you in the next one." }, "summaries": null, "topics": [ { "end_word": 243, "start_word": 0, "text": "It is May 29, 2023 and you're watching the code report. If you're a poor person from a third world country, I have an incredible opportunity for you. You look into this orb so I can harvest immutable biometric data from your eye holes. It doesn't hurt. I promise. In exchange, I give you some of this shiny cryptocurrency that some rich dudes in San Francisco created out of thin air with zero economic effort. It's called Worldcoin, and its goal is to scan a 1,000,000,000 eyeballs over the next few years to create mobile identity platform and payment network. And, no, this isn't the plot of a Black Mirror episode. It's a real project that just raised a $115,000,000 and already has over a 1000000 users. It's co founded by the benevolent AI king Sam Altman, and is backed by a bunch of VCs like Andreessen Horowitz, which is behind many other crypto projects like Alchemy, Coinbase and Solana. And even Sam Bankman Fried is an early investor. In fact, you may have already seen people wearing these Worldcoin t shirts walking around your village, putting these weird balls in Spaces. These are your friendly World Coin operators, and every time they scan an eyeball, they get some crypto. It's an ingenious business model. It has all the same Ponzi nomics of your favorite cryptocurrencies, but is hacking team humans to do the actual physical labor of collecting and processing biometric data.", "topics": [ { "confidence": 0.9744374, "topic": "cryptocurrency" } ] }, { "end_word": 342, "start_word": 243, "text": "The way it works is it takes a bunch of images of your iris, which like a Fingerprint is unique to every human, which is then used to verify your personhood so you can start using Worldcoin for everyday transactions. The actual images and biometric TricData itself is deleted from the orb, so there's no reason to worry about your privacy. The technology is actually quite transparent. They explain in great detail how the orb is manufactured and some Some of the source code is available on GitHub. Ultimately, it's just a machine that can establish proof of personhood.", "topics": [] }, { "end_word": 482, "start_word": 342, "text": "But why would we need a proof of personhood protocol? Well, the main reason is the rise of artificial intelligence and the need to differentiate between man and machine. When it comes to financial systems, it can protect against civil attacks, which is named after a book about I'm a lady with multiple personality disorder, where one person assumes the identity of multiple accounts to game the system. That can be a problem in crypto, but not really an issue in traditional banking. The bigger problem is that AI tools like deep fakes and voice cloning can create digital clones of people from their Internet presence. And that's why it's more important than ever that The people who run these AI companies provide us with a global digital passport to keep us safe from these AI monstrosities that they created.", "topics": [ { "confidence": 0.9835939, "topic": "cryptocurrency" }, { "confidence": 0.9581104, "topic": "banking" }, { "confidence": 0.4076913, "topic": "ethics" }, { "confidence": 0.35672843, "topic": "security" }, { "confidence": 0.09796767, "topic": "artificial intelligence" }, { "confidence": 0.023837408, "topic": "gambling" }, { "confidence": 0.023380466, "topic": "ideologies" }, { "confidence": 0.023351325, "topic": "intellectual property" }, { "confidence": 0.015752885, "topic": "criminality" } ] }, { "end_word": 572, "start_word": 482, "text": "It's not About money, it's all about making the world a better place. The Worldcoin Foundation is the initial steward of the protocol, but is intended to become a public open So it's network owned by everybody, and it could potentially evolve into a global universal basic income, which we're definitely going to need after GPT 5 takes all our jobs for good. That sounds awesome, and I can't wait to just hang out all day and play video games, but Worldcoin has a long uphill battle ahead of itself.", "topics": [] }, { "end_word": 628, "start_word": 572, "text": "The MIT Technology Review released a scathing article last year that alleged deceptive marketing practices among a variety of other issues, and then you already have a black market emerging in China for Iris data to exploit Avoid the world coin system. The biggest issue though is that people are resistant to look into the orb.", "topics": [ { "confidence": 0.01023989, "topic": "marketing" } ] }, { "end_word": 669, "start_word": 628, "text": "The orb is your friend. You must look into the orb. What's funny though is that most of us have already given All of our facial biometric data to companies like Apple, Meta, and TikTok in a far less transparent way.", "topics": [] }, { "end_word": 820, "start_word": 669, "text": "After the orb verifies that you're a human, your identity is added to a list of verified humans, and then the Worldcoin app generates a zero knowledge proof to prove your identity without revealing any of your secret information. In theory, you could be totally anonymous on Worldcoin, but many are skeptical and think it's just laying the groundwork for a world currency that will be implemented by the upcoming One World Government after the alien invasion of 2027, at which point they'll no longer scan our eyeballs, but instead Zed use far more reliable alien probes. Oh my god. I just cracked the code. You can't spell probe without orb. I could be wrong here, but But just to be safe, I'm gonna stick with Monero for all my anonymous crypto needs. This has been the Cove Report. Thanks for watching, and I will see you in the next one.", "topics": [ { "confidence": 0.80196404, "topic": "cryptocurrency" } ] } ], "transcript": "It is May 29, 2023 and you're watching the code report. If you're a poor person from a third world country, I have an incredible opportunity for you. You look into this orb so I can harvest immutable biometric data from your eye holes. It doesn't hurt. I promise. In exchange, I give you some of this shiny cryptocurrency that some rich dudes in San Francisco created out of thin air with zero economic effort. It's called Worldcoin, and its goal is to scan a 1,000,000,000 eyeballs over the next few years to create mobile identity platform and payment network. And, no, this isn't the plot of a Black Mirror episode. It's a real project that just raised a $115,000,000 and already has over a 1000000 users. It's co founded by the benevolent AI king Sam Altman, and is backed by a bunch of VCs like Andreessen Horowitz, which is behind many other crypto projects like Alchemy, Coinbase and Solana. And even Sam Bankman Fried is an early investor. In fact, you may have already seen people wearing these Worldcoin t shirts walking around your village, putting these weird balls in Spaces. These are your friendly World Coin operators, and every time they scan an eyeball, they get some crypto. It's an ingenious business model. It has all the same Ponzi nomics of your favorite cryptocurrencies, but is hacking team humans to do the actual physical labor of collecting and processing biometric data. The way it works is it takes a bunch of images of your iris, which like a Fingerprint is unique to every human, which is then used to verify your personhood so you can start using Worldcoin for everyday transactions. The actual images and biometric TricData itself is deleted from the orb, so there's no reason to worry about your privacy. The technology is actually quite transparent. They explain in great detail how the orb is manufactured and some Some of the source code is available on GitHub. Ultimately, it's just a machine that can establish proof of personhood. But why would we need a proof of personhood protocol? Well, the main reason is the rise of artificial intelligence and the need to differentiate between man and machine. When it comes to financial systems, it can protect against civil attacks, which is named after a book about I'm a lady with multiple personality disorder, where one person assumes the identity of multiple accounts to game the system. That can be a problem in crypto, but not really an issue in traditional banking. The bigger problem is that AI tools like deep fakes and voice cloning can create digital clones of people from their Internet presence. And that's why it's more important than ever that The people who run these AI companies provide us with a global digital passport to keep us safe from these AI monstrosities that they created. It's not About money, it's all about making the world a better place. The Worldcoin Foundation is the initial steward of the protocol, but is intended to become a public open So it's network owned by everybody, and it could potentially evolve into a global universal basic income, which we're definitely going to need after GPT 5 takes all our jobs for good. That sounds awesome, and I can't wait to just hang out all day and play video games, but Worldcoin has a long uphill battle ahead of itself. The MIT Technology Review released a scathing article last year that alleged deceptive marketing practices among a variety of other issues, and then you already have a black market emerging in China for Iris data to exploit Avoid the world coin system. The biggest issue though is that people are resistant to look into the orb. The orb is your friend. You must look into the orb. What's funny though is that most of us have already given All of our facial biometric data to companies like Apple, Meta, and TikTok in a far less transparent way. After the orb verifies that you're a human, your identity is added to a list of verified humans, and then the Worldcoin app generates a zero knowledge proof to prove your identity without revealing any of your secret information. In theory, you could be totally anonymous on Worldcoin, but many are skeptical and think it's just laying the groundwork for a world currency that will be implemented by the upcoming One World Government after the alien invasion of 2027, at which point they'll no longer scan our eyeballs, but instead Zed use far more reliable alien probes. Oh my god. I just cracked the code. You can't spell probe without orb. I could be wrong here, but But just to be safe, I'm gonna stick with Monero for all my anonymous crypto needs. This has been the Cove Report. Thanks for watching, and I will see you in the next one.", "translations": null, "words": [ { "confidence": 0.9921875, "end": 0.48, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.5488281, "start": 0.24, "word": "it" }, { "confidence": 0.99902344, "end": 0.71999997, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.5488281, "start": 0.48, "word": "is" }, { "confidence": 0.99609375, "end": 1.04, "punctuated_word": "May", "speaker": 0, "speaker_confidence": 0.5488281, "start": 0.71999997, "word": "may" }, { "confidence": 0.8823242, "end": 1.54, "punctuated_word": "29,", "speaker": 0, "speaker_confidence": 0.5488281, "start": 1.04, "word": "29" }, { "confidence": 0.96972656, "end": 2.1, "punctuated_word": "2023", "speaker": 0, "speaker_confidence": 0.5488281, "start": 1.5999999, "word": "2023" }, { "confidence": 0.70458984, "end": 2.56, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.5488281, "start": 2.3999999, "word": "and" }, { "confidence": 0.97216797, "end": 2.8, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.5488281, "start": 2.56, "word": "you're" }, { "confidence": 1, "end": 3.12, "punctuated_word": "watching", "speaker": 0, "speaker_confidence": 0.5488281, "start": 2.8, "word": "watching" }, { "confidence": 0.9375, "end": 3.28, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5488281, "start": 3.12, "word": "the" }, { "confidence": 0.5180664, "end": 3.52, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.5488281, "start": 3.28, "word": "code" }, { "confidence": 0.99853516, "end": 4, "punctuated_word": "report.", "speaker": 0, "speaker_confidence": 0.5488281, "start": 3.52, "word": "report" }, { "confidence": 0.99609375, "end": 4.16, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.5488281, "start": 4, "word": "if" }, { "confidence": 0.9980469, "end": 4.2799997, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.5488281, "start": 4.16, "word": "you're" }, { "confidence": 0.9838867, "end": 4.4, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.5488281, "start": 4.2799997, "word": "a" }, { "confidence": 1, "end": 4.64, "punctuated_word": "poor", "speaker": 0, "speaker_confidence": 0.5488281, "start": 4.4, "word": "poor" }, { "confidence": 1, "end": 4.88, "punctuated_word": "person", "speaker": 0, "speaker_confidence": 0.5488281, "start": 4.64, "word": "person" }, { "confidence": 0.99902344, "end": 5.12, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.5488281, "start": 4.88, "word": "from" }, { "confidence": 0.9980469, "end": 5.2, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.5488281, "start": 5.12, "word": "a" }, { "confidence": 0.5751953, "end": 5.44, "punctuated_word": "third", "speaker": 0, "speaker_confidence": 0.5488281, "start": 5.2, "word": "third" }, { "confidence": 0.9951172, "end": 5.68, "punctuated_word": "world", "speaker": 0, "speaker_confidence": 0.5488281, "start": 5.44, "word": "world" }, { "confidence": 0.9824219, "end": 6.08, "punctuated_word": "country,", "speaker": 0, "speaker_confidence": 0.5488281, "start": 5.68, "word": "country" }, { "confidence": 1, "end": 6.24, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.65234375, "start": 6.08, "word": "i" }, { "confidence": 1, "end": 6.3999996, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.65234375, "start": 6.24, "word": "have" }, { "confidence": 1, "end": 6.56, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.65234375, "start": 6.3999996, "word": "an" }, { "confidence": 1, "end": 7.06, "punctuated_word": "incredible", "speaker": 0, "speaker_confidence": 0.65234375, "start": 6.56, "word": "incredible" }, { "confidence": 1, "end": 7.6, "punctuated_word": "opportunity", "speaker": 0, "speaker_confidence": 0.65234375, "start": 7.12, "word": "opportunity" }, { "confidence": 0.99902344, "end": 7.7599998, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.65234375, "start": 7.6, "word": "for" }, { "confidence": 0.9211426, "end": 7.945, "punctuated_word": "you.", "speaker": 0, "speaker_confidence": 0.65234375, "start": 7.7599998, "word": "you" }, { "confidence": 1, "end": 8.265, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.65234375, "start": 8.025001, "word": "you" }, { "confidence": 1, "end": 8.345, "punctuated_word": "look", "speaker": 0, "speaker_confidence": 0.65234375, "start": 8.265, "word": "look" }, { "confidence": 0.9980469, "end": 8.505, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.65234375, "start": 8.345, "word": "into" }, { "confidence": 1, "end": 8.825, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.65234375, "start": 8.505, "word": "this" }, { "confidence": 0.98535156, "end": 9.145, "punctuated_word": "orb", "speaker": 0, "speaker_confidence": 0.65234375, "start": 8.825, "word": "orb" }, { "confidence": 0.89453125, "end": 9.305, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.65234375, "start": 9.145, "word": "so" }, { "confidence": 1, "end": 9.465, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.65234375, "start": 9.305, "word": "i" }, { "confidence": 1, "end": 9.625, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.65234375, "start": 9.465, "word": "can" }, { "confidence": 1, "end": 9.945, "punctuated_word": "harvest", "speaker": 0, "speaker_confidence": 0.65234375, "start": 9.625, "word": "harvest" }, { "confidence": 0.58691406, "end": 10.425, "punctuated_word": "immutable", "speaker": 0, "speaker_confidence": 0.65234375, "start": 9.945, "word": "immutable" }, { "confidence": 0.9980469, "end": 10.925, "punctuated_word": "biometric", "speaker": 0, "speaker_confidence": 0.65234375, "start": 10.425, "word": "biometric" }, { "confidence": 1, "end": 11.305, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.65234375, "start": 10.985001, "word": "data" }, { "confidence": 1, "end": 11.465, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.65234375, "start": 11.305, "word": "from" }, { "confidence": 1, "end": 11.625, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.65234375, "start": 11.465, "word": "your" }, { "confidence": 0.9941406, "end": 11.785, "punctuated_word": "eye", "speaker": 0, "speaker_confidence": 0.65234375, "start": 11.625, "word": "eye" }, { "confidence": 0.83447266, "end": 12.184999, "punctuated_word": "holes.", "speaker": 0, "speaker_confidence": 0.65234375, "start": 11.785, "word": "holes" }, { "confidence": 0.99609375, "end": 12.264999, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.65234375, "start": 12.184999, "word": "it" }, { "confidence": 1, "end": 12.585, "punctuated_word": "doesn't", "speaker": 0, "speaker_confidence": 0.65234375, "start": 12.264999, "word": "doesn't" }, { "confidence": 0.76586914, "end": 12.745, "punctuated_word": "hurt.", "speaker": 0, "speaker_confidence": 0.65234375, "start": 12.585, "word": "hurt" }, { "confidence": 1, "end": 12.905001, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.49365234, "start": 12.745, "word": "i" }, { "confidence": 1, "end": 13.385, "punctuated_word": "promise.", "speaker": 0, "speaker_confidence": 0.49365234, "start": 12.905001, "word": "promise" }, { "confidence": 0.99902344, "end": 13.625, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.49365234, "start": 13.385, "word": "in" }, { "confidence": 0.9995117, "end": 14.025, "punctuated_word": "exchange,", "speaker": 0, "speaker_confidence": 0.49365234, "start": 13.625, "word": "exchange" }, { "confidence": 0.9970703, "end": 14.184999, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.49365234, "start": 14.025, "word": "i" }, { "confidence": 0.99121094, "end": 14.344999, "punctuated_word": "give", "speaker": 0, "speaker_confidence": 0.49365234, "start": 14.184999, "word": "give" }, { "confidence": 0.9980469, "end": 14.425, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.49365234, "start": 14.344999, "word": "you" }, { "confidence": 0.99609375, "end": 14.585, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.49365234, "start": 14.425, "word": "some" }, { "confidence": 0.9980469, "end": 14.665, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8457031, "start": 14.585, "word": "of" }, { "confidence": 0.8911133, "end": 14.825, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.8457031, "start": 14.665, "word": "this" }, { "confidence": 0.9921875, "end": 15.325, "punctuated_word": "shiny", "speaker": 0, "speaker_confidence": 0.8457031, "start": 14.825, "word": "shiny" }, { "confidence": 0.9316406, "end": 15.910001, "punctuated_word": "cryptocurrency", "speaker": 0, "speaker_confidence": 0.8457031, "start": 15.43, "word": "cryptocurrency" }, { "confidence": 0.87158203, "end": 16.15, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8457031, "start": 15.910001, "word": "that" }, { "confidence": 0.98095703, "end": 16.31, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.8457031, "start": 16.15, "word": "some" }, { "confidence": 1, "end": 16.470001, "punctuated_word": "rich", "speaker": 0, "speaker_confidence": 0.8457031, "start": 16.31, "word": "rich" }, { "confidence": 0.97314453, "end": 16.630001, "punctuated_word": "dudes", "speaker": 0, "speaker_confidence": 0.8457031, "start": 16.470001, "word": "dudes" }, { "confidence": 0.99902344, "end": 16.79, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8457031, "start": 16.630001, "word": "in" }, { "confidence": 1, "end": 17.03, "punctuated_word": "San", "speaker": 0, "speaker_confidence": 0.8457031, "start": 16.79, "word": "san" }, { "confidence": 1, "end": 17.51, "punctuated_word": "Francisco", "speaker": 0, "speaker_confidence": 0.8457031, "start": 17.03, "word": "francisco" }, { "confidence": 1, "end": 17.75, "punctuated_word": "created", "speaker": 0, "speaker_confidence": 0.8457031, "start": 17.51, "word": "created" }, { "confidence": 1, "end": 17.91, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.8457031, "start": 17.75, "word": "out" }, { "confidence": 0.9980469, "end": 18.07, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8457031, "start": 17.91, "word": "of" }, { "confidence": 1, "end": 18.23, "punctuated_word": "thin", "speaker": 0, "speaker_confidence": 0.8457031, "start": 18.07, "word": "thin" }, { "confidence": 0.99902344, "end": 18.470001, "punctuated_word": "air", "speaker": 0, "speaker_confidence": 0.8457031, "start": 18.23, "word": "air" }, { "confidence": 0.98828125, "end": 18.79, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.8457031, "start": 18.470001, "word": "with" }, { "confidence": 0.6166992, "end": 19.11, "punctuated_word": "zero", "speaker": 0, "speaker_confidence": 0.8457031, "start": 18.79, "word": "zero" }, { "confidence": 0.9980469, "end": 19.59, "punctuated_word": "economic", "speaker": 0, "speaker_confidence": 0.8457031, "start": 19.11, "word": "economic" }, { "confidence": 0.9951172, "end": 19.91, "punctuated_word": "effort.", "speaker": 0, "speaker_confidence": 0.8457031, "start": 19.59, "word": "effort" }, { "confidence": 0.99902344, "end": 20.15, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.8457031, "start": 19.91, "word": "it's" }, { "confidence": 0.99902344, "end": 20.310001, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 0.8457031, "start": 20.15, "word": "called" }, { "confidence": 0.79752606, "end": 20.810001, "punctuated_word": "Worldcoin,", "speaker": 0, "speaker_confidence": 0.8457031, "start": 20.310001, "word": "worldcoin" }, { "confidence": 0.9970703, "end": 21.11, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8457031, "start": 20.95, "word": "and" }, { "confidence": 0.97314453, "end": 21.27, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.8457031, "start": 21.11, "word": "its" }, { "confidence": 0.99902344, "end": 21.51, "punctuated_word": "goal", "speaker": 0, "speaker_confidence": 0.8457031, "start": 21.27, "word": "goal" }, { "confidence": 0.9863281, "end": 21.59, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8457031, "start": 21.51, "word": "is" }, { "confidence": 0.9951172, "end": 21.75, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8457031, "start": 21.59, "word": "to" }, { "confidence": 0.98535156, "end": 21.91, "punctuated_word": "scan", "speaker": 0, "speaker_confidence": 0.8457031, "start": 21.75, "word": "scan" }, { "confidence": 0.9482422, "end": 22.07, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8457031, "start": 21.91, "word": "a" }, { "confidence": 0.9231306, "end": 22.55, "punctuated_word": "1,000,000,000", "speaker": 0, "speaker_confidence": 0.8457031, "start": 22.07, "word": "1,000,000,000" }, { "confidence": 0.9946289, "end": 22.87, "punctuated_word": "eyeballs", "speaker": 0, "speaker_confidence": 0.8457031, "start": 22.55, "word": "eyeballs" }, { "confidence": 0.9970703, "end": 23.03, "punctuated_word": "over", "speaker": 0, "speaker_confidence": 0.8457031, "start": 22.87, "word": "over" }, { "confidence": 0.98291016, "end": 23.19, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8457031, "start": 23.03, "word": "the" }, { "confidence": 0.9951172, "end": 23.43, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.8457031, "start": 23.19, "word": "next" }, { "confidence": 0.9921875, "end": 23.59, "punctuated_word": "few", "speaker": 0, "speaker_confidence": 0.8457031, "start": 23.43, "word": "few" }, { "confidence": 0.9921875, "end": 23.99, "punctuated_word": "years", "speaker": 0, "speaker_confidence": 0.8457031, "start": 23.59, "word": "years" }, { "confidence": 0.9277344, "end": 24.150002, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8457031, "start": 23.99, "word": "to" }, { "confidence": 0.9243164, "end": 24.650002, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.8457031, "start": 24.150002, "word": "create" }, { "confidence": 0.4189453, "end": 24.945, "punctuated_word": "mobile", "speaker": 0, "speaker_confidence": 0.8457031, "start": 24.785, "word": "mobile" }, { "confidence": 0.9980469, "end": 25.445, "punctuated_word": "identity", "speaker": 0, "speaker_confidence": 0.8457031, "start": 24.945, "word": "identity" }, { "confidence": 0.9951172, "end": 25.905, "punctuated_word": "platform", "speaker": 0, "speaker_confidence": 0.8457031, "start": 25.585, "word": "platform" }, { "confidence": 0.98828125, "end": 26.145, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8457031, "start": 25.905, "word": "and" }, { "confidence": 0.9980469, "end": 26.465, "punctuated_word": "payment", "speaker": 0, "speaker_confidence": 0.8457031, "start": 26.145, "word": "payment" }, { "confidence": 0.9343262, "end": 26.865, "punctuated_word": "network.", "speaker": 0, "speaker_confidence": 0.8457031, "start": 26.465, "word": "network" }, { "confidence": 0.9157715, "end": 27.105, "punctuated_word": "And,", "speaker": 0, "speaker_confidence": 0.8457031, "start": 26.865, "word": "and" }, { "confidence": 0.98999023, "end": 27.345, "punctuated_word": "no,", "speaker": 0, "speaker_confidence": 0.8457031, "start": 27.105, "word": "no" }, { "confidence": 1, "end": 27.505, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.8457031, "start": 27.345, "word": "this" }, { "confidence": 0.9995117, "end": 27.744999, "punctuated_word": "isn't", "speaker": 0, "speaker_confidence": 0.8457031, "start": 27.505, "word": "isn't" }, { "confidence": 0.9951172, "end": 27.825, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8457031, "start": 27.744999, "word": "the" }, { "confidence": 0.9951172, "end": 28.065, "punctuated_word": "plot", "speaker": 0, "speaker_confidence": 0.8457031, "start": 27.825, "word": "plot" }, { "confidence": 0.99609375, "end": 28.145, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8457031, "start": 28.065, "word": "of" }, { "confidence": 0.9951172, "end": 28.225, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.796875, "start": 28.145, "word": "a" }, { "confidence": 0.9951172, "end": 28.465, "punctuated_word": "Black", "speaker": 0, "speaker_confidence": 0.796875, "start": 28.225, "word": "black" }, { "confidence": 0.99609375, "end": 28.785, "punctuated_word": "Mirror", "speaker": 0, "speaker_confidence": 0.796875, "start": 28.465, "word": "mirror" }, { "confidence": 0.90771484, "end": 29.265, "punctuated_word": "episode.", "speaker": 0, "speaker_confidence": 0.796875, "start": 28.785, "word": "episode" }, { "confidence": 0.9995117, "end": 29.505, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.796875, "start": 29.265, "word": "it's" }, { "confidence": 1, "end": 29.585, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.796875, "start": 29.505, "word": "a" }, { "confidence": 1, "end": 29.825, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 0.796875, "start": 29.585, "word": "real" }, { "confidence": 1, "end": 30.225, "punctuated_word": "project", "speaker": 0, "speaker_confidence": 0.796875, "start": 29.825, "word": "project" }, { "confidence": 0.9970703, "end": 30.385, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.796875, "start": 30.225, "word": "that" }, { "confidence": 0.99902344, "end": 30.545, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.796875, "start": 30.385, "word": "just" }, { "confidence": 0.9980469, "end": 30.785, "punctuated_word": "raised", "speaker": 0, "speaker_confidence": 0.796875, "start": 30.545, "word": "raised" }, { "confidence": 0.8198242, "end": 31.025, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.796875, "start": 30.785, "word": "a" }, { "confidence": 0.99869794, "end": 31.525, "punctuated_word": "$115,000,000", "speaker": 0, "speaker_confidence": 0.796875, "start": 31.025, "word": "$115,000,000" }, { "confidence": 0.9892578, "end": 32.625, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.796875, "start": 32.465, "word": "and" }, { "confidence": 1, "end": 32.945, "punctuated_word": "already", "speaker": 0, "speaker_confidence": 0.796875, "start": 32.625, "word": "already" }, { "confidence": 1, "end": 33.105, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.796875, "start": 32.945, "word": "has" }, { "confidence": 0.99902344, "end": 33.265, "punctuated_word": "over", "speaker": 0, "speaker_confidence": 0.796875, "start": 33.105, "word": "over" }, { "confidence": 0.9140625, "end": 33.425, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.796875, "start": 33.265, "word": "a" }, { "confidence": 0.826416, "end": 33.905, "punctuated_word": "1000000", "speaker": 0, "speaker_confidence": 0.796875, "start": 33.425, "word": "1000000" }, { "confidence": 0.9995117, "end": 34.225, "punctuated_word": "users.", "speaker": 0, "speaker_confidence": 0.796875, "start": 33.905, "word": "users" }, { "confidence": 0.9995117, "end": 34.385, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.796875, "start": 34.225, "word": "it's" }, { "confidence": 0.9980469, "end": 34.54, "punctuated_word": "co", "speaker": 0, "speaker_confidence": 0.796875, "start": 34.385, "word": "co" }, { "confidence": 0.9838867, "end": 34.86, "punctuated_word": "founded", "speaker": 0, "speaker_confidence": 0.796875, "start": 34.620003, "word": "founded" }, { "confidence": 1, "end": 35.02, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.796875, "start": 34.86, "word": "by" }, { "confidence": 0.9970703, "end": 35.18, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.796875, "start": 35.02, "word": "the" }, { "confidence": 0.99121094, "end": 35.68, "punctuated_word": "benevolent", "speaker": 0, "speaker_confidence": 0.796875, "start": 35.18, "word": "benevolent" }, { "confidence": 0.9951172, "end": 36.06, "punctuated_word": "AI", "speaker": 0, "speaker_confidence": 0.796875, "start": 35.82, "word": "ai" }, { "confidence": 0.7739258, "end": 36.38, "punctuated_word": "king", "speaker": 0, "speaker_confidence": 0.796875, "start": 36.06, "word": "king" }, { "confidence": 0.7836914, "end": 36.620003, "punctuated_word": "Sam", "speaker": 0, "speaker_confidence": 0.796875, "start": 36.38, "word": "sam" }, { "confidence": 0.8914388, "end": 37.02, "punctuated_word": "Altman,", "speaker": 0, "speaker_confidence": 0.796875, "start": 36.620003, "word": "altman" }, { "confidence": 1, "end": 37.18, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.796875, "start": 37.02, "word": "and" }, { "confidence": 0.9941406, "end": 37.260002, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7871094, "start": 37.18, "word": "is" }, { "confidence": 0.99902344, "end": 37.58, "punctuated_word": "backed", "speaker": 0, "speaker_confidence": 0.7871094, "start": 37.260002, "word": "backed" }, { "confidence": 0.99902344, "end": 37.74, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.7871094, "start": 37.58, "word": "by" }, { "confidence": 0.9970703, "end": 37.82, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7871094, "start": 37.74, "word": "a" }, { "confidence": 1, "end": 37.98, "punctuated_word": "bunch", "speaker": 0, "speaker_confidence": 0.7871094, "start": 37.82, "word": "bunch" }, { "confidence": 0.9980469, "end": 38.06, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7871094, "start": 37.98, "word": "of" }, { "confidence": 0.96972656, "end": 38.56, "punctuated_word": "VCs", "speaker": 0, "speaker_confidence": 0.7871094, "start": 38.06, "word": "vcs" }, { "confidence": 0.5151367, "end": 38.86, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.7871094, "start": 38.620003, "word": "like" }, { "confidence": 0.892334, "end": 39.34, "punctuated_word": "Andreessen", "speaker": 0, "speaker_confidence": 0.7871094, "start": 38.86, "word": "andreessen" }, { "confidence": 0.99365234, "end": 39.84, "punctuated_word": "Horowitz,", "speaker": 0, "speaker_confidence": 0.7871094, "start": 39.34, "word": "horowitz" }, { "confidence": 0.9951172, "end": 40.06, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.7871094, "start": 39.9, "word": "which" }, { "confidence": 0.9951172, "end": 40.22, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7871094, "start": 40.06, "word": "is" }, { "confidence": 1, "end": 40.46, "punctuated_word": "behind", "speaker": 0, "speaker_confidence": 0.7871094, "start": 40.22, "word": "behind" }, { "confidence": 0.9980469, "end": 40.7, "punctuated_word": "many", "speaker": 0, "speaker_confidence": 0.7871094, "start": 40.46, "word": "many" }, { "confidence": 1, "end": 40.940002, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.7871094, "start": 40.7, "word": "other" }, { "confidence": 0.9667969, "end": 41.34, "punctuated_word": "crypto", "speaker": 0, "speaker_confidence": 0.7871094, "start": 40.940002, "word": "crypto" }, { "confidence": 0.9970703, "end": 41.74, "punctuated_word": "projects", "speaker": 0, "speaker_confidence": 0.7871094, "start": 41.34, "word": "projects" }, { "confidence": 0.8354492, "end": 41.98, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.7871094, "start": 41.74, "word": "like" }, { "confidence": 0.9472656, "end": 42.48, "punctuated_word": "Alchemy,", "speaker": 0, "speaker_confidence": 0.7871094, "start": 41.98, "word": "alchemy" }, { "confidence": 0.99121094, "end": 42.965, "punctuated_word": "Coinbase", "speaker": 0, "speaker_confidence": 0.7871094, "start": 42.645, "word": "coinbase" }, { "confidence": 0.9941406, "end": 43.205, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7871094, "start": 42.965, "word": "and" }, { "confidence": 0.8852539, "end": 43.705, "punctuated_word": "Solana.", "speaker": 0, "speaker_confidence": 0.7871094, "start": 43.205, "word": "solana" }, { "confidence": 0.9970703, "end": 44.005, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.7871094, "start": 43.845, "word": "and" }, { "confidence": 0.9667969, "end": 44.325, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 0.7871094, "start": 44.005, "word": "even" }, { "confidence": 0.9863281, "end": 44.485, "punctuated_word": "Sam", "speaker": 0, "speaker_confidence": 0.7871094, "start": 44.325, "word": "sam" }, { "confidence": 0.9970703, "end": 44.885002, "punctuated_word": "Bankman", "speaker": 0, "speaker_confidence": 0.7871094, "start": 44.485, "word": "bankman" }, { "confidence": 0.9819336, "end": 45.125, "punctuated_word": "Fried", "speaker": 0, "speaker_confidence": 0.7871094, "start": 44.885002, "word": "fried" }, { "confidence": 0.99316406, "end": 45.205, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.58203125, "start": 45.125, "word": "is" }, { "confidence": 0.9980469, "end": 45.365, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.58203125, "start": 45.205, "word": "an" }, { "confidence": 0.99902344, "end": 45.685, "punctuated_word": "early", "speaker": 0, "speaker_confidence": 0.58203125, "start": 45.365, "word": "early" }, { "confidence": 1, "end": 46.165, "punctuated_word": "investor.", "speaker": 0, "speaker_confidence": 0.58203125, "start": 45.685, "word": "investor" }, { "confidence": 1, "end": 46.325, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.58203125, "start": 46.165, "word": "in" }, { "confidence": 0.9995117, "end": 46.565002, "punctuated_word": "fact,", "speaker": 0, "speaker_confidence": 0.58203125, "start": 46.325, "word": "fact" }, { "confidence": 1, "end": 46.725, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.58203125, "start": 46.565002, "word": "you" }, { "confidence": 0.9980469, "end": 46.885002, "punctuated_word": "may", "speaker": 0, "speaker_confidence": 0.58203125, "start": 46.725, "word": "may" }, { "confidence": 0.9951172, "end": 46.965, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.58203125, "start": 46.885002, "word": "have" }, { "confidence": 0.9951172, "end": 47.285, "punctuated_word": "already", "speaker": 0, "speaker_confidence": 0.6923828, "start": 46.965, "word": "already" }, { "confidence": 1, "end": 47.445, "punctuated_word": "seen", "speaker": 0, "speaker_confidence": 0.6923828, "start": 47.285, "word": "seen" }, { "confidence": 1, "end": 47.765, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.6923828, "start": 47.445, "word": "people" }, { "confidence": 0.99902344, "end": 48.005, "punctuated_word": "wearing", "speaker": 0, "speaker_confidence": 0.6923828, "start": 47.765, "word": "wearing" }, { "confidence": 0.98291016, "end": 48.245, "punctuated_word": "these", "speaker": 0, "speaker_confidence": 0.6923828, "start": 48.005, "word": "these" }, { "confidence": 0.68688965, "end": 48.745, "punctuated_word": "Worldcoin", "speaker": 0, "speaker_confidence": 0.6923828, "start": 48.245, "word": "worldcoin" }, { "confidence": 0.4946289, "end": 48.885002, "punctuated_word": "t", "speaker": 0, "speaker_confidence": 0.6923828, "start": 48.805, "word": "t" }, { "confidence": 0.97998047, "end": 49.365, "punctuated_word": "shirts", "speaker": 0, "speaker_confidence": 0.6923828, "start": 48.885002, "word": "shirts" }, { "confidence": 0.80810547, "end": 49.605, "punctuated_word": "walking", "speaker": 0, "speaker_confidence": 0.6923828, "start": 49.365, "word": "walking" }, { "confidence": 0.9980469, "end": 49.925, "punctuated_word": "around", "speaker": 0, "speaker_confidence": 0.6923828, "start": 49.605, "word": "around" }, { "confidence": 0.9970703, "end": 50.005, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.6923828, "start": 49.925, "word": "your" }, { "confidence": 0.81884766, "end": 50.405, "punctuated_word": "village,", "speaker": 0, "speaker_confidence": 0.6923828, "start": 50.005, "word": "village" }, { "confidence": 0.99316406, "end": 50.725, "punctuated_word": "putting", "speaker": 0, "speaker_confidence": 0.6923828, "start": 50.405, "word": "putting" }, { "confidence": 0.97802734, "end": 50.885002, "punctuated_word": "these", "speaker": 0, "speaker_confidence": 0.6923828, "start": 50.725, "word": "these" }, { "confidence": 0.99609375, "end": 51.125, "punctuated_word": "weird", "speaker": 0, "speaker_confidence": 0.6923828, "start": 50.885002, "word": "weird" }, { "confidence": 0.98095703, "end": 51.365, "punctuated_word": "balls", "speaker": 0, "speaker_confidence": 0.6923828, "start": 51.125, "word": "balls" }, { "confidence": 0.9472656, "end": 51.66, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.6923828, "start": 51.365, "word": "in" }, { "confidence": 0.5093384, "end": 52.38, "punctuated_word": "Spaces.", "speaker": 0, "speaker_confidence": 0.6923828, "start": 52.06, "word": "spaces" }, { "confidence": 0.99902344, "end": 52.54, "punctuated_word": "These", "speaker": 0, "speaker_confidence": 0.6713867, "start": 52.38, "word": "these" }, { "confidence": 1, "end": 52.62, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.6713867, "start": 52.54, "word": "are" }, { "confidence": 0.9970703, "end": 52.78, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.6713867, "start": 52.62, "word": "your" }, { "confidence": 0.9873047, "end": 53.1, "punctuated_word": "friendly", "speaker": 0, "speaker_confidence": 0.6713867, "start": 52.78, "word": "friendly" }, { "confidence": 0.57666016, "end": 53.34, "punctuated_word": "World", "speaker": 0, "speaker_confidence": 0.6713867, "start": 53.1, "word": "world" }, { "confidence": 0.4387207, "end": 53.739998, "punctuated_word": "Coin", "speaker": 0, "speaker_confidence": 0.6713867, "start": 53.34, "word": "coin" }, { "confidence": 0.8273926, "end": 54.22, "punctuated_word": "operators,", "speaker": 0, "speaker_confidence": 0.6713867, "start": 53.739998, "word": "operators" }, { "confidence": 1, "end": 54.46, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6713867, "start": 54.22, "word": "and" }, { "confidence": 0.9970703, "end": 54.62, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 0.6713867, "start": 54.46, "word": "every" }, { "confidence": 1, "end": 54.78, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.6713867, "start": 54.62, "word": "time" }, { "confidence": 0.99902344, "end": 54.94, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.6713867, "start": 54.78, "word": "they" }, { "confidence": 0.99902344, "end": 55.18, "punctuated_word": "scan", "speaker": 0, "speaker_confidence": 0.6713867, "start": 54.94, "word": "scan" }, { "confidence": 0.95166016, "end": 55.34, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.6713867, "start": 55.18, "word": "an" }, { "confidence": 0.99332684, "end": 55.739998, "punctuated_word": "eyeball,", "speaker": 0, "speaker_confidence": 0.6713867, "start": 55.34, "word": "eyeball" }, { "confidence": 0.9902344, "end": 55.98, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.6713867, "start": 55.739998, "word": "they" }, { "confidence": 0.99609375, "end": 56.14, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.6713867, "start": 55.98, "word": "get" }, { "confidence": 1, "end": 56.3, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.6713867, "start": 56.14, "word": "some" }, { "confidence": 0.9941406, "end": 56.78, "punctuated_word": "crypto.", "speaker": 0, "speaker_confidence": 0.6713867, "start": 56.3, "word": "crypto" }, { "confidence": 0.9995117, "end": 56.86, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.5180664, "start": 56.78, "word": "it's" }, { "confidence": 0.9970703, "end": 57.1, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.5180664, "start": 56.86, "word": "an" }, { "confidence": 0.9980469, "end": 57.5, "punctuated_word": "ingenious", "speaker": 0, "speaker_confidence": 0.5180664, "start": 57.1, "word": "ingenious" }, { "confidence": 1, "end": 57.739998, "punctuated_word": "business", "speaker": 0, "speaker_confidence": 0.5180664, "start": 57.5, "word": "business" }, { "confidence": 0.9980469, "end": 58.14, "punctuated_word": "model.", "speaker": 0, "speaker_confidence": 0.5180664, "start": 57.739998, "word": "model" }, { "confidence": 0.9980469, "end": 58.3, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.6645508, "start": 58.14, "word": "it" }, { "confidence": 0.99902344, "end": 58.46, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.6645508, "start": 58.3, "word": "has" }, { "confidence": 0.99902344, "end": 58.54, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.6645508, "start": 58.46, "word": "all" }, { "confidence": 0.9941406, "end": 58.7, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6645508, "start": 58.54, "word": "the" }, { "confidence": 0.99121094, "end": 58.86, "punctuated_word": "same", "speaker": 0, "speaker_confidence": 0.6645508, "start": 58.7, "word": "same" }, { "confidence": 0.7654622, "end": 59.26, "punctuated_word": "Ponzi", "speaker": 0, "speaker_confidence": 0.6645508, "start": 58.86, "word": "ponzi" }, { "confidence": 0.8708496, "end": 59.579998, "punctuated_word": "nomics", "speaker": 0, "speaker_confidence": 0.6645508, "start": 59.26, "word": "nomics" }, { "confidence": 0.9980469, "end": 59.739998, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.6645508, "start": 59.579998, "word": "of" }, { "confidence": 1, "end": 59.9, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.6645508, "start": 59.739998, "word": "your" }, { "confidence": 0.9980469, "end": 60.22, "punctuated_word": "favorite", "speaker": 0, "speaker_confidence": 0.6645508, "start": 59.9, "word": "favorite" }, { "confidence": 0.95874023, "end": 60.72, "punctuated_word": "cryptocurrencies,", "speaker": 0, "speaker_confidence": 0.6645508, "start": 60.22, "word": "cryptocurrencies" }, { "confidence": 0.9892578, "end": 61.18, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.6645508, "start": 61.02, "word": "but" }, { "confidence": 0.6171875, "end": 61.26, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.45947266, "start": 61.18, "word": "is" }, { "confidence": 0.83740234, "end": 61.585, "punctuated_word": "hacking", "speaker": 0, "speaker_confidence": 0.45947266, "start": 61.26, "word": "hacking" }, { "confidence": 0.20495605, "end": 61.745, "punctuated_word": "team", "speaker": 0, "speaker_confidence": 0.45947266, "start": 61.665, "word": "team" }, { "confidence": 0.99316406, "end": 62.065, "punctuated_word": "humans", "speaker": 0, "speaker_confidence": 0.45947266, "start": 61.745, "word": "humans" }, { "confidence": 0.99121094, "end": 62.305, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.45947266, "start": 62.065, "word": "to" }, { "confidence": 1, "end": 62.465, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.45947266, "start": 62.305, "word": "do" }, { "confidence": 0.99902344, "end": 62.545, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.765625, "start": 62.465, "word": "the" }, { "confidence": 0.99902344, "end": 62.864998, "punctuated_word": "actual", "speaker": 0, "speaker_confidence": 0.765625, "start": 62.545, "word": "actual" }, { "confidence": 0.9863281, "end": 63.265, "punctuated_word": "physical", "speaker": 0, "speaker_confidence": 0.765625, "start": 62.864998, "word": "physical" }, { "confidence": 0.9970703, "end": 63.665, "punctuated_word": "labor", "speaker": 0, "speaker_confidence": 0.765625, "start": 63.265, "word": "labor" }, { "confidence": 1, "end": 63.825, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.765625, "start": 63.665, "word": "of" }, { "confidence": 1, "end": 64.225, "punctuated_word": "collecting", "speaker": 0, "speaker_confidence": 0.765625, "start": 63.825, "word": "collecting" }, { "confidence": 1, "end": 64.465, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.765625, "start": 64.225, "word": "and" }, { "confidence": 1, "end": 64.945, "punctuated_word": "processing", "speaker": 0, "speaker_confidence": 0.765625, "start": 64.465, "word": "processing" }, { "confidence": 0.99902344, "end": 65.445, "punctuated_word": "biometric", "speaker": 0, "speaker_confidence": 0.765625, "start": 64.945, "word": "biometric" }, { "confidence": 1, "end": 65.825, "punctuated_word": "data.", "speaker": 0, "speaker_confidence": 0.765625, "start": 65.505, "word": "data" }, { "confidence": 0.9980469, "end": 65.905, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.765625, "start": 65.825, "word": "the" }, { "confidence": 0.99902344, "end": 66.065, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 0.765625, "start": 65.905, "word": "way" }, { "confidence": 0.99902344, "end": 66.145, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.765625, "start": 66.065, "word": "it" }, { "confidence": 1, "end": 66.545, "punctuated_word": "works", "speaker": 0, "speaker_confidence": 0.765625, "start": 66.145, "word": "works" }, { "confidence": 0.94628906, "end": 66.705, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.765625, "start": 66.545, "word": "is" }, { "confidence": 0.98828125, "end": 66.784996, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.765625, "start": 66.705, "word": "it" }, { "confidence": 0.99902344, "end": 67.025, "punctuated_word": "takes", "speaker": 0, "speaker_confidence": 0.765625, "start": 66.784996, "word": "takes" }, { "confidence": 0.99316406, "end": 67.104996, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.765625, "start": 67.025, "word": "a" }, { "confidence": 0.9980469, "end": 67.265, "punctuated_word": "bunch", "speaker": 0, "speaker_confidence": 0.7001953, "start": 67.104996, "word": "bunch" }, { "confidence": 0.9980469, "end": 67.424995, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7001953, "start": 67.265, "word": "of" }, { "confidence": 0.99902344, "end": 67.825, "punctuated_word": "images", "speaker": 0, "speaker_confidence": 0.7001953, "start": 67.424995, "word": "images" }, { "confidence": 0.9941406, "end": 67.985, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7001953, "start": 67.825, "word": "of" }, { "confidence": 0.99121094, "end": 68.225, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.7001953, "start": 67.985, "word": "your" }, { "confidence": 0.94645184, "end": 68.705, "punctuated_word": "iris,", "speaker": 0, "speaker_confidence": 0.7001953, "start": 68.225, "word": "iris" }, { "confidence": 0.984375, "end": 68.945, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.7001953, "start": 68.705, "word": "which" }, { "confidence": 0.6767578, "end": 69.104996, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.7001953, "start": 68.945, "word": "like" }, { "confidence": 0.7011719, "end": 69.38, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7001953, "start": 69.104996, "word": "a" }, { "confidence": 0.97143555, "end": 69.78, "punctuated_word": "Fingerprint", "speaker": 0, "speaker_confidence": 0.7001953, "start": 69.46, "word": "fingerprint" }, { "confidence": 0.99902344, "end": 69.939995, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7001953, "start": 69.78, "word": "is" }, { "confidence": 1, "end": 70.259995, "punctuated_word": "unique", "speaker": 0, "speaker_confidence": 0.7001953, "start": 69.939995, "word": "unique" }, { "confidence": 0.99609375, "end": 70.34, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6113281, "start": 70.259995, "word": "to" }, { "confidence": 0.9790039, "end": 70.659996, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 0.6113281, "start": 70.34, "word": "every" }, { "confidence": 0.93603516, "end": 71.06, "punctuated_word": "human,", "speaker": 0, "speaker_confidence": 0.6113281, "start": 70.659996, "word": "human" }, { "confidence": 1, "end": 71.21999, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.6113281, "start": 71.06, "word": "which" }, { "confidence": 0.86572266, "end": 71.38, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.6113281, "start": 71.21999, "word": "is" }, { "confidence": 0.99316406, "end": 71.53999, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.6113281, "start": 71.38, "word": "then" }, { "confidence": 0.9951172, "end": 71.78, "punctuated_word": "used", "speaker": 0, "speaker_confidence": 0.6113281, "start": 71.53999, "word": "used" }, { "confidence": 0.99902344, "end": 71.939995, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6113281, "start": 71.78, "word": "to" }, { "confidence": 1, "end": 72.259995, "punctuated_word": "verify", "speaker": 0, "speaker_confidence": 0.6113281, "start": 71.939995, "word": "verify" }, { "confidence": 0.99902344, "end": 72.42, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.6113281, "start": 72.259995, "word": "your" }, { "confidence": 0.9995117, "end": 72.92, "punctuated_word": "personhood", "speaker": 0, "speaker_confidence": 0.6113281, "start": 72.42, "word": "personhood" }, { "confidence": 0.53271484, "end": 73.14, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.6113281, "start": 72.979996, "word": "so" }, { "confidence": 0.9980469, "end": 73.21999, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.6557617, "start": 73.14, "word": "you" }, { "confidence": 0.99902344, "end": 73.38, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.6557617, "start": 73.21999, "word": "can" }, { "confidence": 0.99902344, "end": 73.53999, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 0.6557617, "start": 73.38, "word": "start" }, { "confidence": 1, "end": 73.86, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.6557617, "start": 73.53999, "word": "using" }, { "confidence": 0.7792969, "end": 74.36, "punctuated_word": "Worldcoin", "speaker": 0, "speaker_confidence": 0.6557617, "start": 73.86, "word": "worldcoin" }, { "confidence": 0.9941406, "end": 74.659996, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.6557617, "start": 74.42, "word": "for" }, { "confidence": 0.9770508, "end": 75.14, "punctuated_word": "everyday", "speaker": 0, "speaker_confidence": 0.6557617, "start": 74.659996, "word": "everyday" }, { "confidence": 0.9980469, "end": 75.64, "punctuated_word": "transactions.", "speaker": 0, "speaker_confidence": 0.6557617, "start": 75.14, "word": "transactions" }, { "confidence": 0.9667969, "end": 75.939995, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.90771484, "start": 75.78, "word": "the" }, { "confidence": 0.98095703, "end": 76.18, "punctuated_word": "actual", "speaker": 0, "speaker_confidence": 0.90771484, "start": 75.939995, "word": "actual" }, { "confidence": 0.98535156, "end": 76.5, "punctuated_word": "images", "speaker": 0, "speaker_confidence": 0.90771484, "start": 76.18, "word": "images" }, { "confidence": 0.91748047, "end": 76.659996, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.90771484, "start": 76.5, "word": "and" }, { "confidence": 0.9536133, "end": 77.085, "punctuated_word": "biometric", "speaker": 0, "speaker_confidence": 0.90771484, "start": 76.659996, "word": "biometric" }, { "confidence": 0.43770346, "end": 77.565, "punctuated_word": "TricData", "speaker": 0, "speaker_confidence": 0.90771484, "start": 77.165, "word": "tricdata" }, { "confidence": 0.97998047, "end": 77.885, "punctuated_word": "itself", "speaker": 0, "speaker_confidence": 0.90771484, "start": 77.565, "word": "itself" }, { "confidence": 0.99316406, "end": 78.045, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.90771484, "start": 77.885, "word": "is" }, { "confidence": 1, "end": 78.365, "punctuated_word": "deleted", "speaker": 0, "speaker_confidence": 0.90771484, "start": 78.045, "word": "deleted" }, { "confidence": 0.99902344, "end": 78.604996, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.90771484, "start": 78.365, "word": "from" }, { "confidence": 0.9873047, "end": 78.685, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.90771484, "start": 78.604996, "word": "the" }, { "confidence": 0.859375, "end": 78.924995, "punctuated_word": "orb,", "speaker": 0, "speaker_confidence": 0.90771484, "start": 78.685, "word": "orb" }, { "confidence": 0.99902344, "end": 79.085, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.90771484, "start": 78.924995, "word": "so" }, { "confidence": 0.99658203, "end": 79.325, "punctuated_word": "there's", "speaker": 0, "speaker_confidence": 0.90771484, "start": 79.085, "word": "there's" }, { "confidence": 1, "end": 79.405, "punctuated_word": "no", "speaker": 0, "speaker_confidence": 0.90771484, "start": 79.325, "word": "no" }, { "confidence": 1, "end": 79.645, "punctuated_word": "reason", "speaker": 0, "speaker_confidence": 0.90771484, "start": 79.405, "word": "reason" }, { "confidence": 0.9970703, "end": 79.725, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.90771484, "start": 79.645, "word": "to" }, { "confidence": 1, "end": 79.965, "punctuated_word": "worry", "speaker": 0, "speaker_confidence": 0.90771484, "start": 79.725, "word": "worry" }, { "confidence": 0.99902344, "end": 80.125, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.90771484, "start": 79.965, "word": "about" }, { "confidence": 0.99902344, "end": 80.284996, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.90771484, "start": 80.125, "word": "your" }, { "confidence": 1, "end": 80.765, "punctuated_word": "privacy.", "speaker": 0, "speaker_confidence": 0.90771484, "start": 80.284996, "word": "privacy" }, { "confidence": 0.99609375, "end": 80.924995, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.90771484, "start": 80.765, "word": "the" }, { "confidence": 0.99902344, "end": 81.325, "punctuated_word": "technology", "speaker": 0, "speaker_confidence": 0.90771484, "start": 80.924995, "word": "technology" }, { "confidence": 1, "end": 81.565, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.90771484, "start": 81.325, "word": "is" }, { "confidence": 0.9892578, "end": 81.885, "punctuated_word": "actually", "speaker": 0, "speaker_confidence": 0.90771484, "start": 81.565, "word": "actually" }, { "confidence": 0.99902344, "end": 82.125, "punctuated_word": "quite", "speaker": 0, "speaker_confidence": 0.90771484, "start": 81.885, "word": "quite" }, { "confidence": 0.953125, "end": 82.625, "punctuated_word": "transparent.", "speaker": 0, "speaker_confidence": 0.90771484, "start": 82.125, "word": "transparent" }, { "confidence": 0.9980469, "end": 82.845, "punctuated_word": "They", "speaker": 0, "speaker_confidence": 0.90771484, "start": 82.685, "word": "they" }, { "confidence": 0.95410156, "end": 83.165, "punctuated_word": "explain", "speaker": 0, "speaker_confidence": 0.90771484, "start": 82.845, "word": "explain" }, { "confidence": 0.9790039, "end": 83.325, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.90771484, "start": 83.165, "word": "in" }, { "confidence": 0.9980469, "end": 83.565, "punctuated_word": "great", "speaker": 0, "speaker_confidence": 0.90771484, "start": 83.325, "word": "great" }, { "confidence": 0.99902344, "end": 83.805, "punctuated_word": "detail", "speaker": 0, "speaker_confidence": 0.90771484, "start": 83.565, "word": "detail" }, { "confidence": 0.9980469, "end": 84.045, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.90771484, "start": 83.805, "word": "how" }, { "confidence": 0.99316406, "end": 84.125, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.90771484, "start": 84.045, "word": "the" }, { "confidence": 0.9838867, "end": 84.365, "punctuated_word": "orb", "speaker": 0, "speaker_confidence": 0.90771484, "start": 84.125, "word": "orb" }, { "confidence": 0.98535156, "end": 84.525, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.90771484, "start": 84.365, "word": "is" }, { "confidence": 0.99902344, "end": 85.025, "punctuated_word": "manufactured", "speaker": 0, "speaker_confidence": 0.90771484, "start": 84.525, "word": "manufactured" }, { "confidence": 0.88183594, "end": 85.405, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.90771484, "start": 85.244995, "word": "and" }, { "confidence": 0.87890625, "end": 85.6, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.90771484, "start": 85.405, "word": "some" }, { "confidence": 0.9604492, "end": 87.551994, "punctuated_word": "Some", "speaker": 0, "speaker_confidence": 0, "start": 87.52, "word": "some" }, { "confidence": 0.99902344, "end": 87.584, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0, "start": 87.551994, "word": "of" }, { "confidence": 1, "end": 87.616, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0, "start": 87.584, "word": "the" }, { "confidence": 1, "end": 87.647995, "punctuated_word": "source", "speaker": 0, "speaker_confidence": 0, "start": 87.616, "word": "source" }, { "confidence": 0.9980469, "end": 87.67999, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0, "start": 87.647995, "word": "code" }, { "confidence": 0.99902344, "end": 87.712, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0, "start": 87.67999, "word": "is" }, { "confidence": 1, "end": 87.743996, "punctuated_word": "available", "speaker": 0, "speaker_confidence": 0, "start": 87.712, "word": "available" }, { "confidence": 1, "end": 87.77599, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.7421875, "start": 87.743996, "word": "on" }, { "confidence": 0.9824219, "end": 87.808, "punctuated_word": "GitHub.", "speaker": 0, "speaker_confidence": 0.7421875, "start": 87.77599, "word": "github" }, { "confidence": 0.9970703, "end": 87.84, "punctuated_word": "Ultimately,", "speaker": 0, "speaker_confidence": 0.7421875, "start": 87.808, "word": "ultimately" }, { "confidence": 1, "end": 88, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.7421875, "start": 87.84, "word": "it's" }, { "confidence": 1, "end": 88.24, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.7421875, "start": 88, "word": "just" }, { "confidence": 1, "end": 88.32, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7421875, "start": 88.24, "word": "a" }, { "confidence": 1, "end": 88.799995, "punctuated_word": "machine", "speaker": 0, "speaker_confidence": 0.7421875, "start": 88.32, "word": "machine" }, { "confidence": 1, "end": 88.96, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7421875, "start": 88.799995, "word": "that" }, { "confidence": 0.9980469, "end": 89.2, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7421875, "start": 88.96, "word": "can" }, { "confidence": 0.9970703, "end": 89.68, "punctuated_word": "establish", "speaker": 0, "speaker_confidence": 0.7421875, "start": 89.2, "word": "establish" }, { "confidence": 0.9980469, "end": 89.92, "punctuated_word": "proof", "speaker": 0, "speaker_confidence": 0.7421875, "start": 89.68, "word": "proof" }, { "confidence": 0.99902344, "end": 90.08, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7421875, "start": 89.92, "word": "of" }, { "confidence": 0.8598633, "end": 90.58, "punctuated_word": "personhood.", "speaker": 0, "speaker_confidence": 0.7421875, "start": 90.08, "word": "personhood" }, { "confidence": 0.9980469, "end": 90.88, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.7421875, "start": 90.72, "word": "but" }, { "confidence": 0.99316406, "end": 91.04, "punctuated_word": "why", "speaker": 0, "speaker_confidence": 0.7421875, "start": 90.88, "word": "why" }, { "confidence": 0.99902344, "end": 91.2, "punctuated_word": "would", "speaker": 0, "speaker_confidence": 0.7421875, "start": 91.04, "word": "would" }, { "confidence": 0.99902344, "end": 91.28, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.7421875, "start": 91.2, "word": "we" }, { "confidence": 1, "end": 91.52, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.7421875, "start": 91.28, "word": "need" }, { "confidence": 0.9970703, "end": 91.6, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7421875, "start": 91.52, "word": "a" }, { "confidence": 0.99902344, "end": 91.84, "punctuated_word": "proof", "speaker": 0, "speaker_confidence": 0.7421875, "start": 91.6, "word": "proof" }, { "confidence": 0.9951172, "end": 91.92, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7421875, "start": 91.84, "word": "of" }, { "confidence": 0.9995117, "end": 92.4, "punctuated_word": "personhood", "speaker": 0, "speaker_confidence": 0.7421875, "start": 91.92, "word": "personhood" }, { "confidence": 0.99853516, "end": 92.88, "punctuated_word": "protocol?", "speaker": 0, "speaker_confidence": 0.7421875, "start": 92.4, "word": "protocol" }, { "confidence": 0.9916992, "end": 93.119995, "punctuated_word": "Well,", "speaker": 0, "speaker_confidence": 0.7421875, "start": 92.88, "word": "well" }, { "confidence": 1, "end": 93.2, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7421875, "start": 93.119995, "word": "the" }, { "confidence": 1, "end": 93.36, "punctuated_word": "main", "speaker": 0, "speaker_confidence": 0.7421875, "start": 93.2, "word": "main" }, { "confidence": 1, "end": 93.68, "punctuated_word": "reason", "speaker": 0, "speaker_confidence": 0.7421875, "start": 93.36, "word": "reason" }, { "confidence": 1, "end": 93.84, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7421875, "start": 93.68, "word": "is" }, { "confidence": 1, "end": 93.92, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6147461, "start": 93.84, "word": "the" }, { "confidence": 1, "end": 94.159996, "punctuated_word": "rise", "speaker": 0, "speaker_confidence": 0.6147461, "start": 93.92, "word": "rise" }, { "confidence": 0.99902344, "end": 94.32, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.6147461, "start": 94.159996, "word": "of" }, { "confidence": 0.9980469, "end": 94.82, "punctuated_word": "artificial", "speaker": 0, "speaker_confidence": 0.6147461, "start": 94.32, "word": "artificial" }, { "confidence": 0.99902344, "end": 95.38, "punctuated_word": "intelligence", "speaker": 0, "speaker_confidence": 0.6147461, "start": 94.88, "word": "intelligence" }, { "confidence": 0.9980469, "end": 95.65501, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6147461, "start": 95.495, "word": "and" }, { "confidence": 0.9970703, "end": 95.735, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6147461, "start": 95.65501, "word": "the" }, { "confidence": 1, "end": 95.895004, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.72753906, "start": 95.735, "word": "need" }, { "confidence": 0.9951172, "end": 95.975006, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.72753906, "start": 95.895004, "word": "to" }, { "confidence": 1, "end": 96.475006, "punctuated_word": "differentiate", "speaker": 0, "speaker_confidence": 0.72753906, "start": 95.975006, "word": "differentiate" }, { "confidence": 1, "end": 97.175, "punctuated_word": "between", "speaker": 0, "speaker_confidence": 0.72753906, "start": 96.855, "word": "between" }, { "confidence": 0.9921875, "end": 97.415, "punctuated_word": "man", "speaker": 0, "speaker_confidence": 0.72753906, "start": 97.175, "word": "man" }, { "confidence": 0.99609375, "end": 97.495, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.72753906, "start": 97.415, "word": "and" }, { "confidence": 0.9995117, "end": 97.895004, "punctuated_word": "machine.", "speaker": 0, "speaker_confidence": 0.72753906, "start": 97.495, "word": "machine" }, { "confidence": 1, "end": 98.055, "punctuated_word": "When", "speaker": 0, "speaker_confidence": 0.72753906, "start": 97.895004, "word": "when" }, { "confidence": 1, "end": 98.135, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.72753906, "start": 98.055, "word": "it" }, { "confidence": 1, "end": 98.295006, "punctuated_word": "comes", "speaker": 0, "speaker_confidence": 0.72753906, "start": 98.135, "word": "comes" }, { "confidence": 0.99902344, "end": 98.535, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.72753906, "start": 98.295006, "word": "to" }, { "confidence": 0.9980469, "end": 98.935005, "punctuated_word": "financial", "speaker": 0, "speaker_confidence": 0.72753906, "start": 98.535, "word": "financial" }, { "confidence": 0.9975586, "end": 99.435005, "punctuated_word": "systems,", "speaker": 0, "speaker_confidence": 0.72753906, "start": 98.935005, "word": "systems" }, { "confidence": 0.9892578, "end": 99.655, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.72753906, "start": 99.575005, "word": "it" }, { "confidence": 1, "end": 99.735, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.6904297, "start": 99.655, "word": "can" }, { "confidence": 0.99902344, "end": 100.055, "punctuated_word": "protect", "speaker": 0, "speaker_confidence": 0.6904297, "start": 99.735, "word": "protect" }, { "confidence": 0.99902344, "end": 100.375, "punctuated_word": "against", "speaker": 0, "speaker_confidence": 0.6904297, "start": 100.055, "word": "against" }, { "confidence": 0.66308594, "end": 100.695, "punctuated_word": "civil", "speaker": 0, "speaker_confidence": 0.6904297, "start": 100.375, "word": "civil" }, { "confidence": 0.95874023, "end": 101.175, "punctuated_word": "attacks,", "speaker": 0, "speaker_confidence": 0.6904297, "start": 100.695, "word": "attacks" }, { "confidence": 0.9951172, "end": 101.335, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.6904297, "start": 101.175, "word": "which" }, { "confidence": 0.99609375, "end": 101.495, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.6904297, "start": 101.335, "word": "is" }, { "confidence": 0.99609375, "end": 101.735, "punctuated_word": "named", "speaker": 0, "speaker_confidence": 0.6904297, "start": 101.495, "word": "named" }, { "confidence": 0.9863281, "end": 101.975006, "punctuated_word": "after", "speaker": 0, "speaker_confidence": 0.6904297, "start": 101.735, "word": "after" }, { "confidence": 0.90527344, "end": 102.055, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6904297, "start": 101.975006, "word": "a" }, { "confidence": 0.984375, "end": 102.295006, "punctuated_word": "book", "speaker": 0, "speaker_confidence": 0.6904297, "start": 102.055, "word": "book" }, { "confidence": 0.6982422, "end": 102.51, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.6904297, "start": 102.295006, "word": "about" }, { "confidence": 0.43652344, "end": 102.55, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.76171875, "start": 102.51, "word": "i'm" }, { "confidence": 0.9951172, "end": 102.590004, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.76171875, "start": 102.55, "word": "a" }, { "confidence": 0.9980469, "end": 102.990005, "punctuated_word": "lady", "speaker": 0, "speaker_confidence": 0.76171875, "start": 102.590004, "word": "lady" }, { "confidence": 1, "end": 103.15, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.76171875, "start": 102.990005, "word": "with" }, { "confidence": 0.9536133, "end": 103.55, "punctuated_word": "multiple", "speaker": 0, "speaker_confidence": 0.76171875, "start": 103.15, "word": "multiple" }, { "confidence": 1, "end": 104.05, "punctuated_word": "personality", "speaker": 0, "speaker_confidence": 0.76171875, "start": 103.55, "word": "personality" }, { "confidence": 0.814209, "end": 104.590004, "punctuated_word": "disorder,", "speaker": 0, "speaker_confidence": 0.76171875, "start": 104.11, "word": "disorder" }, { "confidence": 0.9980469, "end": 104.83, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.76171875, "start": 104.590004, "word": "where" }, { "confidence": 0.8286133, "end": 105.07, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.76171875, "start": 104.83, "word": "one" }, { "confidence": 0.99902344, "end": 105.39, "punctuated_word": "person", "speaker": 0, "speaker_confidence": 0.76171875, "start": 105.07, "word": "person" }, { "confidence": 0.99902344, "end": 105.71, "punctuated_word": "assumes", "speaker": 0, "speaker_confidence": 0.76171875, "start": 105.39, "word": "assumes" }, { "confidence": 1, "end": 105.87, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.76171875, "start": 105.71, "word": "the" }, { "confidence": 0.99902344, "end": 106.35, "punctuated_word": "identity", "speaker": 0, "speaker_confidence": 0.76171875, "start": 105.87, "word": "identity" }, { "confidence": 1, "end": 106.51, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.76171875, "start": 106.35, "word": "of" }, { "confidence": 0.99902344, "end": 106.83, "punctuated_word": "multiple", "speaker": 0, "speaker_confidence": 0.76171875, "start": 106.51, "word": "multiple" }, { "confidence": 1, "end": 107.23, "punctuated_word": "accounts", "speaker": 0, "speaker_confidence": 0.76171875, "start": 106.83, "word": "accounts" }, { "confidence": 0.9951172, "end": 107.39, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.76171875, "start": 107.23, "word": "to" }, { "confidence": 0.9448242, "end": 107.630005, "punctuated_word": "game", "speaker": 0, "speaker_confidence": 0.76171875, "start": 107.39, "word": "game" }, { "confidence": 0.9980469, "end": 107.71, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.38720703, "start": 107.630005, "word": "the" }, { "confidence": 0.9880371, "end": 108.11, "punctuated_word": "system.", "speaker": 0, "speaker_confidence": 0.38720703, "start": 107.71, "word": "system" }, { "confidence": 0.9160156, "end": 108.35, "punctuated_word": "That", "speaker": 0, "speaker_confidence": 0.38720703, "start": 108.11, "word": "that" }, { "confidence": 0.9770508, "end": 108.51, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.38720703, "start": 108.35, "word": "can" }, { "confidence": 0.9980469, "end": 108.55, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.38720703, "start": 108.51, "word": "be" }, { "confidence": 0.99609375, "end": 108.590004, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.90625, "start": 108.55, "word": "a" }, { "confidence": 1, "end": 108.91, "punctuated_word": "problem", "speaker": 0, "speaker_confidence": 0.90625, "start": 108.590004, "word": "problem" }, { "confidence": 0.9941406, "end": 108.990005, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.90625, "start": 108.91, "word": "in" }, { "confidence": 0.9321289, "end": 109.47, "punctuated_word": "crypto,", "speaker": 0, "speaker_confidence": 0.90625, "start": 108.990005, "word": "crypto" }, { "confidence": 0.9941406, "end": 109.705, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.90625, "start": 109.47, "word": "but" }, { "confidence": 0.99902344, "end": 109.865005, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.90625, "start": 109.705, "word": "not" }, { "confidence": 1, "end": 110.105, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 0.90625, "start": 109.865005, "word": "really" }, { "confidence": 1, "end": 110.265, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.90625, "start": 110.105, "word": "an" }, { "confidence": 1, "end": 110.425, "punctuated_word": "issue", "speaker": 0, "speaker_confidence": 0.90625, "start": 110.265, "word": "issue" }, { "confidence": 0.9980469, "end": 110.585, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.90625, "start": 110.425, "word": "in" }, { "confidence": 1, "end": 110.985, "punctuated_word": "traditional", "speaker": 0, "speaker_confidence": 0.90625, "start": 110.585, "word": "traditional" }, { "confidence": 0.9995117, "end": 111.385, "punctuated_word": "banking.", "speaker": 0, "speaker_confidence": 0.90625, "start": 110.985, "word": "banking" }, { "confidence": 1, "end": 111.545, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.90625, "start": 111.385, "word": "the" }, { "confidence": 1, "end": 111.785, "punctuated_word": "bigger", "speaker": 0, "speaker_confidence": 0.90625, "start": 111.545, "word": "bigger" }, { "confidence": 1, "end": 112.105, "punctuated_word": "problem", "speaker": 0, "speaker_confidence": 0.90625, "start": 111.785, "word": "problem" }, { "confidence": 1, "end": 112.265, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.90625, "start": 112.105, "word": "is" }, { "confidence": 1, "end": 112.585, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.90625, "start": 112.265, "word": "that" }, { "confidence": 0.9951172, "end": 112.825005, "punctuated_word": "AI", "speaker": 0, "speaker_confidence": 0.90625, "start": 112.585, "word": "ai" }, { "confidence": 0.99609375, "end": 113.145004, "punctuated_word": "tools", "speaker": 0, "speaker_confidence": 0.90625, "start": 112.825005, "word": "tools" }, { "confidence": 0.8647461, "end": 113.305, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.90625, "start": 113.145004, "word": "like" }, { "confidence": 0.9658203, "end": 113.545, "punctuated_word": "deep", "speaker": 0, "speaker_confidence": 0.90625, "start": 113.305, "word": "deep" }, { "confidence": 0.7495117, "end": 113.865005, "punctuated_word": "fakes", "speaker": 0, "speaker_confidence": 0.90625, "start": 113.545, "word": "fakes" }, { "confidence": 0.9970703, "end": 114.025, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.90625, "start": 113.865005, "word": "and" }, { "confidence": 0.99121094, "end": 114.265, "punctuated_word": "voice", "speaker": 0, "speaker_confidence": 0.90625, "start": 114.025, "word": "voice" }, { "confidence": 0.99121094, "end": 114.665, "punctuated_word": "cloning", "speaker": 0, "speaker_confidence": 0.90625, "start": 114.265, "word": "cloning" }, { "confidence": 0.9941406, "end": 114.825005, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.90625, "start": 114.665, "word": "can" }, { "confidence": 1, "end": 115.145004, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.90625, "start": 114.825005, "word": "create" }, { "confidence": 0.99902344, "end": 115.385, "punctuated_word": "digital", "speaker": 0, "speaker_confidence": 0.90625, "start": 115.145004, "word": "digital" }, { "confidence": 0.99609375, "end": 115.705, "punctuated_word": "clones", "speaker": 0, "speaker_confidence": 0.90625, "start": 115.385, "word": "clones" }, { "confidence": 0.99902344, "end": 115.785, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.90625, "start": 115.705, "word": "of" }, { "confidence": 1, "end": 116.105, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.90625, "start": 115.785, "word": "people" }, { "confidence": 1, "end": 116.345, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.90625, "start": 116.105, "word": "from" }, { "confidence": 1, "end": 116.505005, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 0.90625, "start": 116.345, "word": "their" }, { "confidence": 0.8730469, "end": 116.905, "punctuated_word": "Internet", "speaker": 0, "speaker_confidence": 0.90625, "start": 116.505005, "word": "internet" }, { "confidence": 0.78027344, "end": 117.305, "punctuated_word": "presence.", "speaker": 0, "speaker_confidence": 0.90625, "start": 116.905, "word": "presence" }, { "confidence": 0.9980469, "end": 117.465004, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.5058594, "start": 117.305, "word": "and" }, { "confidence": 1, "end": 117.625, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.5058594, "start": 117.465004, "word": "that's" }, { "confidence": 1, "end": 117.785, "punctuated_word": "why", "speaker": 0, "speaker_confidence": 0.5058594, "start": 117.625, "word": "why" }, { "confidence": 0.9995117, "end": 117.945, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.5058594, "start": 117.785, "word": "it's" }, { "confidence": 0.9980469, "end": 118.105, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.5058594, "start": 117.945, "word": "more" }, { "confidence": 0.99902344, "end": 118.345, "punctuated_word": "important", "speaker": 0, "speaker_confidence": 0.5058594, "start": 118.105, "word": "important" }, { "confidence": 0.9863281, "end": 118.505005, "punctuated_word": "than", "speaker": 0, "speaker_confidence": 0.5058594, "start": 118.345, "word": "than" }, { "confidence": 0.9941406, "end": 118.745, "punctuated_word": "ever", "speaker": 0, "speaker_confidence": 0.5058594, "start": 118.505005, "word": "ever" }, { "confidence": 0.57958984, "end": 119.03, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.5058594, "start": 118.745, "word": "that" }, { "confidence": 0.99902344, "end": 119.11, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.79003906, "start": 119.03, "word": "the" }, { "confidence": 1, "end": 119.35, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.79003906, "start": 119.11, "word": "people" }, { "confidence": 0.99902344, "end": 119.51, "punctuated_word": "who", "speaker": 0, "speaker_confidence": 0.79003906, "start": 119.35, "word": "who" }, { "confidence": 0.99902344, "end": 119.67, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.79003906, "start": 119.51, "word": "run" }, { "confidence": 0.99316406, "end": 119.909996, "punctuated_word": "these", "speaker": 0, "speaker_confidence": 0.79003906, "start": 119.67, "word": "these" }, { "confidence": 0.9980469, "end": 120.229996, "punctuated_word": "AI", "speaker": 0, "speaker_confidence": 0.79003906, "start": 119.909996, "word": "ai" }, { "confidence": 0.9921875, "end": 120.63, "punctuated_word": "companies", "speaker": 0, "speaker_confidence": 0.79003906, "start": 120.229996, "word": "companies" }, { "confidence": 0.9941406, "end": 120.95, "punctuated_word": "provide", "speaker": 0, "speaker_confidence": 0.79003906, "start": 120.63, "word": "provide" }, { "confidence": 1, "end": 121.19, "punctuated_word": "us", "speaker": 0, "speaker_confidence": 0.79003906, "start": 120.95, "word": "us" }, { "confidence": 1, "end": 121.35, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.79003906, "start": 121.19, "word": "with" }, { "confidence": 0.9980469, "end": 121.51, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.79003906, "start": 121.35, "word": "a" }, { "confidence": 0.9980469, "end": 121.909996, "punctuated_word": "global", "speaker": 0, "speaker_confidence": 0.79003906, "start": 121.51, "word": "global" }, { "confidence": 0.9863281, "end": 122.229996, "punctuated_word": "digital", "speaker": 0, "speaker_confidence": 0.79003906, "start": 121.909996, "word": "digital" }, { "confidence": 0.9941406, "end": 122.729996, "punctuated_word": "passport", "speaker": 0, "speaker_confidence": 0.79003906, "start": 122.229996, "word": "passport" }, { "confidence": 0.9951172, "end": 123.03, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.79003906, "start": 122.79, "word": "to" }, { "confidence": 1, "end": 123.19, "punctuated_word": "keep", "speaker": 0, "speaker_confidence": 0.79003906, "start": 123.03, "word": "keep" }, { "confidence": 0.99609375, "end": 123.27, "punctuated_word": "us", "speaker": 0, "speaker_confidence": 0.79003906, "start": 123.19, "word": "us" }, { "confidence": 0.9980469, "end": 123.51, "punctuated_word": "safe", "speaker": 0, "speaker_confidence": 0.79003906, "start": 123.27, "word": "safe" }, { "confidence": 1, "end": 123.75, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.79003906, "start": 123.51, "word": "from" }, { "confidence": 0.9902344, "end": 123.909996, "punctuated_word": "these", "speaker": 0, "speaker_confidence": 0.79003906, "start": 123.75, "word": "these" }, { "confidence": 0.9667969, "end": 124.229996, "punctuated_word": "AI", "speaker": 0, "speaker_confidence": 0.79003906, "start": 123.909996, "word": "ai" }, { "confidence": 0.9954427, "end": 124.729996, "punctuated_word": "monstrosities", "speaker": 0, "speaker_confidence": 0.79003906, "start": 124.229996, "word": "monstrosities" }, { "confidence": 0.9980469, "end": 125.03, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.79003906, "start": 124.95, "word": "that" }, { "confidence": 0.9980469, "end": 125.19, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.79003906, "start": 125.03, "word": "they" }, { "confidence": 0.9970703, "end": 125.67, "punctuated_word": "created.", "speaker": 0, "speaker_confidence": 0.79003906, "start": 125.19, "word": "created" }, { "confidence": 0.9875488, "end": 125.83, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.79003906, "start": 125.67, "word": "it's" }, { "confidence": 0.9316406, "end": 126.075, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.79003906, "start": 125.83, "word": "not" }, { "confidence": 0.47680664, "end": 126.314995, "punctuated_word": "About", "speaker": 0, "speaker_confidence": 0.79003906, "start": 126.155, "word": "about" }, { "confidence": 0.9914551, "end": 126.555, "punctuated_word": "money,", "speaker": 0, "speaker_confidence": 0.79003906, "start": 126.314995, "word": "money" }, { "confidence": 0.99902344, "end": 126.634995, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.79003906, "start": 126.555, "word": "it's" }, { "confidence": 0.99902344, "end": 126.795, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.76953125, "start": 126.634995, "word": "all" }, { "confidence": 1, "end": 127.034996, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.76953125, "start": 126.795, "word": "about" }, { "confidence": 0.99902344, "end": 127.274994, "punctuated_word": "making", "speaker": 0, "speaker_confidence": 0.76953125, "start": 127.034996, "word": "making" }, { "confidence": 0.99609375, "end": 127.354996, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.76953125, "start": 127.274994, "word": "the" }, { "confidence": 1, "end": 127.674995, "punctuated_word": "world", "speaker": 0, "speaker_confidence": 0.76953125, "start": 127.354996, "word": "world" }, { "confidence": 0.9980469, "end": 127.755, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.76953125, "start": 127.674995, "word": "a" }, { "confidence": 1, "end": 127.91499, "punctuated_word": "better", "speaker": 0, "speaker_confidence": 0.76953125, "start": 127.755, "word": "better" }, { "confidence": 1, "end": 128.315, "punctuated_word": "place.", "speaker": 0, "speaker_confidence": 0.76953125, "start": 127.91499, "word": "place" }, { "confidence": 0.99902344, "end": 128.47499, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.76953125, "start": 128.315, "word": "the" }, { "confidence": 0.82910156, "end": 128.97499, "punctuated_word": "Worldcoin", "speaker": 0, "speaker_confidence": 0.76953125, "start": 128.47499, "word": "worldcoin" }, { "confidence": 0.9506836, "end": 129.515, "punctuated_word": "Foundation", "speaker": 0, "speaker_confidence": 0.76953125, "start": 129.035, "word": "foundation" }, { "confidence": 0.99902344, "end": 129.75499, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.76953125, "start": 129.515, "word": "is" }, { "confidence": 1, "end": 129.83499, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.76953125, "start": 129.75499, "word": "the" }, { "confidence": 0.99902344, "end": 130.235, "punctuated_word": "initial", "speaker": 0, "speaker_confidence": 0.76953125, "start": 129.83499, "word": "initial" }, { "confidence": 0.9980469, "end": 130.635, "punctuated_word": "steward", "speaker": 0, "speaker_confidence": 0.76953125, "start": 130.235, "word": "steward" }, { "confidence": 0.9194336, "end": 130.715, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.87597656, "start": 130.635, "word": "of" }, { "confidence": 1, "end": 130.875, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.87597656, "start": 130.715, "word": "the" }, { "confidence": 0.94628906, "end": 131.355, "punctuated_word": "protocol,", "speaker": 0, "speaker_confidence": 0.87597656, "start": 130.875, "word": "protocol" }, { "confidence": 0.99902344, "end": 131.595, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.87597656, "start": 131.355, "word": "but" }, { "confidence": 0.93847656, "end": 131.675, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.87597656, "start": 131.595, "word": "is" }, { "confidence": 1, "end": 132.155, "punctuated_word": "intended", "speaker": 0, "speaker_confidence": 0.87597656, "start": 131.675, "word": "intended" }, { "confidence": 1, "end": 132.235, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.87597656, "start": 132.155, "word": "to" }, { "confidence": 0.99902344, "end": 132.555, "punctuated_word": "become", "speaker": 0, "speaker_confidence": 0.87597656, "start": 132.235, "word": "become" }, { "confidence": 0.99902344, "end": 132.715, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.87597656, "start": 132.555, "word": "a" }, { "confidence": 1, "end": 133.035, "punctuated_word": "public", "speaker": 0, "speaker_confidence": 0.87597656, "start": 132.715, "word": "public" }, { "confidence": 0.88720703, "end": 133.39, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.87597656, "start": 133.035, "word": "open" }, { "confidence": 0.796875, "end": 133.55, "punctuated_word": "So", "speaker": 0, "speaker_confidence": 0.87597656, "start": 133.39, "word": "so" }, { "confidence": 0.9719238, "end": 133.71, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.87597656, "start": 133.55, "word": "it's" }, { "confidence": 0.9760742, "end": 134.03, "punctuated_word": "network", "speaker": 0, "speaker_confidence": 0.87597656, "start": 133.71, "word": "network" }, { "confidence": 0.9980469, "end": 134.27, "punctuated_word": "owned", "speaker": 0, "speaker_confidence": 0.87597656, "start": 134.03, "word": "owned" }, { "confidence": 1, "end": 134.43, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.87597656, "start": 134.27, "word": "by" }, { "confidence": 0.8977051, "end": 134.91, "punctuated_word": "everybody,", "speaker": 0, "speaker_confidence": 0.87597656, "start": 134.43, "word": "everybody" }, { "confidence": 0.99902344, "end": 135.06999, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.87597656, "start": 134.91, "word": "and" }, { "confidence": 1, "end": 135.15, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.87597656, "start": 135.06999, "word": "it" }, { "confidence": 0.99902344, "end": 135.31, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.87597656, "start": 135.15, "word": "could" }, { "confidence": 0.9980469, "end": 135.79, "punctuated_word": "potentially", "speaker": 0, "speaker_confidence": 0.87597656, "start": 135.31, "word": "potentially" }, { "confidence": 0.99121094, "end": 136.19, "punctuated_word": "evolve", "speaker": 0, "speaker_confidence": 0.87597656, "start": 135.79, "word": "evolve" }, { "confidence": 0.99902344, "end": 136.51, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.87597656, "start": 136.19, "word": "into" }, { "confidence": 0.99902344, "end": 136.67, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.87597656, "start": 136.51, "word": "a" }, { "confidence": 0.9951172, "end": 137.15, "punctuated_word": "global", "speaker": 0, "speaker_confidence": 0.87597656, "start": 136.67, "word": "global" }, { "confidence": 0.78027344, "end": 137.63, "punctuated_word": "universal", "speaker": 0, "speaker_confidence": 0.87597656, "start": 137.15, "word": "universal" }, { "confidence": 0.9941406, "end": 138.03, "punctuated_word": "basic", "speaker": 0, "speaker_confidence": 0.87597656, "start": 137.63, "word": "basic" }, { "confidence": 0.97265625, "end": 138.43, "punctuated_word": "income,", "speaker": 0, "speaker_confidence": 0.87597656, "start": 138.03, "word": "income" }, { "confidence": 1, "end": 138.59, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.87597656, "start": 138.43, "word": "which" }, { "confidence": 0.9838867, "end": 138.75, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.87597656, "start": 138.59, "word": "we're" }, { "confidence": 1, "end": 139.15, "punctuated_word": "definitely", "speaker": 0, "speaker_confidence": 0.87597656, "start": 138.75, "word": "definitely" }, { "confidence": 0.9921875, "end": 139.26999, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.87597656, "start": 139.15, "word": "going" }, { "confidence": 0.9970703, "end": 139.39, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.87597656, "start": 139.26999, "word": "to" }, { "confidence": 1, "end": 139.70999, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.87597656, "start": 139.39, "word": "need" }, { "confidence": 0.99121094, "end": 140.03, "punctuated_word": "after", "speaker": 0, "speaker_confidence": 0.87597656, "start": 139.70999, "word": "after" }, { "confidence": 0.9350586, "end": 140.51, "punctuated_word": "GPT", "speaker": 0, "speaker_confidence": 0.87597656, "start": 140.03, "word": "gpt" }, { "confidence": 0.7714844, "end": 140.75, "punctuated_word": "5", "speaker": 0, "speaker_confidence": 0.87597656, "start": 140.51, "word": "5" }, { "confidence": 0.9951172, "end": 140.99, "punctuated_word": "takes", "speaker": 0, "speaker_confidence": 0.87597656, "start": 140.75, "word": "takes" }, { "confidence": 0.9951172, "end": 141.15, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.87597656, "start": 140.99, "word": "all" }, { "confidence": 0.9941406, "end": 141.23, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.7363281, "start": 141.15, "word": "our" }, { "confidence": 0.9707031, "end": 141.455, "punctuated_word": "jobs", "speaker": 0, "speaker_confidence": 0.7363281, "start": 141.23, "word": "jobs" }, { "confidence": 0.46972656, "end": 141.695, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.7363281, "start": 141.455, "word": "for" }, { "confidence": 0.9980469, "end": 141.935, "punctuated_word": "good.", "speaker": 0, "speaker_confidence": 0.7363281, "start": 141.695, "word": "good" }, { "confidence": 0.9790039, "end": 142.255, "punctuated_word": "That", "speaker": 0, "speaker_confidence": 0.7363281, "start": 141.935, "word": "that" }, { "confidence": 0.9980469, "end": 142.495, "punctuated_word": "sounds", "speaker": 0, "speaker_confidence": 0.7363281, "start": 142.255, "word": "sounds" }, { "confidence": 0.84228516, "end": 142.815, "punctuated_word": "awesome,", "speaker": 0, "speaker_confidence": 0.7363281, "start": 142.495, "word": "awesome" }, { "confidence": 1, "end": 142.975, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7363281, "start": 142.815, "word": "and" }, { "confidence": 1, "end": 143.135, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.7363281, "start": 142.975, "word": "i" }, { "confidence": 1, "end": 143.295, "punctuated_word": "can't", "speaker": 0, "speaker_confidence": 0.7363281, "start": 143.135, "word": "can't" }, { "confidence": 0.99902344, "end": 143.375, "punctuated_word": "wait", "speaker": 0, "speaker_confidence": 0.7363281, "start": 143.295, "word": "wait" }, { "confidence": 0.99902344, "end": 143.535, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7363281, "start": 143.375, "word": "to" }, { "confidence": 0.9921875, "end": 143.695, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.7363281, "start": 143.535, "word": "just" }, { "confidence": 1, "end": 143.855, "punctuated_word": "hang", "speaker": 0, "speaker_confidence": 0.7363281, "start": 143.695, "word": "hang" }, { "confidence": 0.9970703, "end": 144.015, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.7363281, "start": 143.855, "word": "out" }, { "confidence": 1, "end": 144.175, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.7363281, "start": 144.015, "word": "all" }, { "confidence": 1, "end": 144.41501, "punctuated_word": "day", "speaker": 0, "speaker_confidence": 0.7363281, "start": 144.175, "word": "day" }, { "confidence": 0.9863281, "end": 144.495, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7363281, "start": 144.41501, "word": "and" }, { "confidence": 1, "end": 144.655, "punctuated_word": "play", "speaker": 0, "speaker_confidence": 0.7363281, "start": 144.495, "word": "play" }, { "confidence": 0.9980469, "end": 144.895, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.7363281, "start": 144.655, "word": "video" }, { "confidence": 0.9875488, "end": 145.295, "punctuated_word": "games,", "speaker": 0, "speaker_confidence": 0.7363281, "start": 144.895, "word": "games" }, { "confidence": 1, "end": 145.455, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.7363281, "start": 145.295, "word": "but" }, { "confidence": 0.74853516, "end": 145.955, "punctuated_word": "Worldcoin", "speaker": 0, "speaker_confidence": 0.7363281, "start": 145.455, "word": "worldcoin" }, { "confidence": 0.99902344, "end": 146.175, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.7363281, "start": 146.015, "word": "has" }, { "confidence": 0.99902344, "end": 146.255, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.80126953, "start": 146.175, "word": "a" }, { "confidence": 1, "end": 146.575, "punctuated_word": "long", "speaker": 0, "speaker_confidence": 0.80126953, "start": 146.255, "word": "long" }, { "confidence": 0.9873047, "end": 146.895, "punctuated_word": "uphill", "speaker": 0, "speaker_confidence": 0.80126953, "start": 146.575, "word": "uphill" }, { "confidence": 1, "end": 147.135, "punctuated_word": "battle", "speaker": 0, "speaker_confidence": 0.80126953, "start": 146.895, "word": "battle" }, { "confidence": 1, "end": 147.295, "punctuated_word": "ahead", "speaker": 0, "speaker_confidence": 0.80126953, "start": 147.135, "word": "ahead" }, { "confidence": 0.99902344, "end": 147.455, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.80126953, "start": 147.295, "word": "of" }, { "confidence": 0.9980469, "end": 147.775, "punctuated_word": "itself.", "speaker": 0, "speaker_confidence": 0.80126953, "start": 147.455, "word": "itself" }, { "confidence": 0.9790039, "end": 148.015, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.80126953, "start": 147.775, "word": "the" }, { "confidence": 0.99609375, "end": 148.495, "punctuated_word": "MIT", "speaker": 0, "speaker_confidence": 0.80126953, "start": 148.015, "word": "mit" }, { "confidence": 0.90625, "end": 148.895, "punctuated_word": "Technology", "speaker": 0, "speaker_confidence": 0.80126953, "start": 148.495, "word": "technology" }, { "confidence": 0.96875, "end": 149.375, "punctuated_word": "Review", "speaker": 0, "speaker_confidence": 0.80126953, "start": 148.895, "word": "review" }, { "confidence": 0.99316406, "end": 149.615, "punctuated_word": "released", "speaker": 0, "speaker_confidence": 0.80126953, "start": 149.375, "word": "released" }, { "confidence": 1, "end": 149.775, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.80126953, "start": 149.615, "word": "a" }, { "confidence": 1, "end": 150.095, "punctuated_word": "scathing", "speaker": 0, "speaker_confidence": 0.80126953, "start": 149.775, "word": "scathing" }, { "confidence": 1, "end": 150.495, "punctuated_word": "article", "speaker": 0, "speaker_confidence": 0.80126953, "start": 150.095, "word": "article" }, { "confidence": 1, "end": 150.735, "punctuated_word": "last", "speaker": 0, "speaker_confidence": 0.80126953, "start": 150.495, "word": "last" }, { "confidence": 1, "end": 151.08, "punctuated_word": "year", "speaker": 0, "speaker_confidence": 0.80126953, "start": 150.735, "word": "year" }, { "confidence": 1, "end": 151.32, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.80126953, "start": 151.16, "word": "that" }, { "confidence": 0.8461914, "end": 151.64, "punctuated_word": "alleged", "speaker": 0, "speaker_confidence": 0.80126953, "start": 151.32, "word": "alleged" }, { "confidence": 1, "end": 152.12, "punctuated_word": "deceptive", "speaker": 0, "speaker_confidence": 0.80126953, "start": 151.64, "word": "deceptive" }, { "confidence": 0.99902344, "end": 152.6, "punctuated_word": "marketing", "speaker": 0, "speaker_confidence": 0.80126953, "start": 152.12, "word": "marketing" }, { "confidence": 0.99902344, "end": 153.1, "punctuated_word": "practices", "speaker": 0, "speaker_confidence": 0.80126953, "start": 152.6, "word": "practices" }, { "confidence": 0.82128906, "end": 153.48, "punctuated_word": "among", "speaker": 0, "speaker_confidence": 0.80126953, "start": 153.16, "word": "among" }, { "confidence": 0.99316406, "end": 153.64, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.80126953, "start": 153.48, "word": "a" }, { "confidence": 1, "end": 153.96, "punctuated_word": "variety", "speaker": 0, "speaker_confidence": 0.80126953, "start": 153.64, "word": "variety" }, { "confidence": 0.99609375, "end": 154.12, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.80126953, "start": 153.96, "word": "of" }, { "confidence": 0.9980469, "end": 154.28, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.80126953, "start": 154.12, "word": "other" }, { "confidence": 0.9016113, "end": 154.6, "punctuated_word": "issues,", "speaker": 0, "speaker_confidence": 0.80126953, "start": 154.28, "word": "issues" }, { "confidence": 0.9892578, "end": 154.76, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.36572266, "start": 154.6, "word": "and" }, { "confidence": 0.9951172, "end": 154.92, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.36572266, "start": 154.76, "word": "then" }, { "confidence": 0.9951172, "end": 155.08, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.36572266, "start": 154.92, "word": "you" }, { "confidence": 0.9970703, "end": 155.24, "punctuated_word": "already", "speaker": 0, "speaker_confidence": 0.36572266, "start": 155.08, "word": "already" }, { "confidence": 0.99316406, "end": 155.48, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.36572266, "start": 155.24, "word": "have" }, { "confidence": 0.96875, "end": 155.56, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6376953, "start": 155.48, "word": "a" }, { "confidence": 0.9951172, "end": 155.8, "punctuated_word": "black", "speaker": 0, "speaker_confidence": 0.6376953, "start": 155.56, "word": "black" }, { "confidence": 0.99609375, "end": 156.12, "punctuated_word": "market", "speaker": 0, "speaker_confidence": 0.6376953, "start": 155.8, "word": "market" }, { "confidence": 0.99902344, "end": 156.44, "punctuated_word": "emerging", "speaker": 0, "speaker_confidence": 0.6376953, "start": 156.12, "word": "emerging" }, { "confidence": 0.9741211, "end": 156.6, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.6376953, "start": 156.44, "word": "in" }, { "confidence": 0.984375, "end": 157, "punctuated_word": "China", "speaker": 0, "speaker_confidence": 0.6376953, "start": 156.6, "word": "china" }, { "confidence": 0.9135742, "end": 157.24, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.6376953, "start": 157, "word": "for" }, { "confidence": 0.47583008, "end": 157.56, "punctuated_word": "Iris", "speaker": 0, "speaker_confidence": 0.6376953, "start": 157.24, "word": "iris" }, { "confidence": 0.88183594, "end": 157.88, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.6376953, "start": 157.56, "word": "data" }, { "confidence": 0.82958984, "end": 158.12, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6376953, "start": 157.88, "word": "to" }, { "confidence": 0.9038086, "end": 158.455, "punctuated_word": "exploit", "speaker": 0, "speaker_confidence": 0.6376953, "start": 158.12, "word": "exploit" }, { "confidence": 0.14807129, "end": 158.615, "punctuated_word": "Avoid", "speaker": 0, "speaker_confidence": 0.6376953, "start": 158.455, "word": "avoid" }, { "confidence": 0.9970703, "end": 158.695, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6376953, "start": 158.615, "word": "the" }, { "confidence": 0.67041016, "end": 158.855, "punctuated_word": "world", "speaker": 0, "speaker_confidence": 0.8095703, "start": 158.695, "word": "world" }, { "confidence": 0.90234375, "end": 159.095, "punctuated_word": "coin", "speaker": 0, "speaker_confidence": 0.8095703, "start": 158.855, "word": "coin" }, { "confidence": 0.9980469, "end": 159.575, "punctuated_word": "system.", "speaker": 0, "speaker_confidence": 0.8095703, "start": 159.095, "word": "system" }, { "confidence": 1, "end": 159.735, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.8095703, "start": 159.575, "word": "the" }, { "confidence": 1, "end": 160.05501, "punctuated_word": "biggest", "speaker": 0, "speaker_confidence": 0.8095703, "start": 159.735, "word": "biggest" }, { "confidence": 1, "end": 160.295, "punctuated_word": "issue", "speaker": 0, "speaker_confidence": 0.8095703, "start": 160.05501, "word": "issue" }, { "confidence": 0.9013672, "end": 160.375, "punctuated_word": "though", "speaker": 0, "speaker_confidence": 0.8095703, "start": 160.295, "word": "though" }, { "confidence": 0.95410156, "end": 160.615, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8095703, "start": 160.375, "word": "is" }, { "confidence": 1, "end": 160.77501, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8095703, "start": 160.615, "word": "that" }, { "confidence": 1, "end": 161.015, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.8095703, "start": 160.77501, "word": "people" }, { "confidence": 1, "end": 161.175, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.8095703, "start": 161.015, "word": "are" }, { "confidence": 1, "end": 161.575, "punctuated_word": "resistant", "speaker": 0, "speaker_confidence": 0.8095703, "start": 161.175, "word": "resistant" }, { "confidence": 1, "end": 161.815, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8095703, "start": 161.575, "word": "to" }, { "confidence": 0.96875, "end": 161.975, "punctuated_word": "look", "speaker": 0, "speaker_confidence": 0.8095703, "start": 161.815, "word": "look" }, { "confidence": 0.99609375, "end": 162.215, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.8095703, "start": 161.975, "word": "into" }, { "confidence": 1, "end": 162.295, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8095703, "start": 162.215, "word": "the" }, { "confidence": 0.99365234, "end": 162.695, "punctuated_word": "orb.", "speaker": 0, "speaker_confidence": 0.8095703, "start": 162.295, "word": "orb" }, { "confidence": 1, "end": 162.935, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.8095703, "start": 162.695, "word": "the" }, { "confidence": 0.99902344, "end": 163.175, "punctuated_word": "orb", "speaker": 0, "speaker_confidence": 0.8095703, "start": 162.935, "word": "orb" }, { "confidence": 1, "end": 163.255, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8095703, "start": 163.175, "word": "is" }, { "confidence": 1, "end": 163.495, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.8095703, "start": 163.255, "word": "your" }, { "confidence": 0.9975586, "end": 163.895, "punctuated_word": "friend.", "speaker": 0, "speaker_confidence": 0.8095703, "start": 163.495, "word": "friend" }, { "confidence": 1, "end": 164.05501, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.8095703, "start": 163.895, "word": "you" }, { "confidence": 1, "end": 164.295, "punctuated_word": "must", "speaker": 0, "speaker_confidence": 0.8095703, "start": 164.05501, "word": "must" }, { "confidence": 1, "end": 164.455, "punctuated_word": "look", "speaker": 0, "speaker_confidence": 0.8095703, "start": 164.295, "word": "look" }, { "confidence": 0.9980469, "end": 164.615, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.8095703, "start": 164.455, "word": "into" }, { "confidence": 1, "end": 164.775, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8095703, "start": 164.615, "word": "the" }, { "confidence": 0.9995117, "end": 165.175, "punctuated_word": "orb.", "speaker": 0, "speaker_confidence": 0.8095703, "start": 164.775, "word": "orb" }, { "confidence": 0.9995117, "end": 165.41501, "punctuated_word": "What's", "speaker": 0, "speaker_confidence": 0.8095703, "start": 165.175, "word": "what's" }, { "confidence": 1, "end": 165.655, "punctuated_word": "funny", "speaker": 0, "speaker_confidence": 0.8095703, "start": 165.41501, "word": "funny" }, { "confidence": 0.9375, "end": 165.815, "punctuated_word": "though", "speaker": 0, "speaker_confidence": 0.8095703, "start": 165.655, "word": "though" }, { "confidence": 0.8803711, "end": 165.975, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8095703, "start": 165.815, "word": "is" }, { "confidence": 0.99902344, "end": 166.135, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8095703, "start": 165.975, "word": "that" }, { "confidence": 0.9980469, "end": 166.375, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 0.8095703, "start": 166.135, "word": "most" }, { "confidence": 0.99609375, "end": 166.455, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8095703, "start": 166.375, "word": "of" }, { "confidence": 0.9980469, "end": 166.615, "punctuated_word": "us", "speaker": 0, "speaker_confidence": 0.78125, "start": 166.455, "word": "us" }, { "confidence": 0.9970703, "end": 166.695, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.78125, "start": 166.615, "word": "have" }, { "confidence": 0.9970703, "end": 166.935, "punctuated_word": "already", "speaker": 0, "speaker_confidence": 0.78125, "start": 166.695, "word": "already" }, { "confidence": 0.9970703, "end": 167.33, "punctuated_word": "given", "speaker": 0, "speaker_confidence": 0.78125, "start": 166.935, "word": "given" }, { "confidence": 0.9902344, "end": 167.49, "punctuated_word": "All", "speaker": 0, "speaker_confidence": 0.78125, "start": 167.33, "word": "all" }, { "confidence": 0.9980469, "end": 167.65001, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.78125, "start": 167.49, "word": "of" }, { "confidence": 1, "end": 167.73, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.78125, "start": 167.65001, "word": "our" }, { "confidence": 0.99902344, "end": 168.13, "punctuated_word": "facial", "speaker": 0, "speaker_confidence": 0.78125, "start": 167.73, "word": "facial" }, { "confidence": 0.99365234, "end": 168.61, "punctuated_word": "biometric", "speaker": 0, "speaker_confidence": 0.78125, "start": 168.13, "word": "biometric" }, { "confidence": 0.9980469, "end": 168.93001, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.78125, "start": 168.61, "word": "data" }, { "confidence": 0.9316406, "end": 169.09, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.78125, "start": 168.93001, "word": "to" }, { "confidence": 0.9980469, "end": 169.49, "punctuated_word": "companies", "speaker": 0, "speaker_confidence": 0.78125, "start": 169.09, "word": "companies" }, { "confidence": 0.94140625, "end": 169.73, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.78125, "start": 169.49, "word": "like" }, { "confidence": 0.98876953, "end": 170.05, "punctuated_word": "Apple,", "speaker": 0, "speaker_confidence": 0.78125, "start": 169.73, "word": "apple" }, { "confidence": 0.90527344, "end": 170.37, "punctuated_word": "Meta,", "speaker": 0, "speaker_confidence": 0.78125, "start": 170.05, "word": "meta" }, { "confidence": 0.9941406, "end": 170.53, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.78125, "start": 170.37, "word": "and" }, { "confidence": 0.96777344, "end": 171.01, "punctuated_word": "TikTok", "speaker": 0, "speaker_confidence": 0.78125, "start": 170.53, "word": "tiktok" }, { "confidence": 0.7216797, "end": 171.17, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.78125, "start": 171.01, "word": "in" }, { "confidence": 1, "end": 171.33, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.78125, "start": 171.17, "word": "a" }, { "confidence": 1, "end": 171.49, "punctuated_word": "far", "speaker": 0, "speaker_confidence": 0.78125, "start": 171.33, "word": "far" }, { "confidence": 0.99902344, "end": 171.73, "punctuated_word": "less", "speaker": 0, "speaker_confidence": 0.78125, "start": 171.49, "word": "less" }, { "confidence": 1, "end": 172.21, "punctuated_word": "transparent", "speaker": 0, "speaker_confidence": 0.78125, "start": 171.73, "word": "transparent" }, { "confidence": 0.9970703, "end": 172.37, "punctuated_word": "way.", "speaker": 0, "speaker_confidence": 0.78125, "start": 172.21, "word": "way" }, { "confidence": 0.9980469, "end": 172.69, "punctuated_word": "After", "speaker": 0, "speaker_confidence": 0.78125, "start": 172.37, "word": "after" }, { "confidence": 0.99609375, "end": 172.85, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.78125, "start": 172.69, "word": "the" }, { "confidence": 0.31713867, "end": 173.09, "punctuated_word": "orb", "speaker": 0, "speaker_confidence": 0.78125, "start": 172.85, "word": "orb" }, { "confidence": 0.9975586, "end": 173.41, "punctuated_word": "verifies", "speaker": 0, "speaker_confidence": 0.78125, "start": 173.09, "word": "verifies" }, { "confidence": 0.98095703, "end": 173.57, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.78125, "start": 173.41, "word": "that" }, { "confidence": 0.982666, "end": 173.69, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.78125, "start": 173.57, "word": "you're" }, { "confidence": 0.90722656, "end": 173.81, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.55322266, "start": 173.69, "word": "a" }, { "confidence": 0.9980469, "end": 174.21, "punctuated_word": "human,", "speaker": 0, "speaker_confidence": 0.55322266, "start": 173.81, "word": "human" }, { "confidence": 0.9819336, "end": 174.45, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.55322266, "start": 174.21, "word": "your" }, { "confidence": 0.99902344, "end": 174.85, "punctuated_word": "identity", "speaker": 0, "speaker_confidence": 0.55322266, "start": 174.45, "word": "identity" }, { "confidence": 0.9941406, "end": 174.93001, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.55322266, "start": 174.85, "word": "is" }, { "confidence": 0.99902344, "end": 175.25, "punctuated_word": "added", "speaker": 0, "speaker_confidence": 0.55322266, "start": 174.93001, "word": "added" }, { "confidence": 0.9941406, "end": 175.33, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.55322266, "start": 175.25, "word": "to" }, { "confidence": 0.97314453, "end": 175.49, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.59472656, "start": 175.33, "word": "a" }, { "confidence": 0.99902344, "end": 175.73, "punctuated_word": "list", "speaker": 0, "speaker_confidence": 0.59472656, "start": 175.49, "word": "list" }, { "confidence": 0.9873047, "end": 175.89, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.59472656, "start": 175.73, "word": "of" }, { "confidence": 0.99121094, "end": 176.29001, "punctuated_word": "verified", "speaker": 0, "speaker_confidence": 0.59472656, "start": 175.89, "word": "verified" }, { "confidence": 0.93066406, "end": 176.625, "punctuated_word": "humans,", "speaker": 0, "speaker_confidence": 0.59472656, "start": 176.29001, "word": "humans" }, { "confidence": 0.66748047, "end": 176.785, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.59472656, "start": 176.625, "word": "and" }, { "confidence": 0.9951172, "end": 176.945, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.59472656, "start": 176.785, "word": "then" }, { "confidence": 0.9941406, "end": 177.025, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9013672, "start": 176.945, "word": "the" }, { "confidence": 0.84155273, "end": 177.525, "punctuated_word": "Worldcoin", "speaker": 0, "speaker_confidence": 0.9013672, "start": 177.025, "word": "worldcoin" }, { "confidence": 0.9716797, "end": 177.825, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.9013672, "start": 177.585, "word": "app" }, { "confidence": 1, "end": 178.305, "punctuated_word": "generates", "speaker": 0, "speaker_confidence": 0.9013672, "start": 177.825, "word": "generates" }, { "confidence": 0.9980469, "end": 178.465, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9013672, "start": 178.305, "word": "a" }, { "confidence": 0.6425781, "end": 178.705, "punctuated_word": "zero", "speaker": 0, "speaker_confidence": 0.9013672, "start": 178.465, "word": "zero" }, { "confidence": 0.9980469, "end": 179.025, "punctuated_word": "knowledge", "speaker": 0, "speaker_confidence": 0.9013672, "start": 178.705, "word": "knowledge" }, { "confidence": 0.9980469, "end": 179.345, "punctuated_word": "proof", "speaker": 0, "speaker_confidence": 0.9013672, "start": 179.025, "word": "proof" }, { "confidence": 0.99902344, "end": 179.505, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9013672, "start": 179.345, "word": "to" }, { "confidence": 0.99902344, "end": 179.745, "punctuated_word": "prove", "speaker": 0, "speaker_confidence": 0.9013672, "start": 179.505, "word": "prove" }, { "confidence": 1, "end": 179.985, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.9013672, "start": 179.745, "word": "your" }, { "confidence": 1, "end": 180.485, "punctuated_word": "identity", "speaker": 0, "speaker_confidence": 0.9013672, "start": 179.985, "word": "identity" }, { "confidence": 0.99609375, "end": 180.865, "punctuated_word": "without", "speaker": 0, "speaker_confidence": 0.9013672, "start": 180.545, "word": "without" }, { "confidence": 1, "end": 181.265, "punctuated_word": "revealing", "speaker": 0, "speaker_confidence": 0.9013672, "start": 180.865, "word": "revealing" }, { "confidence": 1, "end": 181.425, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 0.9013672, "start": 181.265, "word": "any" }, { "confidence": 1, "end": 181.585, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9013672, "start": 181.425, "word": "of" }, { "confidence": 1, "end": 181.745, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.9013672, "start": 181.585, "word": "your" }, { "confidence": 1, "end": 182.145, "punctuated_word": "secret", "speaker": 0, "speaker_confidence": 0.9013672, "start": 181.745, "word": "secret" }, { "confidence": 1, "end": 182.625, "punctuated_word": "information.", "speaker": 0, "speaker_confidence": 0.9013672, "start": 182.145, "word": "information" }, { "confidence": 0.99902344, "end": 182.785, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.9013672, "start": 182.625, "word": "in" }, { "confidence": 0.99609375, "end": 183.105, "punctuated_word": "theory,", "speaker": 0, "speaker_confidence": 0.9013672, "start": 182.785, "word": "theory" }, { "confidence": 1, "end": 183.185, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.9013672, "start": 183.105, "word": "you" }, { "confidence": 0.9902344, "end": 183.345, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.9013672, "start": 183.185, "word": "could" }, { "confidence": 0.99902344, "end": 183.505, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.9013672, "start": 183.345, "word": "be" }, { "confidence": 1, "end": 183.825, "punctuated_word": "totally", "speaker": 0, "speaker_confidence": 0.9013672, "start": 183.505, "word": "totally" }, { "confidence": 1, "end": 184.225, "punctuated_word": "anonymous", "speaker": 0, "speaker_confidence": 0.9013672, "start": 183.825, "word": "anonymous" }, { "confidence": 1, "end": 184.385, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.9013672, "start": 184.225, "word": "on" }, { "confidence": 0.98811847, "end": 184.885, "punctuated_word": "Worldcoin,", "speaker": 0, "speaker_confidence": 0.9013672, "start": 184.385, "word": "worldcoin" }, { "confidence": 1, "end": 185.185, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.9013672, "start": 185.025, "word": "but" }, { "confidence": 1, "end": 185.425, "punctuated_word": "many", "speaker": 0, "speaker_confidence": 0.9013672, "start": 185.185, "word": "many" }, { "confidence": 1, "end": 185.505, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.9013672, "start": 185.425, "word": "are" }, { "confidence": 0.9980469, "end": 185.98, "punctuated_word": "skeptical", "speaker": 0, "speaker_confidence": 0.9013672, "start": 185.505, "word": "skeptical" }, { "confidence": 0.99902344, "end": 186.22, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9013672, "start": 186.06, "word": "and" }, { "confidence": 0.9941406, "end": 186.37999, "punctuated_word": "think", "speaker": 0, "speaker_confidence": 0.9013672, "start": 186.22, "word": "think" }, { "confidence": 0.9995117, "end": 186.45999, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.9013672, "start": 186.37999, "word": "it's" }, { "confidence": 0.9980469, "end": 186.62, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.9013672, "start": 186.45999, "word": "just" }, { "confidence": 1, "end": 186.94, "punctuated_word": "laying", "speaker": 0, "speaker_confidence": 0.9013672, "start": 186.62, "word": "laying" }, { "confidence": 0.99902344, "end": 187.01999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9013672, "start": 186.94, "word": "the" }, { "confidence": 0.9941406, "end": 187.42, "punctuated_word": "groundwork", "speaker": 0, "speaker_confidence": 0.9013672, "start": 187.01999, "word": "groundwork" }, { "confidence": 1, "end": 187.58, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.9013672, "start": 187.42, "word": "for" }, { "confidence": 1, "end": 187.73999, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9013672, "start": 187.58, "word": "a" }, { "confidence": 0.9873047, "end": 187.98, "punctuated_word": "world", "speaker": 0, "speaker_confidence": 0.9013672, "start": 187.73999, "word": "world" }, { "confidence": 0.99902344, "end": 188.48, "punctuated_word": "currency", "speaker": 0, "speaker_confidence": 0.9013672, "start": 187.98, "word": "currency" }, { "confidence": 0.9394531, "end": 188.7, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9013672, "start": 188.54, "word": "that" }, { "confidence": 0.99902344, "end": 188.86, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.9013672, "start": 188.7, "word": "will" }, { "confidence": 1, "end": 189.01999, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.9013672, "start": 188.86, "word": "be" }, { "confidence": 0.99902344, "end": 189.5, "punctuated_word": "implemented", "speaker": 0, "speaker_confidence": 0.9013672, "start": 189.01999, "word": "implemented" }, { "confidence": 1, "end": 189.65999, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.9013672, "start": 189.5, "word": "by" }, { "confidence": 1, "end": 189.81999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9013672, "start": 189.65999, "word": "the" }, { "confidence": 0.99902344, "end": 190.22, "punctuated_word": "upcoming", "speaker": 0, "speaker_confidence": 0.9013672, "start": 189.81999, "word": "upcoming" }, { "confidence": 0.41967773, "end": 190.45999, "punctuated_word": "One", "speaker": 0, "speaker_confidence": 0.9013672, "start": 190.22, "word": "one" }, { "confidence": 0.94140625, "end": 190.62, "punctuated_word": "World", "speaker": 0, "speaker_confidence": 0.9013672, "start": 190.45999, "word": "world" }, { "confidence": 0.83935547, "end": 191.09999, "punctuated_word": "Government", "speaker": 0, "speaker_confidence": 0.9013672, "start": 190.62, "word": "government" }, { "confidence": 0.98095703, "end": 191.42, "punctuated_word": "after", "speaker": 0, "speaker_confidence": 0.9013672, "start": 191.09999, "word": "after" }, { "confidence": 0.9980469, "end": 191.58, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9013672, "start": 191.42, "word": "the" }, { "confidence": 0.97509766, "end": 191.9, "punctuated_word": "alien", "speaker": 0, "speaker_confidence": 0.9013672, "start": 191.58, "word": "alien" }, { "confidence": 1, "end": 192.29999, "punctuated_word": "invasion", "speaker": 0, "speaker_confidence": 0.9013672, "start": 191.9, "word": "invasion" }, { "confidence": 0.99902344, "end": 192.54, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9013672, "start": 192.29999, "word": "of" }, { "confidence": 0.8387044, "end": 193.04, "punctuated_word": "2027,", "speaker": 0, "speaker_confidence": 0.9013672, "start": 192.54, "word": "2027" }, { "confidence": 0.99121094, "end": 193.42, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.9013672, "start": 193.26, "word": "at" }, { "confidence": 0.9980469, "end": 193.58, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.9013672, "start": 193.42, "word": "which" }, { "confidence": 0.9970703, "end": 193.81999, "punctuated_word": "point", "speaker": 0, "speaker_confidence": 0.9013672, "start": 193.58, "word": "point" }, { "confidence": 0.94311523, "end": 193.98, "punctuated_word": "they'll", "speaker": 0, "speaker_confidence": 0.9013672, "start": 193.81999, "word": "they'll" }, { "confidence": 0.9980469, "end": 194.14, "punctuated_word": "no", "speaker": 0, "speaker_confidence": 0.9013672, "start": 193.98, "word": "no" }, { "confidence": 0.99902344, "end": 194.37999, "punctuated_word": "longer", "speaker": 0, "speaker_confidence": 0.9013672, "start": 194.14, "word": "longer" }, { "confidence": 0.9951172, "end": 194.62, "punctuated_word": "scan", "speaker": 0, "speaker_confidence": 0.9013672, "start": 194.37999, "word": "scan" }, { "confidence": 0.9838867, "end": 194.78, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.9013672, "start": 194.62, "word": "our" }, { "confidence": 0.98795575, "end": 195.26, "punctuated_word": "eyeballs,", "speaker": 0, "speaker_confidence": 0.9013672, "start": 194.78, "word": "eyeballs" }, { "confidence": 0.94970703, "end": 195.42, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.5541992, "start": 195.26, "word": "but" }, { "confidence": 0.7001953, "end": 195.725, "punctuated_word": "instead", "speaker": 0, "speaker_confidence": 0.5541992, "start": 195.42, "word": "instead" }, { "confidence": 0.39575195, "end": 195.88501, "punctuated_word": "Zed", "speaker": 0, "speaker_confidence": 0.5541992, "start": 195.725, "word": "zed" }, { "confidence": 0.7529297, "end": 196.125, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.5541992, "start": 195.88501, "word": "use" }, { "confidence": 0.9980469, "end": 196.205, "punctuated_word": "far", "speaker": 0, "speaker_confidence": 0.5541992, "start": 196.125, "word": "far" }, { "confidence": 0.9980469, "end": 196.445, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.5541992, "start": 196.205, "word": "more" }, { "confidence": 0.99902344, "end": 196.945, "punctuated_word": "reliable", "speaker": 0, "speaker_confidence": 0.5541992, "start": 196.445, "word": "reliable" }, { "confidence": 0.9873047, "end": 197.405, "punctuated_word": "alien", "speaker": 0, "speaker_confidence": 0.5541992, "start": 197.005, "word": "alien" }, { "confidence": 0.9980469, "end": 197.905, "punctuated_word": "probes.", "speaker": 0, "speaker_confidence": 0.5541992, "start": 197.405, "word": "probes" }, { "confidence": 0.9633789, "end": 198.285, "punctuated_word": "Oh", "speaker": 0, "speaker_confidence": 0.34277344, "start": 198.125, "word": "oh" }, { "confidence": 0.8432617, "end": 198.445, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.34277344, "start": 198.285, "word": "my" }, { "confidence": 0.6376953, "end": 198.925, "punctuated_word": "god.", "speaker": 0, "speaker_confidence": 0.34277344, "start": 198.445, "word": "god" }, { "confidence": 0.99902344, "end": 199.005, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.34277344, "start": 198.925, "word": "i" }, { "confidence": 1, "end": 199.24501, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.34277344, "start": 199.005, "word": "just" }, { "confidence": 0.9970703, "end": 199.485, "punctuated_word": "cracked", "speaker": 0, "speaker_confidence": 0.34277344, "start": 199.24501, "word": "cracked" }, { "confidence": 0.9980469, "end": 199.565, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.48291016, "start": 199.485, "word": "the" }, { "confidence": 0.9951172, "end": 200.04501, "punctuated_word": "code.", "speaker": 0, "speaker_confidence": 0.48291016, "start": 199.565, "word": "code" }, { "confidence": 0.9951172, "end": 200.205, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.48291016, "start": 200.04501, "word": "you" }, { "confidence": 0.9995117, "end": 200.445, "punctuated_word": "can't", "speaker": 0, "speaker_confidence": 0.48291016, "start": 200.205, "word": "can't" }, { "confidence": 1, "end": 200.765, "punctuated_word": "spell", "speaker": 0, "speaker_confidence": 0.48291016, "start": 200.445, "word": "spell" }, { "confidence": 0.9506836, "end": 201.005, "punctuated_word": "probe", "speaker": 0, "speaker_confidence": 0.48291016, "start": 200.765, "word": "probe" }, { "confidence": 0.9980469, "end": 201.405, "punctuated_word": "without", "speaker": 0, "speaker_confidence": 0.48291016, "start": 201.005, "word": "without" }, { "confidence": 0.9494629, "end": 201.80501, "punctuated_word": "orb.", "speaker": 0, "speaker_confidence": 0.48291016, "start": 201.405, "word": "orb" }, { "confidence": 0.9980469, "end": 201.88501, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.48339844, "start": 201.80501, "word": "i" }, { "confidence": 1, "end": 202.04501, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.48339844, "start": 201.88501, "word": "could" }, { "confidence": 1, "end": 202.205, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.48339844, "start": 202.04501, "word": "be" }, { "confidence": 1, "end": 202.365, "punctuated_word": "wrong", "speaker": 0, "speaker_confidence": 0.48339844, "start": 202.205, "word": "wrong" }, { "confidence": 0.9650879, "end": 202.60501, "punctuated_word": "here,", "speaker": 0, "speaker_confidence": 0.48339844, "start": 202.365, "word": "here" }, { "confidence": 0.99902344, "end": 202.74, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.48339844, "start": 202.60501, "word": "but" }, { "confidence": 0.98095703, "end": 202.90001, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.48339844, "start": 202.82, "word": "but" }, { "confidence": 0.98095703, "end": 203.06001, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.48339844, "start": 202.90001, "word": "just" }, { "confidence": 1, "end": 203.14, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.48339844, "start": 203.06001, "word": "to" }, { "confidence": 1, "end": 203.22, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.62597656, "start": 203.14, "word": "be" }, { "confidence": 0.9880371, "end": 203.38, "punctuated_word": "safe,", "speaker": 0, "speaker_confidence": 0.62597656, "start": 203.22, "word": "safe" }, { "confidence": 1, "end": 203.54001, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.62597656, "start": 203.38, "word": "i'm" }, { "confidence": 0.9707031, "end": 203.70001, "punctuated_word": "gonna", "speaker": 0, "speaker_confidence": 0.62597656, "start": 203.54001, "word": "gonna" }, { "confidence": 0.99902344, "end": 203.86, "punctuated_word": "stick", "speaker": 0, "speaker_confidence": 0.62597656, "start": 203.70001, "word": "stick" }, { "confidence": 1, "end": 204.02, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.62597656, "start": 203.86, "word": "with" }, { "confidence": 0.99853516, "end": 204.42, "punctuated_word": "Monero", "speaker": 0, "speaker_confidence": 0.62597656, "start": 204.02, "word": "monero" }, { "confidence": 0.9980469, "end": 204.58, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.62597656, "start": 204.42, "word": "for" }, { "confidence": 0.99902344, "end": 204.74, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.62597656, "start": 204.58, "word": "all" }, { "confidence": 0.99316406, "end": 204.90001, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.62597656, "start": 204.74, "word": "my" }, { "confidence": 1, "end": 205.3, "punctuated_word": "anonymous", "speaker": 0, "speaker_confidence": 0.62597656, "start": 204.90001, "word": "anonymous" }, { "confidence": 0.9892578, "end": 205.70001, "punctuated_word": "crypto", "speaker": 0, "speaker_confidence": 0.62597656, "start": 205.3, "word": "crypto" }, { "confidence": 0.9951172, "end": 206.02, "punctuated_word": "needs.", "speaker": 0, "speaker_confidence": 0.62597656, "start": 205.70001, "word": "needs" }, { "confidence": 1, "end": 206.18001, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.62597656, "start": 206.02, "word": "this" }, { "confidence": 0.9980469, "end": 206.34001, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.62597656, "start": 206.18001, "word": "has" }, { "confidence": 1, "end": 206.42, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.62597656, "start": 206.34001, "word": "been" }, { "confidence": 0.96875, "end": 206.5, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.46289062, "start": 206.42, "word": "the" }, { "confidence": 0.4880371, "end": 206.74, "punctuated_word": "Cove", "speaker": 0, "speaker_confidence": 0.46289062, "start": 206.5, "word": "cove" }, { "confidence": 0.9592285, "end": 207.14, "punctuated_word": "Report.", "speaker": 0, "speaker_confidence": 0.46289062, "start": 206.74, "word": "report" }, { "confidence": 0.99902344, "end": 207.38, "punctuated_word": "Thanks", "speaker": 0, "speaker_confidence": 0.46289062, "start": 207.14, "word": "thanks" }, { "confidence": 1, "end": 207.54001, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.46289062, "start": 207.38, "word": "for" }, { "confidence": 0.9658203, "end": 208.02, "punctuated_word": "watching,", "speaker": 0, "speaker_confidence": 0.46289062, "start": 207.54001, "word": "watching" }, { "confidence": 1, "end": 208.18001, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.46289062, "start": 208.02, "word": "and" }, { "confidence": 1, "end": 208.34001, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.3251953, "start": 208.18001, "word": "i" }, { "confidence": 1, "end": 208.5, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.3251953, "start": 208.34001, "word": "will" }, { "confidence": 0.99902344, "end": 208.66, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.3251953, "start": 208.5, "word": "see" }, { "confidence": 1, "end": 208.74, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.3251953, "start": 208.66, "word": "you" }, { "confidence": 0.99121094, "end": 208.90001, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.3251953, "start": 208.74, "word": "in" }, { "confidence": 1, "end": 208.98001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.3251953, "start": 208.90001, "word": "the" }, { "confidence": 1, "end": 209.3, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.3251953, "start": 208.98001, "word": "next" }, { "confidence": 0.99560547, "end": 209.8, "punctuated_word": "one.", "speaker": 0, "speaker_confidence": 0.3251953, "start": 209.3, "word": "one" } ] } ], "detected_language": "", "language_confidence": 0, "search": null } ], "summary": { "result": "success", "short": "The Worldcoin, a cryptocurrency designed to scan 1,000,000 eyeballs to create a mobile identity platform and payment network, is a joint venture between the Worldcoin Foundation and the blockchain industry. The protocol is designed to protect against civil attacks and is network-issued, with no need for a proof of identity. The protocol is also designed to become a global basic income and is network-issued to ensure privacy." }, "utterances": null } }
downloads\Worldcoin_the_shtcoin_for_humanity_just_launched.wav
https://www.youtube.com/watch?v=V4qrvoFodmo
Worldcoin… the sh*tcoin for humanity just launched
434,290
Fireship
536
What changed in the tech industry over the last year? Let's look at 10 trends in tech, AI, programming, hardware, and more for the year 2024. #tech #trends #top10 💬 Chat with Me on Discord https://discord.gg/fireship 🔗 Resources AI Image Generation Tutorial https://youtu.be/ky5ZB-mqZKM Tech Trends from 2023 https://youtu.be/1v_TEnpqHXE 🔥 Get More Content - Upgrade to PRO Upgrade at https://fireship.io/pro Use code YT25 for 25% off PRO access 🎨 My Editor Settings - Atom One Dark - vscode-icons - Fira Code Font 🔖 Topics Covered - What's new with AI in 2024 - Why is Bitcoin going up? - State of the tech job market in 2024 - Predictions about technology in 2024
{ "metadata": { "channels": 1, "created": "2024-02-04T04:59:10.395Z", "duration": 535.7772, "model_info": { "30089e05-99d1-4376-b32e-c263170674af": { "arch": "nova-2", "name": "2-general-nova", "version": "2024-01-09.29447" } }, "models": [ "30089e05-99d1-4376-b32e-c263170674af" ], "request_id": "f9eecef0-5056-4179-9193-268abfc5fd87", "sha256": "3f5696245faaaf2a33851ec894acd439e7ae5178b5b9716b5d5408e7b7eb3671", "summary_info": { "input_tokens": 2435, "model_uuid": "67875a7f-c9c4-48a0-aa55-5bdb8a91c34a", "output_tokens": 92 }, "transaction_key": "deprecated", "warnings": null }, "results": { "channels": [ { "alternatives": [ { "confidence": 0.99609375, "entities": null, "paragraphs": { "paragraphs": [ { "end": 20.34, "num_words": 79, "sentences": [ { "end": 0.65999997, "start": 0.16, "text": "Congratulations." }, { "end": 3.22, "start": 1.12, "text": "You survived yet another year in the simulation." }, { "end": 11.514999, "start": 3.36, "text": "If you still have a job in tech, it means you survived massive layoffs, didn't get drafted into a war, and outsmarted the artificial intelligence that your boss wants to replace you with." }, { "end": 16.814999, "start": 11.514999, "text": "2023 was the craziest year ever, but at the rate things are accelerating, it'll look like nothing compared to 2024." }, { "end": 20.34, "start": 17.035, "text": "I care deeply about a future because I'm going to spend the rest of my life there." } ], "speaker": 0, "start": 0.16 }, { "end": 43.525, "num_words": 86, "sentences": [ { "end": 22.02, "start": 20.34, "text": "But the future ain't what it used to be." }, { "end": 26.525, "start": 22.02, "text": "In today's video, we'll look at 10 trends in technology that you can take advantage of in 2024." }, { "end": 29.225, "start": 26.744999, "text": "Let's get started by looking at the health of the job market." }, { "end": 35.165, "start": 29.225, "text": "At the beginning of 2023, we had massive layoffs from magnificent 7 companies like Amazon, Google, and Microsoft." }, { "end": 43.525, "start": 35.225, "text": "Not only did flood the job market with more talent, but simultaneously, the number of open jobs declined by about 60% based on data from true up dot io." } ], "speaker": 0, "start": 20.34 }, { "end": 69.5, "num_words": 97, "sentences": [ { "end": 47.705, "start": 43.525, "text": "And that's been a 1, 2 punch to the nuts for junior developers looking to get into the industry." }, { "end": 59.190002, "start": 50.95, "text": "In 2021, we had people working multiple full time jobs simultaneously, thanks to remote work, and you could land these jobs by simply taking a 100 second boot camp." }, { "end": 60.844997, "start": 59.190002, "text": "But today, day, things look a lot different." }, { "end": 67.58, "start": 60.905, "text": "Managers are still desperately trying to get people back into the office, and you can find all kinds of anecdotes on Reddit about how brutal the job market is right now." }, { "end": 69.5, "start": 67.58, "text": "It's been a rough year, but there is some hope." } ], "speaker": 0, "start": 43.525 }, { "end": 100.665, "num_words": 122, "sentences": [ { "end": 78.075, "start": 69.5, "text": "If we look closely at the chart, you'll notice that job openings are up 13.8% from earlier this year, and all the big bang companies have unfrozen their hiring freezes." }, { "end": 84.655, "start": 78.075, "text": "Although there aren't nearly as many open jobs as there used to be, so I'd be cautiously optimistic about an improving job market going into 2024." }, { "end": 86.86, "start": 84.795, "text": "But lot of that depends on the state of the world." }, { "end": 94.14, "start": 86.86, "text": "We're still in a high interest rate environment, which is not ideal for cash burning startups that need that easy money to hire a bunch of people to grow quickly." }, { "end": 100.665, "start": 94.14, "text": "Just day, Spotify did its 3rd layoff of the year, where it severed about 1500 heads, which it blamed on the higher cost of capital." } ], "speaker": 0, "start": 69.5 }, { "end": 132.725, "num_words": 119, "sentences": [ { "end": 110.270004, "start": 100.725006, "text": "These high rates have also put the real estate market at a stand dramatically reducing the total number of transactions because nobody wants to pay $900,000 for a cardboard box with an 8% mortgage." }, { "end": 119.36, "start": 110.270004, "text": "The automotive industry is also struggling, and we saw Tesla prices come way down in 2023, which was a shock to some people who thought their Tesla was an appreciating asset just a year ago." }, { "end": 124.24, "start": 119.44, "text": "The economy, and especially technology, is addicted to low rates, but we've also got some wars going on." }, { "end": 129.02501, "start": 124.24, "text": "Now, I don't stand with Palestine, I don't stand with Israel, I don't stand Ukraine, I don't stand with Russia." }, { "end": 132.725, "start": 129.02501, "text": "I stand with Lockheed Martin and Boeing and the military industrial complex." } ], "speaker": 0, "start": 100.725006 }, { "end": 156.03, "num_words": 105, "sentences": [ { "end": 137.54, "start": 132.785, "text": "These companies make the tools we need to blow each other up, and when you stand with that team, you really can't lose." }, { "end": 144.715, "start": 137.54, "text": "What you have to realize is that you're living paycheck to paycheck, your employer is living bailout to bailout, and the United States government is living from war to war." }, { "end": 150.075, "start": 144.715, "text": "If we don't get a big war soon, the entire system could collapse, and that's not going to bode well for tech jobs in the future." }, { "end": 151.995, "start": 150.075, "text": "But speaking of money, crypto is back." }, { "end": 156.03, "start": 151.995, "text": "Bitcoin with 16 k at the beginning of the year and just broke 40 k a couple days ago." } ], "speaker": 0, "start": 132.785 }, { "end": 182.58, "num_words": 100, "sentences": [ { "end": 160.90501, "start": 156.03, "text": "And cryptobros are already predicting that one token will be worth over a1000000 dollars by the end of 2024." }, { "end": 163.205, "start": 161.125, "text": "The price to watch for is 69 k." }, { "end": 168.13, "start": 163.205, "text": "If it reaches this price point, the world will be flooded with memes that will elevate FOMO to biblical levels." }, { "end": 173.33, "start": 168.13, "text": "In other words, the crypto winter might be over, bringing us a fresh new round of Ponzi schemes to invest our parents' money in." }, { "end": 182.58, "start": 173.33, "text": "Another failed technology that could come back in 2024 is augmented and virtual reality, thanks primarily to the Apple Vision Pro, which is set to release in early 2024." } ], "speaker": 0, "start": 156.03 }, { "end": 206.29001, "num_words": 96, "sentences": [ { "end": 191.525, "start": 182.87999, "text": "Apple has done some revolutionary things in the past, like a mouse that charges from the bottom, and if these VR goggles take off, it could lead to a whole new round of opportunity for app developers." }, { "end": 192.985, "start": 191.525, "text": "However, I think that's unlikely." }, { "end": 200.59, "start": 193.045, "text": "Plenty of Apple cult members will drink this Kool Aid, but I don't think the general public is going to fork over $35100 to become even more disconnected from reality." }, { "end": 203.23, "start": 200.59, "text": "Ultimately though, I think this will end up being a niche product." }, { "end": 206.29001, "start": 203.23, "text": "Very cool to some people, but not appealing to the average NPC." } ], "speaker": 0, "start": 182.87999 }, { "end": 243.275, "num_words": 130, "sentences": [ { "end": 218.61, "start": 206.43001, "text": "Now speaking of where Microsoft just announced a few weeks ago that it's going to start producing its own chips, like the Maya chip for artificial intelligence and the Cobalt CPU, which is an ARM processor designed for general purpose use in the cloud." }, { "end": 224.565, "start": 218.61, "text": "And AWS is also building its own ARM based chips, which are cheaper and more efficient than traditional x86 chips." }, { "end": 236.54001, "start": 224.565, "text": "Now as of today, virtually all PCs and laptops running Windows run CPUs based on the x86 architecture, But that may not be the case in the future, because thanks to Project Volterra, it's now possible to run Windows on ARM chips." }, { "end": 239.435, "start": 236.54001, "text": "Hell, even Intel is going to manufacturing ARM chips." }, { "end": 243.275, "start": 239.435, "text": "The single most important thing anyone does with the CPU though is play video games." } ], "speaker": 0, "start": 206.43001 }, { "end": 266.68, "num_words": 93, "sentences": [ { "end": 246.555, "start": 243.275, "text": "And just yesterday, we got our first look at the GTA 6 trailer." }, { "end": 254.12999, "start": 246.555, "text": "This will likely be the most hyped up video game in the history of the world, and it's built using Rockstar's own proprietary RAGE game engine, and that means you can't use it." }, { "end": 255.56999, "start": 254.12999, "text": "What you can use is Unity." }, { "end": 262.165, "start": 255.56999, "text": "However, Unity made a massive blunder in 2023 by rolling out new pricing that would charge developers every time a game is downloaded." }, { "end": 266.68, "start": 262.225, "text": "Unity developers revolted, and it got so bad that they had to roll back the pricing and apologize." } ], "speaker": 0, "start": 243.275 }, { "end": 294.155, "num_words": 92, "sentences": [ { "end": 267.7, "start": 266.98, "text": "That's right." }, { "end": 268.2, "start": 267.7, "text": "Apologize." }, { "end": 278.695, "start": 268.74, "text": "Meanwhile, Unreal Engine released version 5.3 with some crazy new features like a procedural content generation frame war and its substrate material system that gets almost indistinguishable from reality." }, { "end": 290.38, "start": 278.755, "text": "Now, Unreal Engine's parent company, Epic Games, sued Apple a few years ago saying it's a monopoly because it takes a 30 cut on the App Store and doesn't allow alternative payment methods, but it lost that suit, and that was held up on appeal in 2023." }, { "end": 294.155, "start": 290.6, "text": "Epic Games is not giving up though with more ongoing lawsuit against Google." } ], "speaker": 0, "start": 266.98 }, { "end": 329.675, "num_words": 141, "sentences": [ { "end": 302.015, "start": 294.155, "text": "It seems like a long shot, but if they somehow win, it would be huge for indie developers because they could avoid that 30% cut to the big guy by using their own payment processor." }, { "end": 303.81998, "start": 302.075, "text": "But now Let's talk about web development." }, { "end": 317.065, "start": 303.81998, "text": "JavaScript land is as crazy as ever, but I think in 2024, people will stop building new JavaScript frameworks because nowadays they all have a similar developer experience with signal based reactivity, and the race will shift to who can build the best tools for existing frameworks." }, { "end": 323.25, "start": 317.065, "text": "We're seeing more visual editors and IDEs for frameworks like the act, where you can drag and drop components instead of coding them manually." }, { "end": 329.675, "start": 323.25, "text": "Then you have frameworks like Nuxt, which have built in dev tools to make life easier, but pretty soon, we should have AI writing most of our code." } ], "speaker": 0, "start": 294.155 }, { "end": 356.92, "num_words": 108, "sentences": [ { "end": 336.64, "start": 329.675, "text": "There are tools like Visual Copilot, where you can take a design in Figma, and it will automatically write the framework code along with tailwind styles." }, { "end": 344.32, "start": 336.72, "text": "In the near future, I think every JavaScript framework will have its own specialized tooling along with its own specially tuned AI for writing useful accurate code." }, { "end": 348.065, "start": 344.32, "text": "Whichever framework does this the best will will win the web development war for the next 10 years." }, { "end": 352.385, "start": 348.065, "text": "And I think there will be a lot of opportunity on the web, in part because of trends in mobile development." }, { "end": 356.92, "start": 352.385, "text": "This trend been ongoing for many years, but people just don't wanna download mobile apps anymore." } ], "speaker": 0, "start": 329.675 }, { "end": 379.555, "num_words": 100, "sentences": [ { "end": 361.95502, "start": 356.92, "text": "It's not like 10 years ago when you could develop an app in your mom's basement, have it go and become a millionaire overnight." }, { "end": 367.215, "start": 362.015, "text": "There are billions of people using smartphones every day, but getting their attention away from established apps is harder than ever." }, { "end": 370.6, "start": 367.215, "text": "Like, as you can here, most of my screen time goes to Twitter and Discord." }, { "end": 373, "start": 370.6, "text": "When it comes to building mobile apps, not too much has changed." }, { "end": 379.555, "start": 373, "text": "But if you're building cross platform, we're starting to see more low code tools that can build for both iOS and Android with a drag and drop interface." } ], "speaker": 0, "start": 356.92 }, { "end": 409.88998, "num_words": 112, "sentences": [ { "end": 382.035, "start": 379.615, "text": "But now let's talk about low level systems languages." }, { "end": 386.01498, "start": 382.095, "text": "Rust is still growing incredibly fast, and you can now find Rust code in the Linux kernel." }, { "end": 390.35, "start": 386.01498, "text": "There was some armor with the Rust Foundation earlier this year, and I might get sued for using this logo." }, { "end": 405.71, "start": 390.35, "text": "But there are some other up and coming low level languages as well, like Zig, the language behind the script BUN runtime and also Mojo, a Python superset that can also handle low level memory management, making it both approachable and extremely performant, an ideal option for AI and machine learning." }, { "end": 409.88998, "start": 405.71, "text": "And finally, that brings us to number 10, the elephant in the room, artificial intelligence." } ], "speaker": 0, "start": 379.615 }, { "end": 441.03, "num_words": 113, "sentences": [ { "end": 413.465, "start": 410.11, "text": "ChatGPT has only been around for a year, although it feels like a lot longer." }, { "end": 421.02002, "start": 413.465, "text": "And most normies out there haven't even touched it yet, but that's going to change over the next few years because we now have Bard built into Google to cannibalize its search engine." }, { "end": 425.2, "start": 421.02002, "text": "We have Copilot built into Microsoft Office to write all your papers and do all your spreadsheets." }, { "end": 432.935, "start": 425.42, "text": "An estimated 75% of all stock radio now happens via algorithms, and AI is being weaponized to both launch and defend against cyberattacks." }, { "end": 441.03, "start": 433.315, "text": "And even our military industrial complex friends like Palantir are using AI to help blow people up in a more environmentally friendly and equitable way." } ], "speaker": 0, "start": 410.11 }, { "end": 461.09003, "num_words": 73, "sentences": [ { "end": 443.75, "start": 441.03, "text": "But things got really crazy with generative image AI." }, { "end": 448.66498, "start": 443.75, "text": "10 years ago, Ian Goodfellow published a paper proposing the first generative adversarial network." }, { "end": 453.305, "start": 448.66498, "text": "7 years later, OpenAI brought us to fusion models with DALL E, but they still sucked pretty hard." }, { "end": 457.67, "start": 453.305, "text": "But then just 2 years from that point, we get images good enough to make 10 $1,000 a month on OnlyFans." }, { "end": 461.09003, "start": 457.89, "text": "In 2024, a big trend to watch is text to video." } ], "speaker": 0, "start": 441.03 }, { "end": 492, "num_words": 118, "sentences": [ { "end": 471.365, "start": 461.09003, "text": "Stable Diffusion just released a text to video model, and at the current rate of progress, I predict that by the end of 2024, you'll be able to generate a full length Bollywood quality movie from your laptop." }, { "end": 480.345, "start": 471.365, "text": "But none of this will matter if somebody first achieves artificial general intelligence, an AI that can actually think for itself and not just regurgitate and remix things humans have already gun." }, { "end": 484.605, "start": 480.345, "text": "Some people even think this has already been achieved by open AI with the leak of QStar." }, { "end": 489.52, "start": 484.74503, "text": "However, there's a French guy that thinks AGI is decades away, and some think it will never be achieved." }, { "end": 492, "start": 489.52, "text": "When that day comes, it could be a great day for humanity." } ], "speaker": 0, "start": 461.09003 }, { "end": 521.20996, "num_words": 116, "sentences": [ { "end": 496.25998, "start": 492, "text": "We'll never have to work or think again, and there'll be nothing left to do but indulge in pleasure." }, { "end": 500.165, "start": 496.31998, "text": "On the other hand though, you may live to see AI made horrors beyond your comprehension." }, { "end": 504.81003, "start": 500.225, "text": "It could end up being like when Faust made a deal with the devil for unlimited knowledge and pleasure." }, { "end": 509.59003, "start": 504.87003, "text": "But once that knowledge is achieved, there's a trade off in the form of moral and spiritual decline." }, { "end": 521.20996, "start": 509.59003, "text": "The AI will have to adjust for this by creating billions of lab grown babies, which are now a real thing, then put them into a simulation that has a disproportionate amount of suffering in order to offset the pleasures experienced by the AI." } ], "speaker": 0, "start": 492 }, { "end": 535.715, "num_words": 61, "sentences": [ { "end": 523.52997, "start": 521.20996, "text": "In fact, you might be in the simulation right now." }, { "end": 527.23, "start": 523.52997, "text": "Why else would you be watching a video gaslighting you into thinking you're in a simulation?" }, { "end": 529.695, "start": 527.29, "text": "You'd have to be crazy to think we're not in a simulation right now." }, { "end": 532.835, "start": 529.855, "text": "But again congratulations for making it to round 2024." }, { "end": 535.715, "start": 533.135, "text": "Thanks for watching, and I will see you in the next one." } ], "speaker": 0, "start": 521.20996 } ], "transcript": "\nSpeaker 0: Congratulations. You survived yet another year in the simulation. If you still have a job in tech, it means you survived massive layoffs, didn't get drafted into a war, and outsmarted the artificial intelligence that your boss wants to replace you with. 2023 was the craziest year ever, but at the rate things are accelerating, it'll look like nothing compared to 2024. I care deeply about a future because I'm going to spend the rest of my life there.\n\nBut the future ain't what it used to be. In today's video, we'll look at 10 trends in technology that you can take advantage of in 2024. Let's get started by looking at the health of the job market. At the beginning of 2023, we had massive layoffs from magnificent 7 companies like Amazon, Google, and Microsoft. Not only did flood the job market with more talent, but simultaneously, the number of open jobs declined by about 60% based on data from true up dot io.\n\nAnd that's been a 1, 2 punch to the nuts for junior developers looking to get into the industry. In 2021, we had people working multiple full time jobs simultaneously, thanks to remote work, and you could land these jobs by simply taking a 100 second boot camp. But today, day, things look a lot different. Managers are still desperately trying to get people back into the office, and you can find all kinds of anecdotes on Reddit about how brutal the job market is right now. It's been a rough year, but there is some hope.\n\nIf we look closely at the chart, you'll notice that job openings are up 13.8% from earlier this year, and all the big bang companies have unfrozen their hiring freezes. Although there aren't nearly as many open jobs as there used to be, so I'd be cautiously optimistic about an improving job market going into 2024. But lot of that depends on the state of the world. We're still in a high interest rate environment, which is not ideal for cash burning startups that need that easy money to hire a bunch of people to grow quickly. Just day, Spotify did its 3rd layoff of the year, where it severed about 1500 heads, which it blamed on the higher cost of capital.\n\nThese high rates have also put the real estate market at a stand dramatically reducing the total number of transactions because nobody wants to pay $900,000 for a cardboard box with an 8% mortgage. The automotive industry is also struggling, and we saw Tesla prices come way down in 2023, which was a shock to some people who thought their Tesla was an appreciating asset just a year ago. The economy, and especially technology, is addicted to low rates, but we've also got some wars going on. Now, I don't stand with Palestine, I don't stand with Israel, I don't stand Ukraine, I don't stand with Russia. I stand with Lockheed Martin and Boeing and the military industrial complex.\n\nThese companies make the tools we need to blow each other up, and when you stand with that team, you really can't lose. What you have to realize is that you're living paycheck to paycheck, your employer is living bailout to bailout, and the United States government is living from war to war. If we don't get a big war soon, the entire system could collapse, and that's not going to bode well for tech jobs in the future. But speaking of money, crypto is back. Bitcoin with 16 k at the beginning of the year and just broke 40 k a couple days ago.\n\nAnd cryptobros are already predicting that one token will be worth over a1000000 dollars by the end of 2024. The price to watch for is 69 k. If it reaches this price point, the world will be flooded with memes that will elevate FOMO to biblical levels. In other words, the crypto winter might be over, bringing us a fresh new round of Ponzi schemes to invest our parents' money in. Another failed technology that could come back in 2024 is augmented and virtual reality, thanks primarily to the Apple Vision Pro, which is set to release in early 2024.\n\nApple has done some revolutionary things in the past, like a mouse that charges from the bottom, and if these VR goggles take off, it could lead to a whole new round of opportunity for app developers. However, I think that's unlikely. Plenty of Apple cult members will drink this Kool Aid, but I don't think the general public is going to fork over $35100 to become even more disconnected from reality. Ultimately though, I think this will end up being a niche product. Very cool to some people, but not appealing to the average NPC.\n\nNow speaking of where Microsoft just announced a few weeks ago that it's going to start producing its own chips, like the Maya chip for artificial intelligence and the Cobalt CPU, which is an ARM processor designed for general purpose use in the cloud. And AWS is also building its own ARM based chips, which are cheaper and more efficient than traditional x86 chips. Now as of today, virtually all PCs and laptops running Windows run CPUs based on the x86 architecture, But that may not be the case in the future, because thanks to Project Volterra, it's now possible to run Windows on ARM chips. Hell, even Intel is going to manufacturing ARM chips. The single most important thing anyone does with the CPU though is play video games.\n\nAnd just yesterday, we got our first look at the GTA 6 trailer. This will likely be the most hyped up video game in the history of the world, and it's built using Rockstar's own proprietary RAGE game engine, and that means you can't use it. What you can use is Unity. However, Unity made a massive blunder in 2023 by rolling out new pricing that would charge developers every time a game is downloaded. Unity developers revolted, and it got so bad that they had to roll back the pricing and apologize.\n\nThat's right. Apologize. Meanwhile, Unreal Engine released version 5.3 with some crazy new features like a procedural content generation frame war and its substrate material system that gets almost indistinguishable from reality. Now, Unreal Engine's parent company, Epic Games, sued Apple a few years ago saying it's a monopoly because it takes a 30 cut on the App Store and doesn't allow alternative payment methods, but it lost that suit, and that was held up on appeal in 2023. Epic Games is not giving up though with more ongoing lawsuit against Google.\n\nIt seems like a long shot, but if they somehow win, it would be huge for indie developers because they could avoid that 30% cut to the big guy by using their own payment processor. But now Let's talk about web development. JavaScript land is as crazy as ever, but I think in 2024, people will stop building new JavaScript frameworks because nowadays they all have a similar developer experience with signal based reactivity, and the race will shift to who can build the best tools for existing frameworks. We're seeing more visual editors and IDEs for frameworks like the act, where you can drag and drop components instead of coding them manually. Then you have frameworks like Nuxt, which have built in dev tools to make life easier, but pretty soon, we should have AI writing most of our code.\n\nThere are tools like Visual Copilot, where you can take a design in Figma, and it will automatically write the framework code along with tailwind styles. In the near future, I think every JavaScript framework will have its own specialized tooling along with its own specially tuned AI for writing useful accurate code. Whichever framework does this the best will will win the web development war for the next 10 years. And I think there will be a lot of opportunity on the web, in part because of trends in mobile development. This trend been ongoing for many years, but people just don't wanna download mobile apps anymore.\n\nIt's not like 10 years ago when you could develop an app in your mom's basement, have it go and become a millionaire overnight. There are billions of people using smartphones every day, but getting their attention away from established apps is harder than ever. Like, as you can here, most of my screen time goes to Twitter and Discord. When it comes to building mobile apps, not too much has changed. But if you're building cross platform, we're starting to see more low code tools that can build for both iOS and Android with a drag and drop interface.\n\nBut now let's talk about low level systems languages. Rust is still growing incredibly fast, and you can now find Rust code in the Linux kernel. There was some armor with the Rust Foundation earlier this year, and I might get sued for using this logo. But there are some other up and coming low level languages as well, like Zig, the language behind the script BUN runtime and also Mojo, a Python superset that can also handle low level memory management, making it both approachable and extremely performant, an ideal option for AI and machine learning. And finally, that brings us to number 10, the elephant in the room, artificial intelligence.\n\nChatGPT has only been around for a year, although it feels like a lot longer. And most normies out there haven't even touched it yet, but that's going to change over the next few years because we now have Bard built into Google to cannibalize its search engine. We have Copilot built into Microsoft Office to write all your papers and do all your spreadsheets. An estimated 75% of all stock radio now happens via algorithms, and AI is being weaponized to both launch and defend against cyberattacks. And even our military industrial complex friends like Palantir are using AI to help blow people up in a more environmentally friendly and equitable way.\n\nBut things got really crazy with generative image AI. 10 years ago, Ian Goodfellow published a paper proposing the first generative adversarial network. 7 years later, OpenAI brought us to fusion models with DALL E, but they still sucked pretty hard. But then just 2 years from that point, we get images good enough to make 10 $1,000 a month on OnlyFans. In 2024, a big trend to watch is text to video.\n\nStable Diffusion just released a text to video model, and at the current rate of progress, I predict that by the end of 2024, you'll be able to generate a full length Bollywood quality movie from your laptop. But none of this will matter if somebody first achieves artificial general intelligence, an AI that can actually think for itself and not just regurgitate and remix things humans have already gun. Some people even think this has already been achieved by open AI with the leak of QStar. However, there's a French guy that thinks AGI is decades away, and some think it will never be achieved. When that day comes, it could be a great day for humanity.\n\nWe'll never have to work or think again, and there'll be nothing left to do but indulge in pleasure. On the other hand though, you may live to see AI made horrors beyond your comprehension. It could end up being like when Faust made a deal with the devil for unlimited knowledge and pleasure. But once that knowledge is achieved, there's a trade off in the form of moral and spiritual decline. The AI will have to adjust for this by creating billions of lab grown babies, which are now a real thing, then put them into a simulation that has a disproportionate amount of suffering in order to offset the pleasures experienced by the AI.\n\nIn fact, you might be in the simulation right now. Why else would you be watching a video gaslighting you into thinking you're in a simulation? You'd have to be crazy to think we're not in a simulation right now. But again congratulations for making it to round 2024. Thanks for watching, and I will see you in the next one." }, "summaries": null, "topics": [ { "end_word": 42, "start_word": 0, "text": "Congratulations. You survived yet another year in the simulation. If you still have a job in tech, it means you survived massive layoffs, didn't get drafted into a war, and outsmarted the artificial intelligence that your boss wants to replace you with.", "topics": [] }, { "end_word": 165, "start_word": 42, "text": "2023 was the craziest year ever, but at the rate things are accelerating, it'll look like nothing compared to 2024. I care deeply about a future because I'm going to spend the rest of my life there. But the future ain't what it used to be. In today's video, we'll look at 10 trends in technology that you can take advantage of in 2024. Let's get started by looking at the health of the job market. At the beginning of 2023, we had massive layoffs from magnificent 7 companies like Amazon, Google, and Microsoft. Not only did flood the job market with more talent, but simultaneously, the number of open jobs declined by about 60% based on data from true up dot io.", "topics": [ { "confidence": 0.93385184, "topic": "technology" }, { "confidence": 0.6281256, "topic": "industry" }, { "confidence": 0.5861334, "topic": "economy" }, { "confidence": 0.029896244, "topic": "economics" }, { "confidence": 0.011318013, "topic": "cosmology" } ] }, { "end_word": 292, "start_word": 165, "text": "And that's been a 1, 2 punch to the nuts for junior developers looking to get into the industry. In 2021, we had people working multiple full time jobs simultaneously, thanks to remote work, and you could land these jobs by simply taking a 100 second boot camp. But today, day, things look a lot different. Managers are still desperately trying to get people back into the office, and you can find all kinds of anecdotes on Reddit about how brutal the job market is right now. It's been a rough year, but there is some hope. If we look closely at the chart, you'll notice that job openings are up 13.8% from earlier this year, and all the big bang companies have unfrozen their hiring freezes.", "topics": [] }, { "end_word": 359, "start_word": 292, "text": "Although there aren't nearly as many open jobs as there used to be, so I'd be cautiously optimistic about an improving job market going into 2024. But lot of that depends on the state of the world. We're still in a high interest rate environment, which is not ideal for cash burning startups that need that easy money to hire a bunch of people to grow quickly.", "topics": [ { "confidence": 0.036988217, "topic": "economy" } ] }, { "end_word": 453, "start_word": 359, "text": "Just day, Spotify did its 3rd layoff of the year, where it severed about 1500 heads, which it blamed on the higher cost of capital. These high rates have also put the real estate market at a stand dramatically reducing the total number of transactions because nobody wants to pay $900,000 for a cardboard box with an 8% mortgage. The automotive industry is also struggling, and we saw Tesla prices come way down in 2023, which was a shock to some people who thought their Tesla was an appreciating asset just a year ago.", "topics": [ { "confidence": 0.29464665, "topic": "real estate" }, { "confidence": 0.10005639, "topic": "mortgages" } ] }, { "end_word": 491, "start_word": 453, "text": "The economy, and especially technology, is addicted to low rates, but we've also got some wars going on. Now, I don't stand with Palestine, I don't stand with Israel, I don't stand Ukraine, I don't stand with Russia.", "topics": [] }, { "end_word": 556, "start_word": 491, "text": "I stand with Lockheed Martin and Boeing and the military industrial complex. These companies make the tools we need to blow each other up, and when you stand with that team, you really can't lose. What you have to realize is that you're living paycheck to paycheck, your employer is living bailout to bailout, and the United States government is living from war to war.", "topics": [ { "confidence": 0.026217364, "topic": "military" } ] }, { "end_word": 1009, "start_word": 556, "text": "If we don't get a big war soon, the entire system could collapse, and that's not going to bode well for tech jobs in the future. But speaking of money, crypto is back. Bitcoin with 16 k at the beginning of the year and just broke 40 k a couple days ago. And cryptobros are already predicting that one token will be worth over a1000000 dollars by the end of 2024. The price to watch for is 69 k. If it reaches this price point, the world will be flooded with memes that will elevate FOMO to biblical levels. In other words, the crypto winter might be over, bringing us a fresh new round of Ponzi schemes to invest our parents' money in. Another failed technology that could come back in 2024 is augmented and virtual reality, thanks primarily to the Apple Vision Pro, which is set to release in early 2024. Apple has done some revolutionary things in the past, like a mouse that charges from the bottom, and if these VR goggles take off, it could lead to a whole new round of opportunity for app developers. However, I think that's unlikely. Plenty of Apple cult members will drink this Kool Aid, but I don't think the general public is going to fork over $35100 to become even more disconnected from reality. Ultimately though, I think this will end up being a niche product. Very cool to some people, but not appealing to the average NPC. Now speaking of where Microsoft just announced a few weeks ago that it's going to start producing its own chips, like the Maya chip for artificial intelligence and the Cobalt CPU, which is an ARM processor designed for general purpose use in the cloud. And AWS is also building its own ARM based chips, which are cheaper and more efficient than traditional x86 chips. Now as of today, virtually all PCs and laptops running Windows run CPUs based on the x86 architecture, But that may not be the case in the future, because thanks to Project Volterra, it's now possible to run Windows on ARM chips. Hell, even Intel is going to manufacturing ARM chips. The single most important thing anyone does with the CPU though is play video games. And just yesterday, we got our first look at the GTA 6 trailer. This will likely be the most hyped up video game in the history of the world, and it's built using Rockstar's own proprietary RAGE game engine, and that means you can't use it. What you can use is Unity. However, Unity made a massive blunder in 2023 by rolling out new pricing that would charge developers every time a game is downloaded.", "topics": [ { "confidence": 0.99969304, "topic": "cryptocurrency" }, { "confidence": 0.98698723, "topic": "video gaming" }, { "confidence": 0.27133185, "topic": "apple" }, { "confidence": 0.23777142, "topic": "games" }, { "confidence": 0.12883052, "topic": "technology" }, { "confidence": 0.033047784, "topic": "computer science" }, { "confidence": 0.018845715, "topic": "christmas" }, { "confidence": 0.013395847, "topic": "computers" } ] }, { "end_word": 1059, "start_word": 1009, "text": "Unity developers revolted, and it got so bad that they had to roll back the pricing and apologize. That's right. Apologize. Meanwhile, Unreal Engine released version 5.3 with some crazy new features like a procedural content generation frame war and its substrate material system that gets almost indistinguishable from reality.", "topics": [] }, { "end_word": 1161, "start_word": 1059, "text": "Now, Unreal Engine's parent company, Epic Games, sued Apple a few years ago saying it's a monopoly because it takes a 30 cut on the App Store and doesn't allow alternative payment methods, but it lost that suit, and that was held up on appeal in 2023. Epic Games is not giving up though with more ongoing lawsuit against Google. It seems like a long shot, but if they somehow win, it would be huge for indie developers because they could avoid that 30% cut to the big guy by using their own payment processor. But now Let's talk about web development.", "topics": [ { "confidence": 0.017718561, "topic": "apple" }, { "confidence": 0.008647624, "topic": "games" }, { "confidence": 0.006428094, "topic": "gambling" } ] }, { "end_word": 1208, "start_word": 1161, "text": "JavaScript land is as crazy as ever, but I think in 2024, people will stop building new JavaScript frameworks because nowadays they all have a similar developer experience with signal based reactivity, and the race will shift to who can build the best tools for existing frameworks.", "topics": [] }, { "end_word": 1468, "start_word": 1208, "text": "We're seeing more visual editors and IDEs for frameworks like the act, where you can drag and drop components instead of coding them manually. Then you have frameworks like Nuxt, which have built in dev tools to make life easier, but pretty soon, we should have AI writing most of our code. There are tools like Visual Copilot, where you can take a design in Figma, and it will automatically write the framework code along with tailwind styles. In the near future, I think every JavaScript framework will have its own specialized tooling along with its own specially tuned AI for writing useful accurate code. Whichever framework does this the best will will win the web development war for the next 10 years. And I think there will be a lot of opportunity on the web, in part because of trends in mobile development. This trend been ongoing for many years, but people just don't wanna download mobile apps anymore. It's not like 10 years ago when you could develop an app in your mom's basement, have it go and become a millionaire overnight. There are billions of people using smartphones every day, but getting their attention away from established apps is harder than ever. Like, as you can here, most of my screen time goes to Twitter and Discord. When it comes to building mobile apps, not too much has changed. But if you're building cross platform, we're starting to see more low code tools that can build for both iOS and Android with a drag and drop interface.", "topics": [ { "confidence": 0.92365396, "topic": "software" }, { "confidence": 0.8371291, "topic": "phones" }, { "confidence": 0.6467934, "topic": "graphic design" }, { "confidence": 0.22533582, "topic": "visualization" }, { "confidence": 0.1798601, "topic": "telecommunications" }, { "confidence": 0.12255041, "topic": "software development" }, { "confidence": 0.031071238, "topic": "animation" }, { "confidence": 0.021045195, "topic": "google" }, { "confidence": 0.015170623, "topic": "internet" }, { "confidence": 0.006134415, "topic": "technology" } ] }, { "end_word": 1565, "start_word": 1468, "text": "But now let's talk about low level systems languages. Rust is still growing incredibly fast, and you can now find Rust code in the Linux kernel. There was some armor with the Rust Foundation earlier this year, and I might get sued for using this logo. But there are some other up and coming low level languages as well, like Zig, the language behind the script BUN runtime and also Mojo, a Python superset that can also handle low level memory management, making it both approachable and extremely performant, an ideal option for AI and machine learning.", "topics": [] }, { "end_word": 1872, "start_word": 1565, "text": "And finally, that brings us to number 10, the elephant in the room, artificial intelligence. ChatGPT has only been around for a year, although it feels like a lot longer. And most normies out there haven't even touched it yet, but that's going to change over the next few years because we now have Bard built into Google to cannibalize its search engine. We have Copilot built into Microsoft Office to write all your papers and do all your spreadsheets. An estimated 75% of all stock radio now happens via algorithms, and AI is being weaponized to both launch and defend against cyberattacks. And even our military industrial complex friends like Palantir are using AI to help blow people up in a more environmentally friendly and equitable way. But things got really crazy with generative image AI. 10 years ago, Ian Goodfellow published a paper proposing the first generative adversarial network. 7 years later, OpenAI brought us to fusion models with DALL E, but they still sucked pretty hard. But then just 2 years from that point, we get images good enough to make 10 $1,000 a month on OnlyFans. In 2024, a big trend to watch is text to video. Stable Diffusion just released a text to video model, and at the current rate of progress, I predict that by the end of 2024, you'll be able to generate a full length Bollywood quality movie from your laptop. But none of this will matter if somebody first achieves artificial general intelligence, an AI that can actually think for itself and not just regurgitate and remix things humans have already gun. Some people even think this has already been achieved by open AI with the leak of QStar. However, there's a French guy that thinks AGI is decades away, and some think it will never be achieved.", "topics": [ { "confidence": 0.9181535, "topic": "artificial intelligence" }, { "confidence": 0.51442593, "topic": "multimedia" }, { "confidence": 0.20672747, "topic": "streaming" }, { "confidence": 0.101450525, "topic": "google" }, { "confidence": 0.06345088, "topic": "journalism" }, { "confidence": 0.03681265, "topic": "computer science" }, { "confidence": 0.025802765, "topic": "neural networks" }, { "confidence": 0.025533056, "topic": "ibm" }, { "confidence": 0.024368646, "topic": "film" }, { "confidence": 0.021461453, "topic": "technology" }, { "confidence": 0.014163736, "topic": "media" }, { "confidence": 0.012728105, "topic": "machine learning" } ] }, { "end_word": 1938, "start_word": 1872, "text": "When that day comes, it could be a great day for humanity. We'll never have to work or think again, and there'll be nothing left to do but indulge in pleasure. On the other hand though, you may live to see AI made horrors beyond your comprehension. It could end up being like when Faust made a deal with the devil for unlimited knowledge and pleasure.", "topics": [] }, { "end_word": 2000, "start_word": 1938, "text": "But once that knowledge is achieved, there's a trade off in the form of moral and spiritual decline. The AI will have to adjust for this by creating billions of lab grown babies, which are now a real thing, then put them into a simulation that has a disproportionate amount of suffering in order to offset the pleasures experienced by the AI.", "topics": [ { "confidence": 0.15282293, "topic": "artificial intelligence" } ] }, { "end_word": 2061, "start_word": 2000, "text": "In fact, you might be in the simulation right now. Why else would you be watching a video gaslighting you into thinking you're in a simulation? You'd have to be crazy to think we're not in a simulation right now. But again congratulations for making it to round 2024. Thanks for watching, and I will see you in the next one.", "topics": [] } ], "transcript": "Congratulations. You survived yet another year in the simulation. If you still have a job in tech, it means you survived massive layoffs, didn't get drafted into a war, and outsmarted the artificial intelligence that your boss wants to replace you with. 2023 was the craziest year ever, but at the rate things are accelerating, it'll look like nothing compared to 2024. I care deeply about a future because I'm going to spend the rest of my life there. But the future ain't what it used to be. In today's video, we'll look at 10 trends in technology that you can take advantage of in 2024. Let's get started by looking at the health of the job market. At the beginning of 2023, we had massive layoffs from magnificent 7 companies like Amazon, Google, and Microsoft. Not only did flood the job market with more talent, but simultaneously, the number of open jobs declined by about 60% based on data from true up dot io. And that's been a 1, 2 punch to the nuts for junior developers looking to get into the industry. In 2021, we had people working multiple full time jobs simultaneously, thanks to remote work, and you could land these jobs by simply taking a 100 second boot camp. But today, day, things look a lot different. Managers are still desperately trying to get people back into the office, and you can find all kinds of anecdotes on Reddit about how brutal the job market is right now. It's been a rough year, but there is some hope. If we look closely at the chart, you'll notice that job openings are up 13.8% from earlier this year, and all the big bang companies have unfrozen their hiring freezes. Although there aren't nearly as many open jobs as there used to be, so I'd be cautiously optimistic about an improving job market going into 2024. But lot of that depends on the state of the world. We're still in a high interest rate environment, which is not ideal for cash burning startups that need that easy money to hire a bunch of people to grow quickly. Just day, Spotify did its 3rd layoff of the year, where it severed about 1500 heads, which it blamed on the higher cost of capital. These high rates have also put the real estate market at a stand dramatically reducing the total number of transactions because nobody wants to pay $900,000 for a cardboard box with an 8% mortgage. The automotive industry is also struggling, and we saw Tesla prices come way down in 2023, which was a shock to some people who thought their Tesla was an appreciating asset just a year ago. The economy, and especially technology, is addicted to low rates, but we've also got some wars going on. Now, I don't stand with Palestine, I don't stand with Israel, I don't stand Ukraine, I don't stand with Russia. I stand with Lockheed Martin and Boeing and the military industrial complex. These companies make the tools we need to blow each other up, and when you stand with that team, you really can't lose. What you have to realize is that you're living paycheck to paycheck, your employer is living bailout to bailout, and the United States government is living from war to war. If we don't get a big war soon, the entire system could collapse, and that's not going to bode well for tech jobs in the future. But speaking of money, crypto is back. Bitcoin with 16 k at the beginning of the year and just broke 40 k a couple days ago. And cryptobros are already predicting that one token will be worth over a1000000 dollars by the end of 2024. The price to watch for is 69 k. If it reaches this price point, the world will be flooded with memes that will elevate FOMO to biblical levels. In other words, the crypto winter might be over, bringing us a fresh new round of Ponzi schemes to invest our parents' money in. Another failed technology that could come back in 2024 is augmented and virtual reality, thanks primarily to the Apple Vision Pro, which is set to release in early 2024. Apple has done some revolutionary things in the past, like a mouse that charges from the bottom, and if these VR goggles take off, it could lead to a whole new round of opportunity for app developers. However, I think that's unlikely. Plenty of Apple cult members will drink this Kool Aid, but I don't think the general public is going to fork over $35100 to become even more disconnected from reality. Ultimately though, I think this will end up being a niche product. Very cool to some people, but not appealing to the average NPC. Now speaking of where Microsoft just announced a few weeks ago that it's going to start producing its own chips, like the Maya chip for artificial intelligence and the Cobalt CPU, which is an ARM processor designed for general purpose use in the cloud. And AWS is also building its own ARM based chips, which are cheaper and more efficient than traditional x86 chips. Now as of today, virtually all PCs and laptops running Windows run CPUs based on the x86 architecture, But that may not be the case in the future, because thanks to Project Volterra, it's now possible to run Windows on ARM chips. Hell, even Intel is going to manufacturing ARM chips. The single most important thing anyone does with the CPU though is play video games. And just yesterday, we got our first look at the GTA 6 trailer. This will likely be the most hyped up video game in the history of the world, and it's built using Rockstar's own proprietary RAGE game engine, and that means you can't use it. What you can use is Unity. However, Unity made a massive blunder in 2023 by rolling out new pricing that would charge developers every time a game is downloaded. Unity developers revolted, and it got so bad that they had to roll back the pricing and apologize. That's right. Apologize. Meanwhile, Unreal Engine released version 5.3 with some crazy new features like a procedural content generation frame war and its substrate material system that gets almost indistinguishable from reality. Now, Unreal Engine's parent company, Epic Games, sued Apple a few years ago saying it's a monopoly because it takes a 30 cut on the App Store and doesn't allow alternative payment methods, but it lost that suit, and that was held up on appeal in 2023. Epic Games is not giving up though with more ongoing lawsuit against Google. It seems like a long shot, but if they somehow win, it would be huge for indie developers because they could avoid that 30% cut to the big guy by using their own payment processor. But now Let's talk about web development. JavaScript land is as crazy as ever, but I think in 2024, people will stop building new JavaScript frameworks because nowadays they all have a similar developer experience with signal based reactivity, and the race will shift to who can build the best tools for existing frameworks. We're seeing more visual editors and IDEs for frameworks like the act, where you can drag and drop components instead of coding them manually. Then you have frameworks like Nuxt, which have built in dev tools to make life easier, but pretty soon, we should have AI writing most of our code. There are tools like Visual Copilot, where you can take a design in Figma, and it will automatically write the framework code along with tailwind styles. In the near future, I think every JavaScript framework will have its own specialized tooling along with its own specially tuned AI for writing useful accurate code. Whichever framework does this the best will will win the web development war for the next 10 years. And I think there will be a lot of opportunity on the web, in part because of trends in mobile development. This trend been ongoing for many years, but people just don't wanna download mobile apps anymore. It's not like 10 years ago when you could develop an app in your mom's basement, have it go and become a millionaire overnight. There are billions of people using smartphones every day, but getting their attention away from established apps is harder than ever. Like, as you can here, most of my screen time goes to Twitter and Discord. When it comes to building mobile apps, not too much has changed. But if you're building cross platform, we're starting to see more low code tools that can build for both iOS and Android with a drag and drop interface. But now let's talk about low level systems languages. Rust is still growing incredibly fast, and you can now find Rust code in the Linux kernel. There was some armor with the Rust Foundation earlier this year, and I might get sued for using this logo. But there are some other up and coming low level languages as well, like Zig, the language behind the script BUN runtime and also Mojo, a Python superset that can also handle low level memory management, making it both approachable and extremely performant, an ideal option for AI and machine learning. And finally, that brings us to number 10, the elephant in the room, artificial intelligence. ChatGPT has only been around for a year, although it feels like a lot longer. And most normies out there haven't even touched it yet, but that's going to change over the next few years because we now have Bard built into Google to cannibalize its search engine. We have Copilot built into Microsoft Office to write all your papers and do all your spreadsheets. An estimated 75% of all stock radio now happens via algorithms, and AI is being weaponized to both launch and defend against cyberattacks. And even our military industrial complex friends like Palantir are using AI to help blow people up in a more environmentally friendly and equitable way. But things got really crazy with generative image AI. 10 years ago, Ian Goodfellow published a paper proposing the first generative adversarial network. 7 years later, OpenAI brought us to fusion models with DALL E, but they still sucked pretty hard. But then just 2 years from that point, we get images good enough to make 10 $1,000 a month on OnlyFans. In 2024, a big trend to watch is text to video. Stable Diffusion just released a text to video model, and at the current rate of progress, I predict that by the end of 2024, you'll be able to generate a full length Bollywood quality movie from your laptop. But none of this will matter if somebody first achieves artificial general intelligence, an AI that can actually think for itself and not just regurgitate and remix things humans have already gun. Some people even think this has already been achieved by open AI with the leak of QStar. However, there's a French guy that thinks AGI is decades away, and some think it will never be achieved. When that day comes, it could be a great day for humanity. We'll never have to work or think again, and there'll be nothing left to do but indulge in pleasure. On the other hand though, you may live to see AI made horrors beyond your comprehension. It could end up being like when Faust made a deal with the devil for unlimited knowledge and pleasure. But once that knowledge is achieved, there's a trade off in the form of moral and spiritual decline. The AI will have to adjust for this by creating billions of lab grown babies, which are now a real thing, then put them into a simulation that has a disproportionate amount of suffering in order to offset the pleasures experienced by the AI. In fact, you might be in the simulation right now. Why else would you be watching a video gaslighting you into thinking you're in a simulation? You'd have to be crazy to think we're not in a simulation right now. But again congratulations for making it to round 2024. Thanks for watching, and I will see you in the next one.", "translations": null, "words": [ { "confidence": 0.86816406, "end": 0.65999997, "punctuated_word": "Congratulations.", "speaker": 0, "speaker_confidence": 0.7241211, "start": 0.16, "word": "congratulations" }, { "confidence": 0.9980469, "end": 1.36, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.7241211, "start": 1.12, "word": "you" }, { "confidence": 0.99121094, "end": 1.76, "punctuated_word": "survived", "speaker": 0, "speaker_confidence": 0.7241211, "start": 1.36, "word": "survived" }, { "confidence": 0.99902344, "end": 1.92, "punctuated_word": "yet", "speaker": 0, "speaker_confidence": 0.7241211, "start": 1.76, "word": "yet" }, { "confidence": 1, "end": 2.24, "punctuated_word": "another", "speaker": 0, "speaker_confidence": 0.7241211, "start": 1.92, "word": "another" }, { "confidence": 1, "end": 2.48, "punctuated_word": "year", "speaker": 0, "speaker_confidence": 0.7241211, "start": 2.24, "word": "year" }, { "confidence": 1, "end": 2.56, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7241211, "start": 2.48, "word": "in" }, { "confidence": 0.9980469, "end": 2.72, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7241211, "start": 2.56, "word": "the" }, { "confidence": 0.99902344, "end": 3.22, "punctuated_word": "simulation.", "speaker": 0, "speaker_confidence": 0.7241211, "start": 2.72, "word": "simulation" }, { "confidence": 0.9970703, "end": 3.52, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.7241211, "start": 3.36, "word": "if" }, { "confidence": 1, "end": 3.6, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7241211, "start": 3.52, "word": "you" }, { "confidence": 1, "end": 3.84, "punctuated_word": "still", "speaker": 0, "speaker_confidence": 0.7241211, "start": 3.6, "word": "still" }, { "confidence": 0.99902344, "end": 3.9199998, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.39208984, "start": 3.84, "word": "have" }, { "confidence": 0.9980469, "end": 4.08, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.39208984, "start": 3.9199998, "word": "a" }, { "confidence": 1, "end": 4.24, "punctuated_word": "job", "speaker": 0, "speaker_confidence": 0.39208984, "start": 4.08, "word": "job" }, { "confidence": 0.99902344, "end": 4.4, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.39208984, "start": 4.24, "word": "in" }, { "confidence": 0.96362305, "end": 4.7999997, "punctuated_word": "tech,", "speaker": 0, "speaker_confidence": 0.39208984, "start": 4.4, "word": "tech" }, { "confidence": 0.9970703, "end": 4.88, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.66064453, "start": 4.7999997, "word": "it" }, { "confidence": 1, "end": 5.12, "punctuated_word": "means", "speaker": 0, "speaker_confidence": 0.66064453, "start": 4.88, "word": "means" }, { "confidence": 0.99902344, "end": 5.2799997, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.66064453, "start": 5.12, "word": "you" }, { "confidence": 0.9970703, "end": 5.68, "punctuated_word": "survived", "speaker": 0, "speaker_confidence": 0.66064453, "start": 5.2799997, "word": "survived" }, { "confidence": 1, "end": 6.08, "punctuated_word": "massive", "speaker": 0, "speaker_confidence": 0.66064453, "start": 5.68, "word": "massive" }, { "confidence": 0.9760742, "end": 6.48, "punctuated_word": "layoffs,", "speaker": 0, "speaker_confidence": 0.66064453, "start": 6.08, "word": "layoffs" }, { "confidence": 0.9995117, "end": 6.7999997, "punctuated_word": "didn't", "speaker": 0, "speaker_confidence": 0.66064453, "start": 6.48, "word": "didn't" }, { "confidence": 0.99902344, "end": 6.96, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.66064453, "start": 6.7999997, "word": "get" }, { "confidence": 0.99902344, "end": 7.3599997, "punctuated_word": "drafted", "speaker": 0, "speaker_confidence": 0.66064453, "start": 6.96, "word": "drafted" }, { "confidence": 0.9941406, "end": 7.52, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.66064453, "start": 7.3599997, "word": "into" }, { "confidence": 0.9326172, "end": 7.6, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7324219, "start": 7.52, "word": "a" }, { "confidence": 0.986084, "end": 7.9199996, "punctuated_word": "war,", "speaker": 0, "speaker_confidence": 0.7324219, "start": 7.6, "word": "war" }, { "confidence": 0.97314453, "end": 8.16, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7324219, "start": 7.9199996, "word": "and" }, { "confidence": 0.96777344, "end": 8.639999, "punctuated_word": "outsmarted", "speaker": 0, "speaker_confidence": 0.7324219, "start": 8.16, "word": "outsmarted" }, { "confidence": 0.70458984, "end": 8.72, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7324219, "start": 8.639999, "word": "the" }, { "confidence": 0.90234375, "end": 9.115, "punctuated_word": "artificial", "speaker": 0, "speaker_confidence": 0.7324219, "start": 8.72, "word": "artificial" }, { "confidence": 0.9951172, "end": 9.755, "punctuated_word": "intelligence", "speaker": 0, "speaker_confidence": 0.7324219, "start": 9.434999, "word": "intelligence" }, { "confidence": 0.9970703, "end": 9.995, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7324219, "start": 9.755, "word": "that" }, { "confidence": 0.98535156, "end": 10.155, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.7324219, "start": 9.995, "word": "your" }, { "confidence": 1, "end": 10.3949995, "punctuated_word": "boss", "speaker": 0, "speaker_confidence": 0.7324219, "start": 10.155, "word": "boss" }, { "confidence": 0.9951172, "end": 10.635, "punctuated_word": "wants", "speaker": 0, "speaker_confidence": 0.7324219, "start": 10.3949995, "word": "wants" }, { "confidence": 0.9980469, "end": 10.795, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7324219, "start": 10.635, "word": "to" }, { "confidence": 0.99609375, "end": 11.035, "punctuated_word": "replace", "speaker": 0, "speaker_confidence": 0.7324219, "start": 10.795, "word": "replace" }, { "confidence": 0.99609375, "end": 11.195, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7324219, "start": 11.035, "word": "you" }, { "confidence": 0.74731445, "end": 11.514999, "punctuated_word": "with.", "speaker": 0, "speaker_confidence": 0.7324219, "start": 11.195, "word": "with" }, { "confidence": 0.9116211, "end": 12.014999, "punctuated_word": "2023", "speaker": 0, "speaker_confidence": 0.7324219, "start": 11.514999, "word": "2023" }, { "confidence": 0.99902344, "end": 12.315, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.7324219, "start": 12.155, "word": "was" }, { "confidence": 0.9921875, "end": 12.3949995, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.57666016, "start": 12.315, "word": "the" }, { "confidence": 0.9975586, "end": 12.795, "punctuated_word": "craziest", "speaker": 0, "speaker_confidence": 0.57666016, "start": 12.3949995, "word": "craziest" }, { "confidence": 0.9980469, "end": 12.955, "punctuated_word": "year", "speaker": 0, "speaker_confidence": 0.57666016, "start": 12.795, "word": "year" }, { "confidence": 0.91259766, "end": 13.355, "punctuated_word": "ever,", "speaker": 0, "speaker_confidence": 0.57666016, "start": 12.955, "word": "ever" }, { "confidence": 0.9980469, "end": 13.514999, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.57666016, "start": 13.355, "word": "but" }, { "confidence": 0.9301758, "end": 13.554999, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.57666016, "start": 13.514999, "word": "at" }, { "confidence": 0.9951172, "end": 13.594999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.73339844, "start": 13.554999, "word": "the" }, { "confidence": 0.97802734, "end": 13.834999, "punctuated_word": "rate", "speaker": 0, "speaker_confidence": 0.73339844, "start": 13.594999, "word": "rate" }, { "confidence": 0.9892578, "end": 13.995, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 0.73339844, "start": 13.834999, "word": "things" }, { "confidence": 0.9770508, "end": 14.235, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.73339844, "start": 13.995, "word": "are" }, { "confidence": 0.9797363, "end": 14.735, "punctuated_word": "accelerating,", "speaker": 0, "speaker_confidence": 0.73339844, "start": 14.235, "word": "accelerating" }, { "confidence": 0.96362305, "end": 15.035, "punctuated_word": "it'll", "speaker": 0, "speaker_confidence": 0.73339844, "start": 14.795, "word": "it'll" }, { "confidence": 0.9941406, "end": 15.195, "punctuated_word": "look", "speaker": 0, "speaker_confidence": 0.73339844, "start": 15.035, "word": "look" }, { "confidence": 0.9921875, "end": 15.434999, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.73339844, "start": 15.195, "word": "like" }, { "confidence": 0.99902344, "end": 15.754999, "punctuated_word": "nothing", "speaker": 0, "speaker_confidence": 0.73339844, "start": 15.434999, "word": "nothing" }, { "confidence": 0.97509766, "end": 15.994999, "punctuated_word": "compared", "speaker": 0, "speaker_confidence": 0.73339844, "start": 15.754999, "word": "compared" }, { "confidence": 0.9941406, "end": 16.314999, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.73339844, "start": 15.994999, "word": "to" }, { "confidence": 0.91186523, "end": 16.814999, "punctuated_word": "2024.", "speaker": 0, "speaker_confidence": 0.73339844, "start": 16.314999, "word": "2024" }, { "confidence": 0.9941406, "end": 17.195, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.73339844, "start": 17.035, "word": "i" }, { "confidence": 0.9770508, "end": 17.355, "punctuated_word": "care", "speaker": 0, "speaker_confidence": 0.73339844, "start": 17.195, "word": "care" }, { "confidence": 0.9970703, "end": 17.675, "punctuated_word": "deeply", "speaker": 0, "speaker_confidence": 0.73339844, "start": 17.355, "word": "deeply" }, { "confidence": 0.9760742, "end": 18.02, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.73339844, "start": 17.675, "word": "about" }, { "confidence": 0.7368164, "end": 18.1, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.73339844, "start": 18.02, "word": "a" }, { "confidence": 0.9980469, "end": 18.5, "punctuated_word": "future", "speaker": 0, "speaker_confidence": 0.453125, "start": 18.1, "word": "future" }, { "confidence": 0.74365234, "end": 18.74, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.453125, "start": 18.5, "word": "because" }, { "confidence": 0.9970703, "end": 18.9, "punctuated_word": "I'm", "speaker": 0, "speaker_confidence": 0.453125, "start": 18.74, "word": "i'm" }, { "confidence": 0.99902344, "end": 19.060001, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.453125, "start": 18.9, "word": "going" }, { "confidence": 0.99902344, "end": 19.140001, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.453125, "start": 19.060001, "word": "to" }, { "confidence": 0.9980469, "end": 19.300001, "punctuated_word": "spend", "speaker": 0, "speaker_confidence": 0.453125, "start": 19.140001, "word": "spend" }, { "confidence": 0.9941406, "end": 19.460001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.453125, "start": 19.300001, "word": "the" }, { "confidence": 1, "end": 19.62, "punctuated_word": "rest", "speaker": 0, "speaker_confidence": 0.453125, "start": 19.460001, "word": "rest" }, { "confidence": 0.9970703, "end": 19.7, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.453125, "start": 19.62, "word": "of" }, { "confidence": 0.9941406, "end": 19.86, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.46191406, "start": 19.7, "word": "my" }, { "confidence": 1, "end": 20.02, "punctuated_word": "life", "speaker": 0, "speaker_confidence": 0.46191406, "start": 19.86, "word": "life" }, { "confidence": 0.84643555, "end": 20.34, "punctuated_word": "there.", "speaker": 0, "speaker_confidence": 0.46191406, "start": 20.02, "word": "there" }, { "confidence": 0.9980469, "end": 20.58, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.46191406, "start": 20.34, "word": "but" }, { "confidence": 0.9550781, "end": 20.74, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.46191406, "start": 20.58, "word": "the" }, { "confidence": 1, "end": 21.060001, "punctuated_word": "future", "speaker": 0, "speaker_confidence": 0.46191406, "start": 20.74, "word": "future" }, { "confidence": 0.99560547, "end": 21.220001, "punctuated_word": "ain't", "speaker": 0, "speaker_confidence": 0.3486328, "start": 21.060001, "word": "ain't" }, { "confidence": 0.9980469, "end": 21.380001, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.3486328, "start": 21.220001, "word": "what" }, { "confidence": 0.9941406, "end": 21.460001, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.3486328, "start": 21.380001, "word": "it" }, { "confidence": 0.9741211, "end": 21.580002, "punctuated_word": "used", "speaker": 0, "speaker_confidence": 0.3486328, "start": 21.460001, "word": "used" }, { "confidence": 0.9980469, "end": 21.7, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.3486328, "start": 21.580002, "word": "to" }, { "confidence": 0.9995117, "end": 22.02, "punctuated_word": "be.", "speaker": 0, "speaker_confidence": 0.3486328, "start": 21.7, "word": "be" }, { "confidence": 0.97998047, "end": 22.18, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.49023438, "start": 22.02, "word": "in" }, { "confidence": 0.99902344, "end": 22.42, "punctuated_word": "today's", "speaker": 0, "speaker_confidence": 0.49023438, "start": 22.18, "word": "today's" }, { "confidence": 0.9951172, "end": 22.82, "punctuated_word": "video,", "speaker": 0, "speaker_confidence": 0.49023438, "start": 22.42, "word": "video" }, { "confidence": 0.99316406, "end": 22.98, "punctuated_word": "we'll", "speaker": 0, "speaker_confidence": 0.49023438, "start": 22.82, "word": "we'll" }, { "confidence": 0.9980469, "end": 23.14, "punctuated_word": "look", "speaker": 0, "speaker_confidence": 0.49023438, "start": 22.98, "word": "look" }, { "confidence": 0.9970703, "end": 23.220001, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.55859375, "start": 23.14, "word": "at" }, { "confidence": 0.87890625, "end": 23.460001, "punctuated_word": "10", "speaker": 0, "speaker_confidence": 0.55859375, "start": 23.220001, "word": "10" }, { "confidence": 0.9819336, "end": 23.78, "punctuated_word": "trends", "speaker": 0, "speaker_confidence": 0.55859375, "start": 23.460001, "word": "trends" }, { "confidence": 0.7006836, "end": 23.94, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.55859375, "start": 23.78, "word": "in" }, { "confidence": 0.9760742, "end": 24.44, "punctuated_word": "technology", "speaker": 0, "speaker_confidence": 0.55859375, "start": 23.94, "word": "technology" }, { "confidence": 0.99316406, "end": 24.66, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.55859375, "start": 24.5, "word": "that" }, { "confidence": 1, "end": 24.74, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7138672, "start": 24.66, "word": "you" }, { "confidence": 0.9951172, "end": 24.9, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.7138672, "start": 24.74, "word": "can" }, { "confidence": 0.9951172, "end": 25.14, "punctuated_word": "take", "speaker": 0, "speaker_confidence": 0.7138672, "start": 24.9, "word": "take" }, { "confidence": 1, "end": 25.54, "punctuated_word": "advantage", "speaker": 0, "speaker_confidence": 0.7138672, "start": 25.14, "word": "advantage" }, { "confidence": 0.9921875, "end": 25.785, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7138672, "start": 25.54, "word": "of" }, { "confidence": 0.9980469, "end": 26.025, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7138672, "start": 25.865, "word": "in" }, { "confidence": 0.88427734, "end": 26.525, "punctuated_word": "2024.", "speaker": 0, "speaker_confidence": 0.7138672, "start": 26.025, "word": "2024" }, { "confidence": 0.9995117, "end": 26.985, "punctuated_word": "Let's", "speaker": 0, "speaker_confidence": 0.7138672, "start": 26.744999, "word": "let's" }, { "confidence": 0.99902344, "end": 27.145, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.7138672, "start": 26.985, "word": "get" }, { "confidence": 1, "end": 27.465, "punctuated_word": "started", "speaker": 0, "speaker_confidence": 0.7138672, "start": 27.145, "word": "started" }, { "confidence": 0.9951172, "end": 27.625, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.7138672, "start": 27.465, "word": "by" }, { "confidence": 1, "end": 27.865, "punctuated_word": "looking", "speaker": 0, "speaker_confidence": 0.7138672, "start": 27.625, "word": "looking" }, { "confidence": 0.99902344, "end": 28.025, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.7138672, "start": 27.865, "word": "at" }, { "confidence": 0.9980469, "end": 28.105, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7138672, "start": 28.025, "word": "the" }, { "confidence": 0.9980469, "end": 28.345, "punctuated_word": "health", "speaker": 0, "speaker_confidence": 0.7138672, "start": 28.105, "word": "health" }, { "confidence": 0.9980469, "end": 28.425, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7138672, "start": 28.345, "word": "of" }, { "confidence": 0.9970703, "end": 28.585, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7138672, "start": 28.425, "word": "the" }, { "confidence": 0.9970703, "end": 28.825, "punctuated_word": "job", "speaker": 0, "speaker_confidence": 0.7138672, "start": 28.585, "word": "job" }, { "confidence": 0.9995117, "end": 29.225, "punctuated_word": "market.", "speaker": 0, "speaker_confidence": 0.7138672, "start": 28.825, "word": "market" }, { "confidence": 0.99902344, "end": 29.305, "punctuated_word": "At", "speaker": 0, "speaker_confidence": 0.8125, "start": 29.225, "word": "at" }, { "confidence": 0.9951172, "end": 29.465, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8125, "start": 29.305, "word": "the" }, { "confidence": 0.99902344, "end": 29.705, "punctuated_word": "beginning", "speaker": 0, "speaker_confidence": 0.8125, "start": 29.465, "word": "beginning" }, { "confidence": 0.9980469, "end": 29.945, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8125, "start": 29.705, "word": "of" }, { "confidence": 0.9900716, "end": 30.445, "punctuated_word": "2023,", "speaker": 0, "speaker_confidence": 0.8125, "start": 29.945, "word": "2023" }, { "confidence": 1, "end": 30.904999, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.8125, "start": 30.744999, "word": "we" }, { "confidence": 0.9560547, "end": 31.064999, "punctuated_word": "had", "speaker": 0, "speaker_confidence": 0.8125, "start": 30.904999, "word": "had" }, { "confidence": 0.99902344, "end": 31.385, "punctuated_word": "massive", "speaker": 0, "speaker_confidence": 0.8125, "start": 31.064999, "word": "massive" }, { "confidence": 0.9873047, "end": 31.785, "punctuated_word": "layoffs", "speaker": 0, "speaker_confidence": 0.8125, "start": 31.385, "word": "layoffs" }, { "confidence": 0.99316406, "end": 32.025, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.8125, "start": 31.785, "word": "from" }, { "confidence": 0.47314453, "end": 32.525, "punctuated_word": "magnificent", "speaker": 0, "speaker_confidence": 0.8125, "start": 32.025, "word": "magnificent" }, { "confidence": 0.5732422, "end": 32.905, "punctuated_word": "7", "speaker": 0, "speaker_confidence": 0.8125, "start": 32.665, "word": "7" }, { "confidence": 0.8925781, "end": 33.405, "punctuated_word": "companies", "speaker": 0, "speaker_confidence": 0.8125, "start": 32.905, "word": "companies" }, { "confidence": 0.53466797, "end": 33.704998, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.8125, "start": 33.465, "word": "like" }, { "confidence": 0.99609375, "end": 34.184998, "punctuated_word": "Amazon,", "speaker": 0, "speaker_confidence": 0.8125, "start": 33.704998, "word": "amazon" }, { "confidence": 0.96655273, "end": 34.505, "punctuated_word": "Google,", "speaker": 0, "speaker_confidence": 0.8125, "start": 34.184998, "word": "google" }, { "confidence": 0.9980469, "end": 34.665, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8125, "start": 34.505, "word": "and" }, { "confidence": 0.9970703, "end": 35.165, "punctuated_word": "Microsoft.", "speaker": 0, "speaker_confidence": 0.8125, "start": 34.665, "word": "microsoft" }, { "confidence": 0.9921875, "end": 35.385, "punctuated_word": "Not", "speaker": 0, "speaker_confidence": 0.8125, "start": 35.225, "word": "not" }, { "confidence": 0.99316406, "end": 35.545, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.8125, "start": 35.385, "word": "only" }, { "confidence": 0.4921875, "end": 35.77, "punctuated_word": "did", "speaker": 0, "speaker_confidence": 0.8125, "start": 35.545, "word": "did" }, { "confidence": 0.41333008, "end": 36.170002, "punctuated_word": "flood", "speaker": 0, "speaker_confidence": 0.8125, "start": 35.850002, "word": "flood" }, { "confidence": 0.9951172, "end": 36.25, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8125, "start": 36.170002, "word": "the" }, { "confidence": 0.99902344, "end": 36.41, "punctuated_word": "job", "speaker": 0, "speaker_confidence": 0.88671875, "start": 36.25, "word": "job" }, { "confidence": 0.99902344, "end": 36.73, "punctuated_word": "market", "speaker": 0, "speaker_confidence": 0.88671875, "start": 36.41, "word": "market" }, { "confidence": 0.99902344, "end": 36.89, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.88671875, "start": 36.73, "word": "with" }, { "confidence": 0.99902344, "end": 37.05, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.88671875, "start": 36.89, "word": "more" }, { "confidence": 0.828125, "end": 37.53, "punctuated_word": "talent,", "speaker": 0, "speaker_confidence": 0.88671875, "start": 37.05, "word": "talent" }, { "confidence": 0.9980469, "end": 37.77, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.88671875, "start": 37.53, "word": "but" }, { "confidence": 0.7980957, "end": 38.27, "punctuated_word": "simultaneously,", "speaker": 0, "speaker_confidence": 0.88671875, "start": 37.77, "word": "simultaneously" }, { "confidence": 1, "end": 38.81, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.88671875, "start": 38.65, "word": "the" }, { "confidence": 1, "end": 39.05, "punctuated_word": "number", "speaker": 0, "speaker_confidence": 0.88671875, "start": 38.81, "word": "number" }, { "confidence": 0.9980469, "end": 39.21, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.88671875, "start": 39.05, "word": "of" }, { "confidence": 0.9970703, "end": 39.53, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.88671875, "start": 39.21, "word": "open" }, { "confidence": 0.9941406, "end": 39.93, "punctuated_word": "jobs", "speaker": 0, "speaker_confidence": 0.88671875, "start": 39.53, "word": "jobs" }, { "confidence": 0.95410156, "end": 40.33, "punctuated_word": "declined", "speaker": 0, "speaker_confidence": 0.88671875, "start": 39.93, "word": "declined" }, { "confidence": 1, "end": 40.57, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.88671875, "start": 40.33, "word": "by" }, { "confidence": 0.9980469, "end": 40.89, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.88671875, "start": 40.57, "word": "about" }, { "confidence": 0.8647461, "end": 41.39, "punctuated_word": "60%", "speaker": 0, "speaker_confidence": 0.88671875, "start": 40.89, "word": "60%" }, { "confidence": 0.9970703, "end": 41.85, "punctuated_word": "based", "speaker": 0, "speaker_confidence": 0.88671875, "start": 41.690002, "word": "based" }, { "confidence": 0.9980469, "end": 42.010002, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.88671875, "start": 41.85, "word": "on" }, { "confidence": 0.99902344, "end": 42.33, "punctuated_word": "data", "speaker": 0, "speaker_confidence": 0.88671875, "start": 42.010002, "word": "data" }, { "confidence": 0.9941406, "end": 42.65, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.88671875, "start": 42.33, "word": "from" }, { "confidence": 0.5620117, "end": 42.81, "punctuated_word": "true", "speaker": 0, "speaker_confidence": 0.88671875, "start": 42.65, "word": "true" }, { "confidence": 0.3918457, "end": 42.965, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.88671875, "start": 42.81, "word": "up" }, { "confidence": 0.6796875, "end": 43.205, "punctuated_word": "dot", "speaker": 0, "speaker_confidence": 0.88671875, "start": 42.965, "word": "dot" }, { "confidence": 0.4729004, "end": 43.525, "punctuated_word": "io.", "speaker": 0, "speaker_confidence": 0.88671875, "start": 43.205, "word": "io" }, { "confidence": 0.9892578, "end": 43.685, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.88671875, "start": 43.525, "word": "and" }, { "confidence": 0.9995117, "end": 43.925, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.88671875, "start": 43.685, "word": "that's" }, { "confidence": 0.99902344, "end": 44.085, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.88671875, "start": 43.925, "word": "been" }, { "confidence": 0.99902344, "end": 44.165, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.35742188, "start": 44.085, "word": "a" }, { "confidence": 0.47094727, "end": 44.325, "punctuated_word": "1,", "speaker": 0, "speaker_confidence": 0.35742188, "start": 44.165, "word": "1" }, { "confidence": 0.94921875, "end": 44.565, "punctuated_word": "2", "speaker": 0, "speaker_confidence": 0.35742188, "start": 44.325, "word": "2" }, { "confidence": 0.98291016, "end": 44.805, "punctuated_word": "punch", "speaker": 0, "speaker_confidence": 0.35742188, "start": 44.565, "word": "punch" }, { "confidence": 0.9980469, "end": 44.885, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.35742188, "start": 44.805, "word": "to" }, { "confidence": 0.99902344, "end": 45.045, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.703125, "start": 44.885, "word": "the" }, { "confidence": 0.9951172, "end": 45.285, "punctuated_word": "nuts", "speaker": 0, "speaker_confidence": 0.703125, "start": 45.045, "word": "nuts" }, { "confidence": 0.99609375, "end": 45.525, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.703125, "start": 45.285, "word": "for" }, { "confidence": 0.9921875, "end": 45.925, "punctuated_word": "junior", "speaker": 0, "speaker_confidence": 0.703125, "start": 45.525, "word": "junior" }, { "confidence": 0.99902344, "end": 46.325, "punctuated_word": "developers", "speaker": 0, "speaker_confidence": 0.703125, "start": 45.925, "word": "developers" }, { "confidence": 0.99902344, "end": 46.565, "punctuated_word": "looking", "speaker": 0, "speaker_confidence": 0.703125, "start": 46.325, "word": "looking" }, { "confidence": 0.9970703, "end": 46.725, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.703125, "start": 46.565, "word": "to" }, { "confidence": 1, "end": 46.885, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.703125, "start": 46.725, "word": "get" }, { "confidence": 0.9902344, "end": 47.125, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.703125, "start": 46.885, "word": "into" }, { "confidence": 0.9980469, "end": 47.205, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.703125, "start": 47.125, "word": "the" }, { "confidence": 1, "end": 47.705, "punctuated_word": "industry.", "speaker": 0, "speaker_confidence": 0.703125, "start": 47.205, "word": "industry" }, { "confidence": 0.8359375, "end": 51.190002, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.7631836, "start": 50.95, "word": "in" }, { "confidence": 0.970459, "end": 51.690002, "punctuated_word": "2021,", "speaker": 0, "speaker_confidence": 0.7631836, "start": 51.190002, "word": "2021" }, { "confidence": 0.99902344, "end": 52.07, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.7631836, "start": 51.91, "word": "we" }, { "confidence": 0.9970703, "end": 52.23, "punctuated_word": "had", "speaker": 0, "speaker_confidence": 0.7631836, "start": 52.07, "word": "had" }, { "confidence": 1, "end": 52.47, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.7631836, "start": 52.23, "word": "people" }, { "confidence": 0.9980469, "end": 52.79, "punctuated_word": "working", "speaker": 0, "speaker_confidence": 0.7631836, "start": 52.47, "word": "working" }, { "confidence": 1, "end": 53.190002, "punctuated_word": "multiple", "speaker": 0, "speaker_confidence": 0.7631836, "start": 52.79, "word": "multiple" }, { "confidence": 0.92578125, "end": 53.43, "punctuated_word": "full", "speaker": 0, "speaker_confidence": 0.7631836, "start": 53.190002, "word": "full" }, { "confidence": 0.9941406, "end": 53.59, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.7631836, "start": 53.43, "word": "time" }, { "confidence": 0.9277344, "end": 53.99, "punctuated_word": "jobs", "speaker": 0, "speaker_confidence": 0.7631836, "start": 53.59, "word": "jobs" }, { "confidence": 0.8039551, "end": 54.49, "punctuated_word": "simultaneously,", "speaker": 0, "speaker_confidence": 0.7631836, "start": 53.99, "word": "simultaneously" }, { "confidence": 0.9980469, "end": 55.11, "punctuated_word": "thanks", "speaker": 0, "speaker_confidence": 0.7631836, "start": 54.870003, "word": "thanks" }, { "confidence": 0.9970703, "end": 55.27, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7631836, "start": 55.11, "word": "to" }, { "confidence": 1, "end": 55.510002, "punctuated_word": "remote", "speaker": 0, "speaker_confidence": 0.7631836, "start": 55.27, "word": "remote" }, { "confidence": 0.9458008, "end": 55.91, "punctuated_word": "work,", "speaker": 0, "speaker_confidence": 0.7631836, "start": 55.510002, "word": "work" }, { "confidence": 0.9980469, "end": 56.07, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7631836, "start": 55.91, "word": "and" }, { "confidence": 0.9970703, "end": 56.15, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.85839844, "start": 56.07, "word": "you" }, { "confidence": 0.93359375, "end": 56.31, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.85839844, "start": 56.15, "word": "could" }, { "confidence": 0.99902344, "end": 56.47, "punctuated_word": "land", "speaker": 0, "speaker_confidence": 0.85839844, "start": 56.31, "word": "land" }, { "confidence": 0.9970703, "end": 56.71, "punctuated_word": "these", "speaker": 0, "speaker_confidence": 0.85839844, "start": 56.47, "word": "these" }, { "confidence": 0.99902344, "end": 56.95, "punctuated_word": "jobs", "speaker": 0, "speaker_confidence": 0.85839844, "start": 56.71, "word": "jobs" }, { "confidence": 0.9980469, "end": 57.190002, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.85839844, "start": 56.95, "word": "by" }, { "confidence": 0.99902344, "end": 57.43, "punctuated_word": "simply", "speaker": 0, "speaker_confidence": 0.85839844, "start": 57.190002, "word": "simply" }, { "confidence": 0.9970703, "end": 57.75, "punctuated_word": "taking", "speaker": 0, "speaker_confidence": 0.85839844, "start": 57.43, "word": "taking" }, { "confidence": 0.98828125, "end": 57.99, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.85839844, "start": 57.75, "word": "a" }, { "confidence": 0.44335938, "end": 58.31, "punctuated_word": "100", "speaker": 0, "speaker_confidence": 0.85839844, "start": 57.99, "word": "100" }, { "confidence": 0.7963867, "end": 58.71, "punctuated_word": "second", "speaker": 0, "speaker_confidence": 0.85839844, "start": 58.31, "word": "second" }, { "confidence": 0.9951172, "end": 58.95, "punctuated_word": "boot", "speaker": 0, "speaker_confidence": 0.85839844, "start": 58.71, "word": "boot" }, { "confidence": 0.8623047, "end": 59.190002, "punctuated_word": "camp.", "speaker": 0, "speaker_confidence": 0.85839844, "start": 58.95, "word": "camp" }, { "confidence": 0.9453125, "end": 59.35, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.85839844, "start": 59.190002, "word": "but" }, { "confidence": 0.7338867, "end": 59.545, "punctuated_word": "today,", "speaker": 0, "speaker_confidence": 0.85839844, "start": 59.35, "word": "today" }, { "confidence": 0.64416504, "end": 59.785, "punctuated_word": "day,", "speaker": 0, "speaker_confidence": 0.85839844, "start": 59.545, "word": "day" }, { "confidence": 1, "end": 59.905, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 0.85839844, "start": 59.785, "word": "things" }, { "confidence": 0.99609375, "end": 60.024998, "punctuated_word": "look", "speaker": 0, "speaker_confidence": 0.85839844, "start": 59.905, "word": "look" }, { "confidence": 0.9980469, "end": 60.184998, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.85839844, "start": 60.024998, "word": "a" }, { "confidence": 1, "end": 60.344997, "punctuated_word": "lot", "speaker": 0, "speaker_confidence": 0.85839844, "start": 60.184998, "word": "lot" }, { "confidence": 0.99658203, "end": 60.844997, "punctuated_word": "different.", "speaker": 0, "speaker_confidence": 0.85839844, "start": 60.344997, "word": "different" }, { "confidence": 1, "end": 61.304996, "punctuated_word": "Managers", "speaker": 0, "speaker_confidence": 0.85839844, "start": 60.905, "word": "managers" }, { "confidence": 1, "end": 61.464996, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.85839844, "start": 61.304996, "word": "are" }, { "confidence": 0.9970703, "end": 61.704998, "punctuated_word": "still", "speaker": 0, "speaker_confidence": 0.85839844, "start": 61.464996, "word": "still" }, { "confidence": 1, "end": 62.105, "punctuated_word": "desperately", "speaker": 0, "speaker_confidence": 0.85839844, "start": 61.704998, "word": "desperately" }, { "confidence": 0.99902344, "end": 62.344997, "punctuated_word": "trying", "speaker": 0, "speaker_confidence": 0.85839844, "start": 62.105, "word": "trying" }, { "confidence": 0.99902344, "end": 62.425, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.85839844, "start": 62.344997, "word": "to" }, { "confidence": 0.99902344, "end": 62.585, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.85839844, "start": 62.425, "word": "get" }, { "confidence": 0.9980469, "end": 62.824997, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.85839844, "start": 62.585, "word": "people" }, { "confidence": 0.99902344, "end": 62.984997, "punctuated_word": "back", "speaker": 0, "speaker_confidence": 0.85839844, "start": 62.824997, "word": "back" }, { "confidence": 0.984375, "end": 63.225, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.85839844, "start": 62.984997, "word": "into" }, { "confidence": 0.99609375, "end": 63.304996, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.85839844, "start": 63.225, "word": "the" }, { "confidence": 0.9748535, "end": 63.704998, "punctuated_word": "office,", "speaker": 0, "speaker_confidence": 0.85839844, "start": 63.304996, "word": "office" }, { "confidence": 1, "end": 63.945, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.85839844, "start": 63.704998, "word": "and" }, { "confidence": 1, "end": 64.025, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.62841797, "start": 63.945, "word": "you" }, { "confidence": 0.9980469, "end": 64.185, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.62841797, "start": 64.025, "word": "can" }, { "confidence": 0.9980469, "end": 64.424995, "punctuated_word": "find", "speaker": 0, "speaker_confidence": 0.62841797, "start": 64.185, "word": "find" }, { "confidence": 0.99902344, "end": 64.505, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.62841797, "start": 64.424995, "word": "all" }, { "confidence": 0.9741211, "end": 64.744995, "punctuated_word": "kinds", "speaker": 0, "speaker_confidence": 0.62841797, "start": 64.505, "word": "kinds" }, { "confidence": 0.99902344, "end": 64.905, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.62841797, "start": 64.744995, "word": "of" }, { "confidence": 0.99902344, "end": 65.384995, "punctuated_word": "anecdotes", "speaker": 0, "speaker_confidence": 0.62841797, "start": 64.905, "word": "anecdotes" }, { "confidence": 1, "end": 65.465, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.46435547, "start": 65.384995, "word": "on" }, { "confidence": 0.99316406, "end": 65.865, "punctuated_word": "Reddit", "speaker": 0, "speaker_confidence": 0.46435547, "start": 65.465, "word": "reddit" }, { "confidence": 0.99316406, "end": 66.025, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.46435547, "start": 65.865, "word": "about" }, { "confidence": 0.9941406, "end": 66.265, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.46435547, "start": 66.025, "word": "how" }, { "confidence": 1, "end": 66.585, "punctuated_word": "brutal", "speaker": 0, "speaker_confidence": 0.46435547, "start": 66.265, "word": "brutal" }, { "confidence": 0.9980469, "end": 66.665, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.46435547, "start": 66.585, "word": "the" }, { "confidence": 1, "end": 66.905, "punctuated_word": "job", "speaker": 0, "speaker_confidence": 0.5859375, "start": 66.665, "word": "job" }, { "confidence": 1, "end": 67.145, "punctuated_word": "market", "speaker": 0, "speaker_confidence": 0.5859375, "start": 66.905, "word": "market" }, { "confidence": 0.99609375, "end": 67.305, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.5859375, "start": 67.145, "word": "is" }, { "confidence": 0.9921875, "end": 67.384995, "punctuated_word": "right", "speaker": 0, "speaker_confidence": 0.5859375, "start": 67.305, "word": "right" }, { "confidence": 0.9885254, "end": 67.58, "punctuated_word": "now.", "speaker": 0, "speaker_confidence": 0.5859375, "start": 67.384995, "word": "now" }, { "confidence": 0.9416504, "end": 67.9, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.5859375, "start": 67.58, "word": "it's" }, { "confidence": 1, "end": 67.98, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.5859375, "start": 67.9, "word": "been" }, { "confidence": 0.9970703, "end": 68.060005, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.42529297, "start": 67.98, "word": "a" }, { "confidence": 1, "end": 68.22, "punctuated_word": "rough", "speaker": 0, "speaker_confidence": 0.42529297, "start": 68.060005, "word": "rough" }, { "confidence": 0.93847656, "end": 68.54, "punctuated_word": "year,", "speaker": 0, "speaker_confidence": 0.42529297, "start": 68.22, "word": "year" }, { "confidence": 1, "end": 68.78, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.42529297, "start": 68.54, "word": "but" }, { "confidence": 1, "end": 68.94, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.42529297, "start": 68.78, "word": "there" }, { "confidence": 0.9970703, "end": 69.1, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.42529297, "start": 68.94, "word": "is" }, { "confidence": 0.99902344, "end": 69.18, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.42089844, "start": 69.1, "word": "some" }, { "confidence": 0.99902344, "end": 69.5, "punctuated_word": "hope.", "speaker": 0, "speaker_confidence": 0.42089844, "start": 69.18, "word": "hope" }, { "confidence": 0.99902344, "end": 69.66, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.42089844, "start": 69.5, "word": "if" }, { "confidence": 0.99316406, "end": 69.740005, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.42089844, "start": 69.66, "word": "we" }, { "confidence": 0.9970703, "end": 69.9, "punctuated_word": "look", "speaker": 0, "speaker_confidence": 0.42089844, "start": 69.740005, "word": "look" }, { "confidence": 1, "end": 70.22, "punctuated_word": "closely", "speaker": 0, "speaker_confidence": 0.42089844, "start": 69.9, "word": "closely" }, { "confidence": 0.99902344, "end": 70.3, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.953125, "start": 70.22, "word": "at" }, { "confidence": 0.99902344, "end": 70.46, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.953125, "start": 70.3, "word": "the" }, { "confidence": 0.9970703, "end": 70.78, "punctuated_word": "chart,", "speaker": 0, "speaker_confidence": 0.953125, "start": 70.46, "word": "chart" }, { "confidence": 0.9995117, "end": 71.020004, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 0.953125, "start": 70.78, "word": "you'll" }, { "confidence": 0.9980469, "end": 71.26, "punctuated_word": "notice", "speaker": 0, "speaker_confidence": 0.953125, "start": 71.020004, "word": "notice" }, { "confidence": 0.99902344, "end": 71.5, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.953125, "start": 71.26, "word": "that" }, { "confidence": 0.99902344, "end": 71.740005, "punctuated_word": "job", "speaker": 0, "speaker_confidence": 0.953125, "start": 71.5, "word": "job" }, { "confidence": 0.99902344, "end": 72.14, "punctuated_word": "openings", "speaker": 0, "speaker_confidence": 0.953125, "start": 71.740005, "word": "openings" }, { "confidence": 0.9941406, "end": 72.3, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.953125, "start": 72.14, "word": "are" }, { "confidence": 0.9980469, "end": 72.46, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.953125, "start": 72.3, "word": "up" }, { "confidence": 0.9071045, "end": 72.96, "punctuated_word": "13.8%", "speaker": 0, "speaker_confidence": 0.953125, "start": 72.46, "word": "13.8%" }, { "confidence": 1, "end": 73.9, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.953125, "start": 73.66, "word": "from" }, { "confidence": 0.9980469, "end": 74.22, "punctuated_word": "earlier", "speaker": 0, "speaker_confidence": 0.953125, "start": 73.9, "word": "earlier" }, { "confidence": 0.9980469, "end": 74.380005, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.953125, "start": 74.22, "word": "this" }, { "confidence": 0.8383789, "end": 74.700005, "punctuated_word": "year,", "speaker": 0, "speaker_confidence": 0.953125, "start": 74.380005, "word": "year" }, { "confidence": 0.9970703, "end": 74.86, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.953125, "start": 74.700005, "word": "and" }, { "confidence": 0.99316406, "end": 75.020004, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.953125, "start": 74.86, "word": "all" }, { "confidence": 0.7011719, "end": 75.195, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.953125, "start": 75.020004, "word": "the" }, { "confidence": 0.6772461, "end": 75.435, "punctuated_word": "big", "speaker": 0, "speaker_confidence": 0.953125, "start": 75.275, "word": "big" }, { "confidence": 0.18493652, "end": 75.675, "punctuated_word": "bang", "speaker": 0, "speaker_confidence": 0.953125, "start": 75.435, "word": "bang" }, { "confidence": 0.9970703, "end": 76.155, "punctuated_word": "companies", "speaker": 0, "speaker_confidence": 0.953125, "start": 75.675, "word": "companies" }, { "confidence": 0.98291016, "end": 76.395, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.953125, "start": 76.155, "word": "have" }, { "confidence": 1, "end": 76.895, "punctuated_word": "unfrozen", "speaker": 0, "speaker_confidence": 0.953125, "start": 76.395, "word": "unfrozen" }, { "confidence": 0.99316406, "end": 77.195, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 0.953125, "start": 76.955, "word": "their" }, { "confidence": 1, "end": 77.595, "punctuated_word": "hiring", "speaker": 0, "speaker_confidence": 0.953125, "start": 77.195, "word": "hiring" }, { "confidence": 0.7858887, "end": 78.075, "punctuated_word": "freezes.", "speaker": 0, "speaker_confidence": 0.953125, "start": 77.595, "word": "freezes" }, { "confidence": 0.9970703, "end": 78.315, "punctuated_word": "Although", "speaker": 0, "speaker_confidence": 0.953125, "start": 78.075, "word": "although" }, { "confidence": 0.5756836, "end": 78.475, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.953125, "start": 78.315, "word": "there" }, { "confidence": 0.99609375, "end": 78.715, "punctuated_word": "aren't", "speaker": 0, "speaker_confidence": 0.953125, "start": 78.475, "word": "aren't" }, { "confidence": 0.9902344, "end": 79.034996, "punctuated_word": "nearly", "speaker": 0, "speaker_confidence": 0.953125, "start": 78.715, "word": "nearly" }, { "confidence": 0.99902344, "end": 79.115, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.953125, "start": 79.034996, "word": "as" }, { "confidence": 0.9980469, "end": 79.354996, "punctuated_word": "many", "speaker": 0, "speaker_confidence": 0.953125, "start": 79.115, "word": "many" }, { "confidence": 0.99902344, "end": 79.515, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.953125, "start": 79.354996, "word": "open" }, { "confidence": 0.99902344, "end": 79.835, "punctuated_word": "jobs", "speaker": 0, "speaker_confidence": 0.953125, "start": 79.515, "word": "jobs" }, { "confidence": 0.9980469, "end": 79.995, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.953125, "start": 79.835, "word": "as" }, { "confidence": 0.97314453, "end": 80.155, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.953125, "start": 79.995, "word": "there" }, { "confidence": 0.99316406, "end": 80.315, "punctuated_word": "used", "speaker": 0, "speaker_confidence": 0.953125, "start": 80.155, "word": "used" }, { "confidence": 0.9951172, "end": 80.395, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8256836, "start": 80.315, "word": "to" }, { "confidence": 0.7697754, "end": 80.635, "punctuated_word": "be,", "speaker": 0, "speaker_confidence": 0.8256836, "start": 80.395, "word": "be" }, { "confidence": 0.9980469, "end": 80.875, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.8256836, "start": 80.635, "word": "so" }, { "confidence": 0.9970703, "end": 80.955, "punctuated_word": "I'd", "speaker": 0, "speaker_confidence": 0.8256836, "start": 80.875, "word": "i'd" }, { "confidence": 0.99316406, "end": 81.115, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.8256836, "start": 80.955, "word": "be" }, { "confidence": 0.99609375, "end": 81.615, "punctuated_word": "cautiously", "speaker": 0, "speaker_confidence": 0.8256836, "start": 81.115, "word": "cautiously" }, { "confidence": 1, "end": 82.155, "punctuated_word": "optimistic", "speaker": 0, "speaker_confidence": 0.8256836, "start": 81.675, "word": "optimistic" }, { "confidence": 0.9980469, "end": 82.315, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.8256836, "start": 82.155, "word": "about" }, { "confidence": 0.9921875, "end": 82.475, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.8256836, "start": 82.315, "word": "an" }, { "confidence": 0.99902344, "end": 82.875, "punctuated_word": "improving", "speaker": 0, "speaker_confidence": 0.8256836, "start": 82.475, "word": "improving" }, { "confidence": 1, "end": 83.115, "punctuated_word": "job", "speaker": 0, "speaker_confidence": 0.8256836, "start": 82.875, "word": "job" }, { "confidence": 0.9980469, "end": 83.515, "punctuated_word": "market", "speaker": 0, "speaker_confidence": 0.8256836, "start": 83.115, "word": "market" }, { "confidence": 0.9941406, "end": 83.755, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.8256836, "start": 83.515, "word": "going" }, { "confidence": 0.97802734, "end": 84.155, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.8256836, "start": 83.755, "word": "into" }, { "confidence": 0.7248535, "end": 84.655, "punctuated_word": "2024.", "speaker": 0, "speaker_confidence": 0.8256836, "start": 84.155, "word": "2024" }, { "confidence": 0.9116211, "end": 85.18, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.8256836, "start": 84.795, "word": "but" }, { "confidence": 0.5786133, "end": 85.340004, "punctuated_word": "lot", "speaker": 0, "speaker_confidence": 0.8256836, "start": 85.18, "word": "lot" }, { "confidence": 0.9980469, "end": 85.42, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8256836, "start": 85.340004, "word": "of" }, { "confidence": 0.99902344, "end": 85.58, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8256836, "start": 85.42, "word": "that" }, { "confidence": 0.9941406, "end": 85.98, "punctuated_word": "depends", "speaker": 0, "speaker_confidence": 0.8256836, "start": 85.58, "word": "depends" }, { "confidence": 0.9980469, "end": 86.06, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8256836, "start": 85.98, "word": "on" }, { "confidence": 0.9970703, "end": 86.14, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.42822266, "start": 86.06, "word": "the" }, { "confidence": 0.99902344, "end": 86.46, "punctuated_word": "state", "speaker": 0, "speaker_confidence": 0.42822266, "start": 86.14, "word": "state" }, { "confidence": 1, "end": 86.54, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.42822266, "start": 86.46, "word": "of" }, { "confidence": 1, "end": 86.62, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.42822266, "start": 86.54, "word": "the" }, { "confidence": 0.99560547, "end": 86.86, "punctuated_word": "world.", "speaker": 0, "speaker_confidence": 0.42822266, "start": 86.62, "word": "world" }, { "confidence": 0.9980469, "end": 87.02, "punctuated_word": "We're", "speaker": 0, "speaker_confidence": 0.42822266, "start": 86.86, "word": "we're" }, { "confidence": 1, "end": 87.26, "punctuated_word": "still", "speaker": 0, "speaker_confidence": 0.42822266, "start": 87.02, "word": "still" }, { "confidence": 0.99902344, "end": 87.34, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.42822266, "start": 87.26, "word": "in" }, { "confidence": 0.99316406, "end": 87.42, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.54541016, "start": 87.34, "word": "a" }, { "confidence": 0.99902344, "end": 87.74, "punctuated_word": "high", "speaker": 0, "speaker_confidence": 0.54541016, "start": 87.42, "word": "high" }, { "confidence": 0.9980469, "end": 87.98, "punctuated_word": "interest", "speaker": 0, "speaker_confidence": 0.54541016, "start": 87.74, "word": "interest" }, { "confidence": 0.9970703, "end": 88.22, "punctuated_word": "rate", "speaker": 0, "speaker_confidence": 0.54541016, "start": 87.98, "word": "rate" }, { "confidence": 0.9562988, "end": 88.72, "punctuated_word": "environment,", "speaker": 0, "speaker_confidence": 0.54541016, "start": 88.22, "word": "environment" }, { "confidence": 0.99902344, "end": 89.02, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.54541016, "start": 88.78, "word": "which" }, { "confidence": 0.99902344, "end": 89.1, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.54541016, "start": 89.02, "word": "is" }, { "confidence": 0.9980469, "end": 89.26, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.78515625, "start": 89.1, "word": "not" }, { "confidence": 0.99902344, "end": 89.58, "punctuated_word": "ideal", "speaker": 0, "speaker_confidence": 0.78515625, "start": 89.26, "word": "ideal" }, { "confidence": 0.9980469, "end": 89.82, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.78515625, "start": 89.58, "word": "for" }, { "confidence": 0.9550781, "end": 90.06, "punctuated_word": "cash", "speaker": 0, "speaker_confidence": 0.78515625, "start": 89.82, "word": "cash" }, { "confidence": 0.99609375, "end": 90.46, "punctuated_word": "burning", "speaker": 0, "speaker_confidence": 0.78515625, "start": 90.06, "word": "burning" }, { "confidence": 0.6904297, "end": 90.94, "punctuated_word": "startups", "speaker": 0, "speaker_confidence": 0.78515625, "start": 90.46, "word": "startups" }, { "confidence": 0.9770508, "end": 91.1, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.78515625, "start": 90.94, "word": "that" }, { "confidence": 0.9951172, "end": 91.34, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.78515625, "start": 91.1, "word": "need" }, { "confidence": 0.9980469, "end": 91.5, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.78515625, "start": 91.34, "word": "that" }, { "confidence": 0.99902344, "end": 91.74, "punctuated_word": "easy", "speaker": 0, "speaker_confidence": 0.78515625, "start": 91.5, "word": "easy" }, { "confidence": 1, "end": 91.98, "punctuated_word": "money", "speaker": 0, "speaker_confidence": 0.78515625, "start": 91.74, "word": "money" }, { "confidence": 0.9980469, "end": 92.22, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.78515625, "start": 91.98, "word": "to" }, { "confidence": 0.9951172, "end": 92.46, "punctuated_word": "hire", "speaker": 0, "speaker_confidence": 0.78515625, "start": 92.22, "word": "hire" }, { "confidence": 0.98535156, "end": 92.54, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.78515625, "start": 92.46, "word": "a" }, { "confidence": 0.9980469, "end": 92.7, "punctuated_word": "bunch", "speaker": 0, "speaker_confidence": 0.7104492, "start": 92.54, "word": "bunch" }, { "confidence": 0.9921875, "end": 92.86, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7104492, "start": 92.7, "word": "of" }, { "confidence": 0.9980469, "end": 93.18, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.7104492, "start": 92.86, "word": "people" }, { "confidence": 0.98828125, "end": 93.42, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7104492, "start": 93.18, "word": "to" }, { "confidence": 0.9921875, "end": 93.66, "punctuated_word": "grow", "speaker": 0, "speaker_confidence": 0.7104492, "start": 93.42, "word": "grow" }, { "confidence": 0.99609375, "end": 94.14, "punctuated_word": "quickly.", "speaker": 0, "speaker_confidence": 0.7104492, "start": 93.66, "word": "quickly" }, { "confidence": 0.75146484, "end": 94.565, "punctuated_word": "Just", "speaker": 0, "speaker_confidence": 0.7104492, "start": 94.14, "word": "just" }, { "confidence": 0.7331543, "end": 94.965004, "punctuated_word": "day,", "speaker": 0, "speaker_confidence": 0.7104492, "start": 94.805, "word": "day" }, { "confidence": 0.99316406, "end": 95.445, "punctuated_word": "Spotify", "speaker": 0, "speaker_confidence": 0.7104492, "start": 94.965004, "word": "spotify" }, { "confidence": 0.9873047, "end": 95.605, "punctuated_word": "did", "speaker": 0, "speaker_confidence": 0.7104492, "start": 95.445, "word": "did" }, { "confidence": 0.89501953, "end": 95.765, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.7104492, "start": 95.605, "word": "its" }, { "confidence": 0.9655762, "end": 96.005005, "punctuated_word": "3rd", "speaker": 0, "speaker_confidence": 0.7104492, "start": 95.765, "word": "3rd" }, { "confidence": 0.842041, "end": 96.325005, "punctuated_word": "layoff", "speaker": 0, "speaker_confidence": 0.7104492, "start": 96.005005, "word": "layoff" }, { "confidence": 0.94628906, "end": 96.405, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7104492, "start": 96.325005, "word": "of" }, { "confidence": 0.99902344, "end": 96.565, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7841797, "start": 96.405, "word": "the" }, { "confidence": 0.8708496, "end": 96.885, "punctuated_word": "year,", "speaker": 0, "speaker_confidence": 0.7841797, "start": 96.565, "word": "year" }, { "confidence": 0.9902344, "end": 97.125, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.7841797, "start": 96.885, "word": "where" }, { "confidence": 0.9873047, "end": 97.205, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.7841797, "start": 97.125, "word": "it" }, { "confidence": 0.94384766, "end": 97.525, "punctuated_word": "severed", "speaker": 0, "speaker_confidence": 0.7841797, "start": 97.205, "word": "severed" }, { "confidence": 0.9980469, "end": 97.765, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.7841797, "start": 97.525, "word": "about" }, { "confidence": 0.9633789, "end": 98.265, "punctuated_word": "1500", "speaker": 0, "speaker_confidence": 0.7841797, "start": 97.765, "word": "1500" }, { "confidence": 0.97631836, "end": 98.645004, "punctuated_word": "heads,", "speaker": 0, "speaker_confidence": 0.7841797, "start": 98.325005, "word": "heads" }, { "confidence": 0.99902344, "end": 98.805, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.7841797, "start": 98.645004, "word": "which" }, { "confidence": 0.88427734, "end": 98.885, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.7841797, "start": 98.805, "word": "it" }, { "confidence": 0.9892578, "end": 99.285, "punctuated_word": "blamed", "speaker": 0, "speaker_confidence": 0.7841797, "start": 98.885, "word": "blamed" }, { "confidence": 0.99902344, "end": 99.445, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.7841797, "start": 99.285, "word": "on" }, { "confidence": 0.9921875, "end": 99.525, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7841797, "start": 99.445, "word": "the" }, { "confidence": 0.9980469, "end": 99.845, "punctuated_word": "higher", "speaker": 0, "speaker_confidence": 0.7841797, "start": 99.525, "word": "higher" }, { "confidence": 0.9951172, "end": 100.085, "punctuated_word": "cost", "speaker": 0, "speaker_confidence": 0.7841797, "start": 99.845, "word": "cost" }, { "confidence": 0.9970703, "end": 100.165, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.7841797, "start": 100.085, "word": "of" }, { "confidence": 0.9975586, "end": 100.665, "punctuated_word": "capital.", "speaker": 0, "speaker_confidence": 0.7841797, "start": 100.165, "word": "capital" }, { "confidence": 0.98828125, "end": 100.885, "punctuated_word": "These", "speaker": 0, "speaker_confidence": 0.7841797, "start": 100.725006, "word": "these" }, { "confidence": 0.9760742, "end": 101.045006, "punctuated_word": "high", "speaker": 0, "speaker_confidence": 0.7841797, "start": 100.885, "word": "high" }, { "confidence": 0.9980469, "end": 101.285, "punctuated_word": "rates", "speaker": 0, "speaker_confidence": 0.7841797, "start": 101.045006, "word": "rates" }, { "confidence": 0.9892578, "end": 101.525, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.7841797, "start": 101.285, "word": "have" }, { "confidence": 0.9980469, "end": 101.765, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.7841797, "start": 101.525, "word": "also" }, { "confidence": 0.9941406, "end": 101.925, "punctuated_word": "put", "speaker": 0, "speaker_confidence": 0.7841797, "start": 101.765, "word": "put" }, { "confidence": 0.98828125, "end": 102.005005, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.49609375, "start": 101.925, "word": "the" }, { "confidence": 0.984375, "end": 102.245, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 0.49609375, "start": 102.005005, "word": "real" }, { "confidence": 0.9892578, "end": 102.485, "punctuated_word": "estate", "speaker": 0, "speaker_confidence": 0.49609375, "start": 102.245, "word": "estate" }, { "confidence": 0.98535156, "end": 102.805, "punctuated_word": "market", "speaker": 0, "speaker_confidence": 0.49609375, "start": 102.485, "word": "market" }, { "confidence": 0.8256836, "end": 102.965004, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.49609375, "start": 102.805, "word": "at" }, { "confidence": 0.88720703, "end": 103.045, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.84033203, "start": 102.965004, "word": "a" }, { "confidence": 0.92578125, "end": 103.23, "punctuated_word": "stand", "speaker": 0, "speaker_confidence": 0.84033203, "start": 103.045, "word": "stand" }, { "confidence": 0.6850586, "end": 104.19, "punctuated_word": "dramatically", "speaker": 0, "speaker_confidence": 0.84033203, "start": 103.71001, "word": "dramatically" }, { "confidence": 0.9892578, "end": 104.51, "punctuated_word": "reducing", "speaker": 0, "speaker_confidence": 0.84033203, "start": 104.19, "word": "reducing" }, { "confidence": 0.9863281, "end": 104.670006, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.84033203, "start": 104.51, "word": "the" }, { "confidence": 0.9970703, "end": 104.91, "punctuated_word": "total", "speaker": 0, "speaker_confidence": 0.84033203, "start": 104.670006, "word": "total" }, { "confidence": 0.99609375, "end": 105.15, "punctuated_word": "number", "speaker": 0, "speaker_confidence": 0.84033203, "start": 104.91, "word": "number" }, { "confidence": 0.99902344, "end": 105.310005, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.84033203, "start": 105.15, "word": "of" }, { "confidence": 0.9980469, "end": 105.810005, "punctuated_word": "transactions", "speaker": 0, "speaker_confidence": 0.84033203, "start": 105.310005, "word": "transactions" }, { "confidence": 0.67529297, "end": 106.350006, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.84033203, "start": 106.03001, "word": "because" }, { "confidence": 0.99902344, "end": 106.670006, "punctuated_word": "nobody", "speaker": 0, "speaker_confidence": 0.84033203, "start": 106.350006, "word": "nobody" }, { "confidence": 0.99902344, "end": 106.91, "punctuated_word": "wants", "speaker": 0, "speaker_confidence": 0.84033203, "start": 106.670006, "word": "wants" }, { "confidence": 1, "end": 106.990005, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.84033203, "start": 106.91, "word": "to" }, { "confidence": 0.99609375, "end": 107.15, "punctuated_word": "pay", "speaker": 0, "speaker_confidence": 0.84033203, "start": 106.990005, "word": "pay" }, { "confidence": 0.9968262, "end": 107.65, "punctuated_word": "$900,000", "speaker": 0, "speaker_confidence": 0.84033203, "start": 107.15, "word": "$900,000" }, { "confidence": 0.99316406, "end": 108.350006, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.84033203, "start": 108.11, "word": "for" }, { "confidence": 0.9658203, "end": 108.43, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.84033203, "start": 108.350006, "word": "a" }, { "confidence": 1, "end": 108.83, "punctuated_word": "cardboard", "speaker": 0, "speaker_confidence": 0.84033203, "start": 108.43, "word": "cardboard" }, { "confidence": 0.99902344, "end": 109.15, "punctuated_word": "box", "speaker": 0, "speaker_confidence": 0.84033203, "start": 108.83, "word": "box" }, { "confidence": 0.9902344, "end": 109.39, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.84033203, "start": 109.15, "word": "with" }, { "confidence": 0.9970703, "end": 109.47, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.6699219, "start": 109.39, "word": "an" }, { "confidence": 0.97387695, "end": 109.87, "punctuated_word": "8%", "speaker": 0, "speaker_confidence": 0.6699219, "start": 109.47, "word": "8%" }, { "confidence": 0.98461914, "end": 110.270004, "punctuated_word": "mortgage.", "speaker": 0, "speaker_confidence": 0.6699219, "start": 109.87, "word": "mortgage" }, { "confidence": 0.9902344, "end": 110.51, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.6699219, "start": 110.270004, "word": "the" }, { "confidence": 0.98828125, "end": 110.990005, "punctuated_word": "automotive", "speaker": 0, "speaker_confidence": 0.6699219, "start": 110.51, "word": "automotive" }, { "confidence": 0.9980469, "end": 111.39, "punctuated_word": "industry", "speaker": 0, "speaker_confidence": 0.6699219, "start": 110.990005, "word": "industry" }, { "confidence": 0.99609375, "end": 111.47, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9082031, "start": 111.39, "word": "is" }, { "confidence": 0.9980469, "end": 111.71001, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.9082031, "start": 111.47, "word": "also" }, { "confidence": 0.9033203, "end": 112.11, "punctuated_word": "struggling,", "speaker": 0, "speaker_confidence": 0.9082031, "start": 111.71001, "word": "struggling" }, { "confidence": 0.5834961, "end": 112.345, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9082031, "start": 112.11, "word": "and" }, { "confidence": 0.54248047, "end": 112.505005, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.9082031, "start": 112.345, "word": "we" }, { "confidence": 0.9980469, "end": 112.745, "punctuated_word": "saw", "speaker": 0, "speaker_confidence": 0.9082031, "start": 112.505005, "word": "saw" }, { "confidence": 0.98828125, "end": 113.065, "punctuated_word": "Tesla", "speaker": 0, "speaker_confidence": 0.9082031, "start": 112.745, "word": "tesla" }, { "confidence": 0.9760742, "end": 113.385, "punctuated_word": "prices", "speaker": 0, "speaker_confidence": 0.9082031, "start": 113.065, "word": "prices" }, { "confidence": 0.9941406, "end": 113.545, "punctuated_word": "come", "speaker": 0, "speaker_confidence": 0.9082031, "start": 113.385, "word": "come" }, { "confidence": 0.9970703, "end": 113.705, "punctuated_word": "way", "speaker": 0, "speaker_confidence": 0.9082031, "start": 113.545, "word": "way" }, { "confidence": 0.99902344, "end": 113.945, "punctuated_word": "down", "speaker": 0, "speaker_confidence": 0.9082031, "start": 113.705, "word": "down" }, { "confidence": 0.9921875, "end": 114.105, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9082031, "start": 113.945, "word": "in" }, { "confidence": 0.92057294, "end": 114.605, "punctuated_word": "2023,", "speaker": 0, "speaker_confidence": 0.9082031, "start": 114.105, "word": "2023" }, { "confidence": 0.99902344, "end": 115.225, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.9082031, "start": 114.905, "word": "which" }, { "confidence": 1, "end": 115.385, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.9082031, "start": 115.225, "word": "was" }, { "confidence": 0.99316406, "end": 115.545, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9082031, "start": 115.385, "word": "a" }, { "confidence": 1, "end": 115.785, "punctuated_word": "shock", "speaker": 0, "speaker_confidence": 0.9082031, "start": 115.545, "word": "shock" }, { "confidence": 0.99902344, "end": 115.865, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9082031, "start": 115.785, "word": "to" }, { "confidence": 0.99902344, "end": 116.025, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.9082031, "start": 115.865, "word": "some" }, { "confidence": 0.99902344, "end": 116.345, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.9082031, "start": 116.025, "word": "people" }, { "confidence": 0.98291016, "end": 116.505005, "punctuated_word": "who", "speaker": 0, "speaker_confidence": 0.9082031, "start": 116.345, "word": "who" }, { "confidence": 0.9951172, "end": 116.665, "punctuated_word": "thought", "speaker": 0, "speaker_confidence": 0.9082031, "start": 116.505005, "word": "thought" }, { "confidence": 0.9892578, "end": 116.825005, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 0.9082031, "start": 116.665, "word": "their" }, { "confidence": 0.99902344, "end": 117.225, "punctuated_word": "Tesla", "speaker": 0, "speaker_confidence": 0.9082031, "start": 116.825005, "word": "tesla" }, { "confidence": 0.89453125, "end": 117.465004, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.9082031, "start": 117.225, "word": "was" }, { "confidence": 0.99121094, "end": 117.545, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.9082031, "start": 117.465004, "word": "an" }, { "confidence": 1, "end": 118.045, "punctuated_word": "appreciating", "speaker": 0, "speaker_confidence": 0.9082031, "start": 117.545, "word": "appreciating" }, { "confidence": 1, "end": 118.505005, "punctuated_word": "asset", "speaker": 0, "speaker_confidence": 0.9082031, "start": 118.185, "word": "asset" }, { "confidence": 0.9951172, "end": 118.745, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.9082031, "start": 118.505005, "word": "just" }, { "confidence": 1, "end": 118.825005, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9082031, "start": 118.745, "word": "a" }, { "confidence": 1, "end": 118.985, "punctuated_word": "year", "speaker": 0, "speaker_confidence": 0.9082031, "start": 118.825005, "word": "year" }, { "confidence": 0.9995117, "end": 119.36, "punctuated_word": "ago.", "speaker": 0, "speaker_confidence": 0.9082031, "start": 118.985, "word": "ago" }, { "confidence": 0.65283203, "end": 119.6, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.9082031, "start": 119.44, "word": "the" }, { "confidence": 0.74853516, "end": 119.92, "punctuated_word": "economy,", "speaker": 0, "speaker_confidence": 0.9082031, "start": 119.6, "word": "economy" }, { "confidence": 0.9970703, "end": 120.24, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9082031, "start": 119.92, "word": "and" }, { "confidence": 0.99121094, "end": 120.72, "punctuated_word": "especially", "speaker": 0, "speaker_confidence": 0.9082031, "start": 120.24, "word": "especially" }, { "confidence": 0.77001953, "end": 121.22, "punctuated_word": "technology,", "speaker": 0, "speaker_confidence": 0.9082031, "start": 120.72, "word": "technology" }, { "confidence": 1, "end": 121.44, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9082031, "start": 121.28, "word": "is" }, { "confidence": 0.9980469, "end": 121.840004, "punctuated_word": "addicted", "speaker": 0, "speaker_confidence": 0.9082031, "start": 121.44, "word": "addicted" }, { "confidence": 0.99902344, "end": 121.92, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9082031, "start": 121.840004, "word": "to" }, { "confidence": 0.99316406, "end": 122.16, "punctuated_word": "low", "speaker": 0, "speaker_confidence": 0.9082031, "start": 121.92, "word": "low" }, { "confidence": 0.8774414, "end": 122.48, "punctuated_word": "rates,", "speaker": 0, "speaker_confidence": 0.9082031, "start": 122.16, "word": "rates" }, { "confidence": 0.99316406, "end": 122.72, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.9082031, "start": 122.48, "word": "but" }, { "confidence": 0.9975586, "end": 122.88, "punctuated_word": "we've", "speaker": 0, "speaker_confidence": 0.9082031, "start": 122.72, "word": "we've" }, { "confidence": 0.99902344, "end": 123.12, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.9082031, "start": 122.88, "word": "also" }, { "confidence": 0.99902344, "end": 123.28, "punctuated_word": "got", "speaker": 0, "speaker_confidence": 0.9082031, "start": 123.12, "word": "got" }, { "confidence": 0.99902344, "end": 123.44, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.9082031, "start": 123.28, "word": "some" }, { "confidence": 0.9951172, "end": 123.76, "punctuated_word": "wars", "speaker": 0, "speaker_confidence": 0.9082031, "start": 123.44, "word": "wars" }, { "confidence": 0.99902344, "end": 123.92, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.9082031, "start": 123.76, "word": "going" }, { "confidence": 0.9995117, "end": 124.24, "punctuated_word": "on.", "speaker": 0, "speaker_confidence": 0.9082031, "start": 123.92, "word": "on" }, { "confidence": 0.907959, "end": 124.4, "punctuated_word": "Now,", "speaker": 0, "speaker_confidence": 0.9082031, "start": 124.24, "word": "now" }, { "confidence": 0.99902344, "end": 124.56, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.9082031, "start": 124.4, "word": "i" }, { "confidence": 1, "end": 124.72, "punctuated_word": "don't", "speaker": 0, "speaker_confidence": 0.9082031, "start": 124.56, "word": "don't" }, { "confidence": 0.9970703, "end": 124.96, "punctuated_word": "stand", "speaker": 0, "speaker_confidence": 0.9082031, "start": 124.72, "word": "stand" }, { "confidence": 0.99609375, "end": 125.12, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.9082031, "start": 124.96, "word": "with" }, { "confidence": 0.76049805, "end": 125.62, "punctuated_word": "Palestine,", "speaker": 0, "speaker_confidence": 0.9082031, "start": 125.12, "word": "palestine" }, { "confidence": 0.9980469, "end": 125.76, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.9082031, "start": 125.68, "word": "i" }, { "confidence": 1, "end": 125.92, "punctuated_word": "don't", "speaker": 0, "speaker_confidence": 0.9082031, "start": 125.76, "word": "don't" }, { "confidence": 0.99609375, "end": 126.24, "punctuated_word": "stand", "speaker": 0, "speaker_confidence": 0.9082031, "start": 125.92, "word": "stand" }, { "confidence": 0.98535156, "end": 126.4, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.9082031, "start": 126.24, "word": "with" }, { "confidence": 0.97094727, "end": 126.8, "punctuated_word": "Israel,", "speaker": 0, "speaker_confidence": 0.9082031, "start": 126.4, "word": "israel" }, { "confidence": 0.98291016, "end": 126.88, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.58447266, "start": 126.8, "word": "i" }, { "confidence": 0.9995117, "end": 127.12, "punctuated_word": "don't", "speaker": 0, "speaker_confidence": 0.58447266, "start": 126.88, "word": "don't" }, { "confidence": 0.99609375, "end": 127.425, "punctuated_word": "stand", "speaker": 0, "speaker_confidence": 0.58447266, "start": 127.12, "word": "stand" }, { "confidence": 0.8425293, "end": 127.90501, "punctuated_word": "Ukraine,", "speaker": 0, "speaker_confidence": 0.58447266, "start": 127.505005, "word": "ukraine" }, { "confidence": 0.99902344, "end": 128.065, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.58447266, "start": 127.90501, "word": "i" }, { "confidence": 0.9436035, "end": 128.225, "punctuated_word": "don't", "speaker": 0, "speaker_confidence": 0.58447266, "start": 128.065, "word": "don't" }, { "confidence": 0.98828125, "end": 128.38501, "punctuated_word": "stand", "speaker": 0, "speaker_confidence": 0.58447266, "start": 128.225, "word": "stand" }, { "confidence": 0.99902344, "end": 128.625, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.58447266, "start": 128.38501, "word": "with" }, { "confidence": 0.7504883, "end": 129.02501, "punctuated_word": "Russia.", "speaker": 0, "speaker_confidence": 0.58447266, "start": 128.625, "word": "russia" }, { "confidence": 1, "end": 129.185, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.78222656, "start": 129.02501, "word": "i" }, { "confidence": 0.99609375, "end": 129.425, "punctuated_word": "stand", "speaker": 0, "speaker_confidence": 0.78222656, "start": 129.185, "word": "stand" }, { "confidence": 0.99902344, "end": 129.66501, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.78222656, "start": 129.425, "word": "with" }, { "confidence": 1, "end": 130.065, "punctuated_word": "Lockheed", "speaker": 0, "speaker_confidence": 0.78222656, "start": 129.66501, "word": "lockheed" }, { "confidence": 0.9980469, "end": 130.38501, "punctuated_word": "Martin", "speaker": 0, "speaker_confidence": 0.78222656, "start": 130.065, "word": "martin" }, { "confidence": 0.78466797, "end": 130.545, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.78222656, "start": 130.38501, "word": "and" }, { "confidence": 0.9980469, "end": 130.945, "punctuated_word": "Boeing", "speaker": 0, "speaker_confidence": 0.78222656, "start": 130.545, "word": "boeing" }, { "confidence": 0.57421875, "end": 131.105, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.78222656, "start": 130.945, "word": "and" }, { "confidence": 0.9902344, "end": 131.265, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.78222656, "start": 131.105, "word": "the" }, { "confidence": 0.73095703, "end": 131.66501, "punctuated_word": "military", "speaker": 0, "speaker_confidence": 0.78222656, "start": 131.265, "word": "military" }, { "confidence": 0.9770508, "end": 132.16501, "punctuated_word": "industrial", "speaker": 0, "speaker_confidence": 0.78222656, "start": 131.66501, "word": "industrial" }, { "confidence": 0.99853516, "end": 132.725, "punctuated_word": "complex.", "speaker": 0, "speaker_confidence": 0.78222656, "start": 132.225, "word": "complex" }, { "confidence": 0.99902344, "end": 133.02501, "punctuated_word": "These", "speaker": 0, "speaker_confidence": 0.78222656, "start": 132.785, "word": "these" }, { "confidence": 0.99902344, "end": 133.345, "punctuated_word": "companies", "speaker": 0, "speaker_confidence": 0.78222656, "start": 133.02501, "word": "companies" }, { "confidence": 0.99902344, "end": 133.505, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.78222656, "start": 133.345, "word": "make" }, { "confidence": 0.9980469, "end": 133.585, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6479492, "start": 133.505, "word": "the" }, { "confidence": 1, "end": 133.905, "punctuated_word": "tools", "speaker": 0, "speaker_confidence": 0.6479492, "start": 133.585, "word": "tools" }, { "confidence": 0.9980469, "end": 134.065, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.6479492, "start": 133.905, "word": "we" }, { "confidence": 0.99902344, "end": 134.30501, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.6479492, "start": 134.065, "word": "need" }, { "confidence": 0.99902344, "end": 134.465, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6479492, "start": 134.30501, "word": "to" }, { "confidence": 1, "end": 134.705, "punctuated_word": "blow", "speaker": 0, "speaker_confidence": 0.6479492, "start": 134.465, "word": "blow" }, { "confidence": 1, "end": 134.865, "punctuated_word": "each", "speaker": 0, "speaker_confidence": 0.6479492, "start": 134.705, "word": "each" }, { "confidence": 1, "end": 135.02501, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.6479492, "start": 134.865, "word": "other" }, { "confidence": 0.78027344, "end": 135.265, "punctuated_word": "up,", "speaker": 0, "speaker_confidence": 0.6479492, "start": 135.02501, "word": "up" }, { "confidence": 0.99902344, "end": 135.425, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6479492, "start": 135.265, "word": "and" }, { "confidence": 0.9951172, "end": 135.505, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.6479492, "start": 135.425, "word": "when" }, { "confidence": 0.98095703, "end": 135.7, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.6479492, "start": 135.505, "word": "you" }, { "confidence": 0.9111328, "end": 135.94, "punctuated_word": "stand", "speaker": 0, "speaker_confidence": 0.6479492, "start": 135.7, "word": "stand" }, { "confidence": 0.9970703, "end": 136.09999, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.6479492, "start": 135.94, "word": "with" }, { "confidence": 0.9951172, "end": 136.18, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8310547, "start": 136.09999, "word": "that" }, { "confidence": 0.9880371, "end": 136.58, "punctuated_word": "team,", "speaker": 0, "speaker_confidence": 0.8310547, "start": 136.18, "word": "team" }, { "confidence": 0.9951172, "end": 136.73999, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.8310547, "start": 136.58, "word": "you" }, { "confidence": 0.9980469, "end": 136.98, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 0.8310547, "start": 136.73999, "word": "really" }, { "confidence": 0.9995117, "end": 137.22, "punctuated_word": "can't", "speaker": 0, "speaker_confidence": 0.8310547, "start": 136.98, "word": "can't" }, { "confidence": 0.99853516, "end": 137.54, "punctuated_word": "lose.", "speaker": 0, "speaker_confidence": 0.8310547, "start": 137.22, "word": "lose" }, { "confidence": 0.99609375, "end": 137.7, "punctuated_word": "What", "speaker": 0, "speaker_confidence": 0.8310547, "start": 137.54, "word": "what" }, { "confidence": 0.9980469, "end": 137.86, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.8310547, "start": 137.7, "word": "you" }, { "confidence": 0.9951172, "end": 138.02, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.8310547, "start": 137.86, "word": "have" }, { "confidence": 0.99609375, "end": 138.09999, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8310547, "start": 138.02, "word": "to" }, { "confidence": 0.9980469, "end": 138.42, "punctuated_word": "realize", "speaker": 0, "speaker_confidence": 0.8310547, "start": 138.09999, "word": "realize" }, { "confidence": 0.98535156, "end": 138.58, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8310547, "start": 138.42, "word": "is" }, { "confidence": 0.9921875, "end": 138.81999, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8310547, "start": 138.58, "word": "that" }, { "confidence": 0.88256836, "end": 138.98, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.8310547, "start": 138.81999, "word": "you're" }, { "confidence": 0.9902344, "end": 139.3, "punctuated_word": "living", "speaker": 0, "speaker_confidence": 0.8310547, "start": 138.98, "word": "living" }, { "confidence": 0.9970703, "end": 139.62, "punctuated_word": "paycheck", "speaker": 0, "speaker_confidence": 0.8310547, "start": 139.3, "word": "paycheck" }, { "confidence": 0.9980469, "end": 139.78, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8310547, "start": 139.62, "word": "to" }, { "confidence": 0.92993164, "end": 140.28, "punctuated_word": "paycheck,", "speaker": 0, "speaker_confidence": 0.8310547, "start": 139.78, "word": "paycheck" }, { "confidence": 0.984375, "end": 140.58, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.8310547, "start": 140.34, "word": "your" }, { "confidence": 0.94189453, "end": 140.9, "punctuated_word": "employer", "speaker": 0, "speaker_confidence": 0.8310547, "start": 140.58, "word": "employer" }, { "confidence": 0.7895508, "end": 140.98, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8310547, "start": 140.9, "word": "is" }, { "confidence": 0.96777344, "end": 141.3, "punctuated_word": "living", "speaker": 0, "speaker_confidence": 0.8310547, "start": 140.98, "word": "living" }, { "confidence": 0.88427734, "end": 141.7, "punctuated_word": "bailout", "speaker": 0, "speaker_confidence": 0.8310547, "start": 141.3, "word": "bailout" }, { "confidence": 0.97314453, "end": 141.78, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8310547, "start": 141.7, "word": "to" }, { "confidence": 0.97802734, "end": 142.28, "punctuated_word": "bailout,", "speaker": 0, "speaker_confidence": 0.8310547, "start": 141.78, "word": "bailout" }, { "confidence": 0.8989258, "end": 142.5, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8310547, "start": 142.34, "word": "and" }, { "confidence": 0.74316406, "end": 142.715, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8310547, "start": 142.5, "word": "the" }, { "confidence": 0.45141602, "end": 142.955, "punctuated_word": "United", "speaker": 0, "speaker_confidence": 0.8310547, "start": 142.795, "word": "united" }, { "confidence": 0.99609375, "end": 143.11499, "punctuated_word": "States", "speaker": 0, "speaker_confidence": 0.8310547, "start": 142.955, "word": "states" }, { "confidence": 0.89990234, "end": 143.515, "punctuated_word": "government", "speaker": 0, "speaker_confidence": 0.8310547, "start": 143.11499, "word": "government" }, { "confidence": 0.99121094, "end": 143.675, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8310547, "start": 143.515, "word": "is" }, { "confidence": 0.99902344, "end": 143.915, "punctuated_word": "living", "speaker": 0, "speaker_confidence": 0.8310547, "start": 143.675, "word": "living" }, { "confidence": 0.9970703, "end": 144.075, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.8310547, "start": 143.915, "word": "from" }, { "confidence": 0.99316406, "end": 144.39499, "punctuated_word": "war", "speaker": 0, "speaker_confidence": 0.8310547, "start": 144.075, "word": "war" }, { "confidence": 0.99902344, "end": 144.47499, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8310547, "start": 144.39499, "word": "to" }, { "confidence": 0.99853516, "end": 144.715, "punctuated_word": "war.", "speaker": 0, "speaker_confidence": 0.8310547, "start": 144.47499, "word": "war" }, { "confidence": 0.99902344, "end": 144.875, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.7397461, "start": 144.715, "word": "if" }, { "confidence": 0.9873047, "end": 145.035, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.7397461, "start": 144.875, "word": "we" }, { "confidence": 1, "end": 145.19499, "punctuated_word": "don't", "speaker": 0, "speaker_confidence": 0.7397461, "start": 145.035, "word": "don't" }, { "confidence": 1, "end": 145.275, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.7397461, "start": 145.19499, "word": "get" }, { "confidence": 0.99902344, "end": 145.355, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7397461, "start": 145.275, "word": "a" }, { "confidence": 1, "end": 145.515, "punctuated_word": "big", "speaker": 0, "speaker_confidence": 0.7397461, "start": 145.355, "word": "big" }, { "confidence": 0.99902344, "end": 145.75499, "punctuated_word": "war", "speaker": 0, "speaker_confidence": 0.7397461, "start": 145.515, "word": "war" }, { "confidence": 0.9875488, "end": 145.995, "punctuated_word": "soon,", "speaker": 0, "speaker_confidence": 0.7397461, "start": 145.75499, "word": "soon" }, { "confidence": 0.99902344, "end": 146.155, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7397461, "start": 145.995, "word": "the" }, { "confidence": 1, "end": 146.47499, "punctuated_word": "entire", "speaker": 0, "speaker_confidence": 0.7397461, "start": 146.155, "word": "entire" }, { "confidence": 1, "end": 146.875, "punctuated_word": "system", "speaker": 0, "speaker_confidence": 0.7397461, "start": 146.47499, "word": "system" }, { "confidence": 0.99902344, "end": 147.035, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.7397461, "start": 146.875, "word": "could" }, { "confidence": 0.9128418, "end": 147.435, "punctuated_word": "collapse,", "speaker": 0, "speaker_confidence": 0.7397461, "start": 147.035, "word": "collapse" }, { "confidence": 1, "end": 147.595, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7397461, "start": 147.435, "word": "and" }, { "confidence": 1, "end": 147.83499, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.7397461, "start": 147.595, "word": "that's" }, { "confidence": 1, "end": 147.915, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.7397461, "start": 147.83499, "word": "not" }, { "confidence": 0.99902344, "end": 148.155, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.7397461, "start": 147.915, "word": "going" }, { "confidence": 0.9980469, "end": 148.235, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8515625, "start": 148.155, "word": "to" }, { "confidence": 0.9970703, "end": 148.47499, "punctuated_word": "bode", "speaker": 0, "speaker_confidence": 0.8515625, "start": 148.235, "word": "bode" }, { "confidence": 1, "end": 148.715, "punctuated_word": "well", "speaker": 0, "speaker_confidence": 0.8515625, "start": 148.47499, "word": "well" }, { "confidence": 1, "end": 148.875, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.8515625, "start": 148.715, "word": "for" }, { "confidence": 0.7158203, "end": 149.11499, "punctuated_word": "tech", "speaker": 0, "speaker_confidence": 0.8515625, "start": 148.875, "word": "tech" }, { "confidence": 0.99902344, "end": 149.355, "punctuated_word": "jobs", "speaker": 0, "speaker_confidence": 0.8515625, "start": 149.11499, "word": "jobs" }, { "confidence": 1, "end": 149.515, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8515625, "start": 149.355, "word": "in" }, { "confidence": 0.99902344, "end": 149.595, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8515625, "start": 149.515, "word": "the" }, { "confidence": 0.98999023, "end": 150.075, "punctuated_word": "future.", "speaker": 0, "speaker_confidence": 0.8515625, "start": 149.595, "word": "future" }, { "confidence": 0.99902344, "end": 150.235, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.8515625, "start": 150.075, "word": "but" }, { "confidence": 0.9716797, "end": 150.555, "punctuated_word": "speaking", "speaker": 0, "speaker_confidence": 0.8515625, "start": 150.235, "word": "speaking" }, { "confidence": 1, "end": 150.715, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8515625, "start": 150.555, "word": "of" }, { "confidence": 0.9995117, "end": 151.11499, "punctuated_word": "money,", "speaker": 0, "speaker_confidence": 0.8515625, "start": 150.715, "word": "money" }, { "confidence": 0.9326172, "end": 151.515, "punctuated_word": "crypto", "speaker": 0, "speaker_confidence": 0.8515625, "start": 151.11499, "word": "crypto" }, { "confidence": 0.9970703, "end": 151.675, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8515625, "start": 151.515, "word": "is" }, { "confidence": 0.99853516, "end": 151.995, "punctuated_word": "back.", "speaker": 0, "speaker_confidence": 0.8515625, "start": 151.675, "word": "back" }, { "confidence": 0.99316406, "end": 152.43, "punctuated_word": "Bitcoin", "speaker": 0, "speaker_confidence": 0.8515625, "start": 151.995, "word": "bitcoin" }, { "confidence": 0.9199219, "end": 152.67, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.8515625, "start": 152.51, "word": "with" }, { "confidence": 0.98828125, "end": 152.90999, "punctuated_word": "16", "speaker": 0, "speaker_confidence": 0.8515625, "start": 152.67, "word": "16" }, { "confidence": 0.83984375, "end": 153.06999, "punctuated_word": "k", "speaker": 0, "speaker_confidence": 0.8515625, "start": 152.90999, "word": "k" }, { "confidence": 0.98095703, "end": 153.31, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.8515625, "start": 153.06999, "word": "at" }, { "confidence": 0.9980469, "end": 153.39, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8515625, "start": 153.31, "word": "the" }, { "confidence": 1, "end": 153.62999, "punctuated_word": "beginning", "speaker": 0, "speaker_confidence": 0.8515625, "start": 153.39, "word": "beginning" }, { "confidence": 0.99902344, "end": 153.70999, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8515625, "start": 153.62999, "word": "of" }, { "confidence": 0.99902344, "end": 153.79, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.64697266, "start": 153.70999, "word": "the" }, { "confidence": 1, "end": 154.10999, "punctuated_word": "year", "speaker": 0, "speaker_confidence": 0.64697266, "start": 153.79, "word": "year" }, { "confidence": 0.5029297, "end": 154.26999, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.64697266, "start": 154.10999, "word": "and" }, { "confidence": 0.99902344, "end": 154.51, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.64697266, "start": 154.26999, "word": "just" }, { "confidence": 0.99902344, "end": 154.75, "punctuated_word": "broke", "speaker": 0, "speaker_confidence": 0.64697266, "start": 154.51, "word": "broke" }, { "confidence": 0.97314453, "end": 154.98999, "punctuated_word": "40", "speaker": 0, "speaker_confidence": 0.64697266, "start": 154.75, "word": "40" }, { "confidence": 0.8676758, "end": 155.15, "punctuated_word": "k", "speaker": 0, "speaker_confidence": 0.64697266, "start": 154.98999, "word": "k" }, { "confidence": 0.99316406, "end": 155.23, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.64697266, "start": 155.15, "word": "a" }, { "confidence": 1, "end": 155.46999, "punctuated_word": "couple", "speaker": 0, "speaker_confidence": 0.64697266, "start": 155.23, "word": "couple" }, { "confidence": 0.8461914, "end": 155.62999, "punctuated_word": "days", "speaker": 0, "speaker_confidence": 0.64697266, "start": 155.46999, "word": "days" }, { "confidence": 0.94091797, "end": 156.03, "punctuated_word": "ago.", "speaker": 0, "speaker_confidence": 0.64697266, "start": 155.62999, "word": "ago" }, { "confidence": 0.9980469, "end": 156.26999, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.64697266, "start": 156.03, "word": "and" }, { "confidence": 0.767334, "end": 156.76999, "punctuated_word": "cryptobros", "speaker": 0, "speaker_confidence": 0.64697266, "start": 156.26999, "word": "cryptobros" }, { "confidence": 0.99609375, "end": 156.90999, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.64990234, "start": 156.82999, "word": "are" }, { "confidence": 0.9970703, "end": 157.23, "punctuated_word": "already", "speaker": 0, "speaker_confidence": 0.64990234, "start": 156.90999, "word": "already" }, { "confidence": 1, "end": 157.54999, "punctuated_word": "predicting", "speaker": 0, "speaker_confidence": 0.64990234, "start": 157.23, "word": "predicting" }, { "confidence": 1, "end": 157.79, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.64990234, "start": 157.54999, "word": "that" }, { "confidence": 0.72216797, "end": 157.95, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.64990234, "start": 157.79, "word": "one" }, { "confidence": 0.99902344, "end": 158.26999, "punctuated_word": "token", "speaker": 0, "speaker_confidence": 0.64990234, "start": 157.95, "word": "token" }, { "confidence": 0.99121094, "end": 158.43, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.64990234, "start": 158.26999, "word": "will" }, { "confidence": 0.9980469, "end": 158.51, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.64990234, "start": 158.43, "word": "be" }, { "confidence": 0.99902344, "end": 158.75, "punctuated_word": "worth", "speaker": 0, "speaker_confidence": 0.64990234, "start": 158.51, "word": "worth" }, { "confidence": 1, "end": 158.90999, "punctuated_word": "over", "speaker": 0, "speaker_confidence": 0.64990234, "start": 158.75, "word": "over" }, { "confidence": 0.8595378, "end": 159.40999, "punctuated_word": "a1000000", "speaker": 0, "speaker_confidence": 0.64990234, "start": 158.90999, "word": "a1000000" }, { "confidence": 0.33642578, "end": 159.76501, "punctuated_word": "dollars", "speaker": 0, "speaker_confidence": 0.64990234, "start": 159.52501, "word": "dollars" }, { "confidence": 0.99609375, "end": 159.845, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.64990234, "start": 159.76501, "word": "by" }, { "confidence": 0.9980469, "end": 159.925, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8510742, "start": 159.845, "word": "the" }, { "confidence": 1, "end": 160.24501, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.8510742, "start": 159.925, "word": "end" }, { "confidence": 0.99902344, "end": 160.40501, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8510742, "start": 160.24501, "word": "of" }, { "confidence": 0.91796875, "end": 160.90501, "punctuated_word": "2024.", "speaker": 0, "speaker_confidence": 0.8510742, "start": 160.40501, "word": "2024" }, { "confidence": 1, "end": 161.285, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.8510742, "start": 161.125, "word": "the" }, { "confidence": 0.9941406, "end": 161.52501, "punctuated_word": "price", "speaker": 0, "speaker_confidence": 0.8510742, "start": 161.285, "word": "price" }, { "confidence": 0.99902344, "end": 161.60501, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8510742, "start": 161.52501, "word": "to" }, { "confidence": 1, "end": 161.845, "punctuated_word": "watch", "speaker": 0, "speaker_confidence": 0.8510742, "start": 161.60501, "word": "watch" }, { "confidence": 0.9980469, "end": 162.085, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.8510742, "start": 161.845, "word": "for" }, { "confidence": 0.9970703, "end": 162.32501, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8510742, "start": 162.085, "word": "is" }, { "confidence": 0.96533203, "end": 162.80501, "punctuated_word": "69", "speaker": 0, "speaker_confidence": 0.8510742, "start": 162.32501, "word": "69" }, { "confidence": 0.8798828, "end": 163.205, "punctuated_word": "k.", "speaker": 0, "speaker_confidence": 0.8510742, "start": 162.80501, "word": "k" }, { "confidence": 0.9970703, "end": 163.365, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.8510742, "start": 163.205, "word": "if" }, { "confidence": 1, "end": 163.445, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8510742, "start": 163.365, "word": "it" }, { "confidence": 1, "end": 163.76501, "punctuated_word": "reaches", "speaker": 0, "speaker_confidence": 0.8510742, "start": 163.445, "word": "reaches" }, { "confidence": 0.91503906, "end": 163.925, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.8510742, "start": 163.76501, "word": "this" }, { "confidence": 0.99902344, "end": 164.16501, "punctuated_word": "price", "speaker": 0, "speaker_confidence": 0.8510742, "start": 163.925, "word": "price" }, { "confidence": 0.99658203, "end": 164.40501, "punctuated_word": "point,", "speaker": 0, "speaker_confidence": 0.8510742, "start": 164.16501, "word": "point" }, { "confidence": 1, "end": 164.565, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8510742, "start": 164.40501, "word": "the" }, { "confidence": 1, "end": 164.80501, "punctuated_word": "world", "speaker": 0, "speaker_confidence": 0.8510742, "start": 164.565, "word": "world" }, { "confidence": 0.99316406, "end": 164.88501, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.8510742, "start": 164.80501, "word": "will" }, { "confidence": 0.9970703, "end": 165.04501, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.8510742, "start": 164.88501, "word": "be" }, { "confidence": 1, "end": 165.365, "punctuated_word": "flooded", "speaker": 0, "speaker_confidence": 0.8510742, "start": 165.04501, "word": "flooded" }, { "confidence": 1, "end": 165.52501, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.8510742, "start": 165.365, "word": "with" }, { "confidence": 0.99316406, "end": 165.925, "punctuated_word": "memes", "speaker": 0, "speaker_confidence": 0.8510742, "start": 165.52501, "word": "memes" }, { "confidence": 0.9941406, "end": 166.085, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8510742, "start": 165.925, "word": "that" }, { "confidence": 0.9980469, "end": 166.24501, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.5756836, "start": 166.085, "word": "will" }, { "confidence": 0.99316406, "end": 166.61, "punctuated_word": "elevate", "speaker": 0, "speaker_confidence": 0.5756836, "start": 166.24501, "word": "elevate" }, { "confidence": 0.9708659, "end": 167.01, "punctuated_word": "FOMO", "speaker": 0, "speaker_confidence": 0.5756836, "start": 166.69, "word": "fomo" }, { "confidence": 0.98828125, "end": 167.25, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.5756836, "start": 167.01, "word": "to" }, { "confidence": 0.87890625, "end": 167.65, "punctuated_word": "biblical", "speaker": 0, "speaker_confidence": 0.5756836, "start": 167.25, "word": "biblical" }, { "confidence": 0.99609375, "end": 168.13, "punctuated_word": "levels.", "speaker": 0, "speaker_confidence": 0.5756836, "start": 167.65, "word": "levels" }, { "confidence": 0.9980469, "end": 168.29, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.68408203, "start": 168.13, "word": "in" }, { "confidence": 0.99902344, "end": 168.45, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.68408203, "start": 168.29, "word": "other" }, { "confidence": 0.9970703, "end": 168.69, "punctuated_word": "words,", "speaker": 0, "speaker_confidence": 0.68408203, "start": 168.45, "word": "words" }, { "confidence": 0.9980469, "end": 168.85, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.68408203, "start": 168.69, "word": "the" }, { "confidence": 0.9863281, "end": 169.25, "punctuated_word": "crypto", "speaker": 0, "speaker_confidence": 0.68408203, "start": 168.85, "word": "crypto" }, { "confidence": 0.9980469, "end": 169.57, "punctuated_word": "winter", "speaker": 0, "speaker_confidence": 0.68408203, "start": 169.25, "word": "winter" }, { "confidence": 0.9980469, "end": 169.73, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 0.68408203, "start": 169.57, "word": "might" }, { "confidence": 0.9980469, "end": 169.81, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.68408203, "start": 169.73, "word": "be" }, { "confidence": 0.95874023, "end": 170.13, "punctuated_word": "over,", "speaker": 0, "speaker_confidence": 0.68408203, "start": 169.81, "word": "over" }, { "confidence": 0.9951172, "end": 170.45, "punctuated_word": "bringing", "speaker": 0, "speaker_confidence": 0.68408203, "start": 170.13, "word": "bringing" }, { "confidence": 0.9970703, "end": 170.61, "punctuated_word": "us", "speaker": 0, "speaker_confidence": 0.68408203, "start": 170.45, "word": "us" }, { "confidence": 0.99609375, "end": 170.69, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8769531, "start": 170.61, "word": "a" }, { "confidence": 0.9921875, "end": 170.93, "punctuated_word": "fresh", "speaker": 0, "speaker_confidence": 0.8769531, "start": 170.69, "word": "fresh" }, { "confidence": 0.9941406, "end": 171.09, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.8769531, "start": 170.93, "word": "new" }, { "confidence": 0.9790039, "end": 171.25, "punctuated_word": "round", "speaker": 0, "speaker_confidence": 0.8769531, "start": 171.09, "word": "round" }, { "confidence": 0.99902344, "end": 171.33, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8769531, "start": 171.25, "word": "of" }, { "confidence": 0.9685872, "end": 171.73, "punctuated_word": "Ponzi", "speaker": 0, "speaker_confidence": 0.8769531, "start": 171.33, "word": "ponzi" }, { "confidence": 0.9770508, "end": 171.97, "punctuated_word": "schemes", "speaker": 0, "speaker_confidence": 0.8769531, "start": 171.73, "word": "schemes" }, { "confidence": 0.99902344, "end": 172.13, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8769531, "start": 171.97, "word": "to" }, { "confidence": 0.99902344, "end": 172.45, "punctuated_word": "invest", "speaker": 0, "speaker_confidence": 0.8769531, "start": 172.13, "word": "invest" }, { "confidence": 0.9951172, "end": 172.61, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.8769531, "start": 172.45, "word": "our" }, { "confidence": 0.7468262, "end": 172.93, "punctuated_word": "parents'", "speaker": 0, "speaker_confidence": 0.8769531, "start": 172.61, "word": "parents'" }, { "confidence": 0.99609375, "end": 173.17, "punctuated_word": "money", "speaker": 0, "speaker_confidence": 0.8769531, "start": 172.93, "word": "money" }, { "confidence": 0.98339844, "end": 173.33, "punctuated_word": "in.", "speaker": 0, "speaker_confidence": 0.8769531, "start": 173.17, "word": "in" }, { "confidence": 0.5371094, "end": 173.655, "punctuated_word": "Another", "speaker": 0, "speaker_confidence": 0.8769531, "start": 173.33, "word": "another" }, { "confidence": 0.69628906, "end": 174.135, "punctuated_word": "failed", "speaker": 0, "speaker_confidence": 0.8769531, "start": 173.735, "word": "failed" }, { "confidence": 0.99316406, "end": 174.535, "punctuated_word": "technology", "speaker": 0, "speaker_confidence": 0.8769531, "start": 174.135, "word": "technology" }, { "confidence": 0.9980469, "end": 174.775, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8769531, "start": 174.535, "word": "that" }, { "confidence": 0.99902344, "end": 174.935, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.8769531, "start": 174.775, "word": "could" }, { "confidence": 0.9980469, "end": 175.095, "punctuated_word": "come", "speaker": 0, "speaker_confidence": 0.8769531, "start": 174.935, "word": "come" }, { "confidence": 0.9980469, "end": 175.33499, "punctuated_word": "back", "speaker": 0, "speaker_confidence": 0.8769531, "start": 175.095, "word": "back" }, { "confidence": 0.9951172, "end": 175.495, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8769531, "start": 175.33499, "word": "in" }, { "confidence": 0.8364258, "end": 175.995, "punctuated_word": "2024", "speaker": 0, "speaker_confidence": 0.8769531, "start": 175.495, "word": "2024" }, { "confidence": 0.8881836, "end": 176.69499, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8769531, "start": 176.375, "word": "is" }, { "confidence": 0.99121094, "end": 177.175, "punctuated_word": "augmented", "speaker": 0, "speaker_confidence": 0.8769531, "start": 176.69499, "word": "augmented" }, { "confidence": 0.98291016, "end": 177.415, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8769531, "start": 177.175, "word": "and" }, { "confidence": 0.99121094, "end": 177.895, "punctuated_word": "virtual", "speaker": 0, "speaker_confidence": 0.8769531, "start": 177.415, "word": "virtual" }, { "confidence": 0.82055664, "end": 178.295, "punctuated_word": "reality,", "speaker": 0, "speaker_confidence": 0.8769531, "start": 177.895, "word": "reality" }, { "confidence": 0.99316406, "end": 178.615, "punctuated_word": "thanks", "speaker": 0, "speaker_confidence": 0.8769531, "start": 178.295, "word": "thanks" }, { "confidence": 0.99121094, "end": 179.115, "punctuated_word": "primarily", "speaker": 0, "speaker_confidence": 0.8769531, "start": 178.615, "word": "primarily" }, { "confidence": 0.99316406, "end": 179.415, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8769531, "start": 179.175, "word": "to" }, { "confidence": 0.9941406, "end": 179.575, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8769531, "start": 179.415, "word": "the" }, { "confidence": 0.9892578, "end": 179.895, "punctuated_word": "Apple", "speaker": 0, "speaker_confidence": 0.8769531, "start": 179.575, "word": "apple" }, { "confidence": 0.9277344, "end": 180.135, "punctuated_word": "Vision", "speaker": 0, "speaker_confidence": 0.8769531, "start": 179.895, "word": "vision" }, { "confidence": 0.9814453, "end": 180.535, "punctuated_word": "Pro,", "speaker": 0, "speaker_confidence": 0.8769531, "start": 180.135, "word": "pro" }, { "confidence": 0.99121094, "end": 180.775, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.8769531, "start": 180.535, "word": "which" }, { "confidence": 0.984375, "end": 180.935, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8769531, "start": 180.775, "word": "is" }, { "confidence": 0.9873047, "end": 181.095, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.8769531, "start": 180.935, "word": "set" }, { "confidence": 0.97998047, "end": 181.175, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8769531, "start": 181.095, "word": "to" }, { "confidence": 0.97998047, "end": 181.495, "punctuated_word": "release", "speaker": 0, "speaker_confidence": 0.8769531, "start": 181.175, "word": "release" }, { "confidence": 0.81152344, "end": 181.84, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8769531, "start": 181.495, "word": "in" }, { "confidence": 0.5336914, "end": 182.08, "punctuated_word": "early", "speaker": 0, "speaker_confidence": 0.8769531, "start": 181.92, "word": "early" }, { "confidence": 0.91967773, "end": 182.58, "punctuated_word": "2024.", "speaker": 0, "speaker_confidence": 0.8769531, "start": 182.08, "word": "2024" }, { "confidence": 0.99902344, "end": 183.2, "punctuated_word": "Apple", "speaker": 0, "speaker_confidence": 0.8769531, "start": 182.87999, "word": "apple" }, { "confidence": 0.99609375, "end": 183.36, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.8769531, "start": 183.2, "word": "has" }, { "confidence": 0.99902344, "end": 183.51999, "punctuated_word": "done", "speaker": 0, "speaker_confidence": 0.8769531, "start": 183.36, "word": "done" }, { "confidence": 0.99902344, "end": 183.68, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.8769531, "start": 183.51999, "word": "some" }, { "confidence": 1, "end": 184.18, "punctuated_word": "revolutionary", "speaker": 0, "speaker_confidence": 0.8769531, "start": 183.68, "word": "revolutionary" }, { "confidence": 1, "end": 184.56, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 0.8769531, "start": 184.31999, "word": "things" }, { "confidence": 0.99902344, "end": 184.64, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8769531, "start": 184.56, "word": "in" }, { "confidence": 1, "end": 184.8, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8769531, "start": 184.64, "word": "the" }, { "confidence": 0.89501953, "end": 185.12, "punctuated_word": "past,", "speaker": 0, "speaker_confidence": 0.8769531, "start": 184.8, "word": "past" }, { "confidence": 0.99902344, "end": 185.36, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.8769531, "start": 185.12, "word": "like" }, { "confidence": 0.9902344, "end": 185.51999, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8769531, "start": 185.36, "word": "a" }, { "confidence": 1, "end": 185.76, "punctuated_word": "mouse", "speaker": 0, "speaker_confidence": 0.8769531, "start": 185.51999, "word": "mouse" }, { "confidence": 0.98291016, "end": 185.92, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8769531, "start": 185.76, "word": "that" }, { "confidence": 0.99902344, "end": 186.23999, "punctuated_word": "charges", "speaker": 0, "speaker_confidence": 0.8769531, "start": 185.92, "word": "charges" }, { "confidence": 1, "end": 186.4, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.8769531, "start": 186.23999, "word": "from" }, { "confidence": 0.9970703, "end": 186.48, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8769531, "start": 186.4, "word": "the" }, { "confidence": 0.81518555, "end": 186.8, "punctuated_word": "bottom,", "speaker": 0, "speaker_confidence": 0.8769531, "start": 186.48, "word": "bottom" }, { "confidence": 0.99609375, "end": 186.95999, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8769531, "start": 186.8, "word": "and" }, { "confidence": 0.9819336, "end": 187.04, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.51464844, "start": 186.95999, "word": "if" }, { "confidence": 0.9951172, "end": 187.28, "punctuated_word": "these", "speaker": 0, "speaker_confidence": 0.51464844, "start": 187.04, "word": "these" }, { "confidence": 0.77734375, "end": 187.59999, "punctuated_word": "VR", "speaker": 0, "speaker_confidence": 0.51464844, "start": 187.28, "word": "vr" }, { "confidence": 0.94189453, "end": 188, "punctuated_word": "goggles", "speaker": 0, "speaker_confidence": 0.51464844, "start": 187.59999, "word": "goggles" }, { "confidence": 0.9980469, "end": 188.16, "punctuated_word": "take", "speaker": 0, "speaker_confidence": 0.51464844, "start": 188, "word": "take" }, { "confidence": 0.9975586, "end": 188.31999, "punctuated_word": "off,", "speaker": 0, "speaker_confidence": 0.51464844, "start": 188.16, "word": "off" }, { "confidence": 0.9951172, "end": 188.48, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.64941406, "start": 188.31999, "word": "it" }, { "confidence": 0.99902344, "end": 188.64, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.64941406, "start": 188.48, "word": "could" }, { "confidence": 0.9980469, "end": 188.8, "punctuated_word": "lead", "speaker": 0, "speaker_confidence": 0.64941406, "start": 188.64, "word": "lead" }, { "confidence": 0.9980469, "end": 188.95999, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.64941406, "start": 188.8, "word": "to" }, { "confidence": 0.9951172, "end": 189.04, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.64941406, "start": 188.95999, "word": "a" }, { "confidence": 0.9980469, "end": 189.28, "punctuated_word": "whole", "speaker": 0, "speaker_confidence": 0.64941406, "start": 189.04, "word": "whole" }, { "confidence": 1, "end": 189.44, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.64941406, "start": 189.28, "word": "new" }, { "confidence": 0.9980469, "end": 189.59999, "punctuated_word": "round", "speaker": 0, "speaker_confidence": 0.64941406, "start": 189.44, "word": "round" }, { "confidence": 0.9921875, "end": 189.84, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.64941406, "start": 189.59999, "word": "of" }, { "confidence": 0.9980469, "end": 190.34, "punctuated_word": "opportunity", "speaker": 0, "speaker_confidence": 0.64941406, "start": 189.84, "word": "opportunity" }, { "confidence": 0.94189453, "end": 190.64, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.64941406, "start": 190.4, "word": "for" }, { "confidence": 0.86865234, "end": 191.045, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.64941406, "start": 190.64, "word": "app" }, { "confidence": 0.9814453, "end": 191.525, "punctuated_word": "developers.", "speaker": 0, "speaker_confidence": 0.5961914, "start": 191.44499, "word": "developers" }, { "confidence": 0.9995117, "end": 191.925, "punctuated_word": "However,", "speaker": 0, "speaker_confidence": 0.5961914, "start": 191.525, "word": "however" }, { "confidence": 1, "end": 192.08499, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.5961914, "start": 191.925, "word": "i" }, { "confidence": 1, "end": 192.245, "punctuated_word": "think", "speaker": 0, "speaker_confidence": 0.5961914, "start": 192.08499, "word": "think" }, { "confidence": 0.9980469, "end": 192.485, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.5961914, "start": 192.245, "word": "that's" }, { "confidence": 1, "end": 192.985, "punctuated_word": "unlikely.", "speaker": 0, "speaker_confidence": 0.5961914, "start": 192.485, "word": "unlikely" }, { "confidence": 0.9970703, "end": 193.285, "punctuated_word": "Plenty", "speaker": 0, "speaker_confidence": 0.45507812, "start": 193.045, "word": "plenty" }, { "confidence": 0.99902344, "end": 193.44499, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.45507812, "start": 193.285, "word": "of" }, { "confidence": 0.97265625, "end": 193.765, "punctuated_word": "Apple", "speaker": 0, "speaker_confidence": 0.45507812, "start": 193.44499, "word": "apple" }, { "confidence": 0.7133789, "end": 194.005, "punctuated_word": "cult", "speaker": 0, "speaker_confidence": 0.45507812, "start": 193.765, "word": "cult" }, { "confidence": 0.9921875, "end": 194.245, "punctuated_word": "members", "speaker": 0, "speaker_confidence": 0.45507812, "start": 194.005, "word": "members" }, { "confidence": 0.9980469, "end": 194.405, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.45507812, "start": 194.245, "word": "will" }, { "confidence": 0.99902344, "end": 194.645, "punctuated_word": "drink", "speaker": 0, "speaker_confidence": 0.45507812, "start": 194.405, "word": "drink" }, { "confidence": 0.99121094, "end": 194.72499, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.3046875, "start": 194.645, "word": "this" }, { "confidence": 0.97753906, "end": 194.965, "punctuated_word": "Kool", "speaker": 0, "speaker_confidence": 0.3046875, "start": 194.72499, "word": "kool" }, { "confidence": 0.9885254, "end": 195.125, "punctuated_word": "Aid,", "speaker": 0, "speaker_confidence": 0.3046875, "start": 194.965, "word": "aid" }, { "confidence": 1, "end": 195.285, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.3046875, "start": 195.125, "word": "but" }, { "confidence": 0.9980469, "end": 195.36499, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.3046875, "start": 195.285, "word": "i" }, { "confidence": 1, "end": 195.525, "punctuated_word": "don't", "speaker": 0, "speaker_confidence": 0.86376953, "start": 195.36499, "word": "don't" }, { "confidence": 0.9980469, "end": 195.605, "punctuated_word": "think", "speaker": 0, "speaker_confidence": 0.86376953, "start": 195.525, "word": "think" }, { "confidence": 0.9970703, "end": 195.765, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.86376953, "start": 195.605, "word": "the" }, { "confidence": 1, "end": 196.08499, "punctuated_word": "general", "speaker": 0, "speaker_confidence": 0.86376953, "start": 195.765, "word": "general" }, { "confidence": 1, "end": 196.405, "punctuated_word": "public", "speaker": 0, "speaker_confidence": 0.86376953, "start": 196.08499, "word": "public" }, { "confidence": 1, "end": 196.485, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.86376953, "start": 196.405, "word": "is" }, { "confidence": 1, "end": 196.72499, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.86376953, "start": 196.485, "word": "going" }, { "confidence": 0.9970703, "end": 196.805, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.86376953, "start": 196.72499, "word": "to" }, { "confidence": 0.9970703, "end": 197.045, "punctuated_word": "fork", "speaker": 0, "speaker_confidence": 0.86376953, "start": 196.805, "word": "fork" }, { "confidence": 1, "end": 197.285, "punctuated_word": "over", "speaker": 0, "speaker_confidence": 0.86376953, "start": 197.045, "word": "over" }, { "confidence": 0.9679362, "end": 197.785, "punctuated_word": "$35100", "speaker": 0, "speaker_confidence": 0.86376953, "start": 197.285, "word": "$35100" }, { "confidence": 0.9970703, "end": 198.565, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.86376953, "start": 198.485, "word": "to" }, { "confidence": 0.9980469, "end": 198.965, "punctuated_word": "become", "speaker": 0, "speaker_confidence": 0.86376953, "start": 198.565, "word": "become" }, { "confidence": 1, "end": 199.125, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 0.86376953, "start": 198.965, "word": "even" }, { "confidence": 0.99902344, "end": 199.44499, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.86376953, "start": 199.125, "word": "more" }, { "confidence": 1, "end": 199.925, "punctuated_word": "disconnected", "speaker": 0, "speaker_confidence": 0.86376953, "start": 199.44499, "word": "disconnected" }, { "confidence": 0.99902344, "end": 200.19, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.86376953, "start": 199.925, "word": "from" }, { "confidence": 0.9941406, "end": 200.59, "punctuated_word": "reality.", "speaker": 0, "speaker_confidence": 0.86376953, "start": 200.27, "word": "reality" }, { "confidence": 1, "end": 201.07, "punctuated_word": "Ultimately", "speaker": 0, "speaker_confidence": 0.86376953, "start": 200.59, "word": "ultimately" }, { "confidence": 0.76342773, "end": 201.23, "punctuated_word": "though,", "speaker": 0, "speaker_confidence": 0.86376953, "start": 201.07, "word": "though" }, { "confidence": 0.99902344, "end": 201.39, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.86376953, "start": 201.23, "word": "i" }, { "confidence": 0.9980469, "end": 201.47, "punctuated_word": "think", "speaker": 0, "speaker_confidence": 0.86376953, "start": 201.39, "word": "think" }, { "confidence": 0.9951172, "end": 201.71, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.86376953, "start": 201.47, "word": "this" }, { "confidence": 0.99902344, "end": 201.87, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.86376953, "start": 201.71, "word": "will" }, { "confidence": 0.99902344, "end": 202.03, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.86376953, "start": 201.87, "word": "end" }, { "confidence": 0.99902344, "end": 202.19, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.86376953, "start": 202.03, "word": "up" }, { "confidence": 0.9980469, "end": 202.43001, "punctuated_word": "being", "speaker": 0, "speaker_confidence": 0.86376953, "start": 202.19, "word": "being" }, { "confidence": 0.9921875, "end": 202.51001, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.83203125, "start": 202.43001, "word": "a" }, { "confidence": 0.99609375, "end": 202.83, "punctuated_word": "niche", "speaker": 0, "speaker_confidence": 0.83203125, "start": 202.51001, "word": "niche" }, { "confidence": 0.8330078, "end": 203.23, "punctuated_word": "product.", "speaker": 0, "speaker_confidence": 0.83203125, "start": 202.83, "word": "product" }, { "confidence": 0.99609375, "end": 203.39, "punctuated_word": "Very", "speaker": 0, "speaker_confidence": 0.83203125, "start": 203.23, "word": "very" }, { "confidence": 1, "end": 203.63, "punctuated_word": "cool", "speaker": 0, "speaker_confidence": 0.83203125, "start": 203.39, "word": "cool" }, { "confidence": 0.99902344, "end": 203.79001, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.83203125, "start": 203.63, "word": "to" }, { "confidence": 0.99902344, "end": 203.95, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.83203125, "start": 203.79001, "word": "some" }, { "confidence": 0.94384766, "end": 204.43001, "punctuated_word": "people,", "speaker": 0, "speaker_confidence": 0.83203125, "start": 203.95, "word": "people" }, { "confidence": 0.99902344, "end": 204.59, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.83203125, "start": 204.43001, "word": "but" }, { "confidence": 0.99902344, "end": 204.75, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.83203125, "start": 204.59, "word": "not" }, { "confidence": 1, "end": 205.15001, "punctuated_word": "appealing", "speaker": 0, "speaker_confidence": 0.83203125, "start": 204.75, "word": "appealing" }, { "confidence": 0.9970703, "end": 205.31, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.83203125, "start": 205.15001, "word": "to" }, { "confidence": 0.9951172, "end": 205.47, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.83203125, "start": 205.31, "word": "the" }, { "confidence": 0.99902344, "end": 205.79001, "punctuated_word": "average", "speaker": 0, "speaker_confidence": 0.83203125, "start": 205.47, "word": "average" }, { "confidence": 0.83496094, "end": 206.29001, "punctuated_word": "NPC.", "speaker": 0, "speaker_confidence": 0.83203125, "start": 205.79001, "word": "npc" }, { "confidence": 0.9707031, "end": 206.67, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.83203125, "start": 206.43001, "word": "now" }, { "confidence": 0.82177734, "end": 206.91, "punctuated_word": "speaking", "speaker": 0, "speaker_confidence": 0.83203125, "start": 206.67, "word": "speaking" }, { "confidence": 0.8676758, "end": 207.205, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.83203125, "start": 206.91, "word": "of" }, { "confidence": 0.94140625, "end": 207.605, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.83203125, "start": 207.285, "word": "where" }, { "confidence": 0.98095703, "end": 208.085, "punctuated_word": "Microsoft", "speaker": 0, "speaker_confidence": 0.83203125, "start": 207.605, "word": "microsoft" }, { "confidence": 0.99902344, "end": 208.245, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.83203125, "start": 208.085, "word": "just" }, { "confidence": 0.99902344, "end": 208.565, "punctuated_word": "announced", "speaker": 0, "speaker_confidence": 0.83203125, "start": 208.245, "word": "announced" }, { "confidence": 0.9838867, "end": 208.725, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.83203125, "start": 208.565, "word": "a" }, { "confidence": 1, "end": 208.80501, "punctuated_word": "few", "speaker": 0, "speaker_confidence": 0.83203125, "start": 208.725, "word": "few" }, { "confidence": 1, "end": 209.045, "punctuated_word": "weeks", "speaker": 0, "speaker_confidence": 0.83203125, "start": 208.80501, "word": "weeks" }, { "confidence": 1, "end": 209.365, "punctuated_word": "ago", "speaker": 0, "speaker_confidence": 0.83203125, "start": 209.045, "word": "ago" }, { "confidence": 0.98291016, "end": 209.52501, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.83203125, "start": 209.365, "word": "that" }, { "confidence": 0.9975586, "end": 209.685, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.83203125, "start": 209.52501, "word": "it's" }, { "confidence": 0.99316406, "end": 209.845, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.83203125, "start": 209.685, "word": "going" }, { "confidence": 0.99902344, "end": 209.925, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.79003906, "start": 209.845, "word": "to" }, { "confidence": 1, "end": 210.16501, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 0.79003906, "start": 209.925, "word": "start" }, { "confidence": 1, "end": 210.485, "punctuated_word": "producing", "speaker": 0, "speaker_confidence": 0.79003906, "start": 210.16501, "word": "producing" }, { "confidence": 0.9873047, "end": 210.645, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.79003906, "start": 210.485, "word": "its" }, { "confidence": 1, "end": 210.885, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 0.79003906, "start": 210.645, "word": "own" }, { "confidence": 0.90527344, "end": 211.285, "punctuated_word": "chips,", "speaker": 0, "speaker_confidence": 0.79003906, "start": 210.885, "word": "chips" }, { "confidence": 1, "end": 211.525, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.79003906, "start": 211.285, "word": "like" }, { "confidence": 0.9453125, "end": 211.685, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.79003906, "start": 211.525, "word": "the" }, { "confidence": 0.9921875, "end": 212.005, "punctuated_word": "Maya", "speaker": 0, "speaker_confidence": 0.79003906, "start": 211.685, "word": "maya" }, { "confidence": 0.6010742, "end": 212.245, "punctuated_word": "chip", "speaker": 0, "speaker_confidence": 0.79003906, "start": 212.005, "word": "chip" }, { "confidence": 0.9921875, "end": 212.485, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.79003906, "start": 212.245, "word": "for" }, { "confidence": 0.9902344, "end": 212.885, "punctuated_word": "artificial", "speaker": 0, "speaker_confidence": 0.79003906, "start": 212.485, "word": "artificial" }, { "confidence": 0.9970703, "end": 213.385, "punctuated_word": "intelligence", "speaker": 0, "speaker_confidence": 0.79003906, "start": 212.885, "word": "intelligence" }, { "confidence": 0.69091797, "end": 213.765, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.79003906, "start": 213.525, "word": "and" }, { "confidence": 0.99902344, "end": 213.845, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.79003906, "start": 213.765, "word": "the" }, { "confidence": 0.9875488, "end": 214.325, "punctuated_word": "Cobalt", "speaker": 0, "speaker_confidence": 0.79003906, "start": 213.845, "word": "cobalt" }, { "confidence": 0.98950195, "end": 214.825, "punctuated_word": "CPU,", "speaker": 0, "speaker_confidence": 0.79003906, "start": 214.325, "word": "cpu" }, { "confidence": 0.99609375, "end": 215.205, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.79003906, "start": 214.965, "word": "which" }, { "confidence": 0.99316406, "end": 215.365, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.79003906, "start": 215.205, "word": "is" }, { "confidence": 0.9902344, "end": 215.445, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.7392578, "start": 215.365, "word": "an" }, { "confidence": 0.6635742, "end": 215.81, "punctuated_word": "ARM", "speaker": 0, "speaker_confidence": 0.7392578, "start": 215.445, "word": "arm" }, { "confidence": 0.7626953, "end": 216.39, "punctuated_word": "processor", "speaker": 0, "speaker_confidence": 0.7392578, "start": 215.89, "word": "processor" }, { "confidence": 0.9760742, "end": 217.01, "punctuated_word": "designed", "speaker": 0, "speaker_confidence": 0.7392578, "start": 216.69, "word": "designed" }, { "confidence": 1, "end": 217.17, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.7392578, "start": 217.01, "word": "for" }, { "confidence": 0.9873047, "end": 217.48999, "punctuated_word": "general", "speaker": 0, "speaker_confidence": 0.7392578, "start": 217.17, "word": "general" }, { "confidence": 0.9970703, "end": 217.81, "punctuated_word": "purpose", "speaker": 0, "speaker_confidence": 0.7392578, "start": 217.48999, "word": "purpose" }, { "confidence": 0.9941406, "end": 218.05, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.7392578, "start": 217.81, "word": "use" }, { "confidence": 0.9980469, "end": 218.13, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7392578, "start": 218.05, "word": "in" }, { "confidence": 0.99902344, "end": 218.20999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7871094, "start": 218.13, "word": "the" }, { "confidence": 0.94433594, "end": 218.61, "punctuated_word": "cloud.", "speaker": 0, "speaker_confidence": 0.7871094, "start": 218.20999, "word": "cloud" }, { "confidence": 0.9951172, "end": 218.93, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.7871094, "start": 218.61, "word": "and" }, { "confidence": 0.9951172, "end": 219.41, "punctuated_word": "AWS", "speaker": 0, "speaker_confidence": 0.7871094, "start": 218.93, "word": "aws" }, { "confidence": 0.9970703, "end": 219.56999, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7871094, "start": 219.41, "word": "is" }, { "confidence": 1, "end": 219.89, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.7871094, "start": 219.56999, "word": "also" }, { "confidence": 0.99902344, "end": 220.20999, "punctuated_word": "building", "speaker": 0, "speaker_confidence": 0.7871094, "start": 219.89, "word": "building" }, { "confidence": 0.9770508, "end": 220.37, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.7871094, "start": 220.20999, "word": "its" }, { "confidence": 0.99609375, "end": 220.61, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 0.7871094, "start": 220.37, "word": "own" }, { "confidence": 0.7080078, "end": 220.77, "punctuated_word": "ARM", "speaker": 0, "speaker_confidence": 0.7871094, "start": 220.61, "word": "arm" }, { "confidence": 0.9707031, "end": 221.01, "punctuated_word": "based", "speaker": 0, "speaker_confidence": 0.7871094, "start": 220.77, "word": "based" }, { "confidence": 0.95092773, "end": 221.33, "punctuated_word": "chips,", "speaker": 0, "speaker_confidence": 0.7871094, "start": 221.01, "word": "chips" }, { "confidence": 0.99902344, "end": 221.56999, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.72802734, "start": 221.33, "word": "which" }, { "confidence": 0.9970703, "end": 221.73, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.72802734, "start": 221.56999, "word": "are" }, { "confidence": 1, "end": 221.97, "punctuated_word": "cheaper", "speaker": 0, "speaker_confidence": 0.72802734, "start": 221.73, "word": "cheaper" }, { "confidence": 0.9951172, "end": 222.13, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.72802734, "start": 221.97, "word": "and" }, { "confidence": 0.9951172, "end": 222.29, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.72802734, "start": 222.13, "word": "more" }, { "confidence": 0.9980469, "end": 222.61, "punctuated_word": "efficient", "speaker": 0, "speaker_confidence": 0.72802734, "start": 222.29, "word": "efficient" }, { "confidence": 0.97998047, "end": 222.84999, "punctuated_word": "than", "speaker": 0, "speaker_confidence": 0.72802734, "start": 222.61, "word": "than" }, { "confidence": 0.8491211, "end": 223.34999, "punctuated_word": "traditional", "speaker": 0, "speaker_confidence": 0.72802734, "start": 222.84999, "word": "traditional" }, { "confidence": 0.45410156, "end": 223.945, "punctuated_word": "x86", "speaker": 0, "speaker_confidence": 0.72802734, "start": 223.445, "word": "x86" }, { "confidence": 0.7963867, "end": 224.565, "punctuated_word": "chips.", "speaker": 0, "speaker_confidence": 0.72802734, "start": 224.085, "word": "chips" }, { "confidence": 1, "end": 224.80501, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.72802734, "start": 224.565, "word": "now" }, { "confidence": 0.6040039, "end": 224.96501, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.72802734, "start": 224.80501, "word": "as" }, { "confidence": 1, "end": 225.045, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8276367, "start": 224.96501, "word": "of" }, { "confidence": 0.99902344, "end": 225.445, "punctuated_word": "today,", "speaker": 0, "speaker_confidence": 0.8276367, "start": 225.045, "word": "today" }, { "confidence": 0.99902344, "end": 225.845, "punctuated_word": "virtually", "speaker": 0, "speaker_confidence": 0.8276367, "start": 225.445, "word": "virtually" }, { "confidence": 0.9506836, "end": 226.005, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.8276367, "start": 225.845, "word": "all" }, { "confidence": 0.87353516, "end": 226.405, "punctuated_word": "PCs", "speaker": 0, "speaker_confidence": 0.8276367, "start": 226.005, "word": "pcs" }, { "confidence": 0.98095703, "end": 226.565, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8276367, "start": 226.405, "word": "and" }, { "confidence": 0.9921875, "end": 227.045, "punctuated_word": "laptops", "speaker": 0, "speaker_confidence": 0.8276367, "start": 226.565, "word": "laptops" }, { "confidence": 0.99316406, "end": 227.285, "punctuated_word": "running", "speaker": 0, "speaker_confidence": 0.8276367, "start": 227.045, "word": "running" }, { "confidence": 0.8305664, "end": 227.785, "punctuated_word": "Windows", "speaker": 0, "speaker_confidence": 0.8276367, "start": 227.285, "word": "windows" }, { "confidence": 0.93603516, "end": 228.085, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.8276367, "start": 227.925, "word": "run" }, { "confidence": 0.8535156, "end": 228.585, "punctuated_word": "CPUs", "speaker": 0, "speaker_confidence": 0.8276367, "start": 228.085, "word": "cpus" }, { "confidence": 0.9951172, "end": 228.96501, "punctuated_word": "based", "speaker": 0, "speaker_confidence": 0.8276367, "start": 228.645, "word": "based" }, { "confidence": 0.9941406, "end": 229.125, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8276367, "start": 228.96501, "word": "on" }, { "confidence": 0.98535156, "end": 229.205, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8276367, "start": 229.125, "word": "the" }, { "confidence": 0.71606445, "end": 229.705, "punctuated_word": "x86", "speaker": 0, "speaker_confidence": 0.8276367, "start": 229.205, "word": "x86" }, { "confidence": 0.66186523, "end": 230.345, "punctuated_word": "architecture,", "speaker": 0, "speaker_confidence": 0.8276367, "start": 229.845, "word": "architecture" }, { "confidence": 0.9980469, "end": 230.78, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.8276367, "start": 230.54001, "word": "but" }, { "confidence": 0.99902344, "end": 230.86, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8276367, "start": 230.78, "word": "that" }, { "confidence": 0.9970703, "end": 230.94, "punctuated_word": "may", "speaker": 0, "speaker_confidence": 0.8276367, "start": 230.86, "word": "may" }, { "confidence": 0.99902344, "end": 231.1, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.7988281, "start": 230.94, "word": "not" }, { "confidence": 0.99902344, "end": 231.22, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.7988281, "start": 231.1, "word": "be" }, { "confidence": 0.9941406, "end": 231.34001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7988281, "start": 231.22, "word": "the" }, { "confidence": 1, "end": 231.58, "punctuated_word": "case", "speaker": 0, "speaker_confidence": 0.7988281, "start": 231.34001, "word": "case" }, { "confidence": 0.99902344, "end": 231.66, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7988281, "start": 231.58, "word": "in" }, { "confidence": 0.9951172, "end": 231.82, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7988281, "start": 231.66, "word": "the" }, { "confidence": 0.74902344, "end": 232.3, "punctuated_word": "future,", "speaker": 0, "speaker_confidence": 0.7988281, "start": 231.82, "word": "future" }, { "confidence": 1, "end": 232.70001, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.7988281, "start": 232.3, "word": "because" }, { "confidence": 0.91748047, "end": 232.94, "punctuated_word": "thanks", "speaker": 0, "speaker_confidence": 0.7988281, "start": 232.70001, "word": "thanks" }, { "confidence": 0.99902344, "end": 233.18001, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7988281, "start": 232.94, "word": "to" }, { "confidence": 0.6425781, "end": 233.58, "punctuated_word": "Project", "speaker": 0, "speaker_confidence": 0.7988281, "start": 233.18001, "word": "project" }, { "confidence": 0.9003906, "end": 234.08, "punctuated_word": "Volterra,", "speaker": 0, "speaker_confidence": 0.7988281, "start": 233.58, "word": "volterra" }, { "confidence": 0.9980469, "end": 234.38, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.7988281, "start": 234.14, "word": "it's" }, { "confidence": 0.9951172, "end": 234.54001, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 0.7988281, "start": 234.38, "word": "now" }, { "confidence": 0.99902344, "end": 234.94, "punctuated_word": "possible", "speaker": 0, "speaker_confidence": 0.7988281, "start": 234.54001, "word": "possible" }, { "confidence": 0.9980469, "end": 235.02, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7988281, "start": 234.94, "word": "to" }, { "confidence": 0.94970703, "end": 235.26001, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.7988281, "start": 235.02, "word": "run" }, { "confidence": 0.96435547, "end": 235.58, "punctuated_word": "Windows", "speaker": 0, "speaker_confidence": 0.7988281, "start": 235.26001, "word": "windows" }, { "confidence": 0.98291016, "end": 235.82, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.7988281, "start": 235.58, "word": "on" }, { "confidence": 0.7709961, "end": 236.06, "punctuated_word": "ARM", "speaker": 0, "speaker_confidence": 0.7988281, "start": 235.82, "word": "arm" }, { "confidence": 0.8417969, "end": 236.54001, "punctuated_word": "chips.", "speaker": 0, "speaker_confidence": 0.7988281, "start": 236.06, "word": "chips" }, { "confidence": 0.9868164, "end": 236.86, "punctuated_word": "Hell,", "speaker": 0, "speaker_confidence": 0.7988281, "start": 236.54001, "word": "hell" }, { "confidence": 0.9941406, "end": 237.1, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 0.7988281, "start": 236.86, "word": "even" }, { "confidence": 0.9790039, "end": 237.42, "punctuated_word": "Intel", "speaker": 0, "speaker_confidence": 0.7988281, "start": 237.1, "word": "intel" }, { "confidence": 0.7446289, "end": 237.5, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8964844, "start": 237.42, "word": "is" }, { "confidence": 0.9394531, "end": 237.66, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.8964844, "start": 237.5, "word": "going" }, { "confidence": 0.8408203, "end": 237.995, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8964844, "start": 237.66, "word": "to" }, { "confidence": 0.91259766, "end": 238.735, "punctuated_word": "manufacturing", "speaker": 0, "speaker_confidence": 0.8964844, "start": 238.235, "word": "manufacturing" }, { "confidence": 0.5444336, "end": 239.03499, "punctuated_word": "ARM", "speaker": 0, "speaker_confidence": 0.8964844, "start": 238.875, "word": "arm" }, { "confidence": 0.92871094, "end": 239.435, "punctuated_word": "chips.", "speaker": 0, "speaker_confidence": 0.8964844, "start": 239.03499, "word": "chips" }, { "confidence": 0.9980469, "end": 239.67499, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.8964844, "start": 239.435, "word": "the" }, { "confidence": 1, "end": 239.915, "punctuated_word": "single", "speaker": 0, "speaker_confidence": 0.8964844, "start": 239.67499, "word": "single" }, { "confidence": 0.99902344, "end": 240.075, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 0.8964844, "start": 239.915, "word": "most" }, { "confidence": 0.99902344, "end": 240.47499, "punctuated_word": "important", "speaker": 0, "speaker_confidence": 0.8964844, "start": 240.075, "word": "important" }, { "confidence": 0.99902344, "end": 240.715, "punctuated_word": "thing", "speaker": 0, "speaker_confidence": 0.8964844, "start": 240.47499, "word": "thing" }, { "confidence": 0.9970703, "end": 241.03499, "punctuated_word": "anyone", "speaker": 0, "speaker_confidence": 0.8964844, "start": 240.715, "word": "anyone" }, { "confidence": 1, "end": 241.19499, "punctuated_word": "does", "speaker": 0, "speaker_confidence": 0.8964844, "start": 241.03499, "word": "does" }, { "confidence": 1, "end": 241.355, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.8964844, "start": 241.19499, "word": "with" }, { "confidence": 0.6879883, "end": 241.515, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8964844, "start": 241.355, "word": "the" }, { "confidence": 0.99902344, "end": 241.915, "punctuated_word": "CPU", "speaker": 0, "speaker_confidence": 0.8964844, "start": 241.515, "word": "cpu" }, { "confidence": 0.71777344, "end": 242.155, "punctuated_word": "though", "speaker": 0, "speaker_confidence": 0.8964844, "start": 241.915, "word": "though" }, { "confidence": 0.7089844, "end": 242.315, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8964844, "start": 242.155, "word": "is" }, { "confidence": 0.9980469, "end": 242.635, "punctuated_word": "play", "speaker": 0, "speaker_confidence": 0.8964844, "start": 242.315, "word": "play" }, { "confidence": 0.98828125, "end": 242.875, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.8964844, "start": 242.635, "word": "video" }, { "confidence": 0.82788086, "end": 243.275, "punctuated_word": "games.", "speaker": 0, "speaker_confidence": 0.8964844, "start": 242.875, "word": "games" }, { "confidence": 0.99902344, "end": 243.515, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.8964844, "start": 243.275, "word": "and" }, { "confidence": 0.97998047, "end": 243.67499, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.8964844, "start": 243.515, "word": "just" }, { "confidence": 0.91381836, "end": 244.075, "punctuated_word": "yesterday,", "speaker": 0, "speaker_confidence": 0.8964844, "start": 243.67499, "word": "yesterday" }, { "confidence": 1, "end": 244.235, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.8964844, "start": 244.075, "word": "we" }, { "confidence": 0.99902344, "end": 244.39499, "punctuated_word": "got", "speaker": 0, "speaker_confidence": 0.8964844, "start": 244.235, "word": "got" }, { "confidence": 0.9970703, "end": 244.47499, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.8964844, "start": 244.39499, "word": "our" }, { "confidence": 0.8989258, "end": 244.715, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 0.8964844, "start": 244.47499, "word": "first" }, { "confidence": 0.9970703, "end": 244.955, "punctuated_word": "look", "speaker": 0, "speaker_confidence": 0.8964844, "start": 244.715, "word": "look" }, { "confidence": 0.9941406, "end": 245.11499, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.8964844, "start": 244.955, "word": "at" }, { "confidence": 0.9951172, "end": 245.275, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8964844, "start": 245.11499, "word": "the" }, { "confidence": 0.95410156, "end": 245.775, "punctuated_word": "GTA", "speaker": 0, "speaker_confidence": 0.8964844, "start": 245.275, "word": "gta" }, { "confidence": 0.80908203, "end": 246.075, "punctuated_word": "6", "speaker": 0, "speaker_confidence": 0.8964844, "start": 245.83499, "word": "6" }, { "confidence": 0.9748535, "end": 246.555, "punctuated_word": "trailer.", "speaker": 0, "speaker_confidence": 0.8964844, "start": 246.075, "word": "trailer" }, { "confidence": 0.9970703, "end": 246.715, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.8964844, "start": 246.555, "word": "this" }, { "confidence": 0.80615234, "end": 246.875, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.8964844, "start": 246.715, "word": "will" }, { "confidence": 0.99609375, "end": 247.19499, "punctuated_word": "likely", "speaker": 0, "speaker_confidence": 0.8964844, "start": 246.875, "word": "likely" }, { "confidence": 0.9819336, "end": 247.275, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.8964844, "start": 247.19499, "word": "be" }, { "confidence": 0.96777344, "end": 247.355, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8964844, "start": 247.275, "word": "the" }, { "confidence": 0.9658203, "end": 247.65, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 0.8964844, "start": 247.355, "word": "most" }, { "confidence": 0.99658203, "end": 247.89, "punctuated_word": "hyped", "speaker": 0, "speaker_confidence": 0.8964844, "start": 247.65, "word": "hyped" }, { "confidence": 0.9980469, "end": 248.04999, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.8964844, "start": 247.89, "word": "up" }, { "confidence": 0.9970703, "end": 248.20999, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.8964844, "start": 248.04999, "word": "video" }, { "confidence": 0.9980469, "end": 248.45, "punctuated_word": "game", "speaker": 0, "speaker_confidence": 0.8964844, "start": 248.20999, "word": "game" }, { "confidence": 0.9970703, "end": 248.53, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.796875, "start": 248.45, "word": "in" }, { "confidence": 0.98828125, "end": 248.61, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.796875, "start": 248.53, "word": "the" }, { "confidence": 1, "end": 248.93, "punctuated_word": "history", "speaker": 0, "speaker_confidence": 0.796875, "start": 248.61, "word": "history" }, { "confidence": 0.99902344, "end": 249.01, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.796875, "start": 248.93, "word": "of" }, { "confidence": 0.99902344, "end": 249.09, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.796875, "start": 249.01, "word": "the" }, { "confidence": 0.8894043, "end": 249.56999, "punctuated_word": "world,", "speaker": 0, "speaker_confidence": 0.796875, "start": 249.09, "word": "world" }, { "confidence": 1, "end": 249.73, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.796875, "start": 249.56999, "word": "and" }, { "confidence": 0.9921875, "end": 249.97, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.796875, "start": 249.73, "word": "it's" }, { "confidence": 0.99316406, "end": 250.20999, "punctuated_word": "built", "speaker": 0, "speaker_confidence": 0.796875, "start": 249.97, "word": "built" }, { "confidence": 0.99902344, "end": 250.45, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.796875, "start": 250.20999, "word": "using" }, { "confidence": 0.99576825, "end": 250.95, "punctuated_word": "Rockstar's", "speaker": 0, "speaker_confidence": 0.796875, "start": 250.45, "word": "rockstar's" }, { "confidence": 0.99609375, "end": 251.32999, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 0.796875, "start": 251.01, "word": "own" }, { "confidence": 0.9941406, "end": 251.82999, "punctuated_word": "proprietary", "speaker": 0, "speaker_confidence": 0.796875, "start": 251.32999, "word": "proprietary" }, { "confidence": 0.75097656, "end": 252.12999, "punctuated_word": "RAGE", "speaker": 0, "speaker_confidence": 0.796875, "start": 251.89, "word": "rage" }, { "confidence": 0.95410156, "end": 252.37, "punctuated_word": "game", "speaker": 0, "speaker_confidence": 0.796875, "start": 252.12999, "word": "game" }, { "confidence": 0.7734375, "end": 252.76999, "punctuated_word": "engine,", "speaker": 0, "speaker_confidence": 0.796875, "start": 252.37, "word": "engine" }, { "confidence": 1, "end": 252.93, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.796875, "start": 252.76999, "word": "and" }, { "confidence": 1, "end": 253.09, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.796875, "start": 252.93, "word": "that" }, { "confidence": 1, "end": 253.32999, "punctuated_word": "means", "speaker": 0, "speaker_confidence": 0.796875, "start": 253.09, "word": "means" }, { "confidence": 0.99121094, "end": 253.48999, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.796875, "start": 253.32999, "word": "you" }, { "confidence": 0.9995117, "end": 253.65, "punctuated_word": "can't", "speaker": 0, "speaker_confidence": 0.796875, "start": 253.48999, "word": "can't" }, { "confidence": 1, "end": 253.81, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.796875, "start": 253.65, "word": "use" }, { "confidence": 0.9975586, "end": 254.12999, "punctuated_word": "it.", "speaker": 0, "speaker_confidence": 0.796875, "start": 253.81, "word": "it" }, { "confidence": 1, "end": 254.29, "punctuated_word": "What", "speaker": 0, "speaker_confidence": 0.796875, "start": 254.12999, "word": "what" }, { "confidence": 1, "end": 254.45, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.796875, "start": 254.29, "word": "you" }, { "confidence": 0.99902344, "end": 254.68999, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.796875, "start": 254.45, "word": "can" }, { "confidence": 1, "end": 254.93, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.796875, "start": 254.68999, "word": "use" }, { "confidence": 0.9941406, "end": 255.17, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.796875, "start": 254.93, "word": "is" }, { "confidence": 0.986084, "end": 255.56999, "punctuated_word": "Unity.", "speaker": 0, "speaker_confidence": 0.796875, "start": 255.17, "word": "unity" }, { "confidence": 0.9995117, "end": 255.985, "punctuated_word": "However,", "speaker": 0, "speaker_confidence": 0.796875, "start": 255.56999, "word": "however" }, { "confidence": 0.8144531, "end": 256.385, "punctuated_word": "Unity", "speaker": 0, "speaker_confidence": 0.796875, "start": 255.985, "word": "unity" }, { "confidence": 0.875, "end": 256.465, "punctuated_word": "made", "speaker": 0, "speaker_confidence": 0.96435547, "start": 256.385, "word": "made" }, { "confidence": 0.9921875, "end": 256.625, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.96435547, "start": 256.465, "word": "a" }, { "confidence": 0.9921875, "end": 256.945, "punctuated_word": "massive", "speaker": 0, "speaker_confidence": 0.96435547, "start": 256.625, "word": "massive" }, { "confidence": 0.96313477, "end": 257.425, "punctuated_word": "blunder", "speaker": 0, "speaker_confidence": 0.96435547, "start": 256.945, "word": "blunder" }, { "confidence": 0.99121094, "end": 257.505, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.96435547, "start": 257.425, "word": "in" }, { "confidence": 0.89282227, "end": 258.005, "punctuated_word": "2023", "speaker": 0, "speaker_confidence": 0.96435547, "start": 257.505, "word": "2023" }, { "confidence": 0.9223633, "end": 258.465, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.96435547, "start": 258.305, "word": "by" }, { "confidence": 0.9970703, "end": 258.705, "punctuated_word": "rolling", "speaker": 0, "speaker_confidence": 0.96435547, "start": 258.465, "word": "rolling" }, { "confidence": 0.9838867, "end": 258.945, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.96435547, "start": 258.705, "word": "out" }, { "confidence": 0.96435547, "end": 259.105, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.96435547, "start": 258.945, "word": "new" }, { "confidence": 0.99609375, "end": 259.425, "punctuated_word": "pricing", "speaker": 0, "speaker_confidence": 0.96435547, "start": 259.105, "word": "pricing" }, { "confidence": 0.9970703, "end": 259.585, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.96435547, "start": 259.425, "word": "that" }, { "confidence": 0.9892578, "end": 259.745, "punctuated_word": "would", "speaker": 0, "speaker_confidence": 0.96435547, "start": 259.585, "word": "would" }, { "confidence": 0.9951172, "end": 260.065, "punctuated_word": "charge", "speaker": 0, "speaker_confidence": 0.96435547, "start": 259.745, "word": "charge" }, { "confidence": 0.99609375, "end": 260.565, "punctuated_word": "developers", "speaker": 0, "speaker_confidence": 0.96435547, "start": 260.065, "word": "developers" }, { "confidence": 0.9970703, "end": 260.865, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 0.96435547, "start": 260.625, "word": "every" }, { "confidence": 0.99902344, "end": 261.105, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.96435547, "start": 260.865, "word": "time" }, { "confidence": 0.984375, "end": 261.265, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.96435547, "start": 261.105, "word": "a" }, { "confidence": 1, "end": 261.505, "punctuated_word": "game", "speaker": 0, "speaker_confidence": 0.96435547, "start": 261.265, "word": "game" }, { "confidence": 0.9921875, "end": 261.665, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.96435547, "start": 261.505, "word": "is" }, { "confidence": 0.99853516, "end": 262.165, "punctuated_word": "downloaded.", "speaker": 0, "speaker_confidence": 0.96435547, "start": 261.665, "word": "downloaded" }, { "confidence": 0.9941406, "end": 262.625, "punctuated_word": "Unity", "speaker": 0, "speaker_confidence": 0.96435547, "start": 262.225, "word": "unity" }, { "confidence": 0.9277344, "end": 263.025, "punctuated_word": "developers", "speaker": 0, "speaker_confidence": 0.96435547, "start": 262.625, "word": "developers" }, { "confidence": 0.93880206, "end": 263.525, "punctuated_word": "revolted,", "speaker": 0, "speaker_confidence": 0.96435547, "start": 263.025, "word": "revolted" }, { "confidence": 0.99902344, "end": 263.745, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.96435547, "start": 263.585, "word": "and" }, { "confidence": 0.9921875, "end": 263.905, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.96435547, "start": 263.745, "word": "it" }, { "confidence": 0.99902344, "end": 264.145, "punctuated_word": "got", "speaker": 0, "speaker_confidence": 0.96435547, "start": 263.905, "word": "got" }, { "confidence": 0.9970703, "end": 264.225, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.96435547, "start": 264.145, "word": "so" }, { "confidence": 0.99902344, "end": 264.465, "punctuated_word": "bad", "speaker": 0, "speaker_confidence": 0.96435547, "start": 264.225, "word": "bad" }, { "confidence": 0.98535156, "end": 264.545, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.96435547, "start": 264.465, "word": "that" }, { "confidence": 0.99316406, "end": 264.705, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.96435547, "start": 264.545, "word": "they" }, { "confidence": 0.9873047, "end": 264.865, "punctuated_word": "had", "speaker": 0, "speaker_confidence": 0.96435547, "start": 264.705, "word": "had" }, { "confidence": 0.96972656, "end": 264.945, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.96435547, "start": 264.865, "word": "to" }, { "confidence": 0.99121094, "end": 265.22, "punctuated_word": "roll", "speaker": 0, "speaker_confidence": 0.96435547, "start": 264.945, "word": "roll" }, { "confidence": 0.71191406, "end": 265.38, "punctuated_word": "back", "speaker": 0, "speaker_confidence": 0.96435547, "start": 265.22, "word": "back" }, { "confidence": 0.8588867, "end": 265.54, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.96435547, "start": 265.38, "word": "the" }, { "confidence": 0.9970703, "end": 265.94, "punctuated_word": "pricing", "speaker": 0, "speaker_confidence": 0.96435547, "start": 265.54, "word": "pricing" }, { "confidence": 0.8432617, "end": 266.18, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.96435547, "start": 265.94, "word": "and" }, { "confidence": 0.78271484, "end": 266.68, "punctuated_word": "apologize.", "speaker": 0, "speaker_confidence": 0.96435547, "start": 266.18, "word": "apologize" }, { "confidence": 0.99853516, "end": 267.22, "punctuated_word": "That's", "speaker": 0, "speaker_confidence": 0, "start": 266.98, "word": "that's" }, { "confidence": 0.95410156, "end": 267.7, "punctuated_word": "right.", "speaker": 0, "speaker_confidence": 0, "start": 267.22, "word": "right" }, { "confidence": 0.9869385, "end": 268.2, "punctuated_word": "Apologize.", "speaker": 0, "speaker_confidence": 0, "start": 267.7, "word": "apologize" }, { "confidence": 0.99853516, "end": 269.22, "punctuated_word": "Meanwhile,", "speaker": 0, "speaker_confidence": 0.6557617, "start": 268.74, "word": "meanwhile" }, { "confidence": 0.6542969, "end": 269.54, "punctuated_word": "Unreal", "speaker": 0, "speaker_confidence": 0.6557617, "start": 269.22, "word": "unreal" }, { "confidence": 0.8989258, "end": 269.86002, "punctuated_word": "Engine", "speaker": 0, "speaker_confidence": 0.6557617, "start": 269.54, "word": "engine" }, { "confidence": 0.7480469, "end": 270.18, "punctuated_word": "released", "speaker": 0, "speaker_confidence": 0.6557617, "start": 269.86002, "word": "released" }, { "confidence": 0.97802734, "end": 270.5, "punctuated_word": "version", "speaker": 0, "speaker_confidence": 0.6557617, "start": 270.18, "word": "version" }, { "confidence": 0.8976237, "end": 271, "punctuated_word": "5.3", "speaker": 0, "speaker_confidence": 0.6557617, "start": 270.5, "word": "5.3" }, { "confidence": 0.7792969, "end": 271.54, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.75683594, "start": 271.3, "word": "with" }, { "confidence": 0.9970703, "end": 271.7, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.75683594, "start": 271.54, "word": "some" }, { "confidence": 0.99609375, "end": 272.02, "punctuated_word": "crazy", "speaker": 0, "speaker_confidence": 0.75683594, "start": 271.7, "word": "crazy" }, { "confidence": 0.9819336, "end": 272.18, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.75683594, "start": 272.02, "word": "new" }, { "confidence": 0.9980469, "end": 272.66, "punctuated_word": "features", "speaker": 0, "speaker_confidence": 0.75683594, "start": 272.18, "word": "features" }, { "confidence": 0.58447266, "end": 272.82, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.75683594, "start": 272.66, "word": "like" }, { "confidence": 0.9350586, "end": 273.06, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.75683594, "start": 272.82, "word": "a" }, { "confidence": 0.9980469, "end": 273.56, "punctuated_word": "procedural", "speaker": 0, "speaker_confidence": 0.75683594, "start": 273.06, "word": "procedural" }, { "confidence": 0.9716797, "end": 273.94, "punctuated_word": "content", "speaker": 0, "speaker_confidence": 0.75683594, "start": 273.62, "word": "content" }, { "confidence": 0.8569336, "end": 274.44, "punctuated_word": "generation", "speaker": 0, "speaker_confidence": 0.75683594, "start": 273.94, "word": "generation" }, { "confidence": 0.48901367, "end": 274.755, "punctuated_word": "frame", "speaker": 0, "speaker_confidence": 0.75683594, "start": 274.5, "word": "frame" }, { "confidence": 0.6899414, "end": 274.915, "punctuated_word": "war", "speaker": 0, "speaker_confidence": 0.75683594, "start": 274.835, "word": "war" }, { "confidence": 0.5395508, "end": 275.155, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6308594, "start": 274.915, "word": "and" }, { "confidence": 0.91015625, "end": 275.23502, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.6308594, "start": 275.155, "word": "its" }, { "confidence": 0.9921875, "end": 275.73502, "punctuated_word": "substrate", "speaker": 0, "speaker_confidence": 0.6308594, "start": 275.23502, "word": "substrate" }, { "confidence": 0.98095703, "end": 276.195, "punctuated_word": "material", "speaker": 0, "speaker_confidence": 0.6308594, "start": 275.795, "word": "material" }, { "confidence": 0.9970703, "end": 276.595, "punctuated_word": "system", "speaker": 0, "speaker_confidence": 0.6308594, "start": 276.195, "word": "system" }, { "confidence": 0.99316406, "end": 276.67502, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.6308594, "start": 276.595, "word": "that" }, { "confidence": 0.9980469, "end": 276.915, "punctuated_word": "gets", "speaker": 0, "speaker_confidence": 0.91015625, "start": 276.67502, "word": "gets" }, { "confidence": 0.99902344, "end": 277.23502, "punctuated_word": "almost", "speaker": 0, "speaker_confidence": 0.91015625, "start": 276.915, "word": "almost" }, { "confidence": 0.99902344, "end": 277.73502, "punctuated_word": "indistinguishable", "speaker": 0, "speaker_confidence": 0.91015625, "start": 277.23502, "word": "indistinguishable" }, { "confidence": 1, "end": 278.195, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.91015625, "start": 278.035, "word": "from" }, { "confidence": 0.99902344, "end": 278.695, "punctuated_word": "reality.", "speaker": 0, "speaker_confidence": 0.91015625, "start": 278.195, "word": "reality" }, { "confidence": 0.8432617, "end": 278.995, "punctuated_word": "Now,", "speaker": 0, "speaker_confidence": 0.91015625, "start": 278.755, "word": "now" }, { "confidence": 0.85546875, "end": 279.315, "punctuated_word": "Unreal", "speaker": 0, "speaker_confidence": 0.91015625, "start": 278.995, "word": "unreal" }, { "confidence": 0.9951172, "end": 279.555, "punctuated_word": "Engine's", "speaker": 0, "speaker_confidence": 0.91015625, "start": 279.315, "word": "engine's" }, { "confidence": 0.9902344, "end": 279.875, "punctuated_word": "parent", "speaker": 0, "speaker_confidence": 0.91015625, "start": 279.555, "word": "parent" }, { "confidence": 0.9152832, "end": 280.275, "punctuated_word": "company,", "speaker": 0, "speaker_confidence": 0.91015625, "start": 279.875, "word": "company" }, { "confidence": 0.9951172, "end": 280.515, "punctuated_word": "Epic", "speaker": 0, "speaker_confidence": 0.91015625, "start": 280.275, "word": "epic" }, { "confidence": 0.9875488, "end": 280.995, "punctuated_word": "Games,", "speaker": 0, "speaker_confidence": 0.91015625, "start": 280.515, "word": "games" }, { "confidence": 0.99609375, "end": 281.23502, "punctuated_word": "sued", "speaker": 0, "speaker_confidence": 0.91015625, "start": 280.995, "word": "sued" }, { "confidence": 0.9980469, "end": 281.475, "punctuated_word": "Apple", "speaker": 0, "speaker_confidence": 0.91015625, "start": 281.23502, "word": "apple" }, { "confidence": 0.9941406, "end": 281.635, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.91015625, "start": 281.475, "word": "a" }, { "confidence": 0.99902344, "end": 281.795, "punctuated_word": "few", "speaker": 0, "speaker_confidence": 0.91015625, "start": 281.635, "word": "few" }, { "confidence": 0.99902344, "end": 281.95502, "punctuated_word": "years", "speaker": 0, "speaker_confidence": 0.91015625, "start": 281.795, "word": "years" }, { "confidence": 0.99902344, "end": 282.195, "punctuated_word": "ago", "speaker": 0, "speaker_confidence": 0.91015625, "start": 281.95502, "word": "ago" }, { "confidence": 0.56689453, "end": 282.435, "punctuated_word": "saying", "speaker": 0, "speaker_confidence": 0.91015625, "start": 282.195, "word": "saying" }, { "confidence": 0.98999023, "end": 282.595, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.91015625, "start": 282.435, "word": "it's" }, { "confidence": 0.9902344, "end": 282.67502, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.91015625, "start": 282.595, "word": "a" }, { "confidence": 0.99902344, "end": 283.17502, "punctuated_word": "monopoly", "speaker": 0, "speaker_confidence": 0.91015625, "start": 282.67502, "word": "monopoly" }, { "confidence": 0.9526367, "end": 283.475, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.91015625, "start": 283.23502, "word": "because" }, { "confidence": 0.9863281, "end": 283.555, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.91015625, "start": 283.475, "word": "it" }, { "confidence": 0.99121094, "end": 283.795, "punctuated_word": "takes", "speaker": 0, "speaker_confidence": 0.91015625, "start": 283.555, "word": "takes" }, { "confidence": 0.8925781, "end": 283.95502, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.91015625, "start": 283.795, "word": "a" }, { "confidence": 0.86572266, "end": 284.44, "punctuated_word": "30", "speaker": 0, "speaker_confidence": 0.91015625, "start": 283.95502, "word": "30" }, { "confidence": 0.8618164, "end": 284.76, "punctuated_word": "cut", "speaker": 0, "speaker_confidence": 0.91015625, "start": 284.52, "word": "cut" }, { "confidence": 0.99902344, "end": 284.84, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.91015625, "start": 284.76, "word": "on" }, { "confidence": 1, "end": 284.92, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.91015625, "start": 284.84, "word": "the" }, { "confidence": 0.51416016, "end": 285.16, "punctuated_word": "App", "speaker": 0, "speaker_confidence": 0.91015625, "start": 284.92, "word": "app" }, { "confidence": 0.9838867, "end": 285.48, "punctuated_word": "Store", "speaker": 0, "speaker_confidence": 0.91015625, "start": 285.16, "word": "store" }, { "confidence": 0.7084961, "end": 285.72, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.59521484, "start": 285.48, "word": "and" }, { "confidence": 0.9995117, "end": 285.88, "punctuated_word": "doesn't", "speaker": 0, "speaker_confidence": 0.59521484, "start": 285.72, "word": "doesn't" }, { "confidence": 1, "end": 286.2, "punctuated_word": "allow", "speaker": 0, "speaker_confidence": 0.59521484, "start": 285.88, "word": "allow" }, { "confidence": 0.9951172, "end": 286.68, "punctuated_word": "alternative", "speaker": 0, "speaker_confidence": 0.59521484, "start": 286.2, "word": "alternative" }, { "confidence": 0.9980469, "end": 286.92, "punctuated_word": "payment", "speaker": 0, "speaker_confidence": 0.59521484, "start": 286.68, "word": "payment" }, { "confidence": 0.9477539, "end": 287.42, "punctuated_word": "methods,", "speaker": 0, "speaker_confidence": 0.59521484, "start": 286.92, "word": "methods" }, { "confidence": 0.99902344, "end": 287.64, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.40576172, "start": 287.48, "word": "but" }, { "confidence": 0.9970703, "end": 287.8, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.40576172, "start": 287.64, "word": "it" }, { "confidence": 0.9980469, "end": 288.04, "punctuated_word": "lost", "speaker": 0, "speaker_confidence": 0.40576172, "start": 287.8, "word": "lost" }, { "confidence": 0.99902344, "end": 288.12, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.40576172, "start": 288.04, "word": "that" }, { "confidence": 0.77441406, "end": 288.44, "punctuated_word": "suit,", "speaker": 0, "speaker_confidence": 0.40576172, "start": 288.12, "word": "suit" }, { "confidence": 1, "end": 288.6, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.43115234, "start": 288.44, "word": "and" }, { "confidence": 0.99902344, "end": 288.68, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.43115234, "start": 288.6, "word": "that" }, { "confidence": 0.99902344, "end": 288.92, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.43115234, "start": 288.68, "word": "was" }, { "confidence": 1, "end": 289.08002, "punctuated_word": "held", "speaker": 0, "speaker_confidence": 0.43115234, "start": 288.92, "word": "held" }, { "confidence": 0.9970703, "end": 289.24, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.43115234, "start": 289.08002, "word": "up" }, { "confidence": 0.9951172, "end": 289.32, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.6147461, "start": 289.24, "word": "on" }, { "confidence": 0.9970703, "end": 289.72, "punctuated_word": "appeal", "speaker": 0, "speaker_confidence": 0.6147461, "start": 289.32, "word": "appeal" }, { "confidence": 0.9970703, "end": 289.88, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.6147461, "start": 289.72, "word": "in" }, { "confidence": 0.9765625, "end": 290.38, "punctuated_word": "2023.", "speaker": 0, "speaker_confidence": 0.6147461, "start": 289.88, "word": "2023" }, { "confidence": 0.99121094, "end": 290.92, "punctuated_word": "Epic", "speaker": 0, "speaker_confidence": 0.6147461, "start": 290.6, "word": "epic" }, { "confidence": 0.9838867, "end": 291.16, "punctuated_word": "Games", "speaker": 0, "speaker_confidence": 0.6147461, "start": 290.92, "word": "games" }, { "confidence": 0.9951172, "end": 291.24, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7578125, "start": 291.16, "word": "is" }, { "confidence": 0.9941406, "end": 291.48, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.7578125, "start": 291.24, "word": "not" }, { "confidence": 0.99121094, "end": 291.72, "punctuated_word": "giving", "speaker": 0, "speaker_confidence": 0.7578125, "start": 291.48, "word": "giving" }, { "confidence": 0.98828125, "end": 291.88, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.7578125, "start": 291.72, "word": "up" }, { "confidence": 0.66552734, "end": 292.04, "punctuated_word": "though", "speaker": 0, "speaker_confidence": 0.7578125, "start": 291.88, "word": "though" }, { "confidence": 0.7158203, "end": 292.475, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.7578125, "start": 292.04, "word": "with" }, { "confidence": 0.23840332, "end": 292.795, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.7578125, "start": 292.555, "word": "more" }, { "confidence": 0.99609375, "end": 293.11502, "punctuated_word": "ongoing", "speaker": 0, "speaker_confidence": 0.7578125, "start": 292.795, "word": "ongoing" }, { "confidence": 0.9970703, "end": 293.435, "punctuated_word": "lawsuit", "speaker": 0, "speaker_confidence": 0.7578125, "start": 293.11502, "word": "lawsuit" }, { "confidence": 1, "end": 293.67502, "punctuated_word": "against", "speaker": 0, "speaker_confidence": 0.7578125, "start": 293.435, "word": "against" }, { "confidence": 0.9812012, "end": 294.155, "punctuated_word": "Google.", "speaker": 0, "speaker_confidence": 0.7578125, "start": 293.67502, "word": "google" }, { "confidence": 0.99902344, "end": 294.315, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.7578125, "start": 294.155, "word": "it" }, { "confidence": 0.9970703, "end": 294.475, "punctuated_word": "seems", "speaker": 0, "speaker_confidence": 0.7578125, "start": 294.315, "word": "seems" }, { "confidence": 0.9980469, "end": 294.635, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.7578125, "start": 294.475, "word": "like" }, { "confidence": 0.9970703, "end": 294.715, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.68847656, "start": 294.635, "word": "a" }, { "confidence": 0.99902344, "end": 294.95502, "punctuated_word": "long", "speaker": 0, "speaker_confidence": 0.68847656, "start": 294.715, "word": "long" }, { "confidence": 0.9355469, "end": 295.195, "punctuated_word": "shot,", "speaker": 0, "speaker_confidence": 0.68847656, "start": 294.95502, "word": "shot" }, { "confidence": 1, "end": 295.355, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.68847656, "start": 295.195, "word": "but" }, { "confidence": 0.99609375, "end": 295.515, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.68847656, "start": 295.355, "word": "if" }, { "confidence": 0.9970703, "end": 295.67502, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.68847656, "start": 295.515, "word": "they" }, { "confidence": 0.9980469, "end": 295.995, "punctuated_word": "somehow", "speaker": 0, "speaker_confidence": 0.68847656, "start": 295.67502, "word": "somehow" }, { "confidence": 0.98950195, "end": 296.315, "punctuated_word": "win,", "speaker": 0, "speaker_confidence": 0.68847656, "start": 295.995, "word": "win" }, { "confidence": 0.9980469, "end": 296.39502, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.99121094, "start": 296.315, "word": "it" }, { "confidence": 0.9980469, "end": 296.555, "punctuated_word": "would", "speaker": 0, "speaker_confidence": 0.99121094, "start": 296.39502, "word": "would" }, { "confidence": 0.9980469, "end": 296.635, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.99121094, "start": 296.555, "word": "be" }, { "confidence": 0.99902344, "end": 296.875, "punctuated_word": "huge", "speaker": 0, "speaker_confidence": 0.99121094, "start": 296.635, "word": "huge" }, { "confidence": 0.99902344, "end": 297.035, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.99121094, "start": 296.875, "word": "for" }, { "confidence": 0.8442383, "end": 297.355, "punctuated_word": "indie", "speaker": 0, "speaker_confidence": 0.99121094, "start": 297.035, "word": "indie" }, { "confidence": 0.99902344, "end": 297.855, "punctuated_word": "developers", "speaker": 0, "speaker_confidence": 0.99121094, "start": 297.355, "word": "developers" }, { "confidence": 0.88671875, "end": 298.155, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.99121094, "start": 297.915, "word": "because" }, { "confidence": 1, "end": 298.23502, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.99121094, "start": 298.155, "word": "they" }, { "confidence": 0.96972656, "end": 298.475, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.99121094, "start": 298.23502, "word": "could" }, { "confidence": 0.9970703, "end": 298.795, "punctuated_word": "avoid", "speaker": 0, "speaker_confidence": 0.99121094, "start": 298.475, "word": "avoid" }, { "confidence": 1, "end": 298.95502, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.99121094, "start": 298.795, "word": "that" }, { "confidence": 0.9848633, "end": 299.45502, "punctuated_word": "30%", "speaker": 0, "speaker_confidence": 0.99121094, "start": 298.95502, "word": "30%" }, { "confidence": 0.99902344, "end": 299.67502, "punctuated_word": "cut", "speaker": 0, "speaker_confidence": 0.99121094, "start": 299.515, "word": "cut" }, { "confidence": 1, "end": 299.835, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.99121094, "start": 299.67502, "word": "to" }, { "confidence": 0.99902344, "end": 299.915, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.99121094, "start": 299.835, "word": "the" }, { "confidence": 0.9980469, "end": 300.155, "punctuated_word": "big", "speaker": 0, "speaker_confidence": 0.99121094, "start": 299.915, "word": "big" }, { "confidence": 0.99316406, "end": 300.315, "punctuated_word": "guy", "speaker": 0, "speaker_confidence": 0.99121094, "start": 300.155, "word": "guy" }, { "confidence": 0.9970703, "end": 300.475, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.99121094, "start": 300.315, "word": "by" }, { "confidence": 1, "end": 300.795, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.99121094, "start": 300.475, "word": "using" }, { "confidence": 1, "end": 300.95502, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 0.99121094, "start": 300.795, "word": "their" }, { "confidence": 0.99902344, "end": 301.195, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 0.99121094, "start": 300.95502, "word": "own" }, { "confidence": 1, "end": 301.515, "punctuated_word": "payment", "speaker": 0, "speaker_confidence": 0.99121094, "start": 301.195, "word": "payment" }, { "confidence": 0.9616699, "end": 302.015, "punctuated_word": "processor.", "speaker": 0, "speaker_confidence": 0.99121094, "start": 301.515, "word": "processor" }, { "confidence": 0.99902344, "end": 302.315, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.99121094, "start": 302.075, "word": "but" }, { "confidence": 0.9267578, "end": 302.46, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 0.99121094, "start": 302.315, "word": "now" }, { "confidence": 0.697876, "end": 302.69998, "punctuated_word": "Let's", "speaker": 0, "speaker_confidence": 0.99121094, "start": 302.46, "word": "let's" }, { "confidence": 0.99609375, "end": 302.86, "punctuated_word": "talk", "speaker": 0, "speaker_confidence": 0.99121094, "start": 302.69998, "word": "talk" }, { "confidence": 0.9951172, "end": 303.1, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.99121094, "start": 302.86, "word": "about" }, { "confidence": 0.9921875, "end": 303.34, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.99121094, "start": 303.1, "word": "web" }, { "confidence": 0.9926758, "end": 303.81998, "punctuated_word": "development.", "speaker": 0, "speaker_confidence": 0.99121094, "start": 303.34, "word": "development" }, { "confidence": 0.9086914, "end": 304.3, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.99121094, "start": 303.81998, "word": "javascript" }, { "confidence": 0.9741211, "end": 304.53998, "punctuated_word": "land", "speaker": 0, "speaker_confidence": 0.99121094, "start": 304.3, "word": "land" }, { "confidence": 0.99902344, "end": 304.78, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.99121094, "start": 304.53998, "word": "is" }, { "confidence": 0.99316406, "end": 304.86, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.99121094, "start": 304.78, "word": "as" }, { "confidence": 0.99902344, "end": 305.18, "punctuated_word": "crazy", "speaker": 0, "speaker_confidence": 0.99121094, "start": 304.86, "word": "crazy" }, { "confidence": 1, "end": 305.34, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.99121094, "start": 305.18, "word": "as" }, { "confidence": 0.91845703, "end": 305.66, "punctuated_word": "ever,", "speaker": 0, "speaker_confidence": 0.99121094, "start": 305.34, "word": "ever" }, { "confidence": 1, "end": 305.81998, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.99121094, "start": 305.66, "word": "but" }, { "confidence": 0.97314453, "end": 305.9, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.99121094, "start": 305.81998, "word": "i" }, { "confidence": 1, "end": 306.06, "punctuated_word": "think", "speaker": 0, "speaker_confidence": 0.99121094, "start": 305.9, "word": "think" }, { "confidence": 0.9482422, "end": 306.22, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.99121094, "start": 306.06, "word": "in" }, { "confidence": 0.9086914, "end": 306.72, "punctuated_word": "2024,", "speaker": 0, "speaker_confidence": 0.99121094, "start": 306.22, "word": "2024" }, { "confidence": 1, "end": 307.34, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.99121094, "start": 307.1, "word": "people" }, { "confidence": 0.9951172, "end": 307.5, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.99121094, "start": 307.34, "word": "will" }, { "confidence": 0.9970703, "end": 307.74, "punctuated_word": "stop", "speaker": 0, "speaker_confidence": 0.99121094, "start": 307.5, "word": "stop" }, { "confidence": 1, "end": 308.06, "punctuated_word": "building", "speaker": 0, "speaker_confidence": 0.99121094, "start": 307.74, "word": "building" }, { "confidence": 0.9921875, "end": 308.22, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.99121094, "start": 308.06, "word": "new" }, { "confidence": 0.9873047, "end": 308.69998, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.99121094, "start": 308.22, "word": "javascript" }, { "confidence": 0.94140625, "end": 309.19998, "punctuated_word": "frameworks", "speaker": 0, "speaker_confidence": 0.99121094, "start": 308.69998, "word": "frameworks" }, { "confidence": 0.7944336, "end": 309.5, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.99121094, "start": 309.25998, "word": "because" }, { "confidence": 0.8691406, "end": 309.9, "punctuated_word": "nowadays", "speaker": 0, "speaker_confidence": 0.99121094, "start": 309.5, "word": "nowadays" }, { "confidence": 0.5883789, "end": 310.06, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 0.99121094, "start": 309.9, "word": "they" }, { "confidence": 0.99609375, "end": 310.22, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.99121094, "start": 310.06, "word": "all" }, { "confidence": 0.9970703, "end": 310.38, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.99121094, "start": 310.22, "word": "have" }, { "confidence": 0.98095703, "end": 310.46, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.82714844, "start": 310.38, "word": "a" }, { "confidence": 0.99902344, "end": 310.94, "punctuated_word": "similar", "speaker": 0, "speaker_confidence": 0.82714844, "start": 310.46, "word": "similar" }, { "confidence": 0.9970703, "end": 311.34, "punctuated_word": "developer", "speaker": 0, "speaker_confidence": 0.82714844, "start": 310.94, "word": "developer" }, { "confidence": 0.99902344, "end": 311.84, "punctuated_word": "experience", "speaker": 0, "speaker_confidence": 0.82714844, "start": 311.34, "word": "experience" }, { "confidence": 0.98291016, "end": 312.265, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.82714844, "start": 311.9, "word": "with" }, { "confidence": 0.9951172, "end": 312.58502, "punctuated_word": "signal", "speaker": 0, "speaker_confidence": 0.82714844, "start": 312.265, "word": "signal" }, { "confidence": 0.99609375, "end": 312.74503, "punctuated_word": "based", "speaker": 0, "speaker_confidence": 0.82714844, "start": 312.58502, "word": "based" }, { "confidence": 0.83186847, "end": 313.24503, "punctuated_word": "reactivity,", "speaker": 0, "speaker_confidence": 0.82714844, "start": 312.74503, "word": "reactivity" }, { "confidence": 1, "end": 313.625, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.82714844, "start": 313.46503, "word": "and" }, { "confidence": 1, "end": 313.70502, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.82714844, "start": 313.625, "word": "the" }, { "confidence": 0.9970703, "end": 313.945, "punctuated_word": "race", "speaker": 0, "speaker_confidence": 0.82714844, "start": 313.70502, "word": "race" }, { "confidence": 0.99902344, "end": 314.105, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.82714844, "start": 313.945, "word": "will" }, { "confidence": 0.99902344, "end": 314.42502, "punctuated_word": "shift", "speaker": 0, "speaker_confidence": 0.82714844, "start": 314.105, "word": "shift" }, { "confidence": 0.99902344, "end": 314.58502, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.82714844, "start": 314.42502, "word": "to" }, { "confidence": 0.99902344, "end": 314.825, "punctuated_word": "who", "speaker": 0, "speaker_confidence": 0.82714844, "start": 314.58502, "word": "who" }, { "confidence": 0.99902344, "end": 314.90503, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.82714844, "start": 314.825, "word": "can" }, { "confidence": 1, "end": 315.225, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.82714844, "start": 314.90503, "word": "build" }, { "confidence": 0.99902344, "end": 315.30502, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.82714844, "start": 315.225, "word": "the" }, { "confidence": 0.99902344, "end": 315.545, "punctuated_word": "best", "speaker": 0, "speaker_confidence": 0.82714844, "start": 315.30502, "word": "best" }, { "confidence": 0.99902344, "end": 315.86502, "punctuated_word": "tools", "speaker": 0, "speaker_confidence": 0.82714844, "start": 315.545, "word": "tools" }, { "confidence": 1, "end": 316.105, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.82714844, "start": 315.86502, "word": "for" }, { "confidence": 0.99902344, "end": 316.58502, "punctuated_word": "existing", "speaker": 0, "speaker_confidence": 0.82714844, "start": 316.105, "word": "existing" }, { "confidence": 0.99609375, "end": 317.065, "punctuated_word": "frameworks.", "speaker": 0, "speaker_confidence": 0.82714844, "start": 316.58502, "word": "frameworks" }, { "confidence": 0.99853516, "end": 317.30502, "punctuated_word": "We're", "speaker": 0, "speaker_confidence": 0.82714844, "start": 317.065, "word": "we're" }, { "confidence": 0.99902344, "end": 317.545, "punctuated_word": "seeing", "speaker": 0, "speaker_confidence": 0.82714844, "start": 317.30502, "word": "seeing" }, { "confidence": 1, "end": 317.785, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.82714844, "start": 317.545, "word": "more" }, { "confidence": 0.9951172, "end": 318.105, "punctuated_word": "visual", "speaker": 0, "speaker_confidence": 0.82714844, "start": 317.785, "word": "visual" }, { "confidence": 0.99902344, "end": 318.505, "punctuated_word": "editors", "speaker": 0, "speaker_confidence": 0.82714844, "start": 318.105, "word": "editors" }, { "confidence": 0.78027344, "end": 318.74503, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.82714844, "start": 318.505, "word": "and" }, { "confidence": 0.741333, "end": 319.225, "punctuated_word": "IDEs", "speaker": 0, "speaker_confidence": 0.82714844, "start": 318.74503, "word": "ides" }, { "confidence": 0.9980469, "end": 319.46503, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.82714844, "start": 319.225, "word": "for" }, { "confidence": 0.9941406, "end": 319.86502, "punctuated_word": "frameworks", "speaker": 0, "speaker_confidence": 0.82714844, "start": 319.46503, "word": "frameworks" }, { "confidence": 0.9404297, "end": 320.21, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.82714844, "start": 319.86502, "word": "like" }, { "confidence": 0.5839844, "end": 320.28998, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.82714844, "start": 320.21, "word": "the" }, { "confidence": 0.7191162, "end": 320.44998, "punctuated_word": "act,", "speaker": 0, "speaker_confidence": 0.82714844, "start": 320.28998, "word": "act" }, { "confidence": 0.9980469, "end": 320.61, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.41552734, "start": 320.44998, "word": "where" }, { "confidence": 0.99902344, "end": 320.69, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.41552734, "start": 320.61, "word": "you" }, { "confidence": 0.9951172, "end": 320.77, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.41552734, "start": 320.69, "word": "can" }, { "confidence": 0.9980469, "end": 321.16998, "punctuated_word": "drag", "speaker": 0, "speaker_confidence": 0.41552734, "start": 320.77, "word": "drag" }, { "confidence": 0.9970703, "end": 321.25, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.70410156, "start": 321.16998, "word": "and" }, { "confidence": 1, "end": 321.56998, "punctuated_word": "drop", "speaker": 0, "speaker_confidence": 0.70410156, "start": 321.25, "word": "drop" }, { "confidence": 0.9970703, "end": 321.97, "punctuated_word": "components", "speaker": 0, "speaker_confidence": 0.70410156, "start": 321.56998, "word": "components" }, { "confidence": 0.984375, "end": 322.28998, "punctuated_word": "instead", "speaker": 0, "speaker_confidence": 0.70410156, "start": 321.97, "word": "instead" }, { "confidence": 0.99902344, "end": 322.37, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.70410156, "start": 322.28998, "word": "of" }, { "confidence": 0.98095703, "end": 322.69, "punctuated_word": "coding", "speaker": 0, "speaker_confidence": 0.70410156, "start": 322.37, "word": "coding" }, { "confidence": 0.9951172, "end": 322.85, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.70410156, "start": 322.69, "word": "them" }, { "confidence": 0.9802246, "end": 323.25, "punctuated_word": "manually.", "speaker": 0, "speaker_confidence": 0.70410156, "start": 322.85, "word": "manually" }, { "confidence": 0.97509766, "end": 323.41, "punctuated_word": "Then", "speaker": 0, "speaker_confidence": 0.8623047, "start": 323.25, "word": "then" }, { "confidence": 0.984375, "end": 323.49, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.8623047, "start": 323.41, "word": "you" }, { "confidence": 0.9970703, "end": 323.65, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.8623047, "start": 323.49, "word": "have" }, { "confidence": 0.9951172, "end": 324.05, "punctuated_word": "frameworks", "speaker": 0, "speaker_confidence": 0.8623047, "start": 323.65, "word": "frameworks" }, { "confidence": 0.96435547, "end": 324.28998, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.8623047, "start": 324.05, "word": "like" }, { "confidence": 0.98844403, "end": 324.69, "punctuated_word": "Nuxt,", "speaker": 0, "speaker_confidence": 0.8623047, "start": 324.28998, "word": "nuxt" }, { "confidence": 1, "end": 324.85, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.8623047, "start": 324.69, "word": "which" }, { "confidence": 0.99316406, "end": 325.09, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.8623047, "start": 324.85, "word": "have" }, { "confidence": 0.9970703, "end": 325.25, "punctuated_word": "built", "speaker": 0, "speaker_confidence": 0.8623047, "start": 325.09, "word": "built" }, { "confidence": 0.9941406, "end": 325.49, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8623047, "start": 325.25, "word": "in" }, { "confidence": 0.9472656, "end": 325.65, "punctuated_word": "dev", "speaker": 0, "speaker_confidence": 0.8623047, "start": 325.49, "word": "dev" }, { "confidence": 0.9980469, "end": 325.97, "punctuated_word": "tools", "speaker": 0, "speaker_confidence": 0.8623047, "start": 325.65, "word": "tools" }, { "confidence": 1, "end": 326.05, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8623047, "start": 325.97, "word": "to" }, { "confidence": 1, "end": 326.21, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.8623047, "start": 326.05, "word": "make" }, { "confidence": 0.9980469, "end": 326.44998, "punctuated_word": "life", "speaker": 0, "speaker_confidence": 0.8623047, "start": 326.21, "word": "life" }, { "confidence": 0.7624512, "end": 326.93, "punctuated_word": "easier,", "speaker": 0, "speaker_confidence": 0.8623047, "start": 326.44998, "word": "easier" }, { "confidence": 0.9980469, "end": 327.16998, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.8623047, "start": 326.93, "word": "but" }, { "confidence": 0.9819336, "end": 327.435, "punctuated_word": "pretty", "speaker": 0, "speaker_confidence": 0.8623047, "start": 327.16998, "word": "pretty" }, { "confidence": 0.6796875, "end": 327.675, "punctuated_word": "soon,", "speaker": 0, "speaker_confidence": 0.8623047, "start": 327.51498, "word": "soon" }, { "confidence": 0.99902344, "end": 327.915, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.8623047, "start": 327.675, "word": "we" }, { "confidence": 1, "end": 328.155, "punctuated_word": "should", "speaker": 0, "speaker_confidence": 0.8623047, "start": 327.915, "word": "should" }, { "confidence": 0.99902344, "end": 328.395, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.8623047, "start": 328.155, "word": "have" }, { "confidence": 0.98828125, "end": 328.635, "punctuated_word": "AI", "speaker": 0, "speaker_confidence": 0.8623047, "start": 328.395, "word": "ai" }, { "confidence": 0.99609375, "end": 328.955, "punctuated_word": "writing", "speaker": 0, "speaker_confidence": 0.8623047, "start": 328.635, "word": "writing" }, { "confidence": 0.99902344, "end": 329.195, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 0.8623047, "start": 328.955, "word": "most" }, { "confidence": 0.9980469, "end": 329.275, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8623047, "start": 329.195, "word": "of" }, { "confidence": 0.99902344, "end": 329.355, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.81347656, "start": 329.275, "word": "our" }, { "confidence": 0.96875, "end": 329.675, "punctuated_word": "code.", "speaker": 0, "speaker_confidence": 0.81347656, "start": 329.355, "word": "code" }, { "confidence": 0.46875, "end": 329.915, "punctuated_word": "There", "speaker": 0, "speaker_confidence": 0.81347656, "start": 329.675, "word": "there" }, { "confidence": 0.93603516, "end": 330.075, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.81347656, "start": 329.915, "word": "are" }, { "confidence": 0.99902344, "end": 330.315, "punctuated_word": "tools", "speaker": 0, "speaker_confidence": 0.81347656, "start": 330.075, "word": "tools" }, { "confidence": 0.9667969, "end": 330.555, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.81347656, "start": 330.315, "word": "like" }, { "confidence": 0.7084961, "end": 330.875, "punctuated_word": "Visual", "speaker": 0, "speaker_confidence": 0.81347656, "start": 330.555, "word": "visual" }, { "confidence": 0.81901044, "end": 331.375, "punctuated_word": "Copilot,", "speaker": 0, "speaker_confidence": 0.81347656, "start": 330.875, "word": "copilot" }, { "confidence": 0.99902344, "end": 331.675, "punctuated_word": "where", "speaker": 0, "speaker_confidence": 0.81347656, "start": 331.435, "word": "where" }, { "confidence": 0.9980469, "end": 331.755, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.81347656, "start": 331.675, "word": "you" }, { "confidence": 0.99609375, "end": 331.915, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.81347656, "start": 331.755, "word": "can" }, { "confidence": 0.9980469, "end": 332.075, "punctuated_word": "take", "speaker": 0, "speaker_confidence": 0.81347656, "start": 331.915, "word": "take" }, { "confidence": 0.9970703, "end": 332.235, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.81347656, "start": 332.075, "word": "a" }, { "confidence": 0.9970703, "end": 332.475, "punctuated_word": "design", "speaker": 0, "speaker_confidence": 0.81347656, "start": 332.235, "word": "design" }, { "confidence": 0.88964844, "end": 332.635, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.81347656, "start": 332.475, "word": "in" }, { "confidence": 0.90250653, "end": 333.035, "punctuated_word": "Figma,", "speaker": 0, "speaker_confidence": 0.81347656, "start": 332.635, "word": "figma" }, { "confidence": 1, "end": 333.275, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.81347656, "start": 333.035, "word": "and" }, { "confidence": 0.9658203, "end": 333.355, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.6972656, "start": 333.275, "word": "it" }, { "confidence": 0.99609375, "end": 333.51498, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.6972656, "start": 333.355, "word": "will" }, { "confidence": 0.9970703, "end": 334.01498, "punctuated_word": "automatically", "speaker": 0, "speaker_confidence": 0.6972656, "start": 333.51498, "word": "automatically" }, { "confidence": 0.99121094, "end": 334.315, "punctuated_word": "write", "speaker": 0, "speaker_confidence": 0.6972656, "start": 334.155, "word": "write" }, { "confidence": 0.9970703, "end": 334.475, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6972656, "start": 334.315, "word": "the" }, { "confidence": 0.9951172, "end": 334.955, "punctuated_word": "framework", "speaker": 0, "speaker_confidence": 0.6972656, "start": 334.475, "word": "framework" }, { "confidence": 0.99902344, "end": 335.355, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.6972656, "start": 334.955, "word": "code" }, { "confidence": 0.96240234, "end": 335.675, "punctuated_word": "along", "speaker": 0, "speaker_confidence": 0.6972656, "start": 335.355, "word": "along" }, { "confidence": 0.9980469, "end": 335.835, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.6972656, "start": 335.675, "word": "with" }, { "confidence": 0.7167969, "end": 336.315, "punctuated_word": "tailwind", "speaker": 0, "speaker_confidence": 0.6972656, "start": 335.835, "word": "tailwind" }, { "confidence": 0.9604492, "end": 336.64, "punctuated_word": "styles.", "speaker": 0, "speaker_confidence": 0.6972656, "start": 336.315, "word": "styles" }, { "confidence": 0.55371094, "end": 336.96002, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.6972656, "start": 336.72, "word": "in" }, { "confidence": 1, "end": 337.04, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6972656, "start": 336.96002, "word": "the" }, { "confidence": 1, "end": 337.12003, "punctuated_word": "near", "speaker": 0, "speaker_confidence": 0.5991211, "start": 337.04, "word": "near" }, { "confidence": 0.9995117, "end": 337.52002, "punctuated_word": "future,", "speaker": 0, "speaker_confidence": 0.5991211, "start": 337.12003, "word": "future" }, { "confidence": 1, "end": 337.68002, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.5991211, "start": 337.52002, "word": "i" }, { "confidence": 1, "end": 337.84003, "punctuated_word": "think", "speaker": 0, "speaker_confidence": 0.5991211, "start": 337.68002, "word": "think" }, { "confidence": 0.9951172, "end": 338.16, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 0.5991211, "start": 337.84003, "word": "every" }, { "confidence": 0.88671875, "end": 338.64, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.5991211, "start": 338.16, "word": "javascript" }, { "confidence": 0.9921875, "end": 339.04, "punctuated_word": "framework", "speaker": 0, "speaker_confidence": 0.5991211, "start": 338.64, "word": "framework" }, { "confidence": 0.99609375, "end": 339.2, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.87353516, "start": 339.04, "word": "will" }, { "confidence": 1, "end": 339.36002, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.87353516, "start": 339.2, "word": "have" }, { "confidence": 0.95166016, "end": 339.52002, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.87353516, "start": 339.36002, "word": "its" }, { "confidence": 0.99609375, "end": 339.68002, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 0.87353516, "start": 339.52002, "word": "own" }, { "confidence": 0.9970703, "end": 340.08002, "punctuated_word": "specialized", "speaker": 0, "speaker_confidence": 0.87353516, "start": 339.68002, "word": "specialized" }, { "confidence": 0.99560547, "end": 340.58002, "punctuated_word": "tooling", "speaker": 0, "speaker_confidence": 0.87353516, "start": 340.08002, "word": "tooling" }, { "confidence": 0.6953125, "end": 340.88, "punctuated_word": "along", "speaker": 0, "speaker_confidence": 0.87353516, "start": 340.64, "word": "along" }, { "confidence": 0.99121094, "end": 341.12003, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.87353516, "start": 340.88, "word": "with" }, { "confidence": 0.98828125, "end": 341.2, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.87353516, "start": 341.12003, "word": "its" }, { "confidence": 0.99609375, "end": 341.44, "punctuated_word": "own", "speaker": 0, "speaker_confidence": 0.87353516, "start": 341.2, "word": "own" }, { "confidence": 0.96972656, "end": 341.84003, "punctuated_word": "specially", "speaker": 0, "speaker_confidence": 0.87353516, "start": 341.44, "word": "specially" }, { "confidence": 0.9921875, "end": 342.16, "punctuated_word": "tuned", "speaker": 0, "speaker_confidence": 0.87353516, "start": 341.84003, "word": "tuned" }, { "confidence": 0.9921875, "end": 342.64, "punctuated_word": "AI", "speaker": 0, "speaker_confidence": 0.87353516, "start": 342.16, "word": "ai" }, { "confidence": 0.98291016, "end": 342.80002, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.87353516, "start": 342.64, "word": "for" }, { "confidence": 0.99902344, "end": 343.12003, "punctuated_word": "writing", "speaker": 0, "speaker_confidence": 0.87353516, "start": 342.80002, "word": "writing" }, { "confidence": 0.9980469, "end": 343.52002, "punctuated_word": "useful", "speaker": 0, "speaker_confidence": 0.87353516, "start": 343.12003, "word": "useful" }, { "confidence": 0.73779297, "end": 343.92, "punctuated_word": "accurate", "speaker": 0, "speaker_confidence": 0.87353516, "start": 343.52002, "word": "accurate" }, { "confidence": 0.9794922, "end": 344.32, "punctuated_word": "code.", "speaker": 0, "speaker_confidence": 0.87353516, "start": 343.92, "word": "code" }, { "confidence": 0.9970703, "end": 344.72, "punctuated_word": "Whichever", "speaker": 0, "speaker_confidence": 0.87353516, "start": 344.32, "word": "whichever" }, { "confidence": 0.99902344, "end": 345.04, "punctuated_word": "framework", "speaker": 0, "speaker_confidence": 0.87353516, "start": 344.72, "word": "framework" }, { "confidence": 0.9921875, "end": 345.28003, "punctuated_word": "does", "speaker": 0, "speaker_confidence": 0.87353516, "start": 345.04, "word": "does" }, { "confidence": 0.99121094, "end": 345.44, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.87353516, "start": 345.28003, "word": "this" }, { "confidence": 0.9873047, "end": 345.52002, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.25878906, "start": 345.44, "word": "the" }, { "confidence": 0.9951172, "end": 345.76, "punctuated_word": "best", "speaker": 0, "speaker_confidence": 0.25878906, "start": 345.52002, "word": "best" }, { "confidence": 0.59765625, "end": 345.905, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.25878906, "start": 345.76, "word": "will" }, { "confidence": 0.7919922, "end": 346.065, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.25878906, "start": 345.905, "word": "will" }, { "confidence": 0.97998047, "end": 346.145, "punctuated_word": "win", "speaker": 0, "speaker_confidence": 0.25878906, "start": 346.065, "word": "win" }, { "confidence": 0.9951172, "end": 346.19833, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.25878906, "start": 346.145, "word": "the" }, { "confidence": 0.98095703, "end": 346.25165, "punctuated_word": "web", "speaker": 0, "speaker_confidence": 0.25878906, "start": 346.19833, "word": "web" }, { "confidence": 0.9873047, "end": 346.305, "punctuated_word": "development", "speaker": 0, "speaker_confidence": 0.65234375, "start": 346.25165, "word": "development" }, { "confidence": 0.9921875, "end": 346.805, "punctuated_word": "war", "speaker": 0, "speaker_confidence": 0.65234375, "start": 346.305, "word": "war" }, { "confidence": 0.9980469, "end": 347.185, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.65234375, "start": 347.105, "word": "for" }, { "confidence": 0.9970703, "end": 347.345, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.65234375, "start": 347.185, "word": "the" }, { "confidence": 1, "end": 347.505, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.65234375, "start": 347.345, "word": "next" }, { "confidence": 0.96435547, "end": 347.745, "punctuated_word": "10", "speaker": 0, "speaker_confidence": 0.65234375, "start": 347.505, "word": "10" }, { "confidence": 0.92993164, "end": 348.065, "punctuated_word": "years.", "speaker": 0, "speaker_confidence": 0.65234375, "start": 347.745, "word": "years" }, { "confidence": 0.9970703, "end": 348.145, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.46191406, "start": 348.065, "word": "and" }, { "confidence": 0.99316406, "end": 348.305, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.46191406, "start": 348.145, "word": "i" }, { "confidence": 1, "end": 348.465, "punctuated_word": "think", "speaker": 0, "speaker_confidence": 0.46191406, "start": 348.305, "word": "think" }, { "confidence": 0.9902344, "end": 348.545, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.46191406, "start": 348.465, "word": "there" }, { "confidence": 0.71191406, "end": 348.625, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.46191406, "start": 348.545, "word": "will" }, { "confidence": 0.9980469, "end": 348.785, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.46191406, "start": 348.625, "word": "be" }, { "confidence": 0.9980469, "end": 348.865, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.47558594, "start": 348.785, "word": "a" }, { "confidence": 1, "end": 349.025, "punctuated_word": "lot", "speaker": 0, "speaker_confidence": 0.47558594, "start": 348.865, "word": "lot" }, { "confidence": 0.9951172, "end": 349.105, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.47558594, "start": 349.025, "word": "of" }, { "confidence": 0.99902344, "end": 349.605, "punctuated_word": "opportunity", "speaker": 0, "speaker_confidence": 0.47558594, "start": 349.105, "word": "opportunity" }, { "confidence": 0.9970703, "end": 349.825, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.47558594, "start": 349.665, "word": "on" }, { "confidence": 0.9970703, "end": 349.905, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9663086, "start": 349.825, "word": "the" }, { "confidence": 0.83740234, "end": 350.145, "punctuated_word": "web,", "speaker": 0, "speaker_confidence": 0.9663086, "start": 349.905, "word": "web" }, { "confidence": 0.9970703, "end": 350.385, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9663086, "start": 350.145, "word": "in" }, { "confidence": 0.99902344, "end": 350.625, "punctuated_word": "part", "speaker": 0, "speaker_confidence": 0.9663086, "start": 350.385, "word": "part" }, { "confidence": 0.7397461, "end": 350.865, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.9663086, "start": 350.625, "word": "because" }, { "confidence": 0.9970703, "end": 351.025, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9663086, "start": 350.865, "word": "of" }, { "confidence": 0.99902344, "end": 351.345, "punctuated_word": "trends", "speaker": 0, "speaker_confidence": 0.9663086, "start": 351.025, "word": "trends" }, { "confidence": 0.8198242, "end": 351.585, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9663086, "start": 351.345, "word": "in" }, { "confidence": 0.9980469, "end": 351.905, "punctuated_word": "mobile", "speaker": 0, "speaker_confidence": 0.9663086, "start": 351.585, "word": "mobile" }, { "confidence": 0.99658203, "end": 352.385, "punctuated_word": "development.", "speaker": 0, "speaker_confidence": 0.9663086, "start": 351.905, "word": "development" }, { "confidence": 0.97998047, "end": 352.545, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.9663086, "start": 352.385, "word": "this" }, { "confidence": 0.9941406, "end": 352.92, "punctuated_word": "trend", "speaker": 0, "speaker_confidence": 0.9663086, "start": 352.545, "word": "trend" }, { "confidence": 0.59033203, "end": 353.08002, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.9663086, "start": 353, "word": "been" }, { "confidence": 0.99609375, "end": 353.40002, "punctuated_word": "ongoing", "speaker": 0, "speaker_confidence": 0.9663086, "start": 353.08002, "word": "ongoing" }, { "confidence": 0.99902344, "end": 353.56003, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.9663086, "start": 353.40002, "word": "for" }, { "confidence": 0.99902344, "end": 353.80002, "punctuated_word": "many", "speaker": 0, "speaker_confidence": 0.9663086, "start": 353.56003, "word": "many" }, { "confidence": 0.88671875, "end": 354.2, "punctuated_word": "years,", "speaker": 0, "speaker_confidence": 0.9663086, "start": 353.80002, "word": "years" }, { "confidence": 0.99902344, "end": 354.44, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.9663086, "start": 354.2, "word": "but" }, { "confidence": 1, "end": 354.76, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.9663086, "start": 354.44, "word": "people" }, { "confidence": 0.9970703, "end": 355, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.9663086, "start": 354.76, "word": "just" }, { "confidence": 1, "end": 355.24002, "punctuated_word": "don't", "speaker": 0, "speaker_confidence": 0.9663086, "start": 355, "word": "don't" }, { "confidence": 0.8120117, "end": 355.48, "punctuated_word": "wanna", "speaker": 0, "speaker_confidence": 0.9663086, "start": 355.24002, "word": "wanna" }, { "confidence": 0.9970703, "end": 355.88, "punctuated_word": "download", "speaker": 0, "speaker_confidence": 0.9663086, "start": 355.48, "word": "download" }, { "confidence": 0.99902344, "end": 356.2, "punctuated_word": "mobile", "speaker": 0, "speaker_confidence": 0.9663086, "start": 355.88, "word": "mobile" }, { "confidence": 0.99902344, "end": 356.52002, "punctuated_word": "apps", "speaker": 0, "speaker_confidence": 0.9663086, "start": 356.2, "word": "apps" }, { "confidence": 0.99853516, "end": 356.92, "punctuated_word": "anymore.", "speaker": 0, "speaker_confidence": 0.9663086, "start": 356.52002, "word": "anymore" }, { "confidence": 0.9995117, "end": 357.08002, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.9663086, "start": 356.92, "word": "it's" }, { "confidence": 0.99902344, "end": 357.24002, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.9663086, "start": 357.08002, "word": "not" }, { "confidence": 0.9941406, "end": 357.40002, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.9663086, "start": 357.24002, "word": "like" }, { "confidence": 0.9892578, "end": 357.56003, "punctuated_word": "10", "speaker": 0, "speaker_confidence": 0.9663086, "start": 357.40002, "word": "10" }, { "confidence": 1, "end": 357.72, "punctuated_word": "years", "speaker": 0, "speaker_confidence": 0.9663086, "start": 357.56003, "word": "years" }, { "confidence": 0.99902344, "end": 357.96002, "punctuated_word": "ago", "speaker": 0, "speaker_confidence": 0.9663086, "start": 357.72, "word": "ago" }, { "confidence": 0.8774414, "end": 358.12003, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.9663086, "start": 357.96002, "word": "when" }, { "confidence": 1, "end": 358.2, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.9663086, "start": 358.12003, "word": "you" }, { "confidence": 0.98291016, "end": 358.36002, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.9663086, "start": 358.2, "word": "could" }, { "confidence": 0.99902344, "end": 358.6, "punctuated_word": "develop", "speaker": 0, "speaker_confidence": 0.9663086, "start": 358.36002, "word": "develop" }, { "confidence": 0.99609375, "end": 358.76, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.9663086, "start": 358.6, "word": "an" }, { "confidence": 1, "end": 358.92, "punctuated_word": "app", "speaker": 0, "speaker_confidence": 0.9663086, "start": 358.76, "word": "app" }, { "confidence": 0.99609375, "end": 359, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9663086, "start": 358.92, "word": "in" }, { "confidence": 1, "end": 359.16, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.9663086, "start": 359, "word": "your" }, { "confidence": 0.99853516, "end": 359.40002, "punctuated_word": "mom's", "speaker": 0, "speaker_confidence": 0.9663086, "start": 359.16, "word": "mom's" }, { "confidence": 0.98950195, "end": 359.80002, "punctuated_word": "basement,", "speaker": 0, "speaker_confidence": 0.9663086, "start": 359.40002, "word": "basement" }, { "confidence": 0.9902344, "end": 360.04, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.9663086, "start": 359.80002, "word": "have" }, { "confidence": 0.9921875, "end": 360.12003, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.9663086, "start": 360.04, "word": "it" }, { "confidence": 0.9980469, "end": 360.415, "punctuated_word": "go", "speaker": 0, "speaker_confidence": 0.9663086, "start": 360.12003, "word": "go" }, { "confidence": 0.54248047, "end": 360.815, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9663086, "start": 360.575, "word": "and" }, { "confidence": 0.9770508, "end": 360.975, "punctuated_word": "become", "speaker": 0, "speaker_confidence": 0.9663086, "start": 360.815, "word": "become" }, { "confidence": 0.9980469, "end": 361.05502, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.84033203, "start": 360.975, "word": "a" }, { "confidence": 1, "end": 361.45502, "punctuated_word": "millionaire", "speaker": 0, "speaker_confidence": 0.84033203, "start": 361.05502, "word": "millionaire" }, { "confidence": 0.9863281, "end": 361.95502, "punctuated_word": "overnight.", "speaker": 0, "speaker_confidence": 0.84033203, "start": 361.45502, "word": "overnight" }, { "confidence": 0.99121094, "end": 362.17502, "punctuated_word": "There", "speaker": 0, "speaker_confidence": 0.84033203, "start": 362.015, "word": "there" }, { "confidence": 0.97314453, "end": 362.255, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.84033203, "start": 362.17502, "word": "are" }, { "confidence": 0.8803711, "end": 362.495, "punctuated_word": "billions", "speaker": 0, "speaker_confidence": 0.84033203, "start": 362.255, "word": "billions" }, { "confidence": 0.99902344, "end": 362.655, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.84033203, "start": 362.495, "word": "of" }, { "confidence": 1, "end": 362.975, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.84033203, "start": 362.655, "word": "people" }, { "confidence": 0.9980469, "end": 363.295, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.84033203, "start": 362.975, "word": "using" }, { "confidence": 0.9580078, "end": 363.695, "punctuated_word": "smartphones", "speaker": 0, "speaker_confidence": 0.84033203, "start": 363.295, "word": "smartphones" }, { "confidence": 0.8408203, "end": 363.935, "punctuated_word": "every", "speaker": 0, "speaker_confidence": 0.84033203, "start": 363.695, "word": "every" }, { "confidence": 0.9848633, "end": 364.415, "punctuated_word": "day,", "speaker": 0, "speaker_confidence": 0.84033203, "start": 363.935, "word": "day" }, { "confidence": 0.99902344, "end": 364.575, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.84033203, "start": 364.415, "word": "but" }, { "confidence": 0.99902344, "end": 364.73502, "punctuated_word": "getting", "speaker": 0, "speaker_confidence": 0.84033203, "start": 364.575, "word": "getting" }, { "confidence": 0.9980469, "end": 364.89502, "punctuated_word": "their", "speaker": 0, "speaker_confidence": 0.84033203, "start": 364.73502, "word": "their" }, { "confidence": 1, "end": 365.215, "punctuated_word": "attention", "speaker": 0, "speaker_confidence": 0.84033203, "start": 364.89502, "word": "attention" }, { "confidence": 1, "end": 365.45502, "punctuated_word": "away", "speaker": 0, "speaker_confidence": 0.84033203, "start": 365.215, "word": "away" }, { "confidence": 1, "end": 365.695, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.84033203, "start": 365.45502, "word": "from" }, { "confidence": 0.99609375, "end": 366.095, "punctuated_word": "established", "speaker": 0, "speaker_confidence": 0.84033203, "start": 365.695, "word": "established" }, { "confidence": 0.9980469, "end": 366.415, "punctuated_word": "apps", "speaker": 0, "speaker_confidence": 0.84033203, "start": 366.095, "word": "apps" }, { "confidence": 0.97802734, "end": 366.575, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.84033203, "start": 366.415, "word": "is" }, { "confidence": 0.9980469, "end": 366.89502, "punctuated_word": "harder", "speaker": 0, "speaker_confidence": 0.84033203, "start": 366.575, "word": "harder" }, { "confidence": 0.9980469, "end": 366.975, "punctuated_word": "than", "speaker": 0, "speaker_confidence": 0.84033203, "start": 366.89502, "word": "than" }, { "confidence": 0.9628906, "end": 367.215, "punctuated_word": "ever.", "speaker": 0, "speaker_confidence": 0.84033203, "start": 366.975, "word": "ever" }, { "confidence": 0.84228516, "end": 367.375, "punctuated_word": "Like,", "speaker": 0, "speaker_confidence": 0.84033203, "start": 367.215, "word": "like" }, { "confidence": 0.9970703, "end": 367.535, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.84033203, "start": 367.375, "word": "as" }, { "confidence": 0.9902344, "end": 367.61502, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.84033203, "start": 367.535, "word": "you" }, { "confidence": 0.9614258, "end": 367.88, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.84033203, "start": 367.61502, "word": "can" }, { "confidence": 0.7011719, "end": 368.36002, "punctuated_word": "here,", "speaker": 0, "speaker_confidence": 0.84033203, "start": 368.04, "word": "here" }, { "confidence": 0.99902344, "end": 368.52002, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 0.84033203, "start": 368.36002, "word": "most" }, { "confidence": 0.99902344, "end": 368.6, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.84033203, "start": 368.52002, "word": "of" }, { "confidence": 0.99902344, "end": 368.84, "punctuated_word": "my", "speaker": 0, "speaker_confidence": 0.5488281, "start": 368.6, "word": "my" }, { "confidence": 0.97509766, "end": 369.08002, "punctuated_word": "screen", "speaker": 0, "speaker_confidence": 0.5488281, "start": 368.84, "word": "screen" }, { "confidence": 0.9980469, "end": 369.24, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 0.5488281, "start": 369.08002, "word": "time" }, { "confidence": 0.99902344, "end": 369.56, "punctuated_word": "goes", "speaker": 0, "speaker_confidence": 0.5488281, "start": 369.24, "word": "goes" }, { "confidence": 0.99902344, "end": 369.64, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.5488281, "start": 369.56, "word": "to" }, { "confidence": 0.9970703, "end": 370.04, "punctuated_word": "Twitter", "speaker": 0, "speaker_confidence": 0.5488281, "start": 369.64, "word": "twitter" }, { "confidence": 0.99609375, "end": 370.2, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.5488281, "start": 370.04, "word": "and" }, { "confidence": 0.99316406, "end": 370.6, "punctuated_word": "Discord.", "speaker": 0, "speaker_confidence": 0.5488281, "start": 370.2, "word": "discord" }, { "confidence": 1, "end": 370.72, "punctuated_word": "When", "speaker": 0, "speaker_confidence": 0.4013672, "start": 370.6, "word": "when" }, { "confidence": 1, "end": 370.84, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.4013672, "start": 370.72, "word": "it" }, { "confidence": 1, "end": 371.08002, "punctuated_word": "comes", "speaker": 0, "speaker_confidence": 0.4013672, "start": 370.84, "word": "comes" }, { "confidence": 0.99902344, "end": 371.24, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.4013672, "start": 371.08002, "word": "to" }, { "confidence": 0.99902344, "end": 371.56, "punctuated_word": "building", "speaker": 0, "speaker_confidence": 0.4013672, "start": 371.24, "word": "building" }, { "confidence": 0.99902344, "end": 371.80002, "punctuated_word": "mobile", "speaker": 0, "speaker_confidence": 0.4013672, "start": 371.56, "word": "mobile" }, { "confidence": 0.9951172, "end": 372.12, "punctuated_word": "apps,", "speaker": 0, "speaker_confidence": 0.4013672, "start": 371.80002, "word": "apps" }, { "confidence": 1, "end": 372.28, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.4013672, "start": 372.12, "word": "not" }, { "confidence": 0.99902344, "end": 372.36002, "punctuated_word": "too", "speaker": 0, "speaker_confidence": 0.31640625, "start": 372.28, "word": "too" }, { "confidence": 1, "end": 372.6, "punctuated_word": "much", "speaker": 0, "speaker_confidence": 0.31640625, "start": 372.36002, "word": "much" }, { "confidence": 0.98291016, "end": 372.68, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.31640625, "start": 372.6, "word": "has" }, { "confidence": 0.74731445, "end": 373, "punctuated_word": "changed.", "speaker": 0, "speaker_confidence": 0.31640625, "start": 372.68, "word": "changed" }, { "confidence": 0.9970703, "end": 373.16, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.6010742, "start": 373, "word": "but" }, { "confidence": 0.99121094, "end": 373.24, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.6010742, "start": 373.16, "word": "if" }, { "confidence": 0.9975586, "end": 373.4, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.6010742, "start": 373.24, "word": "you're" }, { "confidence": 1, "end": 373.72, "punctuated_word": "building", "speaker": 0, "speaker_confidence": 0.6010742, "start": 373.4, "word": "building" }, { "confidence": 0.9951172, "end": 373.96, "punctuated_word": "cross", "speaker": 0, "speaker_confidence": 0.6010742, "start": 373.72, "word": "cross" }, { "confidence": 0.9970703, "end": 374.44, "punctuated_word": "platform,", "speaker": 0, "speaker_confidence": 0.6010742, "start": 373.96, "word": "platform" }, { "confidence": 0.99902344, "end": 374.6, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.6010742, "start": 374.44, "word": "we're" }, { "confidence": 1, "end": 374.92, "punctuated_word": "starting", "speaker": 0, "speaker_confidence": 0.6010742, "start": 374.6, "word": "starting" }, { "confidence": 0.99902344, "end": 375, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6010742, "start": 374.92, "word": "to" }, { "confidence": 0.99902344, "end": 375.16, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.74853516, "start": 375, "word": "see" }, { "confidence": 0.99902344, "end": 375.4, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.74853516, "start": 375.16, "word": "more" }, { "confidence": 0.9140625, "end": 375.56, "punctuated_word": "low", "speaker": 0, "speaker_confidence": 0.74853516, "start": 375.4, "word": "low" }, { "confidence": 0.9902344, "end": 375.80002, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.74853516, "start": 375.56, "word": "code" }, { "confidence": 0.99902344, "end": 376.12, "punctuated_word": "tools", "speaker": 0, "speaker_confidence": 0.74853516, "start": 375.80002, "word": "tools" }, { "confidence": 0.99902344, "end": 376.28, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.74853516, "start": 376.12, "word": "that" }, { "confidence": 0.99316406, "end": 376.44, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.74853516, "start": 376.28, "word": "can" }, { "confidence": 0.9970703, "end": 376.68, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.74853516, "start": 376.44, "word": "build" }, { "confidence": 0.984375, "end": 377.055, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.74853516, "start": 376.68, "word": "for" }, { "confidence": 0.3786621, "end": 377.29498, "punctuated_word": "both", "speaker": 0, "speaker_confidence": 0.74853516, "start": 377.13498, "word": "both" }, { "confidence": 0.83251953, "end": 377.535, "punctuated_word": "iOS", "speaker": 0, "speaker_confidence": 0.74853516, "start": 377.29498, "word": "ios" }, { "confidence": 0.9902344, "end": 377.775, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.74853516, "start": 377.535, "word": "and" }, { "confidence": 0.9790039, "end": 378.175, "punctuated_word": "Android", "speaker": 0, "speaker_confidence": 0.74853516, "start": 377.775, "word": "android" }, { "confidence": 0.9892578, "end": 378.335, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.74853516, "start": 378.175, "word": "with" }, { "confidence": 0.99902344, "end": 378.495, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.74853516, "start": 378.335, "word": "a" }, { "confidence": 0.9970703, "end": 378.735, "punctuated_word": "drag", "speaker": 0, "speaker_confidence": 0.74853516, "start": 378.495, "word": "drag" }, { "confidence": 0.99609375, "end": 378.815, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6923828, "start": 378.735, "word": "and" }, { "confidence": 1, "end": 379.055, "punctuated_word": "drop", "speaker": 0, "speaker_confidence": 0.6923828, "start": 378.815, "word": "drop" }, { "confidence": 0.9641113, "end": 379.555, "punctuated_word": "interface.", "speaker": 0, "speaker_confidence": 0.6923828, "start": 379.055, "word": "interface" }, { "confidence": 0.9980469, "end": 379.85498, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.6923828, "start": 379.615, "word": "but" }, { "confidence": 0.9770508, "end": 380.01498, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 0.6923828, "start": 379.85498, "word": "now" }, { "confidence": 0.94091797, "end": 380.175, "punctuated_word": "let's", "speaker": 0, "speaker_confidence": 0.6923828, "start": 380.01498, "word": "let's" }, { "confidence": 1, "end": 380.41498, "punctuated_word": "talk", "speaker": 0, "speaker_confidence": 0.6923828, "start": 380.175, "word": "talk" }, { "confidence": 1, "end": 380.655, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.6923828, "start": 380.41498, "word": "about" }, { "confidence": 0.9970703, "end": 380.815, "punctuated_word": "low", "speaker": 0, "speaker_confidence": 0.6923828, "start": 380.655, "word": "low" }, { "confidence": 0.99609375, "end": 381.13498, "punctuated_word": "level", "speaker": 0, "speaker_confidence": 0.6923828, "start": 380.815, "word": "level" }, { "confidence": 0.98291016, "end": 381.535, "punctuated_word": "systems", "speaker": 0, "speaker_confidence": 0.6923828, "start": 381.13498, "word": "systems" }, { "confidence": 0.99658203, "end": 382.035, "punctuated_word": "languages.", "speaker": 0, "speaker_confidence": 0.6923828, "start": 381.535, "word": "languages" }, { "confidence": 0.9951172, "end": 382.41498, "punctuated_word": "Rust", "speaker": 0, "speaker_confidence": 0.6923828, "start": 382.095, "word": "rust" }, { "confidence": 0.99609375, "end": 382.495, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.6923828, "start": 382.41498, "word": "is" }, { "confidence": 1, "end": 382.735, "punctuated_word": "still", "speaker": 0, "speaker_confidence": 0.6923828, "start": 382.495, "word": "still" }, { "confidence": 1, "end": 382.975, "punctuated_word": "growing", "speaker": 0, "speaker_confidence": 0.6923828, "start": 382.735, "word": "growing" }, { "confidence": 1, "end": 383.455, "punctuated_word": "incredibly", "speaker": 0, "speaker_confidence": 0.6923828, "start": 382.975, "word": "incredibly" }, { "confidence": 0.96875, "end": 383.85498, "punctuated_word": "fast,", "speaker": 0, "speaker_confidence": 0.6923828, "start": 383.455, "word": "fast" }, { "confidence": 0.99902344, "end": 384.095, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6923828, "start": 383.85498, "word": "and" }, { "confidence": 0.99902344, "end": 384.175, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.6923828, "start": 384.095, "word": "you" }, { "confidence": 0.99902344, "end": 384.335, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.47998047, "start": 384.175, "word": "can" }, { "confidence": 0.99902344, "end": 384.495, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 0.47998047, "start": 384.335, "word": "now" }, { "confidence": 0.9980469, "end": 384.655, "punctuated_word": "find", "speaker": 0, "speaker_confidence": 0.47998047, "start": 384.495, "word": "find" }, { "confidence": 0.9741211, "end": 384.895, "punctuated_word": "Rust", "speaker": 0, "speaker_confidence": 0.47998047, "start": 384.655, "word": "rust" }, { "confidence": 0.8125, "end": 385.055, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.47998047, "start": 384.895, "word": "code" }, { "confidence": 0.9951172, "end": 385.215, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.47998047, "start": 385.055, "word": "in" }, { "confidence": 0.96972656, "end": 385.29498, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.47998047, "start": 385.215, "word": "the" }, { "confidence": 0.9980469, "end": 385.615, "punctuated_word": "Linux", "speaker": 0, "speaker_confidence": 0.47998047, "start": 385.29498, "word": "linux" }, { "confidence": 0.970459, "end": 386.01498, "punctuated_word": "kernel.", "speaker": 0, "speaker_confidence": 0.47998047, "start": 385.615, "word": "kernel" }, { "confidence": 0.98828125, "end": 386.095, "punctuated_word": "There", "speaker": 0, "speaker_confidence": 0.703125, "start": 386.01498, "word": "there" }, { "confidence": 0.9770508, "end": 386.255, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.703125, "start": 386.095, "word": "was" }, { "confidence": 0.8720703, "end": 386.59, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.703125, "start": 386.255, "word": "some" }, { "confidence": 0.44604492, "end": 386.83, "punctuated_word": "armor", "speaker": 0, "speaker_confidence": 0.703125, "start": 386.66998, "word": "armor" }, { "confidence": 0.9941406, "end": 386.99, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.703125, "start": 386.83, "word": "with" }, { "confidence": 0.97265625, "end": 387.07, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.703125, "start": 386.99, "word": "the" }, { "confidence": 0.7944336, "end": 387.31, "punctuated_word": "Rust", "speaker": 0, "speaker_confidence": 0.703125, "start": 387.07, "word": "rust" }, { "confidence": 0.7084961, "end": 387.79, "punctuated_word": "Foundation", "speaker": 0, "speaker_confidence": 0.703125, "start": 387.31, "word": "foundation" }, { "confidence": 0.9970703, "end": 388.11, "punctuated_word": "earlier", "speaker": 0, "speaker_confidence": 0.703125, "start": 387.79, "word": "earlier" }, { "confidence": 0.99902344, "end": 388.35, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.703125, "start": 388.11, "word": "this" }, { "confidence": 0.8840332, "end": 388.51, "punctuated_word": "year,", "speaker": 0, "speaker_confidence": 0.703125, "start": 388.35, "word": "year" }, { "confidence": 0.99609375, "end": 388.66998, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.88964844, "start": 388.51, "word": "and" }, { "confidence": 1, "end": 388.83, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.88964844, "start": 388.66998, "word": "i" }, { "confidence": 1, "end": 388.99, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 0.88964844, "start": 388.83, "word": "might" }, { "confidence": 0.9980469, "end": 389.15, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.88964844, "start": 388.99, "word": "get" }, { "confidence": 1, "end": 389.38998, "punctuated_word": "sued", "speaker": 0, "speaker_confidence": 0.88964844, "start": 389.15, "word": "sued" }, { "confidence": 0.9980469, "end": 389.55, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.88964844, "start": 389.38998, "word": "for" }, { "confidence": 1, "end": 389.71, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.88964844, "start": 389.55, "word": "using" }, { "confidence": 0.99902344, "end": 389.87, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.88964844, "start": 389.71, "word": "this" }, { "confidence": 0.7780762, "end": 390.35, "punctuated_word": "logo.", "speaker": 0, "speaker_confidence": 0.88964844, "start": 389.87, "word": "logo" }, { "confidence": 0.9941406, "end": 390.51, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.88964844, "start": 390.35, "word": "but" }, { "confidence": 0.9980469, "end": 390.66998, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.88964844, "start": 390.51, "word": "there" }, { "confidence": 0.84472656, "end": 390.83, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.88964844, "start": 390.66998, "word": "are" }, { "confidence": 0.9980469, "end": 390.99, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.88964844, "start": 390.83, "word": "some" }, { "confidence": 0.9980469, "end": 391.23, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.88964844, "start": 390.99, "word": "other" }, { "confidence": 0.9838867, "end": 391.38998, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.88964844, "start": 391.23, "word": "up" }, { "confidence": 0.99121094, "end": 391.55, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.88964844, "start": 391.38998, "word": "and" }, { "confidence": 0.9980469, "end": 391.79, "punctuated_word": "coming", "speaker": 0, "speaker_confidence": 0.88964844, "start": 391.55, "word": "coming" }, { "confidence": 0.9873047, "end": 392.03, "punctuated_word": "low", "speaker": 0, "speaker_confidence": 0.88964844, "start": 391.79, "word": "low" }, { "confidence": 0.9951172, "end": 392.27, "punctuated_word": "level", "speaker": 0, "speaker_confidence": 0.88964844, "start": 392.03, "word": "level" }, { "confidence": 0.9970703, "end": 392.75, "punctuated_word": "languages", "speaker": 0, "speaker_confidence": 0.88964844, "start": 392.27, "word": "languages" }, { "confidence": 0.99316406, "end": 392.91, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.88964844, "start": 392.75, "word": "as" }, { "confidence": 0.8520508, "end": 393.31, "punctuated_word": "well,", "speaker": 0, "speaker_confidence": 0.88964844, "start": 392.91, "word": "well" }, { "confidence": 0.99609375, "end": 393.63, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.88964844, "start": 393.31, "word": "like" }, { "confidence": 0.859375, "end": 394.03, "punctuated_word": "Zig,", "speaker": 0, "speaker_confidence": 0.88964844, "start": 393.63, "word": "zig" }, { "confidence": 0.9863281, "end": 394.19, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.88964844, "start": 394.03, "word": "the" }, { "confidence": 0.9980469, "end": 394.59, "punctuated_word": "language", "speaker": 0, "speaker_confidence": 0.88964844, "start": 394.19, "word": "language" }, { "confidence": 0.9970703, "end": 394.83, "punctuated_word": "behind", "speaker": 0, "speaker_confidence": 0.88964844, "start": 394.59, "word": "behind" }, { "confidence": 0.89501953, "end": 395.225, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.88964844, "start": 394.83, "word": "the" }, { "confidence": 0.96240234, "end": 395.70502, "punctuated_word": "script", "speaker": 0, "speaker_confidence": 0.88964844, "start": 395.385, "word": "script" }, { "confidence": 0.6118164, "end": 395.945, "punctuated_word": "BUN", "speaker": 0, "speaker_confidence": 0.88964844, "start": 395.70502, "word": "bun" }, { "confidence": 0.92333984, "end": 396.42502, "punctuated_word": "runtime", "speaker": 0, "speaker_confidence": 0.88964844, "start": 395.945, "word": "runtime" }, { "confidence": 0.50146484, "end": 396.745, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.88964844, "start": 396.42502, "word": "and" }, { "confidence": 0.98828125, "end": 397.065, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.88964844, "start": 396.745, "word": "also" }, { "confidence": 0.9560547, "end": 397.545, "punctuated_word": "Mojo,", "speaker": 0, "speaker_confidence": 0.88964844, "start": 397.065, "word": "mojo" }, { "confidence": 0.99316406, "end": 397.785, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.88964844, "start": 397.545, "word": "a" }, { "confidence": 0.9770508, "end": 398.105, "punctuated_word": "Python", "speaker": 0, "speaker_confidence": 0.88964844, "start": 397.785, "word": "python" }, { "confidence": 0.8852539, "end": 398.605, "punctuated_word": "superset", "speaker": 0, "speaker_confidence": 0.88964844, "start": 398.105, "word": "superset" }, { "confidence": 0.8574219, "end": 398.905, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.88964844, "start": 398.745, "word": "that" }, { "confidence": 0.9980469, "end": 399.065, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.88964844, "start": 398.905, "word": "can" }, { "confidence": 0.9951172, "end": 399.305, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.88964844, "start": 399.065, "word": "also" }, { "confidence": 0.9970703, "end": 399.70502, "punctuated_word": "handle", "speaker": 0, "speaker_confidence": 0.88964844, "start": 399.305, "word": "handle" }, { "confidence": 0.96533203, "end": 399.86502, "punctuated_word": "low", "speaker": 0, "speaker_confidence": 0.88964844, "start": 399.70502, "word": "low" }, { "confidence": 0.9980469, "end": 400.105, "punctuated_word": "level", "speaker": 0, "speaker_confidence": 0.88964844, "start": 399.86502, "word": "level" }, { "confidence": 0.9951172, "end": 400.505, "punctuated_word": "memory", "speaker": 0, "speaker_confidence": 0.88964844, "start": 400.105, "word": "memory" }, { "confidence": 0.91796875, "end": 401.005, "punctuated_word": "management,", "speaker": 0, "speaker_confidence": 0.88964844, "start": 400.505, "word": "management" }, { "confidence": 0.99609375, "end": 401.305, "punctuated_word": "making", "speaker": 0, "speaker_confidence": 0.88964844, "start": 401.065, "word": "making" }, { "confidence": 0.98095703, "end": 401.385, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.88964844, "start": 401.305, "word": "it" }, { "confidence": 1, "end": 401.625, "punctuated_word": "both", "speaker": 0, "speaker_confidence": 0.88964844, "start": 401.385, "word": "both" }, { "confidence": 0.99902344, "end": 402.105, "punctuated_word": "approachable", "speaker": 0, "speaker_confidence": 0.88964844, "start": 401.625, "word": "approachable" }, { "confidence": 0.9921875, "end": 402.42502, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.88964844, "start": 402.105, "word": "and" }, { "confidence": 0.9951172, "end": 402.825, "punctuated_word": "extremely", "speaker": 0, "speaker_confidence": 0.88964844, "start": 402.42502, "word": "extremely" }, { "confidence": 0.87565106, "end": 403.325, "punctuated_word": "performant,", "speaker": 0, "speaker_confidence": 0.88964844, "start": 402.825, "word": "performant" }, { "confidence": 0.8828125, "end": 403.465, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.88964844, "start": 403.385, "word": "an" }, { "confidence": 0.6230469, "end": 403.71, "punctuated_word": "ideal", "speaker": 0, "speaker_confidence": 0.88964844, "start": 403.465, "word": "ideal" }, { "confidence": 0.99121094, "end": 404.19, "punctuated_word": "option", "speaker": 0, "speaker_confidence": 0.88964844, "start": 403.94998, "word": "option" }, { "confidence": 1, "end": 404.59, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.88964844, "start": 404.19, "word": "for" }, { "confidence": 0.9892578, "end": 404.83, "punctuated_word": "AI", "speaker": 0, "speaker_confidence": 0.88964844, "start": 404.59, "word": "ai" }, { "confidence": 0.93603516, "end": 404.99, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.88964844, "start": 404.83, "word": "and" }, { "confidence": 0.99316406, "end": 405.22998, "punctuated_word": "machine", "speaker": 0, "speaker_confidence": 0.88964844, "start": 404.99, "word": "machine" }, { "confidence": 0.99365234, "end": 405.71, "punctuated_word": "learning.", "speaker": 0, "speaker_confidence": 0.88964844, "start": 405.22998, "word": "learning" }, { "confidence": 0.99902344, "end": 405.94998, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.88964844, "start": 405.71, "word": "and" }, { "confidence": 0.8664551, "end": 406.27, "punctuated_word": "finally,", "speaker": 0, "speaker_confidence": 0.88964844, "start": 405.94998, "word": "finally" }, { "confidence": 1, "end": 406.43, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.88964844, "start": 406.27, "word": "that" }, { "confidence": 0.99609375, "end": 406.75, "punctuated_word": "brings", "speaker": 0, "speaker_confidence": 0.88964844, "start": 406.43, "word": "brings" }, { "confidence": 0.9951172, "end": 406.91, "punctuated_word": "us", "speaker": 0, "speaker_confidence": 0.88964844, "start": 406.75, "word": "us" }, { "confidence": 0.9921875, "end": 406.99, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8046875, "start": 406.91, "word": "to" }, { "confidence": 0.9980469, "end": 407.31, "punctuated_word": "number", "speaker": 0, "speaker_confidence": 0.8046875, "start": 406.99, "word": "number" }, { "confidence": 0.9836426, "end": 407.71, "punctuated_word": "10,", "speaker": 0, "speaker_confidence": 0.8046875, "start": 407.31, "word": "10" }, { "confidence": 0.9951172, "end": 407.87, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8046875, "start": 407.71, "word": "the" }, { "confidence": 0.9980469, "end": 408.27, "punctuated_word": "elephant", "speaker": 0, "speaker_confidence": 0.8046875, "start": 407.87, "word": "elephant" }, { "confidence": 1, "end": 408.35, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8046875, "start": 408.27, "word": "in" }, { "confidence": 1, "end": 408.50998, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8046875, "start": 408.35, "word": "the" }, { "confidence": 0.99658203, "end": 408.91, "punctuated_word": "room,", "speaker": 0, "speaker_confidence": 0.8046875, "start": 408.50998, "word": "room" }, { "confidence": 0.9951172, "end": 409.38998, "punctuated_word": "artificial", "speaker": 0, "speaker_confidence": 0.8046875, "start": 408.91, "word": "artificial" }, { "confidence": 0.9975586, "end": 409.88998, "punctuated_word": "intelligence.", "speaker": 0, "speaker_confidence": 0.8046875, "start": 409.38998, "word": "intelligence" }, { "confidence": 0.8439128, "end": 410.61, "punctuated_word": "ChatGPT", "speaker": 0, "speaker_confidence": 0.8046875, "start": 410.11, "word": "chatgpt" }, { "confidence": 0.9560547, "end": 410.91, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.8046875, "start": 410.75, "word": "has" }, { "confidence": 0.99316406, "end": 411.15, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.8046875, "start": 410.91, "word": "only" }, { "confidence": 1, "end": 411.22998, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.8046875, "start": 411.15, "word": "been" }, { "confidence": 0.99902344, "end": 411.47, "punctuated_word": "around", "speaker": 0, "speaker_confidence": 0.8046875, "start": 411.22998, "word": "around" }, { "confidence": 0.9941406, "end": 411.63, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.8046875, "start": 411.47, "word": "for" }, { "confidence": 0.9941406, "end": 411.71, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8046875, "start": 411.63, "word": "a" }, { "confidence": 0.982666, "end": 411.94998, "punctuated_word": "year,", "speaker": 0, "speaker_confidence": 0.8046875, "start": 411.71, "word": "year" }, { "confidence": 0.99902344, "end": 412.19, "punctuated_word": "although", "speaker": 0, "speaker_confidence": 0.8046875, "start": 411.94998, "word": "although" }, { "confidence": 0.96972656, "end": 412.34998, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8046875, "start": 412.19, "word": "it" }, { "confidence": 0.9970703, "end": 412.66998, "punctuated_word": "feels", "speaker": 0, "speaker_confidence": 0.8046875, "start": 412.34998, "word": "feels" }, { "confidence": 0.9980469, "end": 412.75, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.8046875, "start": 412.66998, "word": "like" }, { "confidence": 0.9921875, "end": 412.83, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6220703, "start": 412.75, "word": "a" }, { "confidence": 0.98828125, "end": 413.065, "punctuated_word": "lot", "speaker": 0, "speaker_confidence": 0.6220703, "start": 412.83, "word": "lot" }, { "confidence": 0.8979492, "end": 413.465, "punctuated_word": "longer.", "speaker": 0, "speaker_confidence": 0.6220703, "start": 413.145, "word": "longer" }, { "confidence": 0.9980469, "end": 413.545, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.6220703, "start": 413.465, "word": "and" }, { "confidence": 1, "end": 413.865, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 0.6220703, "start": 413.545, "word": "most" }, { "confidence": 0.9980469, "end": 414.185, "punctuated_word": "normies", "speaker": 0, "speaker_confidence": 0.6220703, "start": 413.865, "word": "normies" }, { "confidence": 1, "end": 414.345, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.6220703, "start": 414.185, "word": "out" }, { "confidence": 1, "end": 414.505, "punctuated_word": "there", "speaker": 0, "speaker_confidence": 0.6220703, "start": 414.345, "word": "there" }, { "confidence": 0.9995117, "end": 414.745, "punctuated_word": "haven't", "speaker": 0, "speaker_confidence": 0.6220703, "start": 414.505, "word": "haven't" }, { "confidence": 0.99902344, "end": 414.905, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 0.6220703, "start": 414.745, "word": "even" }, { "confidence": 0.99902344, "end": 415.145, "punctuated_word": "touched", "speaker": 0, "speaker_confidence": 0.6220703, "start": 414.905, "word": "touched" }, { "confidence": 0.99902344, "end": 415.225, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.6220703, "start": 415.145, "word": "it" }, { "confidence": 0.9128418, "end": 415.545, "punctuated_word": "yet,", "speaker": 0, "speaker_confidence": 0.6196289, "start": 415.225, "word": "yet" }, { "confidence": 0.9980469, "end": 415.70502, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.6196289, "start": 415.545, "word": "but" }, { "confidence": 1, "end": 415.945, "punctuated_word": "that's", "speaker": 0, "speaker_confidence": 0.6196289, "start": 415.70502, "word": "that's" }, { "confidence": 0.99902344, "end": 416.105, "punctuated_word": "going", "speaker": 0, "speaker_confidence": 0.6196289, "start": 415.945, "word": "going" }, { "confidence": 0.9970703, "end": 416.185, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6196289, "start": 416.105, "word": "to" }, { "confidence": 1, "end": 416.425, "punctuated_word": "change", "speaker": 0, "speaker_confidence": 0.6196289, "start": 416.185, "word": "change" }, { "confidence": 0.99902344, "end": 416.665, "punctuated_word": "over", "speaker": 0, "speaker_confidence": 0.6196289, "start": 416.425, "word": "over" }, { "confidence": 1, "end": 416.745, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.78125, "start": 416.665, "word": "the" }, { "confidence": 1, "end": 416.905, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.78125, "start": 416.745, "word": "next" }, { "confidence": 1, "end": 417.145, "punctuated_word": "few", "speaker": 0, "speaker_confidence": 0.78125, "start": 416.905, "word": "few" }, { "confidence": 1, "end": 417.385, "punctuated_word": "years", "speaker": 0, "speaker_confidence": 0.78125, "start": 417.145, "word": "years" }, { "confidence": 0.81591797, "end": 417.625, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.78125, "start": 417.385, "word": "because" }, { "confidence": 0.9970703, "end": 417.785, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.78125, "start": 417.625, "word": "we" }, { "confidence": 0.9980469, "end": 417.945, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 0.78125, "start": 417.785, "word": "now" }, { "confidence": 0.99902344, "end": 418.185, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.78125, "start": 417.945, "word": "have" }, { "confidence": 0.95947266, "end": 418.425, "punctuated_word": "Bard", "speaker": 0, "speaker_confidence": 0.78125, "start": 418.185, "word": "bard" }, { "confidence": 0.99609375, "end": 418.585, "punctuated_word": "built", "speaker": 0, "speaker_confidence": 0.78125, "start": 418.425, "word": "built" }, { "confidence": 0.9301758, "end": 418.825, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.78125, "start": 418.585, "word": "into" }, { "confidence": 0.9980469, "end": 419.225, "punctuated_word": "Google", "speaker": 0, "speaker_confidence": 0.78125, "start": 418.825, "word": "google" }, { "confidence": 0.9980469, "end": 419.465, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.78125, "start": 419.225, "word": "to" }, { "confidence": 0.99853516, "end": 419.945, "punctuated_word": "cannibalize", "speaker": 0, "speaker_confidence": 0.78125, "start": 419.465, "word": "cannibalize" }, { "confidence": 0.9140625, "end": 420.14, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.78125, "start": 419.945, "word": "its" }, { "confidence": 0.50439453, "end": 420.62003, "punctuated_word": "search", "speaker": 0, "speaker_confidence": 0.78125, "start": 420.22, "word": "search" }, { "confidence": 0.83154297, "end": 421.02002, "punctuated_word": "engine.", "speaker": 0, "speaker_confidence": 0.78125, "start": 420.62003, "word": "engine" }, { "confidence": 1, "end": 421.1, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.9140625, "start": 421.02002, "word": "we" }, { "confidence": 1, "end": 421.34003, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.9140625, "start": 421.1, "word": "have" }, { "confidence": 0.88671875, "end": 421.74002, "punctuated_word": "Copilot", "speaker": 0, "speaker_confidence": 0.9140625, "start": 421.34003, "word": "copilot" }, { "confidence": 0.9941406, "end": 421.98, "punctuated_word": "built", "speaker": 0, "speaker_confidence": 0.9140625, "start": 421.74002, "word": "built" }, { "confidence": 0.9375, "end": 422.22, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.9140625, "start": 421.98, "word": "into" }, { "confidence": 0.9980469, "end": 422.7, "punctuated_word": "Microsoft", "speaker": 0, "speaker_confidence": 0.9140625, "start": 422.22, "word": "microsoft" }, { "confidence": 0.9760742, "end": 423.1, "punctuated_word": "Office", "speaker": 0, "speaker_confidence": 0.9140625, "start": 422.7, "word": "office" }, { "confidence": 0.99902344, "end": 423.34003, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9140625, "start": 423.1, "word": "to" }, { "confidence": 1, "end": 423.5, "punctuated_word": "write", "speaker": 0, "speaker_confidence": 0.9140625, "start": 423.34003, "word": "write" }, { "confidence": 1, "end": 423.66, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.9140625, "start": 423.5, "word": "all" }, { "confidence": 0.9970703, "end": 423.82, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.9140625, "start": 423.66, "word": "your" }, { "confidence": 1, "end": 424.14, "punctuated_word": "papers", "speaker": 0, "speaker_confidence": 0.9140625, "start": 423.82, "word": "papers" }, { "confidence": 0.9980469, "end": 424.30002, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9140625, "start": 424.14, "word": "and" }, { "confidence": 1, "end": 424.46002, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.9140625, "start": 424.30002, "word": "do" }, { "confidence": 1, "end": 424.54, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.9140625, "start": 424.46002, "word": "all" }, { "confidence": 0.9970703, "end": 424.7, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.9140625, "start": 424.54, "word": "your" }, { "confidence": 0.9713542, "end": 425.2, "punctuated_word": "spreadsheets.", "speaker": 0, "speaker_confidence": 0.9140625, "start": 424.7, "word": "spreadsheets" }, { "confidence": 0.9941406, "end": 425.58002, "punctuated_word": "An", "speaker": 0, "speaker_confidence": 0.9140625, "start": 425.42, "word": "an" }, { "confidence": 0.99902344, "end": 426.08002, "punctuated_word": "estimated", "speaker": 0, "speaker_confidence": 0.9140625, "start": 425.58002, "word": "estimated" }, { "confidence": 0.91503906, "end": 426.64, "punctuated_word": "75%", "speaker": 0, "speaker_confidence": 0.9140625, "start": 426.14, "word": "75%" }, { "confidence": 0.9902344, "end": 427.02002, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9140625, "start": 426.94, "word": "of" }, { "confidence": 0.9902344, "end": 427.26, "punctuated_word": "all", "speaker": 0, "speaker_confidence": 0.9140625, "start": 427.02002, "word": "all" }, { "confidence": 0.9838867, "end": 427.635, "punctuated_word": "stock", "speaker": 0, "speaker_confidence": 0.9140625, "start": 427.26, "word": "stock" }, { "confidence": 0.18469238, "end": 427.875, "punctuated_word": "radio", "speaker": 0, "speaker_confidence": 0.9140625, "start": 427.635, "word": "radio" }, { "confidence": 0.51220703, "end": 428.11502, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 0.9140625, "start": 427.875, "word": "now" }, { "confidence": 0.99121094, "end": 428.435, "punctuated_word": "happens", "speaker": 0, "speaker_confidence": 0.9140625, "start": 428.11502, "word": "happens" }, { "confidence": 0.9970703, "end": 428.755, "punctuated_word": "via", "speaker": 0, "speaker_confidence": 0.9140625, "start": 428.435, "word": "via" }, { "confidence": 0.9333496, "end": 429.255, "punctuated_word": "algorithms,", "speaker": 0, "speaker_confidence": 0.9140625, "start": 428.755, "word": "algorithms" }, { "confidence": 0.9741211, "end": 429.635, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9140625, "start": 429.315, "word": "and" }, { "confidence": 0.99902344, "end": 429.875, "punctuated_word": "AI", "speaker": 0, "speaker_confidence": 0.9140625, "start": 429.635, "word": "ai" }, { "confidence": 0.98095703, "end": 429.95502, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9140625, "start": 429.875, "word": "is" }, { "confidence": 0.99902344, "end": 430.195, "punctuated_word": "being", "speaker": 0, "speaker_confidence": 0.9140625, "start": 429.95502, "word": "being" }, { "confidence": 1, "end": 430.695, "punctuated_word": "weaponized", "speaker": 0, "speaker_confidence": 0.9140625, "start": 430.195, "word": "weaponized" }, { "confidence": 1, "end": 430.995, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9140625, "start": 430.755, "word": "to" }, { "confidence": 0.9970703, "end": 431.315, "punctuated_word": "both", "speaker": 0, "speaker_confidence": 0.9140625, "start": 430.995, "word": "both" }, { "confidence": 0.9970703, "end": 431.795, "punctuated_word": "launch", "speaker": 0, "speaker_confidence": 0.9140625, "start": 431.315, "word": "launch" }, { "confidence": 1, "end": 431.875, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 431.795, "word": "and" }, { "confidence": 0.97265625, "end": 432.195, "punctuated_word": "defend", "speaker": 0, "speaker_confidence": 1, "start": 431.875, "word": "defend" }, { "confidence": 0.9716797, "end": 432.435, "punctuated_word": "against", "speaker": 0, "speaker_confidence": 1, "start": 432.195, "word": "against" }, { "confidence": 0.8144531, "end": 432.935, "punctuated_word": "cyberattacks.", "speaker": 0, "speaker_confidence": 1, "start": 432.435, "word": "cyberattacks" }, { "confidence": 0.99902344, "end": 433.55502, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 1, "start": 433.315, "word": "and" }, { "confidence": 0.99609375, "end": 433.795, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 1, "start": 433.55502, "word": "even" }, { "confidence": 1, "end": 433.95502, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 1, "start": 433.795, "word": "our" }, { "confidence": 0.9970703, "end": 434.435, "punctuated_word": "military", "speaker": 0, "speaker_confidence": 1, "start": 433.95502, "word": "military" }, { "confidence": 0.9770508, "end": 434.915, "punctuated_word": "industrial", "speaker": 0, "speaker_confidence": 1, "start": 434.435, "word": "industrial" }, { "confidence": 0.99902344, "end": 435.39502, "punctuated_word": "complex", "speaker": 0, "speaker_confidence": 1, "start": 434.915, "word": "complex" }, { "confidence": 0.9970703, "end": 435.715, "punctuated_word": "friends", "speaker": 0, "speaker_confidence": 1, "start": 435.39502, "word": "friends" }, { "confidence": 0.6513672, "end": 435.875, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 1, "start": 435.715, "word": "like" }, { "confidence": 0.99365234, "end": 436.375, "punctuated_word": "Palantir", "speaker": 0, "speaker_confidence": 1, "start": 435.875, "word": "palantir" }, { "confidence": 0.94970703, "end": 436.79, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 1, "start": 436.63, "word": "are" }, { "confidence": 1, "end": 437.11002, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 1, "start": 436.79, "word": "using" }, { "confidence": 0.9902344, "end": 437.35, "punctuated_word": "AI", "speaker": 0, "speaker_confidence": 1, "start": 437.11002, "word": "ai" }, { "confidence": 0.99609375, "end": 437.51, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 437.35, "word": "to" }, { "confidence": 0.9980469, "end": 437.75, "punctuated_word": "help", "speaker": 0, "speaker_confidence": 1, "start": 437.51, "word": "help" }, { "confidence": 0.9892578, "end": 437.91, "punctuated_word": "blow", "speaker": 0, "speaker_confidence": 1, "start": 437.75, "word": "blow" }, { "confidence": 0.9980469, "end": 438.15, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 1, "start": 437.91, "word": "people" }, { "confidence": 0.99902344, "end": 438.31, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 1, "start": 438.15, "word": "up" }, { "confidence": 0.99902344, "end": 438.47, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 438.31, "word": "in" }, { "confidence": 0.9970703, "end": 438.55002, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 438.47, "word": "a" }, { "confidence": 1, "end": 438.87, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 1, "start": 438.55002, "word": "more" }, { "confidence": 0.9970703, "end": 439.37, "punctuated_word": "environmentally", "speaker": 0, "speaker_confidence": 1, "start": 438.87, "word": "environmentally" }, { "confidence": 0.99316406, "end": 439.99, "punctuated_word": "friendly", "speaker": 0, "speaker_confidence": 1, "start": 439.51, "word": "friendly" }, { "confidence": 0.98828125, "end": 440.23, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 439.99, "word": "and" }, { "confidence": 0.99316406, "end": 440.71, "punctuated_word": "equitable", "speaker": 0, "speaker_confidence": 1, "start": 440.23, "word": "equitable" }, { "confidence": 0.8183594, "end": 441.03, "punctuated_word": "way.", "speaker": 0, "speaker_confidence": 1, "start": 440.71, "word": "way" }, { "confidence": 0.9951172, "end": 441.19, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 1, "start": 441.03, "word": "but" }, { "confidence": 0.98291016, "end": 441.51, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 1, "start": 441.19, "word": "things" }, { "confidence": 0.9970703, "end": 441.67, "punctuated_word": "got", "speaker": 0, "speaker_confidence": 1, "start": 441.51, "word": "got" }, { "confidence": 0.9970703, "end": 441.91, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 1, "start": 441.67, "word": "really" }, { "confidence": 0.99902344, "end": 442.31, "punctuated_word": "crazy", "speaker": 0, "speaker_confidence": 1, "start": 441.91, "word": "crazy" }, { "confidence": 0.99902344, "end": 442.55002, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 442.31, "word": "with" }, { "confidence": 0.98657227, "end": 443.03, "punctuated_word": "generative", "speaker": 0, "speaker_confidence": 1, "start": 442.55002, "word": "generative" }, { "confidence": 0.85498047, "end": 443.35, "punctuated_word": "image", "speaker": 0, "speaker_confidence": 1, "start": 443.03, "word": "image" }, { "confidence": 0.98706055, "end": 443.75, "punctuated_word": "AI.", "speaker": 0, "speaker_confidence": 1, "start": 443.35, "word": "ai" }, { "confidence": 0.9707031, "end": 443.99, "punctuated_word": "10", "speaker": 0, "speaker_confidence": 1, "start": 443.75, "word": "10" }, { "confidence": 0.9902344, "end": 444.15, "punctuated_word": "years", "speaker": 0, "speaker_confidence": 1, "start": 443.99, "word": "years" }, { "confidence": 0.99853516, "end": 444.47, "punctuated_word": "ago,", "speaker": 0, "speaker_confidence": 1, "start": 444.15, "word": "ago" }, { "confidence": 0.94921875, "end": 444.71, "punctuated_word": "Ian", "speaker": 0, "speaker_confidence": 1, "start": 444.47, "word": "ian" }, { "confidence": 0.9944661, "end": 445.21, "punctuated_word": "Goodfellow", "speaker": 0, "speaker_confidence": 1, "start": 444.71, "word": "goodfellow" }, { "confidence": 0.99316406, "end": 445.59, "punctuated_word": "published", "speaker": 0, "speaker_confidence": 1, "start": 445.27002, "word": "published" }, { "confidence": 0.93847656, "end": 445.67, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 445.59, "word": "a" }, { "confidence": 1, "end": 446.15, "punctuated_word": "paper", "speaker": 0, "speaker_confidence": 1, "start": 445.67, "word": "paper" }, { "confidence": 0.9614258, "end": 446.585, "punctuated_word": "proposing", "speaker": 0, "speaker_confidence": 1, "start": 446.15, "word": "proposing" }, { "confidence": 0.62646484, "end": 446.82498, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 446.585, "word": "the" }, { "confidence": 0.7578125, "end": 447.065, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 1, "start": 446.82498, "word": "first" }, { "confidence": 0.9909668, "end": 447.565, "punctuated_word": "generative", "speaker": 0, "speaker_confidence": 1, "start": 447.065, "word": "generative" }, { "confidence": 0.99902344, "end": 448.125, "punctuated_word": "adversarial", "speaker": 0, "speaker_confidence": 1, "start": 447.625, "word": "adversarial" }, { "confidence": 0.9797363, "end": 448.66498, "punctuated_word": "network.", "speaker": 0, "speaker_confidence": 1, "start": 448.26498, "word": "network" }, { "confidence": 0.9892578, "end": 448.905, "punctuated_word": "7", "speaker": 0, "speaker_confidence": 1, "start": 448.66498, "word": "7" }, { "confidence": 0.9941406, "end": 449.225, "punctuated_word": "years", "speaker": 0, "speaker_confidence": 1, "start": 448.905, "word": "years" }, { "confidence": 0.9970703, "end": 449.54498, "punctuated_word": "later,", "speaker": 0, "speaker_confidence": 1, "start": 449.225, "word": "later" }, { "confidence": 0.6755371, "end": 450.04498, "punctuated_word": "OpenAI", "speaker": 0, "speaker_confidence": 1, "start": 449.54498, "word": "openai" }, { "confidence": 0.9863281, "end": 450.345, "punctuated_word": "brought", "speaker": 0, "speaker_confidence": 1, "start": 450.10498, "word": "brought" }, { "confidence": 0.9970703, "end": 450.505, "punctuated_word": "us", "speaker": 0, "speaker_confidence": 1, "start": 450.345, "word": "us" }, { "confidence": 0.91259766, "end": 450.585, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 450.505, "word": "to" }, { "confidence": 0.79003906, "end": 450.905, "punctuated_word": "fusion", "speaker": 0, "speaker_confidence": 1, "start": 450.585, "word": "fusion" }, { "confidence": 0.99902344, "end": 451.225, "punctuated_word": "models", "speaker": 0, "speaker_confidence": 1, "start": 450.905, "word": "models" }, { "confidence": 1, "end": 451.38498, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 451.225, "word": "with" }, { "confidence": 0.95654297, "end": 451.625, "punctuated_word": "DALL", "speaker": 0, "speaker_confidence": 1, "start": 451.38498, "word": "dall" }, { "confidence": 0.9885254, "end": 451.785, "punctuated_word": "E,", "speaker": 0, "speaker_confidence": 1, "start": 451.625, "word": "e" }, { "confidence": 0.99902344, "end": 452.025, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 1, "start": 451.785, "word": "but" }, { "confidence": 0.99902344, "end": 452.185, "punctuated_word": "they", "speaker": 0, "speaker_confidence": 1, "start": 452.025, "word": "they" }, { "confidence": 0.99609375, "end": 452.425, "punctuated_word": "still", "speaker": 0, "speaker_confidence": 1, "start": 452.185, "word": "still" }, { "confidence": 0.75146484, "end": 452.66498, "punctuated_word": "sucked", "speaker": 0, "speaker_confidence": 1, "start": 452.425, "word": "sucked" }, { "confidence": 0.9980469, "end": 452.82498, "punctuated_word": "pretty", "speaker": 0, "speaker_confidence": 1, "start": 452.66498, "word": "pretty" }, { "confidence": 0.97875977, "end": 453.305, "punctuated_word": "hard.", "speaker": 0, "speaker_confidence": 1, "start": 452.82498, "word": "hard" }, { "confidence": 0.9951172, "end": 453.465, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 1, "start": 453.305, "word": "but" }, { "confidence": 0.9970703, "end": 453.625, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 1, "start": 453.465, "word": "then" }, { "confidence": 0.75634766, "end": 453.785, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 1, "start": 453.625, "word": "just" }, { "confidence": 0.98095703, "end": 453.94498, "punctuated_word": "2", "speaker": 0, "speaker_confidence": 1, "start": 453.785, "word": "2" }, { "confidence": 0.99902344, "end": 454.10498, "punctuated_word": "years", "speaker": 0, "speaker_confidence": 1, "start": 453.94498, "word": "years" }, { "confidence": 0.9980469, "end": 454.345, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 1, "start": 454.10498, "word": "from" }, { "confidence": 0.99609375, "end": 454.505, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 454.345, "word": "that" }, { "confidence": 0.99658203, "end": 454.745, "punctuated_word": "point,", "speaker": 0, "speaker_confidence": 1, "start": 454.505, "word": "point" }, { "confidence": 0.9892578, "end": 454.82498, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 1, "start": 454.745, "word": "we" }, { "confidence": 0.9873047, "end": 455.065, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 1, "start": 454.82498, "word": "get" }, { "confidence": 0.99902344, "end": 455.38498, "punctuated_word": "images", "speaker": 0, "speaker_confidence": 1, "start": 455.065, "word": "images" }, { "confidence": 0.9863281, "end": 455.54498, "punctuated_word": "good", "speaker": 0, "speaker_confidence": 1, "start": 455.38498, "word": "good" }, { "confidence": 0.9970703, "end": 455.615, "punctuated_word": "enough", "speaker": 0, "speaker_confidence": 1, "start": 455.54498, "word": "enough" }, { "confidence": 0.9892578, "end": 455.865, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 455.615, "word": "to" }, { "confidence": 0.97802734, "end": 456.025, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 1, "start": 455.865, "word": "make" }, { "confidence": 0.66015625, "end": 456.45, "punctuated_word": "10", "speaker": 0, "speaker_confidence": 1, "start": 456.025, "word": "10" }, { "confidence": 0.9345703, "end": 456.77002, "punctuated_word": "$1,000", "speaker": 0, "speaker_confidence": 1, "start": 456.53, "word": "$1,000" }, { "confidence": 0.52734375, "end": 456.93002, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 456.77002, "word": "a" }, { "confidence": 0.99902344, "end": 457.09003, "punctuated_word": "month", "speaker": 0, "speaker_confidence": 1, "start": 456.93002, "word": "month" }, { "confidence": 0.9921875, "end": 457.17, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 1, "start": 457.09003, "word": "on" }, { "confidence": 0.8886719, "end": 457.67, "punctuated_word": "OnlyFans.", "speaker": 0, "speaker_confidence": 1, "start": 457.17, "word": "onlyfans" }, { "confidence": 0.9951172, "end": 458.13, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 1, "start": 457.89, "word": "in" }, { "confidence": 0.9313965, "end": 458.63, "punctuated_word": "2024,", "speaker": 0, "speaker_confidence": 1, "start": 458.13, "word": "2024" }, { "confidence": 0.99902344, "end": 459.01, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 458.85, "word": "a" }, { "confidence": 1, "end": 459.17, "punctuated_word": "big", "speaker": 0, "speaker_confidence": 1, "start": 459.01, "word": "big" }, { "confidence": 0.99902344, "end": 459.41, "punctuated_word": "trend", "speaker": 0, "speaker_confidence": 1, "start": 459.17, "word": "trend" }, { "confidence": 0.9790039, "end": 459.57, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 459.41, "word": "to" }, { "confidence": 1, "end": 459.89, "punctuated_word": "watch", "speaker": 0, "speaker_confidence": 1, "start": 459.57, "word": "watch" }, { "confidence": 0.99902344, "end": 460.13, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 459.89, "word": "is" }, { "confidence": 0.98828125, "end": 460.45, "punctuated_word": "text", "speaker": 0, "speaker_confidence": 1, "start": 460.13, "word": "text" }, { "confidence": 0.9902344, "end": 460.61002, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 460.45, "word": "to" }, { "confidence": 0.9824219, "end": 461.09003, "punctuated_word": "video.", "speaker": 0, "speaker_confidence": 1, "start": 460.61002, "word": "video" }, { "confidence": 0.95703125, "end": 461.41, "punctuated_word": "Stable", "speaker": 0, "speaker_confidence": 1, "start": 461.09003, "word": "stable" }, { "confidence": 0.79052734, "end": 461.89, "punctuated_word": "Diffusion", "speaker": 0, "speaker_confidence": 1, "start": 461.41, "word": "diffusion" }, { "confidence": 0.9970703, "end": 462.05002, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 1, "start": 461.89, "word": "just" }, { "confidence": 0.9970703, "end": 462.45, "punctuated_word": "released", "speaker": 0, "speaker_confidence": 1, "start": 462.05002, "word": "released" }, { "confidence": 0.9970703, "end": 462.61002, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 462.45, "word": "a" }, { "confidence": 0.9980469, "end": 462.85, "punctuated_word": "text", "speaker": 0, "speaker_confidence": 1, "start": 462.61002, "word": "text" }, { "confidence": 0.97998047, "end": 462.93002, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 462.85, "word": "to" }, { "confidence": 1, "end": 463.25, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 1, "start": 462.93002, "word": "video" }, { "confidence": 0.89331055, "end": 463.57, "punctuated_word": "model,", "speaker": 0, "speaker_confidence": 1, "start": 463.25, "word": "model" }, { "confidence": 1, "end": 463.81, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 463.57, "word": "and" }, { "confidence": 0.9760742, "end": 463.97, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 1, "start": 463.81, "word": "at" }, { "confidence": 0.99902344, "end": 464.05002, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 463.97, "word": "the" }, { "confidence": 0.99902344, "end": 464.29, "punctuated_word": "current", "speaker": 0, "speaker_confidence": 1, "start": 464.05002, "word": "current" }, { "confidence": 1, "end": 464.45, "punctuated_word": "rate", "speaker": 0, "speaker_confidence": 1, "start": 464.29, "word": "rate" }, { "confidence": 0.9951172, "end": 464.61002, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 464.45, "word": "of" }, { "confidence": 0.99609375, "end": 464.965, "punctuated_word": "progress,", "speaker": 0, "speaker_confidence": 1, "start": 464.61002, "word": "progress" }, { "confidence": 0.52001953, "end": 465.365, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 1, "start": 465.125, "word": "i" }, { "confidence": 0.9980469, "end": 465.605, "punctuated_word": "predict", "speaker": 0, "speaker_confidence": 1, "start": 465.365, "word": "predict" }, { "confidence": 0.9921875, "end": 465.925, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 465.605, "word": "that" }, { "confidence": 0.97314453, "end": 466.085, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 1, "start": 465.925, "word": "by" }, { "confidence": 0.9970703, "end": 466.165, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 466.085, "word": "the" }, { "confidence": 1, "end": 466.32498, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.8876953, "start": 466.165, "word": "end" }, { "confidence": 0.99902344, "end": 466.485, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8876953, "start": 466.32498, "word": "of" }, { "confidence": 0.85913086, "end": 466.985, "punctuated_word": "2024,", "speaker": 0, "speaker_confidence": 0.8876953, "start": 466.485, "word": "2024" }, { "confidence": 0.99902344, "end": 467.525, "punctuated_word": "you'll", "speaker": 0, "speaker_confidence": 0.8876953, "start": 467.285, "word": "you'll" }, { "confidence": 0.99902344, "end": 467.685, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.8876953, "start": 467.525, "word": "be" }, { "confidence": 1, "end": 467.925, "punctuated_word": "able", "speaker": 0, "speaker_confidence": 0.8876953, "start": 467.685, "word": "able" }, { "confidence": 0.9951172, "end": 468.085, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8876953, "start": 467.925, "word": "to" }, { "confidence": 1, "end": 468.565, "punctuated_word": "generate", "speaker": 0, "speaker_confidence": 0.8876953, "start": 468.085, "word": "generate" }, { "confidence": 0.99902344, "end": 468.725, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8876953, "start": 468.565, "word": "a" }, { "confidence": 1, "end": 468.965, "punctuated_word": "full", "speaker": 0, "speaker_confidence": 0.8876953, "start": 468.725, "word": "full" }, { "confidence": 0.99902344, "end": 469.365, "punctuated_word": "length", "speaker": 0, "speaker_confidence": 0.8876953, "start": 468.965, "word": "length" }, { "confidence": 0.89624023, "end": 469.845, "punctuated_word": "Bollywood", "speaker": 0, "speaker_confidence": 0.8876953, "start": 469.365, "word": "bollywood" }, { "confidence": 0.99316406, "end": 470.245, "punctuated_word": "quality", "speaker": 0, "speaker_confidence": 0.8876953, "start": 469.845, "word": "quality" }, { "confidence": 0.9980469, "end": 470.485, "punctuated_word": "movie", "speaker": 0, "speaker_confidence": 0.8876953, "start": 470.245, "word": "movie" }, { "confidence": 1, "end": 470.725, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.8876953, "start": 470.485, "word": "from" }, { "confidence": 0.99902344, "end": 470.965, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.8876953, "start": 470.725, "word": "your" }, { "confidence": 0.89697266, "end": 471.365, "punctuated_word": "laptop.", "speaker": 0, "speaker_confidence": 0.8876953, "start": 470.965, "word": "laptop" }, { "confidence": 0.9970703, "end": 471.525, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.8876953, "start": 471.365, "word": "but" }, { "confidence": 0.9970703, "end": 471.685, "punctuated_word": "none", "speaker": 0, "speaker_confidence": 0.8876953, "start": 471.525, "word": "none" }, { "confidence": 1, "end": 471.76498, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8876953, "start": 471.685, "word": "of" }, { "confidence": 0.9770508, "end": 471.925, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.8876953, "start": 471.76498, "word": "this" }, { "confidence": 0.99902344, "end": 472.165, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.8876953, "start": 471.925, "word": "will" }, { "confidence": 1, "end": 472.485, "punctuated_word": "matter", "speaker": 0, "speaker_confidence": 0.8876953, "start": 472.165, "word": "matter" }, { "confidence": 0.99121094, "end": 472.645, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.8876953, "start": 472.485, "word": "if" }, { "confidence": 0.99902344, "end": 473.09, "punctuated_word": "somebody", "speaker": 0, "speaker_confidence": 0.8876953, "start": 472.645, "word": "somebody" }, { "confidence": 0.6660156, "end": 473.41, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 0.8876953, "start": 473.16998, "word": "first" }, { "confidence": 0.69921875, "end": 473.88998, "punctuated_word": "achieves", "speaker": 0, "speaker_confidence": 0.8876953, "start": 473.41, "word": "achieves" }, { "confidence": 0.9902344, "end": 474.37, "punctuated_word": "artificial", "speaker": 0, "speaker_confidence": 0.8876953, "start": 473.88998, "word": "artificial" }, { "confidence": 0.98535156, "end": 474.77, "punctuated_word": "general", "speaker": 0, "speaker_confidence": 0.8876953, "start": 474.37, "word": "general" }, { "confidence": 0.84594727, "end": 475.27, "punctuated_word": "intelligence,", "speaker": 0, "speaker_confidence": 0.8876953, "start": 474.77, "word": "intelligence" }, { "confidence": 0.99316406, "end": 475.65, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.8876953, "start": 475.33, "word": "an" }, { "confidence": 0.9970703, "end": 475.81, "punctuated_word": "AI", "speaker": 0, "speaker_confidence": 0.8876953, "start": 475.65, "word": "ai" }, { "confidence": 0.9951172, "end": 475.97, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8876953, "start": 475.81, "word": "that" }, { "confidence": 0.9980469, "end": 476.13, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.8876953, "start": 475.97, "word": "can" }, { "confidence": 0.9970703, "end": 476.37, "punctuated_word": "actually", "speaker": 0, "speaker_confidence": 0.8876953, "start": 476.13, "word": "actually" }, { "confidence": 0.9970703, "end": 476.61, "punctuated_word": "think", "speaker": 0, "speaker_confidence": 0.8876953, "start": 476.37, "word": "think" }, { "confidence": 0.99902344, "end": 476.77, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.8876953, "start": 476.61, "word": "for" }, { "confidence": 1, "end": 477.25, "punctuated_word": "itself", "speaker": 0, "speaker_confidence": 0.8876953, "start": 476.77, "word": "itself" }, { "confidence": 0.7866211, "end": 477.41, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8876953, "start": 477.25, "word": "and" }, { "confidence": 0.99902344, "end": 477.57, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.8876953, "start": 477.41, "word": "not" }, { "confidence": 0.99902344, "end": 477.88998, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.8876953, "start": 477.57, "word": "just" }, { "confidence": 0.9980469, "end": 478.38998, "punctuated_word": "regurgitate", "speaker": 0, "speaker_confidence": 0.8876953, "start": 477.88998, "word": "regurgitate" }, { "confidence": 0.9951172, "end": 478.69, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8876953, "start": 478.44998, "word": "and" }, { "confidence": 0.99609375, "end": 479.01, "punctuated_word": "remix", "speaker": 0, "speaker_confidence": 0.8876953, "start": 478.69, "word": "remix" }, { "confidence": 0.9980469, "end": 479.33, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 0.8876953, "start": 479.01, "word": "things" }, { "confidence": 0.9980469, "end": 479.57, "punctuated_word": "humans", "speaker": 0, "speaker_confidence": 0.8876953, "start": 479.33, "word": "humans" }, { "confidence": 0.9741211, "end": 479.73, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.8876953, "start": 479.57, "word": "have" }, { "confidence": 0.96240234, "end": 480.105, "punctuated_word": "already", "speaker": 0, "speaker_confidence": 0.8876953, "start": 479.73, "word": "already" }, { "confidence": 0.9663086, "end": 480.345, "punctuated_word": "gun.", "speaker": 0, "speaker_confidence": 0.8876953, "start": 480.105, "word": "gun" }, { "confidence": 0.99902344, "end": 480.505, "punctuated_word": "Some", "speaker": 0, "speaker_confidence": 0.8876953, "start": 480.345, "word": "some" }, { "confidence": 0.99902344, "end": 480.825, "punctuated_word": "people", "speaker": 0, "speaker_confidence": 0.8876953, "start": 480.505, "word": "people" }, { "confidence": 0.98828125, "end": 480.98502, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 0.8876953, "start": 480.825, "word": "even" }, { "confidence": 0.9970703, "end": 481.225, "punctuated_word": "think", "speaker": 0, "speaker_confidence": 0.8876953, "start": 480.98502, "word": "think" }, { "confidence": 0.99121094, "end": 481.385, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.8876953, "start": 481.225, "word": "this" }, { "confidence": 0.921875, "end": 481.465, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.8725586, "start": 481.385, "word": "has" }, { "confidence": 0.99121094, "end": 481.785, "punctuated_word": "already", "speaker": 0, "speaker_confidence": 0.8725586, "start": 481.465, "word": "already" }, { "confidence": 0.9980469, "end": 481.86502, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.8725586, "start": 481.785, "word": "been" }, { "confidence": 0.99609375, "end": 482.265, "punctuated_word": "achieved", "speaker": 0, "speaker_confidence": 0.8725586, "start": 481.86502, "word": "achieved" }, { "confidence": 0.9970703, "end": 482.505, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.8725586, "start": 482.265, "word": "by" }, { "confidence": 0.51464844, "end": 482.825, "punctuated_word": "open", "speaker": 0, "speaker_confidence": 0.8725586, "start": 482.505, "word": "open" }, { "confidence": 0.7338867, "end": 483.225, "punctuated_word": "AI", "speaker": 0, "speaker_confidence": 0.8725586, "start": 482.825, "word": "ai" }, { "confidence": 0.98291016, "end": 483.465, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.8725586, "start": 483.225, "word": "with" }, { "confidence": 0.9526367, "end": 483.545, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8725586, "start": 483.465, "word": "the" }, { "confidence": 0.98095703, "end": 483.86502, "punctuated_word": "leak", "speaker": 0, "speaker_confidence": 0.8725586, "start": 483.545, "word": "leak" }, { "confidence": 0.99121094, "end": 484.105, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8725586, "start": 483.86502, "word": "of" }, { "confidence": 0.7416992, "end": 484.605, "punctuated_word": "QStar.", "speaker": 0, "speaker_confidence": 0.8725586, "start": 484.105, "word": "qstar" }, { "confidence": 0.99853516, "end": 484.98502, "punctuated_word": "However,", "speaker": 0, "speaker_confidence": 0.8725586, "start": 484.74503, "word": "however" }, { "confidence": 0.9890137, "end": 485.225, "punctuated_word": "there's", "speaker": 0, "speaker_confidence": 0.8725586, "start": 484.98502, "word": "there's" }, { "confidence": 0.9970703, "end": 485.385, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8725586, "start": 485.225, "word": "a" }, { "confidence": 0.9921875, "end": 485.625, "punctuated_word": "French", "speaker": 0, "speaker_confidence": 0.8725586, "start": 485.385, "word": "french" }, { "confidence": 0.99902344, "end": 485.86502, "punctuated_word": "guy", "speaker": 0, "speaker_confidence": 0.8725586, "start": 485.625, "word": "guy" }, { "confidence": 0.9921875, "end": 485.945, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8725586, "start": 485.86502, "word": "that" }, { "confidence": 0.99316406, "end": 486.345, "punctuated_word": "thinks", "speaker": 0, "speaker_confidence": 0.8725586, "start": 485.945, "word": "thinks" }, { "confidence": 0.9926758, "end": 486.825, "punctuated_word": "AGI", "speaker": 0, "speaker_confidence": 0.8725586, "start": 486.345, "word": "agi" }, { "confidence": 0.98291016, "end": 486.98502, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8725586, "start": 486.825, "word": "is" }, { "confidence": 0.7573242, "end": 487.36, "punctuated_word": "decades", "speaker": 0, "speaker_confidence": 0.8725586, "start": 486.98502, "word": "decades" }, { "confidence": 0.92407227, "end": 487.84, "punctuated_word": "away,", "speaker": 0, "speaker_confidence": 0.8725586, "start": 487.59998, "word": "away" }, { "confidence": 0.99902344, "end": 488.08, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8725586, "start": 487.84, "word": "and" }, { "confidence": 0.9536133, "end": 488.24, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.8725586, "start": 488.08, "word": "some" }, { "confidence": 0.99316406, "end": 488.47998, "punctuated_word": "think", "speaker": 0, "speaker_confidence": 0.8725586, "start": 488.24, "word": "think" }, { "confidence": 0.9970703, "end": 488.56, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8725586, "start": 488.47998, "word": "it" }, { "confidence": 0.9980469, "end": 488.71997, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.8725586, "start": 488.56, "word": "will" }, { "confidence": 0.99902344, "end": 488.96, "punctuated_word": "never", "speaker": 0, "speaker_confidence": 0.8725586, "start": 488.71997, "word": "never" }, { "confidence": 0.99902344, "end": 489.12, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.8725586, "start": 488.96, "word": "be" }, { "confidence": 0.9980469, "end": 489.52, "punctuated_word": "achieved.", "speaker": 0, "speaker_confidence": 0.8725586, "start": 489.12, "word": "achieved" }, { "confidence": 1, "end": 489.75998, "punctuated_word": "When", "speaker": 0, "speaker_confidence": 0.8725586, "start": 489.52, "word": "when" }, { "confidence": 0.99902344, "end": 489.91998, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8725586, "start": 489.75998, "word": "that" }, { "confidence": 0.9980469, "end": 490.08, "punctuated_word": "day", "speaker": 0, "speaker_confidence": 0.8725586, "start": 489.91998, "word": "day" }, { "confidence": 0.9904785, "end": 490.4, "punctuated_word": "comes,", "speaker": 0, "speaker_confidence": 0.8725586, "start": 490.08, "word": "comes" }, { "confidence": 0.99902344, "end": 490.56, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8725586, "start": 490.4, "word": "it" }, { "confidence": 0.99902344, "end": 490.8, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.8725586, "start": 490.56, "word": "could" }, { "confidence": 0.99902344, "end": 490.87997, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.8725586, "start": 490.8, "word": "be" }, { "confidence": 0.99902344, "end": 490.96, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6064453, "start": 490.87997, "word": "a" }, { "confidence": 1, "end": 491.12, "punctuated_word": "great", "speaker": 0, "speaker_confidence": 0.6064453, "start": 490.96, "word": "great" }, { "confidence": 0.9970703, "end": 491.36, "punctuated_word": "day", "speaker": 0, "speaker_confidence": 0.6064453, "start": 491.12, "word": "day" }, { "confidence": 1, "end": 491.52, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.6064453, "start": 491.36, "word": "for" }, { "confidence": 0.9916992, "end": 492, "punctuated_word": "humanity.", "speaker": 0, "speaker_confidence": 0.6064453, "start": 491.52, "word": "humanity" }, { "confidence": 0.9458008, "end": 492.24, "punctuated_word": "We'll", "speaker": 0, "speaker_confidence": 0.6064453, "start": 492, "word": "we'll" }, { "confidence": 1, "end": 492.47998, "punctuated_word": "never", "speaker": 0, "speaker_confidence": 0.6064453, "start": 492.24, "word": "never" }, { "confidence": 0.99902344, "end": 492.63998, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.6064453, "start": 492.47998, "word": "have" }, { "confidence": 0.99902344, "end": 492.71997, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8457031, "start": 492.63998, "word": "to" }, { "confidence": 1, "end": 492.96, "punctuated_word": "work", "speaker": 0, "speaker_confidence": 0.8457031, "start": 492.71997, "word": "work" }, { "confidence": 0.9970703, "end": 493.03998, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.8457031, "start": 492.96, "word": "or" }, { "confidence": 1, "end": 493.28, "punctuated_word": "think", "speaker": 0, "speaker_confidence": 0.8457031, "start": 493.03998, "word": "think" }, { "confidence": 0.98217773, "end": 493.68, "punctuated_word": "again,", "speaker": 0, "speaker_confidence": 0.8457031, "start": 493.28, "word": "again" }, { "confidence": 0.99902344, "end": 493.84, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8457031, "start": 493.68, "word": "and" }, { "confidence": 0.83154297, "end": 494.15997, "punctuated_word": "there'll", "speaker": 0, "speaker_confidence": 0.8457031, "start": 493.84, "word": "there'll" }, { "confidence": 0.9980469, "end": 494.24, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.8457031, "start": 494.15997, "word": "be" }, { "confidence": 1, "end": 494.56, "punctuated_word": "nothing", "speaker": 0, "speaker_confidence": 0.8457031, "start": 494.24, "word": "nothing" }, { "confidence": 0.99902344, "end": 494.8, "punctuated_word": "left", "speaker": 0, "speaker_confidence": 0.8457031, "start": 494.56, "word": "left" }, { "confidence": 0.9970703, "end": 494.87997, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8457031, "start": 494.8, "word": "to" }, { "confidence": 1, "end": 495.03998, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.8457031, "start": 494.87997, "word": "do" }, { "confidence": 0.9326172, "end": 495.28, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.8457031, "start": 495.03998, "word": "but" }, { "confidence": 0.9819336, "end": 495.68, "punctuated_word": "indulge", "speaker": 0, "speaker_confidence": 0.8457031, "start": 495.28, "word": "indulge" }, { "confidence": 0.9790039, "end": 495.75998, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8457031, "start": 495.68, "word": "in" }, { "confidence": 1, "end": 496.25998, "punctuated_word": "pleasure.", "speaker": 0, "speaker_confidence": 0.8457031, "start": 495.75998, "word": "pleasure" }, { "confidence": 0.9604492, "end": 496.4, "punctuated_word": "On", "speaker": 0, "speaker_confidence": 0.8457031, "start": 496.31998, "word": "on" }, { "confidence": 0.9604492, "end": 496.625, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8457031, "start": 496.4, "word": "the" }, { "confidence": 0.7739258, "end": 496.785, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.8457031, "start": 496.625, "word": "other" }, { "confidence": 0.99121094, "end": 497.025, "punctuated_word": "hand", "speaker": 0, "speaker_confidence": 0.8457031, "start": 496.785, "word": "hand" }, { "confidence": 0.857666, "end": 497.345, "punctuated_word": "though,", "speaker": 0, "speaker_confidence": 0.8457031, "start": 497.025, "word": "though" }, { "confidence": 0.99902344, "end": 497.505, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.8457031, "start": 497.345, "word": "you" }, { "confidence": 0.99902344, "end": 497.665, "punctuated_word": "may", "speaker": 0, "speaker_confidence": 0.8457031, "start": 497.505, "word": "may" }, { "confidence": 0.9970703, "end": 497.825, "punctuated_word": "live", "speaker": 0, "speaker_confidence": 0.8457031, "start": 497.665, "word": "live" }, { "confidence": 0.9980469, "end": 497.985, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8457031, "start": 497.825, "word": "to" }, { "confidence": 0.99609375, "end": 498.225, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.8457031, "start": 497.985, "word": "see" }, { "confidence": 0.9707031, "end": 498.465, "punctuated_word": "AI", "speaker": 0, "speaker_confidence": 0.8457031, "start": 498.225, "word": "ai" }, { "confidence": 0.99609375, "end": 498.785, "punctuated_word": "made", "speaker": 0, "speaker_confidence": 0.8457031, "start": 498.465, "word": "made" }, { "confidence": 0.9819336, "end": 499.185, "punctuated_word": "horrors", "speaker": 0, "speaker_confidence": 0.8457031, "start": 498.785, "word": "horrors" }, { "confidence": 1, "end": 499.425, "punctuated_word": "beyond", "speaker": 0, "speaker_confidence": 0.8457031, "start": 499.185, "word": "beyond" }, { "confidence": 0.99902344, "end": 499.665, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.8457031, "start": 499.425, "word": "your" }, { "confidence": 0.99658203, "end": 500.165, "punctuated_word": "comprehension.", "speaker": 0, "speaker_confidence": 0.8457031, "start": 499.665, "word": "comprehension" }, { "confidence": 0.9892578, "end": 500.385, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.62109375, "start": 500.225, "word": "it" }, { "confidence": 0.9980469, "end": 500.545, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.62109375, "start": 500.385, "word": "could" }, { "confidence": 0.99609375, "end": 500.705, "punctuated_word": "end", "speaker": 0, "speaker_confidence": 0.62109375, "start": 500.545, "word": "end" }, { "confidence": 0.984375, "end": 500.865, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.62109375, "start": 500.705, "word": "up" }, { "confidence": 0.9951172, "end": 501.185, "punctuated_word": "being", "speaker": 0, "speaker_confidence": 0.62109375, "start": 500.865, "word": "being" }, { "confidence": 0.98535156, "end": 501.425, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.62109375, "start": 501.185, "word": "like" }, { "confidence": 0.99609375, "end": 501.585, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.62109375, "start": 501.425, "word": "when" }, { "confidence": 0.98828125, "end": 501.905, "punctuated_word": "Faust", "speaker": 0, "speaker_confidence": 0.62109375, "start": 501.585, "word": "faust" }, { "confidence": 0.9970703, "end": 502.025, "punctuated_word": "made", "speaker": 0, "speaker_confidence": 0.62109375, "start": 501.905, "word": "made" }, { "confidence": 0.9770508, "end": 502.145, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.73583984, "start": 502.025, "word": "a" }, { "confidence": 0.99316406, "end": 502.385, "punctuated_word": "deal", "speaker": 0, "speaker_confidence": 0.73583984, "start": 502.145, "word": "deal" }, { "confidence": 0.9921875, "end": 502.505, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.73583984, "start": 502.385, "word": "with" }, { "confidence": 0.7866211, "end": 502.625, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.73583984, "start": 502.505, "word": "the" }, { "confidence": 0.9194336, "end": 502.945, "punctuated_word": "devil", "speaker": 0, "speaker_confidence": 0.73583984, "start": 502.625, "word": "devil" }, { "confidence": 0.89990234, "end": 503.265, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.73583984, "start": 502.945, "word": "for" }, { "confidence": 0.5517578, "end": 503.67, "punctuated_word": "unlimited", "speaker": 0, "speaker_confidence": 0.73583984, "start": 503.265, "word": "unlimited" }, { "confidence": 0.5722656, "end": 504.15002, "punctuated_word": "knowledge", "speaker": 0, "speaker_confidence": 0.73583984, "start": 503.75, "word": "knowledge" }, { "confidence": 0.9970703, "end": 504.31003, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.73583984, "start": 504.15002, "word": "and" }, { "confidence": 0.9604492, "end": 504.81003, "punctuated_word": "pleasure.", "speaker": 0, "speaker_confidence": 0.73583984, "start": 504.31003, "word": "pleasure" }, { "confidence": 0.99902344, "end": 504.95, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.73583984, "start": 504.87003, "word": "but" }, { "confidence": 0.9980469, "end": 505.19, "punctuated_word": "once", "speaker": 0, "speaker_confidence": 0.73583984, "start": 504.95, "word": "once" }, { "confidence": 1, "end": 505.35, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.73583984, "start": 505.19, "word": "that" }, { "confidence": 1, "end": 505.67, "punctuated_word": "knowledge", "speaker": 0, "speaker_confidence": 0.73583984, "start": 505.35, "word": "knowledge" }, { "confidence": 0.99609375, "end": 505.83002, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.73583984, "start": 505.67, "word": "is" }, { "confidence": 0.9980469, "end": 506.31003, "punctuated_word": "achieved,", "speaker": 0, "speaker_confidence": 0.73583984, "start": 505.83002, "word": "achieved" }, { "confidence": 0.9951172, "end": 506.63, "punctuated_word": "there's", "speaker": 0, "speaker_confidence": 0.73583984, "start": 506.31003, "word": "there's" }, { "confidence": 0.99902344, "end": 506.71002, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.73583984, "start": 506.63, "word": "a" }, { "confidence": 0.99609375, "end": 506.95, "punctuated_word": "trade", "speaker": 0, "speaker_confidence": 0.73583984, "start": 506.71002, "word": "trade" }, { "confidence": 0.9892578, "end": 507.19, "punctuated_word": "off", "speaker": 0, "speaker_confidence": 0.73583984, "start": 506.95, "word": "off" }, { "confidence": 1, "end": 507.35, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.73583984, "start": 507.19, "word": "in" }, { "confidence": 0.9980469, "end": 507.43002, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.73583984, "start": 507.35, "word": "the" }, { "confidence": 1, "end": 507.75, "punctuated_word": "form", "speaker": 0, "speaker_confidence": 0.73583984, "start": 507.43002, "word": "form" }, { "confidence": 0.9980469, "end": 507.99002, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.73583984, "start": 507.75, "word": "of" }, { "confidence": 0.94140625, "end": 508.39, "punctuated_word": "moral", "speaker": 0, "speaker_confidence": 0.73583984, "start": 507.99002, "word": "moral" }, { "confidence": 1, "end": 508.63, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.73583984, "start": 508.39, "word": "and" }, { "confidence": 1, "end": 509.13, "punctuated_word": "spiritual", "speaker": 0, "speaker_confidence": 0.73583984, "start": 508.63, "word": "spiritual" }, { "confidence": 0.99902344, "end": 509.59003, "punctuated_word": "decline.", "speaker": 0, "speaker_confidence": 0.73583984, "start": 509.19, "word": "decline" }, { "confidence": 0.9980469, "end": 509.75, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.9291992, "start": 509.59003, "word": "the" }, { "confidence": 0.99609375, "end": 509.99002, "punctuated_word": "AI", "speaker": 0, "speaker_confidence": 0.9291992, "start": 509.75, "word": "ai" }, { "confidence": 0.9980469, "end": 510.15002, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.9291992, "start": 509.99002, "word": "will" }, { "confidence": 0.99902344, "end": 510.39, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.9291992, "start": 510.15002, "word": "have" }, { "confidence": 0.9970703, "end": 510.47, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9291992, "start": 510.39, "word": "to" }, { "confidence": 0.99902344, "end": 510.79, "punctuated_word": "adjust", "speaker": 0, "speaker_confidence": 0.9291992, "start": 510.47, "word": "adjust" }, { "confidence": 0.9760742, "end": 510.95, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.9291992, "start": 510.79, "word": "for" }, { "confidence": 0.96435547, "end": 511.315, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.9291992, "start": 510.95, "word": "this" }, { "confidence": 0.59765625, "end": 511.715, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.9291992, "start": 511.555, "word": "by" }, { "confidence": 0.9980469, "end": 512.115, "punctuated_word": "creating", "speaker": 0, "speaker_confidence": 0.9291992, "start": 511.715, "word": "creating" }, { "confidence": 0.8378906, "end": 512.515, "punctuated_word": "billions", "speaker": 0, "speaker_confidence": 0.9291992, "start": 512.115, "word": "billions" }, { "confidence": 1, "end": 512.675, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9291992, "start": 512.515, "word": "of" }, { "confidence": 0.9970703, "end": 512.915, "punctuated_word": "lab", "speaker": 0, "speaker_confidence": 0.9291992, "start": 512.675, "word": "lab" }, { "confidence": 0.99609375, "end": 513.235, "punctuated_word": "grown", "speaker": 0, "speaker_confidence": 0.9291992, "start": 512.915, "word": "grown" }, { "confidence": 0.88305664, "end": 513.555, "punctuated_word": "babies,", "speaker": 0, "speaker_confidence": 0.9291992, "start": 513.235, "word": "babies" }, { "confidence": 1, "end": 513.795, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.9291992, "start": 513.555, "word": "which" }, { "confidence": 1, "end": 513.875, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.9291992, "start": 513.795, "word": "are" }, { "confidence": 0.99902344, "end": 514.115, "punctuated_word": "now", "speaker": 0, "speaker_confidence": 0.9291992, "start": 513.875, "word": "now" }, { "confidence": 0.9902344, "end": 514.195, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9291992, "start": 514.115, "word": "a" }, { "confidence": 1, "end": 514.435, "punctuated_word": "real", "speaker": 0, "speaker_confidence": 0.9291992, "start": 514.195, "word": "real" }, { "confidence": 0.96972656, "end": 514.675, "punctuated_word": "thing,", "speaker": 0, "speaker_confidence": 0.9291992, "start": 514.435, "word": "thing" }, { "confidence": 0.99316406, "end": 514.915, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.9291992, "start": 514.675, "word": "then" }, { "confidence": 1, "end": 514.995, "punctuated_word": "put", "speaker": 0, "speaker_confidence": 0.9291992, "start": 514.915, "word": "put" }, { "confidence": 0.99902344, "end": 515.235, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.9291992, "start": 514.995, "word": "them" }, { "confidence": 0.99609375, "end": 515.475, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.9291992, "start": 515.235, "word": "into" }, { "confidence": 0.99902344, "end": 515.635, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9291992, "start": 515.475, "word": "a" }, { "confidence": 0.9980469, "end": 516.135, "punctuated_word": "simulation", "speaker": 0, "speaker_confidence": 0.9291992, "start": 515.635, "word": "simulation" }, { "confidence": 0.9980469, "end": 516.355, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9291992, "start": 516.195, "word": "that" }, { "confidence": 1, "end": 516.59503, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.9291992, "start": 516.355, "word": "has" }, { "confidence": 0.9951172, "end": 516.835, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9291992, "start": 516.59503, "word": "a" }, { "confidence": 0.9970703, "end": 517.335, "punctuated_word": "disproportionate", "speaker": 0, "speaker_confidence": 0.9291992, "start": 516.835, "word": "disproportionate" }, { "confidence": 1, "end": 517.635, "punctuated_word": "amount", "speaker": 0, "speaker_confidence": 0.9291992, "start": 517.395, "word": "amount" }, { "confidence": 0.9970703, "end": 517.795, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9291992, "start": 517.635, "word": "of" }, { "confidence": 1, "end": 518.195, "punctuated_word": "suffering", "speaker": 0, "speaker_confidence": 0.9291992, "start": 517.795, "word": "suffering" }, { "confidence": 0.9580078, "end": 518.355, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9291992, "start": 518.195, "word": "in" }, { "confidence": 1, "end": 518.59503, "punctuated_word": "order", "speaker": 0, "speaker_confidence": 0.9291992, "start": 518.355, "word": "order" }, { "confidence": 0.99902344, "end": 518.835, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9291992, "start": 518.59503, "word": "to" }, { "confidence": 0.9980469, "end": 519.155, "punctuated_word": "offset", "speaker": 0, "speaker_confidence": 0.9291992, "start": 518.835, "word": "offset" }, { "confidence": 1, "end": 519.315, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9291992, "start": 519.155, "word": "the" }, { "confidence": 0.9970703, "end": 519.795, "punctuated_word": "pleasures", "speaker": 0, "speaker_confidence": 0.9291992, "start": 519.315, "word": "pleasures" }, { "confidence": 0.9760742, "end": 520.275, "punctuated_word": "experienced", "speaker": 0, "speaker_confidence": 0.9291992, "start": 519.795, "word": "experienced" }, { "confidence": 0.98291016, "end": 520.49, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.9291992, "start": 520.275, "word": "by" }, { "confidence": 0.97265625, "end": 520.73, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9291992, "start": 520.57, "word": "the" }, { "confidence": 0.9819336, "end": 521.20996, "punctuated_word": "AI.", "speaker": 0, "speaker_confidence": 0.9291992, "start": 520.73, "word": "ai" }, { "confidence": 0.99902344, "end": 521.45, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.9291992, "start": 521.20996, "word": "in" }, { "confidence": 0.9995117, "end": 521.69, "punctuated_word": "fact,", "speaker": 0, "speaker_confidence": 0.9291992, "start": 521.45, "word": "fact" }, { "confidence": 1, "end": 521.85, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.9291992, "start": 521.69, "word": "you" }, { "confidence": 1, "end": 522.08997, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 0.9291992, "start": 521.85, "word": "might" }, { "confidence": 1, "end": 522.17, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.9291992, "start": 522.08997, "word": "be" }, { "confidence": 1, "end": 522.33, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7807617, "start": 522.17, "word": "in" }, { "confidence": 0.8461914, "end": 522.49, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7807617, "start": 522.33, "word": "the" }, { "confidence": 1, "end": 522.97, "punctuated_word": "simulation", "speaker": 0, "speaker_confidence": 0.7807617, "start": 522.49, "word": "simulation" }, { "confidence": 0.9980469, "end": 523.13, "punctuated_word": "right", "speaker": 0, "speaker_confidence": 0.7807617, "start": 522.97, "word": "right" }, { "confidence": 0.984375, "end": 523.52997, "punctuated_word": "now.", "speaker": 0, "speaker_confidence": 0.7807617, "start": 523.13, "word": "now" }, { "confidence": 1, "end": 523.77, "punctuated_word": "Why", "speaker": 0, "speaker_confidence": 0.7807617, "start": 523.52997, "word": "why" }, { "confidence": 1, "end": 523.93, "punctuated_word": "else", "speaker": 0, "speaker_confidence": 0.7807617, "start": 523.77, "word": "else" }, { "confidence": 0.9980469, "end": 524.08997, "punctuated_word": "would", "speaker": 0, "speaker_confidence": 0.7807617, "start": 523.93, "word": "would" }, { "confidence": 0.9951172, "end": 524.17, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7807617, "start": 524.08997, "word": "you" }, { "confidence": 0.99902344, "end": 524.33, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.7807617, "start": 524.17, "word": "be" }, { "confidence": 1, "end": 524.57, "punctuated_word": "watching", "speaker": 0, "speaker_confidence": 0.7807617, "start": 524.33, "word": "watching" }, { "confidence": 0.9951172, "end": 524.64996, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7807617, "start": 524.57, "word": "a" }, { "confidence": 1, "end": 525.05, "punctuated_word": "video", "speaker": 0, "speaker_confidence": 0.7807617, "start": 524.64996, "word": "video" }, { "confidence": 0.9758301, "end": 525.52997, "punctuated_word": "gaslighting", "speaker": 0, "speaker_confidence": 0.7807617, "start": 525.05, "word": "gaslighting" }, { "confidence": 0.99902344, "end": 525.69, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.7807617, "start": 525.52997, "word": "you" }, { "confidence": 0.99609375, "end": 525.93, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.7807617, "start": 525.69, "word": "into" }, { "confidence": 1, "end": 526.17, "punctuated_word": "thinking", "speaker": 0, "speaker_confidence": 0.7807617, "start": 525.93, "word": "thinking" }, { "confidence": 0.9970703, "end": 526.41, "punctuated_word": "you're", "speaker": 0, "speaker_confidence": 0.7807617, "start": 526.17, "word": "you're" }, { "confidence": 1, "end": 526.57, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7807617, "start": 526.41, "word": "in" }, { "confidence": 0.99316406, "end": 526.73, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7807617, "start": 526.57, "word": "a" }, { "confidence": 0.9838867, "end": 527.23, "punctuated_word": "simulation?", "speaker": 0, "speaker_confidence": 0.7807617, "start": 526.73, "word": "simulation" }, { "confidence": 0.99658203, "end": 527.45, "punctuated_word": "You'd", "speaker": 0, "speaker_confidence": 0.7807617, "start": 527.29, "word": "you'd" }, { "confidence": 1, "end": 527.61, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.7807617, "start": 527.45, "word": "have" }, { "confidence": 1, "end": 527.69, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7807617, "start": 527.61, "word": "to" }, { "confidence": 0.99902344, "end": 527.77, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.7807617, "start": 527.69, "word": "be" }, { "confidence": 1, "end": 528.01, "punctuated_word": "crazy", "speaker": 0, "speaker_confidence": 0.7807617, "start": 527.77, "word": "crazy" }, { "confidence": 0.99902344, "end": 528.08997, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7807617, "start": 528.01, "word": "to" }, { "confidence": 1, "end": 528.33, "punctuated_word": "think", "speaker": 0, "speaker_confidence": 0.7807617, "start": 528.08997, "word": "think" }, { "confidence": 0.99658203, "end": 528.49, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 0.7807617, "start": 528.33, "word": "we're" }, { "confidence": 0.99902344, "end": 528.64996, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.7807617, "start": 528.49, "word": "not" }, { "confidence": 0.9951172, "end": 528.73, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.83447266, "start": 528.64996, "word": "in" }, { "confidence": 0.984375, "end": 528.89, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.83447266, "start": 528.73, "word": "a" }, { "confidence": 1, "end": 529.37, "punctuated_word": "simulation", "speaker": 0, "speaker_confidence": 0.83447266, "start": 528.89, "word": "simulation" }, { "confidence": 0.9970703, "end": 529.52997, "punctuated_word": "right", "speaker": 0, "speaker_confidence": 0.83447266, "start": 529.37, "word": "right" }, { "confidence": 0.90722656, "end": 529.695, "punctuated_word": "now.", "speaker": 0, "speaker_confidence": 0.83447266, "start": 529.52997, "word": "now" }, { "confidence": 0.9970703, "end": 530.09503, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.83447266, "start": 529.855, "word": "but" }, { "confidence": 0.9819336, "end": 530.255, "punctuated_word": "again", "speaker": 0, "speaker_confidence": 0.83447266, "start": 530.09503, "word": "again" }, { "confidence": 0.86328125, "end": 530.755, "punctuated_word": "congratulations", "speaker": 0, "speaker_confidence": 0.83447266, "start": 530.255, "word": "congratulations" }, { "confidence": 0.9951172, "end": 531.375, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.83447266, "start": 531.135, "word": "for" }, { "confidence": 1, "end": 531.615, "punctuated_word": "making", "speaker": 0, "speaker_confidence": 0.83447266, "start": 531.375, "word": "making" }, { "confidence": 0.99902344, "end": 531.855, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.83447266, "start": 531.615, "word": "it" }, { "confidence": 0.99609375, "end": 532.015, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.83447266, "start": 531.855, "word": "to" }, { "confidence": 0.96533203, "end": 532.335, "punctuated_word": "round", "speaker": 0, "speaker_confidence": 0.83447266, "start": 532.015, "word": "round" }, { "confidence": 0.84399414, "end": 532.835, "punctuated_word": "2024.", "speaker": 0, "speaker_confidence": 0.83447266, "start": 532.335, "word": "2024" }, { "confidence": 0.99121094, "end": 533.375, "punctuated_word": "Thanks", "speaker": 0, "speaker_confidence": 0.83447266, "start": 533.135, "word": "thanks" }, { "confidence": 1, "end": 533.53503, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.83447266, "start": 533.375, "word": "for" }, { "confidence": 0.77685547, "end": 534.015, "punctuated_word": "watching,", "speaker": 0, "speaker_confidence": 0.83447266, "start": 533.53503, "word": "watching" }, { "confidence": 1, "end": 534.175, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.83447266, "start": 534.015, "word": "and" }, { "confidence": 0.99609375, "end": 534.335, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.83447266, "start": 534.175, "word": "i" }, { "confidence": 0.99902344, "end": 534.495, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.83447266, "start": 534.335, "word": "will" }, { "confidence": 1, "end": 534.575, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.83447266, "start": 534.495, "word": "see" }, { "confidence": 1, "end": 534.735, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.83447266, "start": 534.575, "word": "you" }, { "confidence": 1, "end": 534.895, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.83447266, "start": 534.735, "word": "in" }, { "confidence": 1, "end": 535.055, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.83447266, "start": 534.895, "word": "the" }, { "confidence": 1, "end": 535.215, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.83447266, "start": 535.055, "word": "next" }, { "confidence": 0.9794922, "end": 535.715, "punctuated_word": "one.", "speaker": 0, "speaker_confidence": 0.83447266, "start": 535.215, "word": "one" } ] } ], "detected_language": "", "language_confidence": 0, "search": null } ], "summary": { "result": "success", "short": "The technology industry is currently at high interest rates, and the job market is currently at a high demand. There is a shift in age of technology and the development of AI and machine learning is becoming more popular, leading to a shift in the age of technology and the rise of low-level systems and low-coding tools. The future of AI is still far out, but there is potential for artificial general intelligence to lead to pleasures and moral and spiritual decline." }, "utterances": null } }
downloads\You_probably_won’t_survive_2024..._Top_10_Tech_Trends.wav
https://www.youtube.com/watch?v=vyQv563Y-fk
You probably won’t survive 2024... Top 10 Tech Trends
1,411,613
Fireship
158
Zig is general-purpose systems programming language often used as an alternative to C, C++, and Rust. Learn the basics of Zig in this quick tutorial. #programming #code #100secondsofcode 💬 Chat with Me on Discord https://discord.gg/fireship 🔗 Resources Zig Lang https://ziglang.org/ C in 100 Seconds https://youtu.be/U3aXWizDbQ4 C++ in 100 Seconds https://youtu.be/MNeX4EGtR5Y 🔥 Get More Content - Upgrade to PRO Upgrade at https://fireship.io/pro Use code YT25 for 25% off PRO access 🎨 My Editor Settings - Atom One Dark - vscode-icons - Fira Code Font 🔖 Topics Covered - What is Zig? - Is Zig fast? - Zig quickstart tutorial - Zig vs C - Zig vs Rust - Memory management in Zig explained - How do Zig allocators work?
{ "metadata": { "channels": 1, "created": "2024-02-04T05:01:51.109Z", "duration": 158.31363, "model_info": { "30089e05-99d1-4376-b32e-c263170674af": { "arch": "nova-2", "name": "2-general-nova", "version": "2024-01-09.29447" } }, "models": [ "30089e05-99d1-4376-b32e-c263170674af" ], "request_id": "bfda668e-0b61-48a2-9d92-9f730c67460f", "sha256": "8bbf26fec880a2b7448e61f1ebb81f786c619608f7dd839b41c57ce4e5db7c0b", "summary_info": { "input_tokens": 676, "model_uuid": "67875a7f-c9c4-48a0-aa55-5bdb8a91c34a", "output_tokens": 62 }, "transaction_key": "deprecated", "warnings": null }, "results": { "channels": [ { "alternatives": [ { "confidence": 0.9970703, "entities": null, "paragraphs": { "paragraphs": [ { "end": 39.61, "num_words": 128, "sentences": [ { "end": 6.08, "start": 0.39999998, "text": "Zig, a high performance system programming language often labeled as a next generation alternative to C." }, { "end": 11.755, "start": 6.08, "text": "It was created by Andrew Kelly in 2016, and quickly evolved into one of the most desired new languages in the world." }, { "end": 15.89, "start": 11.755, "text": "Like C, it's minimal, extremely fast, and allows for low level memory control." }, { "end": 25.275, "start": 16.050001, "text": "But instead of managing memory directly in the language with functions like malloc and free, the Zig standard library ships allocators to provide a consistent interface for memory management." }, { "end": 39.61, "start": 25.275, "text": "Zig is not a memory safe language like Rust or Go, but it doesn't have any hidden memory allocations, making the code far more explicit and portable because allocators can be easily swapped out in the code to target different architectures like x86, ARM, WebAssembly, and bare metal." } ], "speaker": 0, "start": 0.39999998 }, { "end": 56.68, "num_words": 68, "sentences": [ { "end": 41.905, "start": 39.61, "text": "In In addition, Zig has no hidden control flow." }, { "end": 44.864998, "start": 41.905, "text": "If it looks like a function and quacks like a function, it's a function." }, { "end": 47.905, "start": 44.864998, "text": "There's no operator overloading, and it doesn't even have exceptions." }, { "end": 51.16, "start": 47.905, "text": "If a function can fail, it needs to return an explicit error value." }, { "end": 56.68, "start": 51.16, "text": "The language also has a unique comp time keyword that makes it trivial to run code at compile time instead of runtime." } ], "speaker": 0, "start": 39.61 }, { "end": 79.235, "num_words": 82, "sentences": [ { "end": 58.675, "start": 56.68, "text": "No pre processor or macros are necessary." }, { "end": 67.315, "start": 58.835, "text": "And finally, Zig can integrate well into a c or c plus plus code base and supports cross compilation out of the box with LLVM, although divorce paperwork has been filed." }, { "end": 71.77, "start": 67.315, "text": "To get started, install Zig, then create a new project with the zig and net exe command." }, { "end": 75.71, "start": 71.77, "text": "In the main file, first import the standard library, then define a main function." }, { "end": 79.235, "start": 75.77, "text": "Notice how the function returns a type of void with an exclamation point." } ], "speaker": 0, "start": 56.68 }, { "end": 116.320145, "num_words": 145, "sentences": [ { "end": 93.165, "start": 79.235, "text": "That exclamation point means that the function might return an error, declare a mutable variable with the bar keyword followed by a type like q wait to represent a single byte, then assign and modify its value later, or use const to define an immutable variable that can not be changed." }, { "end": 98.865, "start": 93.165, "text": "We can also bundle multiple variables together into a struct, then access them on that name space with dot notation." }, { "end": 109.049995, "start": 99.005005, "text": "Now things start to get more interesting when memory management comes into When initializing an array of integers, we can allocate it to a slice of memory in the heap using the built in page allocator from the standard library." }, { "end": 113.51611, "start": 109.049995, "text": "What's so cool about this is that we could swap it out with other allocators to use different memory management strategies." }, { "end": 116.320145, "start": 113.51611, "text": "Now when we're done with this memory, we need to set it free." } ], "speaker": 0, "start": 79.235 }, { "end": 132.13501, "num_words": 64, "sentences": [ { "end": 117.83, "start": 116.320145, "text": "Otherwise, we could have a memory leak." }, { "end": 118.310005, "start": 117.83, "text": "And re leak." }, { "end": 124.87, "start": 118.310005, "text": "The defer keyword allows us to put that code right next to the allocation itself and will automatically de initialize the list when it goes out of scope." }, { "end": 128.795, "start": 124.87, "text": "Now as we operate on the list, the try keyword provides explicit error handling." }, { "end": 132.13501, "start": 128.85501, "text": "If this line fails, it will automatically catch and return the error." } ], "speaker": 0, "start": 116.320145 }, { "end": 152.33499, "num_words": 77, "sentences": [ { "end": 134.795, "start": 132.13501, "text": "You can't just ignore it and that will make your code more reliable." }, { "end": 138.18, "start": 134.85501, "text": "And speaking of reliability, Zig has a built in testing framework." }, { "end": 143.29999, "start": 138.18, "text": "Use the test keyword to evaluate code outside of the main program, then use the Zig test command to run it." }, { "end": 149.61499, "start": 143.29999, "text": "And finally, build an executable with the Zig build man, and choose a build mode to optimize for speed, size, or safety." }, { "end": 152.33499, "start": 149.61499, "text": "This has been the Zig programming language in 100 seconds." } ], "speaker": 0, "start": 132.13501 }, { "end": 157.51863, "num_words": 26, "sentences": [ { "end": 154.735, "start": 152.33499, "text": "Hit the like button if you wanna see more short videos like this." }, { "end": 157.51863, "start": 154.735, "text": "Thanks for watching, and and I will see you in the next one." } ], "speaker": 0, "start": 152.33499 } ], "transcript": "\nSpeaker 0: Zig, a high performance system programming language often labeled as a next generation alternative to C. It was created by Andrew Kelly in 2016, and quickly evolved into one of the most desired new languages in the world. Like C, it's minimal, extremely fast, and allows for low level memory control. But instead of managing memory directly in the language with functions like malloc and free, the Zig standard library ships allocators to provide a consistent interface for memory management. Zig is not a memory safe language like Rust or Go, but it doesn't have any hidden memory allocations, making the code far more explicit and portable because allocators can be easily swapped out in the code to target different architectures like x86, ARM, WebAssembly, and bare metal.\n\nIn In addition, Zig has no hidden control flow. If it looks like a function and quacks like a function, it's a function. There's no operator overloading, and it doesn't even have exceptions. If a function can fail, it needs to return an explicit error value. The language also has a unique comp time keyword that makes it trivial to run code at compile time instead of runtime.\n\nNo pre processor or macros are necessary. And finally, Zig can integrate well into a c or c plus plus code base and supports cross compilation out of the box with LLVM, although divorce paperwork has been filed. To get started, install Zig, then create a new project with the zig and net exe command. In the main file, first import the standard library, then define a main function. Notice how the function returns a type of void with an exclamation point.\n\nThat exclamation point means that the function might return an error, declare a mutable variable with the bar keyword followed by a type like q wait to represent a single byte, then assign and modify its value later, or use const to define an immutable variable that can not be changed. We can also bundle multiple variables together into a struct, then access them on that name space with dot notation. Now things start to get more interesting when memory management comes into When initializing an array of integers, we can allocate it to a slice of memory in the heap using the built in page allocator from the standard library. What's so cool about this is that we could swap it out with other allocators to use different memory management strategies. Now when we're done with this memory, we need to set it free.\n\nOtherwise, we could have a memory leak. And re leak. The defer keyword allows us to put that code right next to the allocation itself and will automatically de initialize the list when it goes out of scope. Now as we operate on the list, the try keyword provides explicit error handling. If this line fails, it will automatically catch and return the error.\n\nYou can't just ignore it and that will make your code more reliable. And speaking of reliability, Zig has a built in testing framework. Use the test keyword to evaluate code outside of the main program, then use the Zig test command to run it. And finally, build an executable with the Zig build man, and choose a build mode to optimize for speed, size, or safety. This has been the Zig programming language in 100 seconds.\n\nHit the like button if you wanna see more short videos like this. Thanks for watching, and and I will see you in the next one." }, "summaries": null, "topics": [ { "end_word": 161, "start_word": 0, "text": "Zig, a high performance system programming language often labeled as a next generation alternative to C. It was created by Andrew Kelly in 2016, and quickly evolved into one of the most desired new languages in the world. Like C, it's minimal, extremely fast, and allows for low level memory control. But instead of managing memory directly in the language with functions like malloc and free, the Zig standard library ships allocators to provide a consistent interface for memory management. Zig is not a memory safe language like Rust or Go, but it doesn't have any hidden memory allocations, making the code far more explicit and portable because allocators can be easily swapped out in the code to target different architectures like x86, ARM, WebAssembly, and bare metal. In In addition, Zig has no hidden control flow. If it looks like a function and quacks like a function, it's a function. There's no operator overloading, and it doesn't even have exceptions.", "topics": [] }, { "end_word": 234, "start_word": 161, "text": "If a function can fail, it needs to return an explicit error value. The language also has a unique comp time keyword that makes it trivial to run code at compile time instead of runtime. No pre processor or macros are necessary. And finally, Zig can integrate well into a c or c plus plus code base and supports cross compilation out of the box with LLVM, although divorce paperwork has been filed.", "topics": [ { "confidence": 0.006223847, "topic": "programming" } ] }, { "end_word": 532, "start_word": 234, "text": "To get started, install Zig, then create a new project with the zig and net exe command. In the main file, first import the standard library, then define a main function. Notice how the function returns a type of void with an exclamation point. That exclamation point means that the function might return an error, declare a mutable variable with the bar keyword followed by a type like q wait to represent a single byte, then assign and modify its value later, or use const to define an immutable variable that can not be changed. We can also bundle multiple variables together into a struct, then access them on that name space with dot notation. Now things start to get more interesting when memory management comes into When initializing an array of integers, we can allocate it to a slice of memory in the heap using the built in page allocator from the standard library. What's so cool about this is that we could swap it out with other allocators to use different memory management strategies. Now when we're done with this memory, we need to set it free. Otherwise, we could have a memory leak. And re leak. The defer keyword allows us to put that code right next to the allocation itself and will automatically de initialize the list when it goes out of scope. Now as we operate on the list, the try keyword provides explicit error handling. If this line fails, it will automatically catch and return the error. You can't just ignore it and that will make your code more reliable. And speaking of reliability, Zig has a built in testing framework. Use the test keyword to evaluate code outside of the main program, then use the Zig test command to run it.", "topics": [] }, { "end_word": 590, "start_word": 532, "text": "And finally, build an executable with the Zig build man, and choose a build mode to optimize for speed, size, or safety. This has been the Zig programming language in 100 seconds. Hit the like button if you wanna see more short videos like this. Thanks for watching, and and I will see you in the next one.", "topics": [ { "confidence": 0.69391495, "topic": "youtube" }, { "confidence": 0.04695601, "topic": "programming" }, { "confidence": 0.008929792, "topic": "graphic design" }, { "confidence": 0.0069111018, "topic": "video gaming" } ] } ], "transcript": "Zig, a high performance system programming language often labeled as a next generation alternative to C. It was created by Andrew Kelly in 2016, and quickly evolved into one of the most desired new languages in the world. Like C, it's minimal, extremely fast, and allows for low level memory control. But instead of managing memory directly in the language with functions like malloc and free, the Zig standard library ships allocators to provide a consistent interface for memory management. Zig is not a memory safe language like Rust or Go, but it doesn't have any hidden memory allocations, making the code far more explicit and portable because allocators can be easily swapped out in the code to target different architectures like x86, ARM, WebAssembly, and bare metal. In In addition, Zig has no hidden control flow. If it looks like a function and quacks like a function, it's a function. There's no operator overloading, and it doesn't even have exceptions. If a function can fail, it needs to return an explicit error value. The language also has a unique comp time keyword that makes it trivial to run code at compile time instead of runtime. No pre processor or macros are necessary. And finally, Zig can integrate well into a c or c plus plus code base and supports cross compilation out of the box with LLVM, although divorce paperwork has been filed. To get started, install Zig, then create a new project with the zig and net exe command. In the main file, first import the standard library, then define a main function. Notice how the function returns a type of void with an exclamation point. That exclamation point means that the function might return an error, declare a mutable variable with the bar keyword followed by a type like q wait to represent a single byte, then assign and modify its value later, or use const to define an immutable variable that can not be changed. We can also bundle multiple variables together into a struct, then access them on that name space with dot notation. Now things start to get more interesting when memory management comes into When initializing an array of integers, we can allocate it to a slice of memory in the heap using the built in page allocator from the standard library. What's so cool about this is that we could swap it out with other allocators to use different memory management strategies. Now when we're done with this memory, we need to set it free. Otherwise, we could have a memory leak. And re leak. The defer keyword allows us to put that code right next to the allocation itself and will automatically de initialize the list when it goes out of scope. Now as we operate on the list, the try keyword provides explicit error handling. If this line fails, it will automatically catch and return the error. You can't just ignore it and that will make your code more reliable. And speaking of reliability, Zig has a built in testing framework. Use the test keyword to evaluate code outside of the main program, then use the Zig test command to run it. And finally, build an executable with the Zig build man, and choose a build mode to optimize for speed, size, or safety. This has been the Zig programming language in 100 seconds. Hit the like button if you wanna see more short videos like this. Thanks for watching, and and I will see you in the next one.", "translations": null, "words": [ { "confidence": 0.6945801, "end": 0.9, "punctuated_word": "Zig,", "speaker": 0, "speaker_confidence": 0.6879883, "start": 0.39999998, "word": "zig" }, { "confidence": 0.99121094, "end": 1.1999999, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6879883, "start": 0.96, "word": "a" }, { "confidence": 0.9980469, "end": 1.4399999, "punctuated_word": "high", "speaker": 0, "speaker_confidence": 0.6879883, "start": 1.1999999, "word": "high" }, { "confidence": 0.9863281, "end": 1.92, "punctuated_word": "performance", "speaker": 0, "speaker_confidence": 0.6879883, "start": 1.4399999, "word": "performance" }, { "confidence": 0.9941406, "end": 2.24, "punctuated_word": "system", "speaker": 0, "speaker_confidence": 0.6879883, "start": 1.92, "word": "system" }, { "confidence": 0.9838867, "end": 2.6399999, "punctuated_word": "programming", "speaker": 0, "speaker_confidence": 0.6879883, "start": 2.24, "word": "programming" }, { "confidence": 0.99902344, "end": 3.1399999, "punctuated_word": "language", "speaker": 0, "speaker_confidence": 0.6879883, "start": 2.6399999, "word": "language" }, { "confidence": 0.5317383, "end": 3.52, "punctuated_word": "often", "speaker": 0, "speaker_confidence": 0.6879883, "start": 3.1999998, "word": "often" }, { "confidence": 0.8535156, "end": 3.84, "punctuated_word": "labeled", "speaker": 0, "speaker_confidence": 0.6879883, "start": 3.52, "word": "labeled" }, { "confidence": 0.99902344, "end": 4, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.6879883, "start": 3.84, "word": "as" }, { "confidence": 0.9951172, "end": 4.16, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.6879883, "start": 4, "word": "a" }, { "confidence": 0.9951172, "end": 4.48, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.6879883, "start": 4.16, "word": "next" }, { "confidence": 0.99609375, "end": 4.88, "punctuated_word": "generation", "speaker": 0, "speaker_confidence": 0.6879883, "start": 4.48, "word": "generation" }, { "confidence": 1, "end": 5.38, "punctuated_word": "alternative", "speaker": 0, "speaker_confidence": 0.6879883, "start": 4.88, "word": "alternative" }, { "confidence": 1, "end": 5.7599998, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.6879883, "start": 5.52, "word": "to" }, { "confidence": 0.93530273, "end": 6.08, "punctuated_word": "C.", "speaker": 0, "speaker_confidence": 0.6879883, "start": 5.7599998, "word": "c" }, { "confidence": 0.99609375, "end": 6.24, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.6088867, "start": 6.08, "word": "it" }, { "confidence": 1, "end": 6.3999996, "punctuated_word": "was", "speaker": 0, "speaker_confidence": 0.6088867, "start": 6.24, "word": "was" }, { "confidence": 0.9980469, "end": 6.72, "punctuated_word": "created", "speaker": 0, "speaker_confidence": 0.6088867, "start": 6.3999996, "word": "created" }, { "confidence": 0.99902344, "end": 6.96, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.6088867, "start": 6.72, "word": "by" }, { "confidence": 0.9980469, "end": 7.2, "punctuated_word": "Andrew", "speaker": 0, "speaker_confidence": 0.6088867, "start": 6.96, "word": "andrew" }, { "confidence": 0.9589844, "end": 7.52, "punctuated_word": "Kelly", "speaker": 0, "speaker_confidence": 0.6088867, "start": 7.2, "word": "kelly" }, { "confidence": 0.99316406, "end": 7.68, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.6088867, "start": 7.52, "word": "in" }, { "confidence": 0.8796387, "end": 8.18, "punctuated_word": "2016,", "speaker": 0, "speaker_confidence": 0.6088867, "start": 7.68, "word": "2016" }, { "confidence": 0.99609375, "end": 8.635, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.6088867, "start": 8.4, "word": "and" }, { "confidence": 0.5751953, "end": 9.115, "punctuated_word": "quickly", "speaker": 0, "speaker_confidence": 0.6088867, "start": 8.795, "word": "quickly" }, { "confidence": 0.97314453, "end": 9.435, "punctuated_word": "evolved", "speaker": 0, "speaker_confidence": 0.6088867, "start": 9.115, "word": "evolved" }, { "confidence": 0.9667969, "end": 9.595, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.6088867, "start": 9.435, "word": "into" }, { "confidence": 0.9790039, "end": 9.755, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.6088867, "start": 9.595, "word": "one" }, { "confidence": 0.9970703, "end": 9.835, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.49804688, "start": 9.755, "word": "of" }, { "confidence": 0.99902344, "end": 9.915, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.49804688, "start": 9.835, "word": "the" }, { "confidence": 0.9892578, "end": 10.155001, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 0.49804688, "start": 9.915, "word": "most" }, { "confidence": 0.9951172, "end": 10.555, "punctuated_word": "desired", "speaker": 0, "speaker_confidence": 0.49804688, "start": 10.155001, "word": "desired" }, { "confidence": 0.9951172, "end": 10.715, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.49804688, "start": 10.555, "word": "new" }, { "confidence": 0.9980469, "end": 11.195, "punctuated_word": "languages", "speaker": 0, "speaker_confidence": 0.49804688, "start": 10.715, "word": "languages" }, { "confidence": 0.99902344, "end": 11.275, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.49804688, "start": 11.195, "word": "in" }, { "confidence": 0.99902344, "end": 11.3550005, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7919922, "start": 11.275, "word": "the" }, { "confidence": 0.9975586, "end": 11.755, "punctuated_word": "world.", "speaker": 0, "speaker_confidence": 0.7919922, "start": 11.3550005, "word": "world" }, { "confidence": 0.9970703, "end": 11.995, "punctuated_word": "Like", "speaker": 0, "speaker_confidence": 0.7919922, "start": 11.755, "word": "like" }, { "confidence": 0.9621582, "end": 12.395, "punctuated_word": "C,", "speaker": 0, "speaker_confidence": 0.7919922, "start": 11.995, "word": "c" }, { "confidence": 0.9484863, "end": 12.635, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.7919922, "start": 12.395, "word": "it's" }, { "confidence": 0.98168945, "end": 13.115, "punctuated_word": "minimal,", "speaker": 0, "speaker_confidence": 0.7919922, "start": 12.635, "word": "minimal" }, { "confidence": 0.9980469, "end": 13.595, "punctuated_word": "extremely", "speaker": 0, "speaker_confidence": 0.7919922, "start": 13.115, "word": "extremely" }, { "confidence": 0.92993164, "end": 13.995, "punctuated_word": "fast,", "speaker": 0, "speaker_confidence": 0.7919922, "start": 13.595, "word": "fast" }, { "confidence": 0.9921875, "end": 14.075001, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.7919922, "start": 13.995, "word": "and" }, { "confidence": 0.9970703, "end": 14.475, "punctuated_word": "allows", "speaker": 0, "speaker_confidence": 0.7919922, "start": 14.075001, "word": "allows" }, { "confidence": 0.98535156, "end": 14.715, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.7919922, "start": 14.475, "word": "for" }, { "confidence": 0.9506836, "end": 14.955, "punctuated_word": "low", "speaker": 0, "speaker_confidence": 0.7919922, "start": 14.715, "word": "low" }, { "confidence": 0.98828125, "end": 15.195, "punctuated_word": "level", "speaker": 0, "speaker_confidence": 0.7919922, "start": 14.955, "word": "level" }, { "confidence": 0.97998047, "end": 15.514999, "punctuated_word": "memory", "speaker": 0, "speaker_confidence": 0.7919922, "start": 15.195, "word": "memory" }, { "confidence": 0.90405273, "end": 15.89, "punctuated_word": "control.", "speaker": 0, "speaker_confidence": 0.7919922, "start": 15.514999, "word": "control" }, { "confidence": 0.95947266, "end": 16.210001, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.82666016, "start": 16.050001, "word": "but" }, { "confidence": 0.9941406, "end": 16.37, "punctuated_word": "instead", "speaker": 0, "speaker_confidence": 0.82666016, "start": 16.210001, "word": "instead" }, { "confidence": 0.9970703, "end": 16.53, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.82666016, "start": 16.37, "word": "of" }, { "confidence": 0.9980469, "end": 17.01, "punctuated_word": "managing", "speaker": 0, "speaker_confidence": 0.82666016, "start": 16.53, "word": "managing" }, { "confidence": 0.9790039, "end": 17.41, "punctuated_word": "memory", "speaker": 0, "speaker_confidence": 0.82666016, "start": 17.01, "word": "memory" }, { "confidence": 0.99609375, "end": 17.73, "punctuated_word": "directly", "speaker": 0, "speaker_confidence": 0.82666016, "start": 17.41, "word": "directly" }, { "confidence": 0.9980469, "end": 17.89, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.82666016, "start": 17.73, "word": "in" }, { "confidence": 0.91845703, "end": 17.970001, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.82666016, "start": 17.89, "word": "the" }, { "confidence": 0.99902344, "end": 18.45, "punctuated_word": "language", "speaker": 0, "speaker_confidence": 0.82666016, "start": 17.970001, "word": "language" }, { "confidence": 0.9550781, "end": 18.61, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.82666016, "start": 18.45, "word": "with" }, { "confidence": 0.99609375, "end": 19.01, "punctuated_word": "functions", "speaker": 0, "speaker_confidence": 0.82666016, "start": 18.61, "word": "functions" }, { "confidence": 0.9560547, "end": 19.25, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.82666016, "start": 19.01, "word": "like" }, { "confidence": 0.8930664, "end": 19.65, "punctuated_word": "malloc", "speaker": 0, "speaker_confidence": 0.82666016, "start": 19.25, "word": "malloc" }, { "confidence": 0.9873047, "end": 19.81, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.82666016, "start": 19.65, "word": "and" }, { "confidence": 0.9855957, "end": 20.21, "punctuated_word": "free,", "speaker": 0, "speaker_confidence": 0.82666016, "start": 19.81, "word": "free" }, { "confidence": 0.97802734, "end": 20.45, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.82666016, "start": 20.21, "word": "the" }, { "confidence": 0.96435547, "end": 20.69, "punctuated_word": "Zig", "speaker": 0, "speaker_confidence": 0.82666016, "start": 20.45, "word": "zig" }, { "confidence": 0.85595703, "end": 21.01, "punctuated_word": "standard", "speaker": 0, "speaker_confidence": 0.82666016, "start": 20.69, "word": "standard" }, { "confidence": 0.98535156, "end": 21.49, "punctuated_word": "library", "speaker": 0, "speaker_confidence": 0.82666016, "start": 21.01, "word": "library" }, { "confidence": 0.96972656, "end": 21.89, "punctuated_word": "ships", "speaker": 0, "speaker_confidence": 0.82666016, "start": 21.49, "word": "ships" }, { "confidence": 0.9851074, "end": 22.39, "punctuated_word": "allocators", "speaker": 0, "speaker_confidence": 0.82666016, "start": 21.89, "word": "allocators" }, { "confidence": 0.9970703, "end": 22.69, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7949219, "start": 22.53, "word": "to" }, { "confidence": 0.99902344, "end": 23.01, "punctuated_word": "provide", "speaker": 0, "speaker_confidence": 0.7949219, "start": 22.69, "word": "provide" }, { "confidence": 0.9970703, "end": 23.17, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7949219, "start": 23.01, "word": "a" }, { "confidence": 0.9980469, "end": 23.67, "punctuated_word": "consistent", "speaker": 0, "speaker_confidence": 0.7949219, "start": 23.17, "word": "consistent" }, { "confidence": 0.99902344, "end": 24.130001, "punctuated_word": "interface", "speaker": 0, "speaker_confidence": 0.7949219, "start": 23.73, "word": "interface" }, { "confidence": 0.99609375, "end": 24.29, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.7949219, "start": 24.130001, "word": "for" }, { "confidence": 0.99121094, "end": 24.79, "punctuated_word": "memory", "speaker": 0, "speaker_confidence": 0.7949219, "start": 24.29, "word": "memory" }, { "confidence": 0.8647461, "end": 25.275, "punctuated_word": "management.", "speaker": 0, "speaker_confidence": 0.7949219, "start": 24.875, "word": "management" }, { "confidence": 0.9951172, "end": 25.515, "punctuated_word": "Zig", "speaker": 0, "speaker_confidence": 0.7949219, "start": 25.275, "word": "zig" }, { "confidence": 0.9863281, "end": 25.675, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7949219, "start": 25.515, "word": "is" }, { "confidence": 0.99902344, "end": 25.835, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.7949219, "start": 25.675, "word": "not" }, { "confidence": 0.9970703, "end": 25.915, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9472656, "start": 25.835, "word": "a" }, { "confidence": 0.99902344, "end": 26.315, "punctuated_word": "memory", "speaker": 0, "speaker_confidence": 0.9472656, "start": 25.915, "word": "memory" }, { "confidence": 0.99316406, "end": 26.555, "punctuated_word": "safe", "speaker": 0, "speaker_confidence": 0.9472656, "start": 26.315, "word": "safe" }, { "confidence": 0.99902344, "end": 27.035, "punctuated_word": "language", "speaker": 0, "speaker_confidence": 0.9472656, "start": 26.555, "word": "language" }, { "confidence": 0.8432617, "end": 27.275, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.9472656, "start": 27.035, "word": "like" }, { "confidence": 0.86035156, "end": 27.595, "punctuated_word": "Rust", "speaker": 0, "speaker_confidence": 0.9472656, "start": 27.275, "word": "rust" }, { "confidence": 0.9819336, "end": 27.755001, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.9472656, "start": 27.595, "word": "or" }, { "confidence": 0.9741211, "end": 28.075, "punctuated_word": "Go,", "speaker": 0, "speaker_confidence": 0.9472656, "start": 27.755001, "word": "go" }, { "confidence": 1, "end": 28.235, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.9472656, "start": 28.075, "word": "but" }, { "confidence": 1, "end": 28.395, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.9472656, "start": 28.235, "word": "it" }, { "confidence": 0.9995117, "end": 28.635, "punctuated_word": "doesn't", "speaker": 0, "speaker_confidence": 0.9472656, "start": 28.395, "word": "doesn't" }, { "confidence": 0.99902344, "end": 28.955, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.9472656, "start": 28.635, "word": "have" }, { "confidence": 0.99609375, "end": 29.115, "punctuated_word": "any", "speaker": 0, "speaker_confidence": 0.9472656, "start": 28.955, "word": "any" }, { "confidence": 1, "end": 29.435, "punctuated_word": "hidden", "speaker": 0, "speaker_confidence": 0.9472656, "start": 29.115, "word": "hidden" }, { "confidence": 1, "end": 29.755001, "punctuated_word": "memory", "speaker": 0, "speaker_confidence": 0.9472656, "start": 29.435, "word": "memory" }, { "confidence": 0.8808594, "end": 30.255001, "punctuated_word": "allocations,", "speaker": 0, "speaker_confidence": 0.9472656, "start": 29.755001, "word": "allocations" }, { "confidence": 1, "end": 30.715, "punctuated_word": "making", "speaker": 0, "speaker_confidence": 0.9472656, "start": 30.475, "word": "making" }, { "confidence": 1, "end": 30.795, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9472656, "start": 30.715, "word": "the" }, { "confidence": 1, "end": 31.035, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.9472656, "start": 30.795, "word": "code" }, { "confidence": 0.99609375, "end": 31.275, "punctuated_word": "far", "speaker": 0, "speaker_confidence": 0.9472656, "start": 31.035, "word": "far" }, { "confidence": 1, "end": 31.515, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.9472656, "start": 31.275, "word": "more" }, { "confidence": 0.99902344, "end": 31.915, "punctuated_word": "explicit", "speaker": 0, "speaker_confidence": 0.9472656, "start": 31.515, "word": "explicit" }, { "confidence": 0.9707031, "end": 32.075, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9472656, "start": 31.915, "word": "and" }, { "confidence": 1, "end": 32.475, "punctuated_word": "portable", "speaker": 0, "speaker_confidence": 0.9472656, "start": 32.075, "word": "portable" }, { "confidence": 0.42944336, "end": 32.89, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.9472656, "start": 32.475, "word": "because" }, { "confidence": 0.9914551, "end": 33.29, "punctuated_word": "allocators", "speaker": 0, "speaker_confidence": 0.9472656, "start": 32.97, "word": "allocators" }, { "confidence": 0.9970703, "end": 33.45, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9472656, "start": 33.29, "word": "can" }, { "confidence": 0.9863281, "end": 33.77, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.9472656, "start": 33.45, "word": "be" }, { "confidence": 1, "end": 34.01, "punctuated_word": "easily", "speaker": 0, "speaker_confidence": 0.9472656, "start": 33.77, "word": "easily" }, { "confidence": 0.99902344, "end": 34.329998, "punctuated_word": "swapped", "speaker": 0, "speaker_confidence": 0.9472656, "start": 34.01, "word": "swapped" }, { "confidence": 0.9980469, "end": 34.489998, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.9472656, "start": 34.329998, "word": "out" }, { "confidence": 0.9951172, "end": 34.57, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.83447266, "start": 34.489998, "word": "in" }, { "confidence": 0.99609375, "end": 34.649998, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.83447266, "start": 34.57, "word": "the" }, { "confidence": 1, "end": 35.05, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.83447266, "start": 34.649998, "word": "code" }, { "confidence": 0.9951172, "end": 35.21, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.83447266, "start": 35.05, "word": "to" }, { "confidence": 1, "end": 35.53, "punctuated_word": "target", "speaker": 0, "speaker_confidence": 0.83447266, "start": 35.21, "word": "target" }, { "confidence": 0.99902344, "end": 35.93, "punctuated_word": "different", "speaker": 0, "speaker_confidence": 0.83447266, "start": 35.53, "word": "different" }, { "confidence": 0.9951172, "end": 36.43, "punctuated_word": "architectures", "speaker": 0, "speaker_confidence": 0.83447266, "start": 35.93, "word": "architectures" }, { "confidence": 0.62890625, "end": 36.809998, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.83447266, "start": 36.489998, "word": "like" }, { "confidence": 0.7550456, "end": 37.309998, "punctuated_word": "x86,", "speaker": 0, "speaker_confidence": 0.83447266, "start": 36.809998, "word": "x86" }, { "confidence": 0.8696289, "end": 38.01, "punctuated_word": "ARM,", "speaker": 0, "speaker_confidence": 0.83447266, "start": 37.69, "word": "arm" }, { "confidence": 0.77490234, "end": 38.51, "punctuated_word": "WebAssembly,", "speaker": 0, "speaker_confidence": 0.83447266, "start": 38.01, "word": "webassembly" }, { "confidence": 0.9902344, "end": 39.05, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.83447266, "start": 38.809998, "word": "and" }, { "confidence": 0.59277344, "end": 39.21, "punctuated_word": "bare", "speaker": 0, "speaker_confidence": 0.83447266, "start": 39.05, "word": "bare" }, { "confidence": 0.9711914, "end": 39.61, "punctuated_word": "metal.", "speaker": 0, "speaker_confidence": 0.83447266, "start": 39.21, "word": "metal" }, { "confidence": 0.5029297, "end": 39.905, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.83447266, "start": 39.61, "word": "in" }, { "confidence": 0.51904297, "end": 40.065, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.83447266, "start": 39.985, "word": "in" }, { "confidence": 0.99609375, "end": 40.385, "punctuated_word": "addition,", "speaker": 0, "speaker_confidence": 0.83447266, "start": 40.065, "word": "addition" }, { "confidence": 0.96972656, "end": 40.545, "punctuated_word": "Zig", "speaker": 0, "speaker_confidence": 0.83447266, "start": 40.385, "word": "zig" }, { "confidence": 0.9980469, "end": 40.704998, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.83447266, "start": 40.545, "word": "has" }, { "confidence": 1, "end": 40.945, "punctuated_word": "no", "speaker": 0, "speaker_confidence": 0.83447266, "start": 40.704998, "word": "no" }, { "confidence": 1, "end": 41.265, "punctuated_word": "hidden", "speaker": 0, "speaker_confidence": 0.83447266, "start": 40.945, "word": "hidden" }, { "confidence": 0.99902344, "end": 41.585, "punctuated_word": "control", "speaker": 0, "speaker_confidence": 0.83447266, "start": 41.265, "word": "control" }, { "confidence": 0.9980469, "end": 41.905, "punctuated_word": "flow.", "speaker": 0, "speaker_confidence": 0.83447266, "start": 41.585, "word": "flow" }, { "confidence": 0.9980469, "end": 42.145, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.83447266, "start": 41.905, "word": "if" }, { "confidence": 0.99902344, "end": 42.225, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.83447266, "start": 42.145, "word": "it" }, { "confidence": 0.99902344, "end": 42.465, "punctuated_word": "looks", "speaker": 0, "speaker_confidence": 0.83447266, "start": 42.225, "word": "looks" }, { "confidence": 0.99902344, "end": 42.545, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.83447266, "start": 42.465, "word": "like" }, { "confidence": 0.99609375, "end": 42.625, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.41796875, "start": 42.545, "word": "a" }, { "confidence": 1, "end": 42.945, "punctuated_word": "function", "speaker": 0, "speaker_confidence": 0.41796875, "start": 42.625, "word": "function" }, { "confidence": 0.984375, "end": 43.105, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.41796875, "start": 42.945, "word": "and" }, { "confidence": 0.9909668, "end": 43.425, "punctuated_word": "quacks", "speaker": 0, "speaker_confidence": 0.41796875, "start": 43.105, "word": "quacks" }, { "confidence": 0.9980469, "end": 43.585, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.41796875, "start": 43.425, "word": "like" }, { "confidence": 0.99609375, "end": 43.664997, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 43.585, "word": "a" }, { "confidence": 0.9995117, "end": 44.144997, "punctuated_word": "function,", "speaker": 0, "speaker_confidence": 1, "start": 43.664997, "word": "function" }, { "confidence": 0.99902344, "end": 44.385, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 1, "start": 44.144997, "word": "it's" }, { "confidence": 0.99902344, "end": 44.545, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 44.385, "word": "a" }, { "confidence": 0.99194336, "end": 44.864998, "punctuated_word": "function.", "speaker": 0, "speaker_confidence": 1, "start": 44.545, "word": "function" }, { "confidence": 0.99560547, "end": 45.105, "punctuated_word": "There's", "speaker": 0, "speaker_confidence": 1, "start": 44.864998, "word": "there's" }, { "confidence": 0.99902344, "end": 45.425, "punctuated_word": "no", "speaker": 0, "speaker_confidence": 1, "start": 45.105, "word": "no" }, { "confidence": 1, "end": 45.824997, "punctuated_word": "operator", "speaker": 0, "speaker_confidence": 1, "start": 45.425, "word": "operator" }, { "confidence": 0.92496747, "end": 46.324997, "punctuated_word": "overloading,", "speaker": 0, "speaker_confidence": 1, "start": 45.824997, "word": "overloading" }, { "confidence": 1, "end": 46.545, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 46.385, "word": "and" }, { "confidence": 1, "end": 46.704998, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 46.545, "word": "it" }, { "confidence": 1, "end": 46.945, "punctuated_word": "doesn't", "speaker": 0, "speaker_confidence": 1, "start": 46.704998, "word": "doesn't" }, { "confidence": 0.99902344, "end": 47.184998, "punctuated_word": "even", "speaker": 0, "speaker_confidence": 1, "start": 46.945, "word": "even" }, { "confidence": 1, "end": 47.425, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 1, "start": 47.184998, "word": "have" }, { "confidence": 1, "end": 47.905, "punctuated_word": "exceptions.", "speaker": 0, "speaker_confidence": 1, "start": 47.425, "word": "exceptions" }, { "confidence": 1, "end": 48.065, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 1, "start": 47.905, "word": "if" }, { "confidence": 0.9970703, "end": 48.144997, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 48.065, "word": "a" }, { "confidence": 1, "end": 48.545, "punctuated_word": "function", "speaker": 0, "speaker_confidence": 1, "start": 48.144997, "word": "function" }, { "confidence": 0.99902344, "end": 48.704998, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 1, "start": 48.545, "word": "can" }, { "confidence": 0.99902344, "end": 49.024998, "punctuated_word": "fail,", "speaker": 0, "speaker_confidence": 1, "start": 48.704998, "word": "fail" }, { "confidence": 0.99902344, "end": 49.184998, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 49.024998, "word": "it" }, { "confidence": 1, "end": 49.344997, "punctuated_word": "needs", "speaker": 0, "speaker_confidence": 1, "start": 49.184998, "word": "needs" }, { "confidence": 0.99121094, "end": 49.504997, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 49.344997, "word": "to" }, { "confidence": 0.9921875, "end": 49.8, "punctuated_word": "return", "speaker": 0, "speaker_confidence": 1, "start": 49.504997, "word": "return" }, { "confidence": 0.73828125, "end": 50.04, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 49.88, "word": "an" }, { "confidence": 0.9951172, "end": 50.52, "punctuated_word": "explicit", "speaker": 0, "speaker_confidence": 1, "start": 50.04, "word": "explicit" }, { "confidence": 0.9902344, "end": 50.76, "punctuated_word": "error", "speaker": 0, "speaker_confidence": 1, "start": 50.52, "word": "error" }, { "confidence": 0.99658203, "end": 51.16, "punctuated_word": "value.", "speaker": 0, "speaker_confidence": 1, "start": 50.76, "word": "value" }, { "confidence": 0.99609375, "end": 51.32, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 1, "start": 51.16, "word": "the" }, { "confidence": 1, "end": 51.719997, "punctuated_word": "language", "speaker": 0, "speaker_confidence": 1, "start": 51.32, "word": "language" }, { "confidence": 0.9980469, "end": 51.96, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 1, "start": 51.719997, "word": "also" }, { "confidence": 0.99902344, "end": 52.2, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 1, "start": 51.96, "word": "has" }, { "confidence": 0.9921875, "end": 52.28, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 52.2, "word": "a" }, { "confidence": 0.99902344, "end": 52.68, "punctuated_word": "unique", "speaker": 0, "speaker_confidence": 1, "start": 52.28, "word": "unique" }, { "confidence": 0.5283203, "end": 52.84, "punctuated_word": "comp", "speaker": 0, "speaker_confidence": 1, "start": 52.68, "word": "comp" }, { "confidence": 0.96435547, "end": 53, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 1, "start": 52.84, "word": "time" }, { "confidence": 0.96875, "end": 53.5, "punctuated_word": "keyword", "speaker": 0, "speaker_confidence": 1, "start": 53, "word": "keyword" }, { "confidence": 0.97314453, "end": 53.8, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 53.64, "word": "that" }, { "confidence": 0.9980469, "end": 53.96, "punctuated_word": "makes", "speaker": 0, "speaker_confidence": 1, "start": 53.8, "word": "makes" }, { "confidence": 0.9707031, "end": 54.12, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 53.96, "word": "it" }, { "confidence": 0.98828125, "end": 54.52, "punctuated_word": "trivial", "speaker": 0, "speaker_confidence": 1, "start": 54.12, "word": "trivial" }, { "confidence": 0.9980469, "end": 54.6, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 54.52, "word": "to" }, { "confidence": 0.9951172, "end": 54.76, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 1, "start": 54.6, "word": "run" }, { "confidence": 0.9873047, "end": 54.92, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 1, "start": 54.76, "word": "code" }, { "confidence": 0.9790039, "end": 55.079998, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 1, "start": 54.92, "word": "at" }, { "confidence": 0.99121094, "end": 55.559998, "punctuated_word": "compile", "speaker": 0, "speaker_confidence": 1, "start": 55.079998, "word": "compile" }, { "confidence": 0.99316406, "end": 55.72, "punctuated_word": "time", "speaker": 0, "speaker_confidence": 1, "start": 55.559998, "word": "time" }, { "confidence": 0.9873047, "end": 55.96, "punctuated_word": "instead", "speaker": 0, "speaker_confidence": 1, "start": 55.72, "word": "instead" }, { "confidence": 0.9980469, "end": 56.199997, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 55.96, "word": "of" }, { "confidence": 0.7792969, "end": 56.68, "punctuated_word": "runtime.", "speaker": 0, "speaker_confidence": 1, "start": 56.199997, "word": "runtime" }, { "confidence": 0.98095703, "end": 56.92, "punctuated_word": "No", "speaker": 0, "speaker_confidence": 1, "start": 56.68, "word": "no" }, { "confidence": 0.98828125, "end": 57.16, "punctuated_word": "pre", "speaker": 0, "speaker_confidence": 1, "start": 56.92, "word": "pre" }, { "confidence": 0.5161133, "end": 57.559998, "punctuated_word": "processor", "speaker": 0, "speaker_confidence": 1, "start": 57.16, "word": "processor" }, { "confidence": 0.98291016, "end": 57.8, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 1, "start": 57.559998, "word": "or" }, { "confidence": 0.97509766, "end": 58.199997, "punctuated_word": "macros", "speaker": 0, "speaker_confidence": 1, "start": 57.8, "word": "macros" }, { "confidence": 0.8310547, "end": 58.28, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.86035156, "start": 58.199997, "word": "are" }, { "confidence": 0.8342285, "end": 58.675, "punctuated_word": "necessary.", "speaker": 0, "speaker_confidence": 0.86035156, "start": 58.28, "word": "necessary" }, { "confidence": 0.8691406, "end": 59.075, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.86035156, "start": 58.835, "word": "and" }, { "confidence": 0.9628906, "end": 59.555, "punctuated_word": "finally,", "speaker": 0, "speaker_confidence": 0.86035156, "start": 59.075, "word": "finally" }, { "confidence": 0.8803711, "end": 59.715, "punctuated_word": "Zig", "speaker": 0, "speaker_confidence": 0.86035156, "start": 59.555, "word": "zig" }, { "confidence": 0.97998047, "end": 59.875, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.86035156, "start": 59.715, "word": "can" }, { "confidence": 0.9980469, "end": 60.274998, "punctuated_word": "integrate", "speaker": 0, "speaker_confidence": 0.86035156, "start": 59.875, "word": "integrate" }, { "confidence": 0.9980469, "end": 60.515, "punctuated_word": "well", "speaker": 0, "speaker_confidence": 0.86035156, "start": 60.274998, "word": "well" }, { "confidence": 0.9941406, "end": 60.835, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.86035156, "start": 60.515, "word": "into" }, { "confidence": 0.9658203, "end": 60.915, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.86035156, "start": 60.835, "word": "a" }, { "confidence": 0.9086914, "end": 61.075, "punctuated_word": "c", "speaker": 0, "speaker_confidence": 0.86035156, "start": 60.915, "word": "c" }, { "confidence": 0.984375, "end": 61.315, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.86035156, "start": 61.075, "word": "or" }, { "confidence": 0.95166016, "end": 61.475, "punctuated_word": "c", "speaker": 0, "speaker_confidence": 0.86035156, "start": 61.315, "word": "c" }, { "confidence": 0.8798828, "end": 61.715, "punctuated_word": "plus", "speaker": 0, "speaker_confidence": 0.86035156, "start": 61.475, "word": "plus" }, { "confidence": 0.97509766, "end": 61.954998, "punctuated_word": "plus", "speaker": 0, "speaker_confidence": 0.86035156, "start": 61.715, "word": "plus" }, { "confidence": 0.99316406, "end": 62.035, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.86035156, "start": 61.954998, "word": "code" }, { "confidence": 0.51416016, "end": 62.434998, "punctuated_word": "base", "speaker": 0, "speaker_confidence": 0.86035156, "start": 62.035, "word": "base" }, { "confidence": 0.7080078, "end": 62.675, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.86035156, "start": 62.434998, "word": "and" }, { "confidence": 0.9316406, "end": 62.995, "punctuated_word": "supports", "speaker": 0, "speaker_confidence": 0.86035156, "start": 62.675, "word": "supports" }, { "confidence": 0.9951172, "end": 63.315, "punctuated_word": "cross", "speaker": 0, "speaker_confidence": 0.86035156, "start": 62.995, "word": "cross" }, { "confidence": 0.99609375, "end": 63.795, "punctuated_word": "compilation", "speaker": 0, "speaker_confidence": 0.86035156, "start": 63.315, "word": "compilation" }, { "confidence": 0.9863281, "end": 63.954998, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.86035156, "start": 63.795, "word": "out" }, { "confidence": 0.99121094, "end": 64.115, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.86035156, "start": 63.954998, "word": "of" }, { "confidence": 0.99609375, "end": 64.195, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9980469, "start": 64.115, "word": "the" }, { "confidence": 0.99902344, "end": 64.595, "punctuated_word": "box", "speaker": 0, "speaker_confidence": 0.9980469, "start": 64.195, "word": "box" }, { "confidence": 0.9970703, "end": 64.755, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.9980469, "start": 64.595, "word": "with" }, { "confidence": 0.8717448, "end": 65.255, "punctuated_word": "LLVM,", "speaker": 0, "speaker_confidence": 0.9980469, "start": 64.755, "word": "llvm" }, { "confidence": 0.9970703, "end": 65.795, "punctuated_word": "although", "speaker": 0, "speaker_confidence": 0.9980469, "start": 65.475, "word": "although" }, { "confidence": 0.6303711, "end": 66.195, "punctuated_word": "divorce", "speaker": 0, "speaker_confidence": 0.9980469, "start": 65.795, "word": "divorce" }, { "confidence": 0.99121094, "end": 66.595, "punctuated_word": "paperwork", "speaker": 0, "speaker_confidence": 0.9980469, "start": 66.195, "word": "paperwork" }, { "confidence": 0.99902344, "end": 66.835, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.9980469, "start": 66.595, "word": "has" }, { "confidence": 1, "end": 66.994995, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.9980469, "start": 66.835, "word": "been" }, { "confidence": 0.9970703, "end": 67.315, "punctuated_word": "filed.", "speaker": 0, "speaker_confidence": 0.9980469, "start": 66.994995, "word": "filed" }, { "confidence": 1, "end": 67.475, "punctuated_word": "To", "speaker": 0, "speaker_confidence": 0.9980469, "start": 67.315, "word": "to" }, { "confidence": 1, "end": 67.635, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.9980469, "start": 67.475, "word": "get" }, { "confidence": 0.9133301, "end": 68.034996, "punctuated_word": "started,", "speaker": 0, "speaker_confidence": 0.9980469, "start": 67.635, "word": "started" }, { "confidence": 0.9980469, "end": 68.354996, "punctuated_word": "install", "speaker": 0, "speaker_confidence": 0.9980469, "start": 68.034996, "word": "install" }, { "confidence": 0.69970703, "end": 68.57, "punctuated_word": "Zig,", "speaker": 0, "speaker_confidence": 0.9980469, "start": 68.354996, "word": "zig" }, { "confidence": 0.8588867, "end": 69.05, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.9980469, "start": 68.73, "word": "then" }, { "confidence": 0.97265625, "end": 69.21, "punctuated_word": "create", "speaker": 0, "speaker_confidence": 0.9980469, "start": 69.05, "word": "create" }, { "confidence": 0.9970703, "end": 69.29, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9980469, "start": 69.21, "word": "a" }, { "confidence": 0.99609375, "end": 69.53, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 0.9980469, "start": 69.29, "word": "new" }, { "confidence": 1, "end": 69.85, "punctuated_word": "project", "speaker": 0, "speaker_confidence": 0.9980469, "start": 69.53, "word": "project" }, { "confidence": 0.9970703, "end": 70.01, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.9980469, "start": 69.85, "word": "with" }, { "confidence": 0.9658203, "end": 70.17, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9980469, "start": 70.01, "word": "the" }, { "confidence": 0.7824707, "end": 70.409996, "punctuated_word": "zig", "speaker": 0, "speaker_confidence": 0.9980469, "start": 70.17, "word": "zig" }, { "confidence": 0.42114258, "end": 70.57, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9980469, "start": 70.409996, "word": "and" }, { "confidence": 0.7060547, "end": 70.81, "punctuated_word": "net", "speaker": 0, "speaker_confidence": 0.9980469, "start": 70.57, "word": "net" }, { "confidence": 0.826416, "end": 71.29, "punctuated_word": "exe", "speaker": 0, "speaker_confidence": 0.9980469, "start": 70.81, "word": "exe" }, { "confidence": 0.9421387, "end": 71.77, "punctuated_word": "command.", "speaker": 0, "speaker_confidence": 0.9980469, "start": 71.29, "word": "command" }, { "confidence": 0.9921875, "end": 71.85, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.9980469, "start": 71.77, "word": "in" }, { "confidence": 1, "end": 72.01, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9980469, "start": 71.85, "word": "the" }, { "confidence": 0.99902344, "end": 72.25, "punctuated_word": "main", "speaker": 0, "speaker_confidence": 0.9980469, "start": 72.01, "word": "main" }, { "confidence": 0.97094727, "end": 72.57, "punctuated_word": "file,", "speaker": 0, "speaker_confidence": 0.9980469, "start": 72.25, "word": "file" }, { "confidence": 0.72314453, "end": 72.89, "punctuated_word": "first", "speaker": 0, "speaker_confidence": 0.9980469, "start": 72.57, "word": "first" }, { "confidence": 0.50878906, "end": 73.21, "punctuated_word": "import", "speaker": 0, "speaker_confidence": 0.9980469, "start": 72.89, "word": "import" }, { "confidence": 0.99609375, "end": 73.37, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9980469, "start": 73.21, "word": "the" }, { "confidence": 0.99609375, "end": 73.77, "punctuated_word": "standard", "speaker": 0, "speaker_confidence": 0.9980469, "start": 73.37, "word": "standard" }, { "confidence": 0.923584, "end": 74.25, "punctuated_word": "library,", "speaker": 0, "speaker_confidence": 0.9980469, "start": 73.77, "word": "library" }, { "confidence": 0.99902344, "end": 74.57, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.9980469, "start": 74.25, "word": "then" }, { "confidence": 0.9980469, "end": 74.89, "punctuated_word": "define", "speaker": 0, "speaker_confidence": 0.9980469, "start": 74.57, "word": "define" }, { "confidence": 0.9951172, "end": 75.05, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9980469, "start": 74.89, "word": "a" }, { "confidence": 1, "end": 75.21, "punctuated_word": "main", "speaker": 0, "speaker_confidence": 0.9980469, "start": 75.05, "word": "main" }, { "confidence": 0.9995117, "end": 75.71, "punctuated_word": "function.", "speaker": 0, "speaker_confidence": 0.9980469, "start": 75.21, "word": "function" }, { "confidence": 1, "end": 76.09, "punctuated_word": "Notice", "speaker": 0, "speaker_confidence": 0.9980469, "start": 75.77, "word": "notice" }, { "confidence": 0.9980469, "end": 76.17, "punctuated_word": "how", "speaker": 0, "speaker_confidence": 0.9980469, "start": 76.09, "word": "how" }, { "confidence": 1, "end": 76.33, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8330078, "start": 76.17, "word": "the" }, { "confidence": 0.9980469, "end": 76.65, "punctuated_word": "function", "speaker": 0, "speaker_confidence": 0.8330078, "start": 76.33, "word": "function" }, { "confidence": 0.9980469, "end": 77.05, "punctuated_word": "returns", "speaker": 0, "speaker_confidence": 0.8330078, "start": 76.65, "word": "returns" }, { "confidence": 0.9951172, "end": 77.235, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8330078, "start": 77.05, "word": "a" }, { "confidence": 0.9980469, "end": 77.395004, "punctuated_word": "type", "speaker": 0, "speaker_confidence": 0.8330078, "start": 77.315, "word": "type" }, { "confidence": 0.89990234, "end": 77.555, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8330078, "start": 77.395004, "word": "of" }, { "confidence": 0.9951172, "end": 77.715004, "punctuated_word": "void", "speaker": 0, "speaker_confidence": 0.8330078, "start": 77.555, "word": "void" }, { "confidence": 0.9970703, "end": 77.955, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.8330078, "start": 77.715004, "word": "with" }, { "confidence": 1, "end": 78.195, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.8330078, "start": 77.955, "word": "an" }, { "confidence": 0.99853516, "end": 78.695, "punctuated_word": "exclamation", "speaker": 0, "speaker_confidence": 0.8330078, "start": 78.195, "word": "exclamation" }, { "confidence": 0.9951172, "end": 79.235, "punctuated_word": "point.", "speaker": 0, "speaker_confidence": 0.8330078, "start": 78.755, "word": "point" }, { "confidence": 0.9921875, "end": 79.475, "punctuated_word": "That", "speaker": 0, "speaker_confidence": 0.8330078, "start": 79.235, "word": "that" }, { "confidence": 0.9995117, "end": 79.955, "punctuated_word": "exclamation", "speaker": 0, "speaker_confidence": 0.8330078, "start": 79.475, "word": "exclamation" }, { "confidence": 1, "end": 80.275, "punctuated_word": "point", "speaker": 0, "speaker_confidence": 0.8330078, "start": 79.955, "word": "point" }, { "confidence": 1, "end": 80.515, "punctuated_word": "means", "speaker": 0, "speaker_confidence": 0.8330078, "start": 80.275, "word": "means" }, { "confidence": 1, "end": 80.675, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8330078, "start": 80.515, "word": "that" }, { "confidence": 1, "end": 80.835, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8330078, "start": 80.675, "word": "the" }, { "confidence": 1, "end": 81.235, "punctuated_word": "function", "speaker": 0, "speaker_confidence": 0.8330078, "start": 80.835, "word": "function" }, { "confidence": 1, "end": 81.475, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 0.8330078, "start": 81.235, "word": "might" }, { "confidence": 1, "end": 81.715004, "punctuated_word": "return", "speaker": 0, "speaker_confidence": 0.8330078, "start": 81.475, "word": "return" }, { "confidence": 0.99121094, "end": 81.875, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.8330078, "start": 81.715004, "word": "an" }, { "confidence": 0.8474121, "end": 82.195, "punctuated_word": "error,", "speaker": 0, "speaker_confidence": 0.8330078, "start": 81.875, "word": "error" }, { "confidence": 0.9716797, "end": 82.515, "punctuated_word": "declare", "speaker": 0, "speaker_confidence": 0.8330078, "start": 82.195, "word": "declare" }, { "confidence": 0.9770508, "end": 82.595, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9814453, "start": 82.515, "word": "a" }, { "confidence": 0.99902344, "end": 82.995, "punctuated_word": "mutable", "speaker": 0, "speaker_confidence": 0.9814453, "start": 82.595, "word": "mutable" }, { "confidence": 0.9980469, "end": 83.395004, "punctuated_word": "variable", "speaker": 0, "speaker_confidence": 0.9814453, "start": 82.995, "word": "variable" }, { "confidence": 0.99902344, "end": 83.555, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.9814453, "start": 83.395004, "word": "with" }, { "confidence": 0.7871094, "end": 83.715004, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9814453, "start": 83.555, "word": "the" }, { "confidence": 0.67529297, "end": 83.955, "punctuated_word": "bar", "speaker": 0, "speaker_confidence": 0.9814453, "start": 83.715004, "word": "bar" }, { "confidence": 0.9394531, "end": 84.355, "punctuated_word": "keyword", "speaker": 0, "speaker_confidence": 0.9814453, "start": 83.955, "word": "keyword" }, { "confidence": 0.6464844, "end": 84.675, "punctuated_word": "followed", "speaker": 0, "speaker_confidence": 0.9814453, "start": 84.355, "word": "followed" }, { "confidence": 1, "end": 84.835, "punctuated_word": "by", "speaker": 0, "speaker_confidence": 0.9814453, "start": 84.675, "word": "by" }, { "confidence": 0.99902344, "end": 84.995, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9814453, "start": 84.835, "word": "a" }, { "confidence": 1, "end": 85.235, "punctuated_word": "type", "speaker": 0, "speaker_confidence": 0.9814453, "start": 84.995, "word": "type" }, { "confidence": 0.77246094, "end": 85.51, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.9814453, "start": 85.235, "word": "like" }, { "confidence": 0.26220703, "end": 85.83, "punctuated_word": "q", "speaker": 0, "speaker_confidence": 0.9814453, "start": 85.590004, "word": "q" }, { "confidence": 0.7182617, "end": 85.990005, "punctuated_word": "wait", "speaker": 0, "speaker_confidence": 0.9814453, "start": 85.83, "word": "wait" }, { "confidence": 0.9921875, "end": 86.310005, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9814453, "start": 85.990005, "word": "to" }, { "confidence": 0.99902344, "end": 86.79, "punctuated_word": "represent", "speaker": 0, "speaker_confidence": 0.9814453, "start": 86.310005, "word": "represent" }, { "confidence": 0.9980469, "end": 86.87, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9814453, "start": 86.79, "word": "a" }, { "confidence": 0.9980469, "end": 87.270004, "punctuated_word": "single", "speaker": 0, "speaker_confidence": 0.9814453, "start": 86.87, "word": "single" }, { "confidence": 0.8791504, "end": 87.590004, "punctuated_word": "byte,", "speaker": 0, "speaker_confidence": 0.9814453, "start": 87.270004, "word": "byte" }, { "confidence": 0.99902344, "end": 87.83, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.9814453, "start": 87.590004, "word": "then" }, { "confidence": 0.99609375, "end": 88.23, "punctuated_word": "assign", "speaker": 0, "speaker_confidence": 0.9814453, "start": 87.83, "word": "assign" }, { "confidence": 0.9951172, "end": 88.47, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9814453, "start": 88.23, "word": "and" }, { "confidence": 1, "end": 88.87, "punctuated_word": "modify", "speaker": 0, "speaker_confidence": 0.9814453, "start": 88.47, "word": "modify" }, { "confidence": 0.9838867, "end": 89.03, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.9814453, "start": 88.87, "word": "its" }, { "confidence": 1, "end": 89.35, "punctuated_word": "value", "speaker": 0, "speaker_confidence": 0.9814453, "start": 89.03, "word": "value" }, { "confidence": 0.7626953, "end": 89.75, "punctuated_word": "later,", "speaker": 0, "speaker_confidence": 0.9814453, "start": 89.35, "word": "later" }, { "confidence": 0.9980469, "end": 89.990005, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.9814453, "start": 89.75, "word": "or" }, { "confidence": 0.9970703, "end": 90.23, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.9814453, "start": 89.990005, "word": "use" }, { "confidence": 0.96972656, "end": 90.47, "punctuated_word": "const", "speaker": 0, "speaker_confidence": 0.9814453, "start": 90.23, "word": "const" }, { "confidence": 0.9951172, "end": 90.630005, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9814453, "start": 90.47, "word": "to" }, { "confidence": 0.99902344, "end": 90.950005, "punctuated_word": "define", "speaker": 0, "speaker_confidence": 0.9814453, "start": 90.630005, "word": "define" }, { "confidence": 0.9941406, "end": 91.19, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.9814453, "start": 90.950005, "word": "an" }, { "confidence": 1, "end": 91.590004, "punctuated_word": "immutable", "speaker": 0, "speaker_confidence": 0.9814453, "start": 91.19, "word": "immutable" }, { "confidence": 0.9980469, "end": 92.07, "punctuated_word": "variable", "speaker": 0, "speaker_confidence": 0.9814453, "start": 91.590004, "word": "variable" }, { "confidence": 0.9980469, "end": 92.23, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9814453, "start": 92.07, "word": "that" }, { "confidence": 0.9326172, "end": 92.525, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9814453, "start": 92.23, "word": "can" }, { "confidence": 0.4399414, "end": 92.685005, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 0.9814453, "start": 92.525, "word": "not" }, { "confidence": 0.99902344, "end": 92.845, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.9814453, "start": 92.685005, "word": "be" }, { "confidence": 0.99609375, "end": 93.165, "punctuated_word": "changed.", "speaker": 0, "speaker_confidence": 0.9814453, "start": 92.845, "word": "changed" }, { "confidence": 1, "end": 93.405, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.9814453, "start": 93.165, "word": "we" }, { "confidence": 1, "end": 93.485, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9814453, "start": 93.405, "word": "can" }, { "confidence": 1, "end": 93.725, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.9814453, "start": 93.485, "word": "also" }, { "confidence": 0.9980469, "end": 94.045, "punctuated_word": "bundle", "speaker": 0, "speaker_confidence": 0.9814453, "start": 93.725, "word": "bundle" }, { "confidence": 0.99902344, "end": 94.445, "punctuated_word": "multiple", "speaker": 0, "speaker_confidence": 0.9814453, "start": 94.045, "word": "multiple" }, { "confidence": 0.99902344, "end": 94.925, "punctuated_word": "variables", "speaker": 0, "speaker_confidence": 0.9814453, "start": 94.445, "word": "variables" }, { "confidence": 0.99902344, "end": 95.325005, "punctuated_word": "together", "speaker": 0, "speaker_confidence": 0.9814453, "start": 94.925, "word": "together" }, { "confidence": 0.9970703, "end": 95.645004, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.9814453, "start": 95.325005, "word": "into" }, { "confidence": 0.9980469, "end": 95.805, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9814453, "start": 95.645004, "word": "a" }, { "confidence": 0.84375, "end": 96.205, "punctuated_word": "struct,", "speaker": 0, "speaker_confidence": 0.9814453, "start": 95.805, "word": "struct" }, { "confidence": 0.9970703, "end": 96.525, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.9814453, "start": 96.205, "word": "then" }, { "confidence": 0.98535156, "end": 96.845, "punctuated_word": "access", "speaker": 0, "speaker_confidence": 0.9814453, "start": 96.525, "word": "access" }, { "confidence": 0.99902344, "end": 97.005005, "punctuated_word": "them", "speaker": 0, "speaker_confidence": 0.9814453, "start": 96.845, "word": "them" }, { "confidence": 1, "end": 97.165, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.9814453, "start": 97.005005, "word": "on" }, { "confidence": 0.99902344, "end": 97.325005, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9814453, "start": 97.165, "word": "that" }, { "confidence": 0.5058594, "end": 97.565, "punctuated_word": "name", "speaker": 0, "speaker_confidence": 0.9814453, "start": 97.325005, "word": "name" }, { "confidence": 0.9951172, "end": 97.885, "punctuated_word": "space", "speaker": 0, "speaker_confidence": 0.9814453, "start": 97.565, "word": "space" }, { "confidence": 0.99902344, "end": 98.125, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.9814453, "start": 97.885, "word": "with" }, { "confidence": 0.98291016, "end": 98.365, "punctuated_word": "dot", "speaker": 0, "speaker_confidence": 0.9814453, "start": 98.125, "word": "dot" }, { "confidence": 0.97265625, "end": 98.865, "punctuated_word": "notation.", "speaker": 0, "speaker_confidence": 0.9814453, "start": 98.365, "word": "notation" }, { "confidence": 1, "end": 99.165, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 0.90527344, "start": 99.005005, "word": "now" }, { "confidence": 0.5864258, "end": 99.405, "punctuated_word": "things", "speaker": 0, "speaker_confidence": 0.90527344, "start": 99.165, "word": "things" }, { "confidence": 0.9941406, "end": 99.565, "punctuated_word": "start", "speaker": 0, "speaker_confidence": 0.90527344, "start": 99.405, "word": "start" }, { "confidence": 0.9980469, "end": 99.725, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.90527344, "start": 99.565, "word": "to" }, { "confidence": 1, "end": 99.885, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.90527344, "start": 99.725, "word": "get" }, { "confidence": 0.9980469, "end": 100.045, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.90527344, "start": 99.885, "word": "more" }, { "confidence": 1, "end": 100.445, "punctuated_word": "interesting", "speaker": 0, "speaker_confidence": 0.90527344, "start": 100.045, "word": "interesting" }, { "confidence": 0.9970703, "end": 100.765, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.90527344, "start": 100.445, "word": "when" }, { "confidence": 0.99902344, "end": 101.085, "punctuated_word": "memory", "speaker": 0, "speaker_confidence": 0.90527344, "start": 100.765, "word": "memory" }, { "confidence": 0.9980469, "end": 101.565, "punctuated_word": "management", "speaker": 0, "speaker_confidence": 0.90527344, "start": 101.085, "word": "management" }, { "confidence": 0.9980469, "end": 101.725, "punctuated_word": "comes", "speaker": 0, "speaker_confidence": 0.90527344, "start": 101.565, "word": "comes" }, { "confidence": 0.89990234, "end": 102.09, "punctuated_word": "into", "speaker": 0, "speaker_confidence": 0.90527344, "start": 101.725, "word": "into" }, { "confidence": 0.8251953, "end": 102.57, "punctuated_word": "When", "speaker": 0, "speaker_confidence": 0.90527344, "start": 102.329994, "word": "when" }, { "confidence": 0.98706055, "end": 103.07, "punctuated_word": "initializing", "speaker": 0, "speaker_confidence": 0.90527344, "start": 102.57, "word": "initializing" }, { "confidence": 0.97314453, "end": 103.28999, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.90527344, "start": 103.13, "word": "an" }, { "confidence": 1, "end": 103.53, "punctuated_word": "array", "speaker": 0, "speaker_confidence": 0.90527344, "start": 103.28999, "word": "array" }, { "confidence": 0.99316406, "end": 103.689995, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.90527344, "start": 103.53, "word": "of" }, { "confidence": 0.9916992, "end": 104.17, "punctuated_word": "integers,", "speaker": 0, "speaker_confidence": 0.90527344, "start": 103.689995, "word": "integers" }, { "confidence": 1, "end": 104.329994, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.90527344, "start": 104.17, "word": "we" }, { "confidence": 0.9970703, "end": 104.49, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.90527344, "start": 104.329994, "word": "can" }, { "confidence": 0.98535156, "end": 104.89, "punctuated_word": "allocate", "speaker": 0, "speaker_confidence": 0.90527344, "start": 104.49, "word": "allocate" }, { "confidence": 0.98095703, "end": 105.049995, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.90527344, "start": 104.89, "word": "it" }, { "confidence": 0.9980469, "end": 105.13, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.90527344, "start": 105.049995, "word": "to" }, { "confidence": 0.9921875, "end": 105.28999, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.90527344, "start": 105.13, "word": "a" }, { "confidence": 1, "end": 105.53, "punctuated_word": "slice", "speaker": 0, "speaker_confidence": 0.90527344, "start": 105.28999, "word": "slice" }, { "confidence": 0.99902344, "end": 105.689995, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.90527344, "start": 105.53, "word": "of" }, { "confidence": 0.99902344, "end": 106.009995, "punctuated_word": "memory", "speaker": 0, "speaker_confidence": 0.90527344, "start": 105.689995, "word": "memory" }, { "confidence": 0.9658203, "end": 106.09, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.90527344, "start": 106.009995, "word": "in" }, { "confidence": 0.9921875, "end": 106.17, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.73339844, "start": 106.09, "word": "the" }, { "confidence": 0.9970703, "end": 106.49, "punctuated_word": "heap", "speaker": 0, "speaker_confidence": 0.73339844, "start": 106.17, "word": "heap" }, { "confidence": 0.95166016, "end": 106.729996, "punctuated_word": "using", "speaker": 0, "speaker_confidence": 0.73339844, "start": 106.49, "word": "using" }, { "confidence": 0.99316406, "end": 106.89, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.73339844, "start": 106.729996, "word": "the" }, { "confidence": 0.9892578, "end": 107.049995, "punctuated_word": "built", "speaker": 0, "speaker_confidence": 0.73339844, "start": 106.89, "word": "built" }, { "confidence": 0.9902344, "end": 107.21, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.73339844, "start": 107.049995, "word": "in" }, { "confidence": 0.99609375, "end": 107.53, "punctuated_word": "page", "speaker": 0, "speaker_confidence": 0.73339844, "start": 107.21, "word": "page" }, { "confidence": 0.99121094, "end": 107.92999, "punctuated_word": "allocator", "speaker": 0, "speaker_confidence": 0.73339844, "start": 107.53, "word": "allocator" }, { "confidence": 0.9970703, "end": 108.09, "punctuated_word": "from", "speaker": 0, "speaker_confidence": 0.73339844, "start": 107.92999, "word": "from" }, { "confidence": 0.99902344, "end": 108.25, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.73339844, "start": 108.09, "word": "the" }, { "confidence": 0.9326172, "end": 108.649994, "punctuated_word": "standard", "speaker": 0, "speaker_confidence": 0.73339844, "start": 108.25, "word": "standard" }, { "confidence": 0.9995117, "end": 109.049995, "punctuated_word": "library.", "speaker": 0, "speaker_confidence": 0.73339844, "start": 108.649994, "word": "library" }, { "confidence": 0.99658203, "end": 109.28999, "punctuated_word": "What's", "speaker": 0, "speaker_confidence": 0.6879883, "start": 109.049995, "word": "what's" }, { "confidence": 0.9980469, "end": 109.45, "punctuated_word": "so", "speaker": 0, "speaker_confidence": 0.6879883, "start": 109.28999, "word": "so" }, { "confidence": 1, "end": 109.60999, "punctuated_word": "cool", "speaker": 0, "speaker_confidence": 0.6879883, "start": 109.45, "word": "cool" }, { "confidence": 1, "end": 109.77, "punctuated_word": "about", "speaker": 0, "speaker_confidence": 0.6879883, "start": 109.60999, "word": "about" }, { "confidence": 0.9980469, "end": 110.065, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.6879883, "start": 109.77, "word": "this" }, { "confidence": 0.9453125, "end": 110.2807, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.6879883, "start": 110.065, "word": "is" }, { "confidence": 0.9970703, "end": 110.49639, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.6879883, "start": 110.2807, "word": "that" }, { "confidence": 0.984375, "end": 110.71208, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.6879883, "start": 110.49639, "word": "we" }, { "confidence": 0.97998047, "end": 110.92778, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.6879883, "start": 110.71208, "word": "could" }, { "confidence": 0.99902344, "end": 111.14348, "punctuated_word": "swap", "speaker": 0, "speaker_confidence": 0.6879883, "start": 110.92778, "word": "swap" }, { "confidence": 0.9980469, "end": 111.35917, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.6879883, "start": 111.14348, "word": "it" }, { "confidence": 0.99902344, "end": 111.57486, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 0.6879883, "start": 111.35917, "word": "out" }, { "confidence": 1, "end": 111.79056, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.6879883, "start": 111.57486, "word": "with" }, { "confidence": 0.99902344, "end": 112.006256, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.6879883, "start": 111.79056, "word": "other" }, { "confidence": 0.9980469, "end": 112.22195, "punctuated_word": "allocators", "speaker": 0, "speaker_confidence": 0.6879883, "start": 112.006256, "word": "allocators" }, { "confidence": 0.9980469, "end": 112.43764, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 112.22195, "word": "to" }, { "confidence": 1, "end": 112.653336, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 1, "start": 112.43764, "word": "use" }, { "confidence": 1, "end": 112.86903, "punctuated_word": "different", "speaker": 0, "speaker_confidence": 1, "start": 112.653336, "word": "different" }, { "confidence": 0.9980469, "end": 113.084724, "punctuated_word": "memory", "speaker": 0, "speaker_confidence": 1, "start": 112.86903, "word": "memory" }, { "confidence": 0.99902344, "end": 113.300415, "punctuated_word": "management", "speaker": 0, "speaker_confidence": 1, "start": 113.084724, "word": "management" }, { "confidence": 0.99853516, "end": 113.51611, "punctuated_word": "strategies.", "speaker": 0, "speaker_confidence": 1, "start": 113.300415, "word": "strategies" }, { "confidence": 0.99902344, "end": 113.73181, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 1, "start": 113.51611, "word": "now" }, { "confidence": 0.7792969, "end": 113.9475, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 1, "start": 113.73181, "word": "when" }, { "confidence": 0.9980469, "end": 114.16319, "punctuated_word": "we're", "speaker": 0, "speaker_confidence": 1, "start": 113.9475, "word": "we're" }, { "confidence": 0.99902344, "end": 114.37889, "punctuated_word": "done", "speaker": 0, "speaker_confidence": 1, "start": 114.16319, "word": "done" }, { "confidence": 1, "end": 114.59459, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 1, "start": 114.37889, "word": "with" }, { "confidence": 0.9921875, "end": 114.81028, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 1, "start": 114.59459, "word": "this" }, { "confidence": 0.98583984, "end": 115.02597, "punctuated_word": "memory,", "speaker": 0, "speaker_confidence": 1, "start": 114.81028, "word": "memory" }, { "confidence": 0.99609375, "end": 115.24167, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 1, "start": 115.02597, "word": "we" }, { "confidence": 0.9980469, "end": 115.45737, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 1, "start": 115.24167, "word": "need" }, { "confidence": 0.9970703, "end": 115.67306, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 115.45737, "word": "to" }, { "confidence": 0.9980469, "end": 115.88875, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 1, "start": 115.67306, "word": "set" }, { "confidence": 0.9716797, "end": 116.10445, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 115.88875, "word": "it" }, { "confidence": 0.8408203, "end": 116.320145, "punctuated_word": "free.", "speaker": 0, "speaker_confidence": 1, "start": 116.10445, "word": "free" }, { "confidence": 0.99316406, "end": 116.535835, "punctuated_word": "Otherwise,", "speaker": 0, "speaker_confidence": 1, "start": 116.320145, "word": "otherwise" }, { "confidence": 0.9819336, "end": 116.751526, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 1, "start": 116.535835, "word": "we" }, { "confidence": 0.8232422, "end": 116.967224, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 1, "start": 116.751526, "word": "could" }, { "confidence": 0.97509766, "end": 117.18292, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 1, "start": 116.967224, "word": "have" }, { "confidence": 0.67041016, "end": 117.39861, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 117.18292, "word": "a" }, { "confidence": 0.80908203, "end": 117.6143, "punctuated_word": "memory", "speaker": 0, "speaker_confidence": 1, "start": 117.39861, "word": "memory" }, { "confidence": 0.7753906, "end": 117.83, "punctuated_word": "leak.", "speaker": 0, "speaker_confidence": 1, "start": 117.6143, "word": "leak" }, { "confidence": 0.32250977, "end": 117.91, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 1, "start": 117.83, "word": "and" }, { "confidence": 0.14440918, "end": 117.990005, "punctuated_word": "re", "speaker": 0, "speaker_confidence": 1, "start": 117.91, "word": "re" }, { "confidence": 0.82714844, "end": 118.310005, "punctuated_word": "leak.", "speaker": 0, "speaker_confidence": 1, "start": 117.990005, "word": "leak" }, { "confidence": 0.99902344, "end": 118.55, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 1, "start": 118.310005, "word": "the" }, { "confidence": 0.65283203, "end": 118.79, "punctuated_word": "defer", "speaker": 0, "speaker_confidence": 1, "start": 118.55, "word": "defer" }, { "confidence": 0.9448242, "end": 119.11, "punctuated_word": "keyword", "speaker": 0, "speaker_confidence": 1, "start": 118.79, "word": "keyword" }, { "confidence": 0.99902344, "end": 119.35, "punctuated_word": "allows", "speaker": 0, "speaker_confidence": 1, "start": 119.11, "word": "allows" }, { "confidence": 0.9980469, "end": 119.51, "punctuated_word": "us", "speaker": 0, "speaker_confidence": 1, "start": 119.35, "word": "us" }, { "confidence": 0.99902344, "end": 119.590004, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 119.51, "word": "to" }, { "confidence": 1, "end": 119.75, "punctuated_word": "put", "speaker": 0, "speaker_confidence": 1, "start": 119.590004, "word": "put" }, { "confidence": 0.99902344, "end": 119.91, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 119.75, "word": "that" }, { "confidence": 0.99902344, "end": 120.15, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 1, "start": 119.91, "word": "code" }, { "confidence": 0.99902344, "end": 120.39, "punctuated_word": "right", "speaker": 0, "speaker_confidence": 1, "start": 120.15, "word": "right" }, { "confidence": 1, "end": 120.630005, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 1, "start": 120.39, "word": "next" }, { "confidence": 0.99902344, "end": 120.71, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 120.630005, "word": "to" }, { "confidence": 1, "end": 120.87, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 120.71, "word": "the" }, { "confidence": 0.9941406, "end": 121.37, "punctuated_word": "allocation", "speaker": 0, "speaker_confidence": 1, "start": 120.87, "word": "allocation" }, { "confidence": 0.99902344, "end": 121.83, "punctuated_word": "itself", "speaker": 0, "speaker_confidence": 1, "start": 121.43, "word": "itself" }, { "confidence": 0.83984375, "end": 121.990005, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 121.83, "word": "and" }, { "confidence": 0.9892578, "end": 122.15, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 1, "start": 121.990005, "word": "will" }, { "confidence": 0.99902344, "end": 122.65, "punctuated_word": "automatically", "speaker": 0, "speaker_confidence": 1, "start": 122.15, "word": "automatically" }, { "confidence": 0.91503906, "end": 122.87, "punctuated_word": "de", "speaker": 0, "speaker_confidence": 1, "start": 122.71, "word": "de" }, { "confidence": 0.6669922, "end": 123.35, "punctuated_word": "initialize", "speaker": 0, "speaker_confidence": 1, "start": 122.87, "word": "initialize" }, { "confidence": 0.9980469, "end": 123.51, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 123.35, "word": "the" }, { "confidence": 1, "end": 123.75, "punctuated_word": "list", "speaker": 0, "speaker_confidence": 1, "start": 123.51, "word": "list" }, { "confidence": 1, "end": 123.91, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 1, "start": 123.75, "word": "when" }, { "confidence": 1, "end": 123.990005, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 123.91, "word": "it" }, { "confidence": 1, "end": 124.23, "punctuated_word": "goes", "speaker": 0, "speaker_confidence": 1, "start": 123.990005, "word": "goes" }, { "confidence": 1, "end": 124.39, "punctuated_word": "out", "speaker": 0, "speaker_confidence": 1, "start": 124.23, "word": "out" }, { "confidence": 0.9980469, "end": 124.47, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 1, "start": 124.39, "word": "of" }, { "confidence": 0.9980469, "end": 124.87, "punctuated_word": "scope.", "speaker": 0, "speaker_confidence": 1, "start": 124.47, "word": "scope" }, { "confidence": 1, "end": 125.03, "punctuated_word": "Now", "speaker": 0, "speaker_confidence": 1, "start": 124.87, "word": "now" }, { "confidence": 0.79833984, "end": 125.19, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 1, "start": 125.03, "word": "as" }, { "confidence": 1, "end": 125.35, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 1, "start": 125.19, "word": "we" }, { "confidence": 0.99902344, "end": 125.75, "punctuated_word": "operate", "speaker": 0, "speaker_confidence": 1, "start": 125.35, "word": "operate" }, { "confidence": 1, "end": 125.83, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 1, "start": 125.75, "word": "on" }, { "confidence": 0.9970703, "end": 125.990005, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 125.83, "word": "the" }, { "confidence": 0.99902344, "end": 126.31, "punctuated_word": "list,", "speaker": 0, "speaker_confidence": 1, "start": 125.990005, "word": "list" }, { "confidence": 0.99902344, "end": 126.55, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 126.31, "word": "the" }, { "confidence": 0.98828125, "end": 126.855, "punctuated_word": "try", "speaker": 0, "speaker_confidence": 1, "start": 126.55, "word": "try" }, { "confidence": 0.9667969, "end": 127.255005, "punctuated_word": "keyword", "speaker": 0, "speaker_confidence": 1, "start": 126.935005, "word": "keyword" }, { "confidence": 0.99902344, "end": 127.495, "punctuated_word": "provides", "speaker": 0, "speaker_confidence": 1, "start": 127.255005, "word": "provides" }, { "confidence": 0.99902344, "end": 127.995, "punctuated_word": "explicit", "speaker": 0, "speaker_confidence": 1, "start": 127.495, "word": "explicit" }, { "confidence": 0.99902344, "end": 128.295, "punctuated_word": "error", "speaker": 0, "speaker_confidence": 1, "start": 128.05501, "word": "error" }, { "confidence": 0.99902344, "end": 128.795, "punctuated_word": "handling.", "speaker": 0, "speaker_confidence": 1, "start": 128.295, "word": "handling" }, { "confidence": 1, "end": 129.015, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 1, "start": 128.85501, "word": "if" }, { "confidence": 1, "end": 129.175, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 1, "start": 129.015, "word": "this" }, { "confidence": 1, "end": 129.41501, "punctuated_word": "line", "speaker": 0, "speaker_confidence": 1, "start": 129.175, "word": "line" }, { "confidence": 0.9941406, "end": 129.815, "punctuated_word": "fails,", "speaker": 0, "speaker_confidence": 1, "start": 129.41501, "word": "fails" }, { "confidence": 1, "end": 129.975, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 1, "start": 129.815, "word": "it" }, { "confidence": 1, "end": 130.13501, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 1, "start": 129.975, "word": "will" }, { "confidence": 0.99902344, "end": 130.63501, "punctuated_word": "automatically", "speaker": 0, "speaker_confidence": 1, "start": 130.13501, "word": "automatically" }, { "confidence": 0.99902344, "end": 131.015, "punctuated_word": "catch", "speaker": 0, "speaker_confidence": 1, "start": 130.77501, "word": "catch" }, { "confidence": 1, "end": 131.255, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 1, "start": 131.015, "word": "and" }, { "confidence": 1, "end": 131.575, "punctuated_word": "return", "speaker": 0, "speaker_confidence": 1, "start": 131.255, "word": "return" }, { "confidence": 1, "end": 131.655, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8066406, "start": 131.575, "word": "the" }, { "confidence": 0.9995117, "end": 132.13501, "punctuated_word": "error.", "speaker": 0, "speaker_confidence": 0.8066406, "start": 131.655, "word": "error" }, { "confidence": 1, "end": 132.295, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.8066406, "start": 132.13501, "word": "you" }, { "confidence": 0.9995117, "end": 132.455, "punctuated_word": "can't", "speaker": 0, "speaker_confidence": 0.8066406, "start": 132.295, "word": "can't" }, { "confidence": 1, "end": 132.615, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.8066406, "start": 132.455, "word": "just" }, { "confidence": 1, "end": 132.935, "punctuated_word": "ignore", "speaker": 0, "speaker_confidence": 0.8066406, "start": 132.615, "word": "ignore" }, { "confidence": 1, "end": 133.095, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8066406, "start": 132.935, "word": "it" }, { "confidence": 0.88183594, "end": 133.255, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8066406, "start": 133.095, "word": "and" }, { "confidence": 1, "end": 133.41501, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8066406, "start": 133.255, "word": "that" }, { "confidence": 0.99902344, "end": 133.575, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.8066406, "start": 133.41501, "word": "will" }, { "confidence": 1, "end": 133.735, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.8066406, "start": 133.575, "word": "make" }, { "confidence": 1, "end": 133.895, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.8066406, "start": 133.735, "word": "your" }, { "confidence": 1, "end": 134.13501, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.8066406, "start": 133.895, "word": "code" }, { "confidence": 1, "end": 134.295, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.8066406, "start": 134.13501, "word": "more" }, { "confidence": 0.99365234, "end": 134.795, "punctuated_word": "reliable.", "speaker": 0, "speaker_confidence": 0.8066406, "start": 134.295, "word": "reliable" }, { "confidence": 0.99902344, "end": 135.015, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.8066406, "start": 134.85501, "word": "and" }, { "confidence": 0.9560547, "end": 135.335, "punctuated_word": "speaking", "speaker": 0, "speaker_confidence": 0.8066406, "start": 135.015, "word": "speaking" }, { "confidence": 1, "end": 135.495, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8066406, "start": 135.335, "word": "of" }, { "confidence": 1, "end": 135.995, "punctuated_word": "reliability,", "speaker": 0, "speaker_confidence": 0.8066406, "start": 135.495, "word": "reliability" }, { "confidence": 0.8911133, "end": 136.57999, "punctuated_word": "Zig", "speaker": 0, "speaker_confidence": 0.8066406, "start": 136.34, "word": "zig" }, { "confidence": 0.99902344, "end": 136.65999, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.8066406, "start": 136.57999, "word": "has" }, { "confidence": 0.9970703, "end": 136.9, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9042969, "start": 136.65999, "word": "a" }, { "confidence": 0.9970703, "end": 137.14, "punctuated_word": "built", "speaker": 0, "speaker_confidence": 0.9042969, "start": 136.9, "word": "built" }, { "confidence": 0.9921875, "end": 137.37999, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.9042969, "start": 137.14, "word": "in" }, { "confidence": 0.99609375, "end": 137.7, "punctuated_word": "testing", "speaker": 0, "speaker_confidence": 0.9042969, "start": 137.37999, "word": "testing" }, { "confidence": 0.9946289, "end": 138.18, "punctuated_word": "framework.", "speaker": 0, "speaker_confidence": 0.9042969, "start": 137.7, "word": "framework" }, { "confidence": 0.98828125, "end": 138.42, "punctuated_word": "Use", "speaker": 0, "speaker_confidence": 0.9042969, "start": 138.18, "word": "use" }, { "confidence": 0.99902344, "end": 138.57999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9042969, "start": 138.42, "word": "the" }, { "confidence": 0.9482422, "end": 138.81999, "punctuated_word": "test", "speaker": 0, "speaker_confidence": 0.9042969, "start": 138.57999, "word": "test" }, { "confidence": 0.94384766, "end": 139.14, "punctuated_word": "keyword", "speaker": 0, "speaker_confidence": 0.9042969, "start": 138.81999, "word": "keyword" }, { "confidence": 1, "end": 139.37999, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9042969, "start": 139.14, "word": "to" }, { "confidence": 1, "end": 139.85999, "punctuated_word": "evaluate", "speaker": 0, "speaker_confidence": 0.9042969, "start": 139.37999, "word": "evaluate" }, { "confidence": 0.9980469, "end": 140.09999, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.9042969, "start": 139.85999, "word": "code" }, { "confidence": 1, "end": 140.42, "punctuated_word": "outside", "speaker": 0, "speaker_confidence": 0.9042969, "start": 140.09999, "word": "outside" }, { "confidence": 0.99902344, "end": 140.5, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9042969, "start": 140.42, "word": "of" }, { "confidence": 1, "end": 140.65999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9042969, "start": 140.5, "word": "the" }, { "confidence": 1, "end": 140.9, "punctuated_word": "main", "speaker": 0, "speaker_confidence": 0.9042969, "start": 140.65999, "word": "main" }, { "confidence": 0.9169922, "end": 141.29999, "punctuated_word": "program,", "speaker": 0, "speaker_confidence": 0.9042969, "start": 140.9, "word": "program" }, { "confidence": 0.99902344, "end": 141.54, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.9042969, "start": 141.29999, "word": "then" }, { "confidence": 0.984375, "end": 141.78, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.9042969, "start": 141.54, "word": "use" }, { "confidence": 0.99316406, "end": 141.93999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9042969, "start": 141.78, "word": "the" }, { "confidence": 0.9013672, "end": 142.18, "punctuated_word": "Zig", "speaker": 0, "speaker_confidence": 0.9042969, "start": 141.93999, "word": "zig" }, { "confidence": 0.9560547, "end": 142.42, "punctuated_word": "test", "speaker": 0, "speaker_confidence": 0.9042969, "start": 142.18, "word": "test" }, { "confidence": 0.99902344, "end": 142.81999, "punctuated_word": "command", "speaker": 0, "speaker_confidence": 0.9042969, "start": 142.42, "word": "command" }, { "confidence": 0.99902344, "end": 142.9, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9042969, "start": 142.81999, "word": "to" }, { "confidence": 1, "end": 143.06, "punctuated_word": "run", "speaker": 0, "speaker_confidence": 0.9042969, "start": 142.9, "word": "run" }, { "confidence": 0.89697266, "end": 143.29999, "punctuated_word": "it.", "speaker": 0, "speaker_confidence": 0.9042969, "start": 143.06, "word": "it" }, { "confidence": 0.9980469, "end": 143.54, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 0.9042969, "start": 143.29999, "word": "and" }, { "confidence": 0.88623047, "end": 143.93999, "punctuated_word": "finally,", "speaker": 0, "speaker_confidence": 0.9042969, "start": 143.54, "word": "finally" }, { "confidence": 0.99609375, "end": 144.09999, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.9042969, "start": 143.93999, "word": "build" }, { "confidence": 0.9941406, "end": 144.34, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.9042969, "start": 144.09999, "word": "an" }, { "confidence": 0.9980469, "end": 144.81999, "punctuated_word": "executable", "speaker": 0, "speaker_confidence": 0.9042969, "start": 144.34, "word": "executable" }, { "confidence": 1, "end": 145.06, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.9042969, "start": 144.81999, "word": "with" }, { "confidence": 0.96875, "end": 145.21999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9042969, "start": 145.06, "word": "the" }, { "confidence": 0.9941406, "end": 145.45999, "punctuated_word": "Zig", "speaker": 0, "speaker_confidence": 0.9042969, "start": 145.21999, "word": "zig" }, { "confidence": 0.9863281, "end": 145.775, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.9042969, "start": 145.45999, "word": "build" }, { "confidence": 0.7163086, "end": 146.015, "punctuated_word": "man,", "speaker": 0, "speaker_confidence": 0.9042969, "start": 145.775, "word": "man" }, { "confidence": 0.9980469, "end": 146.25499, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9042969, "start": 146.015, "word": "and" }, { "confidence": 0.9892578, "end": 146.495, "punctuated_word": "choose", "speaker": 0, "speaker_confidence": 0.9042969, "start": 146.25499, "word": "choose" }, { "confidence": 0.99316406, "end": 146.575, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9042969, "start": 146.495, "word": "a" }, { "confidence": 0.9863281, "end": 146.81499, "punctuated_word": "build", "speaker": 0, "speaker_confidence": 0.63378906, "start": 146.575, "word": "build" }, { "confidence": 0.9970703, "end": 147.135, "punctuated_word": "mode", "speaker": 0, "speaker_confidence": 0.63378906, "start": 146.81499, "word": "mode" }, { "confidence": 0.9970703, "end": 147.375, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.63378906, "start": 147.135, "word": "to" }, { "confidence": 0.9941406, "end": 147.875, "punctuated_word": "optimize", "speaker": 0, "speaker_confidence": 0.63378906, "start": 147.375, "word": "optimize" }, { "confidence": 0.9165039, "end": 148.25499, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.63378906, "start": 147.935, "word": "for" }, { "confidence": 0.9921875, "end": 148.655, "punctuated_word": "speed,", "speaker": 0, "speaker_confidence": 0.63378906, "start": 148.25499, "word": "speed" }, { "confidence": 0.89990234, "end": 148.89499, "punctuated_word": "size,", "speaker": 0, "speaker_confidence": 0.63378906, "start": 148.655, "word": "size" }, { "confidence": 0.99902344, "end": 149.135, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.63378906, "start": 148.89499, "word": "or" }, { "confidence": 0.9995117, "end": 149.61499, "punctuated_word": "safety.", "speaker": 0, "speaker_confidence": 0.63378906, "start": 149.135, "word": "safety" }, { "confidence": 0.9980469, "end": 149.775, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.6201172, "start": 149.61499, "word": "this" }, { "confidence": 0.9951172, "end": 149.855, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.6201172, "start": 149.775, "word": "has" }, { "confidence": 1, "end": 150.015, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.6201172, "start": 149.855, "word": "been" }, { "confidence": 0.9980469, "end": 150.25499, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.6201172, "start": 150.015, "word": "the" }, { "confidence": 0.8041992, "end": 150.415, "punctuated_word": "Zig", "speaker": 0, "speaker_confidence": 0.6201172, "start": 150.25499, "word": "zig" }, { "confidence": 0.6660156, "end": 150.81499, "punctuated_word": "programming", "speaker": 0, "speaker_confidence": 0.6201172, "start": 150.415, "word": "programming" }, { "confidence": 0.9921875, "end": 151.215, "punctuated_word": "language", "speaker": 0, "speaker_confidence": 0.6201172, "start": 150.81499, "word": "language" }, { "confidence": 0.99609375, "end": 151.45499, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.6201172, "start": 151.215, "word": "in" }, { "confidence": 0.9140625, "end": 151.935, "punctuated_word": "100", "speaker": 0, "speaker_confidence": 0.6201172, "start": 151.45499, "word": "100" }, { "confidence": 0.9975586, "end": 152.33499, "punctuated_word": "seconds.", "speaker": 0, "speaker_confidence": 0.6201172, "start": 151.935, "word": "seconds" }, { "confidence": 0.99902344, "end": 152.495, "punctuated_word": "Hit", "speaker": 0, "speaker_confidence": 0.69921875, "start": 152.33499, "word": "hit" }, { "confidence": 1, "end": 152.575, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.69921875, "start": 152.495, "word": "the" }, { "confidence": 0.9472656, "end": 152.735, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.69921875, "start": 152.575, "word": "like" }, { "confidence": 1, "end": 152.97499, "punctuated_word": "button", "speaker": 0, "speaker_confidence": 0.69921875, "start": 152.735, "word": "button" }, { "confidence": 0.9941406, "end": 153.055, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.69921875, "start": 152.97499, "word": "if" }, { "confidence": 0.99902344, "end": 153.135, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.69921875, "start": 153.055, "word": "you" }, { "confidence": 0.78759766, "end": 153.375, "punctuated_word": "wanna", "speaker": 0, "speaker_confidence": 0.69921875, "start": 153.135, "word": "wanna" }, { "confidence": 0.9970703, "end": 153.53499, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.69921875, "start": 153.375, "word": "see" }, { "confidence": 1, "end": 153.69499, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.69921875, "start": 153.53499, "word": "more" }, { "confidence": 0.99902344, "end": 153.935, "punctuated_word": "short", "speaker": 0, "speaker_confidence": 0.69921875, "start": 153.69499, "word": "short" }, { "confidence": 0.99902344, "end": 154.25499, "punctuated_word": "videos", "speaker": 0, "speaker_confidence": 0.69921875, "start": 153.935, "word": "videos" }, { "confidence": 1, "end": 154.495, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.69921875, "start": 154.25499, "word": "like" }, { "confidence": 0.9951172, "end": 154.735, "punctuated_word": "this.", "speaker": 0, "speaker_confidence": 0.69921875, "start": 154.495, "word": "this" }, { "confidence": 0.99902344, "end": 155.055, "punctuated_word": "Thanks", "speaker": 0, "speaker_confidence": 0.69921875, "start": 154.735, "word": "thanks" }, { "confidence": 0.99902344, "end": 155.215, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.69921875, "start": 155.055, "word": "for" }, { "confidence": 0.92041016, "end": 155.53499, "punctuated_word": "watching,", "speaker": 0, "speaker_confidence": 0.69921875, "start": 155.215, "word": "watching" }, { "confidence": 0.6225586, "end": 155.73863, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.69921875, "start": 155.53499, "word": "and" }, { "confidence": 0.9941406, "end": 155.89864, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.69921875, "start": 155.73863, "word": "and" }, { "confidence": 1, "end": 156.05864, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.69921875, "start": 155.89864, "word": "i" }, { "confidence": 0.9980469, "end": 156.13864, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.69921875, "start": 156.05864, "word": "will" }, { "confidence": 0.9892578, "end": 156.21863, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.69921875, "start": 156.13864, "word": "see" }, { "confidence": 0.9951172, "end": 156.45863, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.69921875, "start": 156.21863, "word": "you" }, { "confidence": 0.97802734, "end": 156.61864, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.69921875, "start": 156.45863, "word": "in" }, { "confidence": 0.99609375, "end": 156.77863, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.69921875, "start": 156.61864, "word": "the" }, { "confidence": 1, "end": 157.01863, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.69921875, "start": 156.77863, "word": "next" }, { "confidence": 0.98339844, "end": 157.51863, "punctuated_word": "one.", "speaker": 0, "speaker_confidence": 0.69921875, "start": 157.01863, "word": "one" } ] } ], "detected_language": "", "language_confidence": 0, "search": null } ], "summary": { "result": "success", "short": "The transcript discusses the benefits of using the new version of the language, advised against its memory safety and allowed for low level memory management. The language has a unique comp time keyword and allows for cross compilation and optimization. The program supports cross compilation and uses a build mode to optimize speed, size, or safety." }, "utterances": null } }
downloads\Zig_in_100_Seconds.wav
https://www.youtube.com/watch?v=kxT8-C1vmd4
Zig in 100 Seconds
513,544
Fireship
153
Learn how the question mark "?" in JavaScript provides syntactic sugar in three powerful ways. https://fireship.io/courses/javascript/ 00:00 Ternary Operator 01:15 Optional Chaining 01:45 Nullish Coalescing Ternary https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Conditional_Operator Optional Chaining https://github.com/tc39/proposal-optional-chaining Nullish Coalescing https://github.com/tc39/proposal-nullish-coalescing #js #100SecondsOfCode Install the quiz app 🤓 iOS https://itunes.apple.com/us/app/fireship/id1462592372?mt=8 Android https://play.google.com/store/apps/details?id=io.fireship.quizapp Upgrade to Fireship PRO at https://fireship.io/pro Use code lORhwXd2 for 25% off your first payment. My VS Code Theme - Atom One Dark - vscode-icons - Fira Code Font
{ "metadata": { "channels": 1, "created": "2024-02-04T14:19:36.878Z", "duration": 152.83376, "model_info": { "30089e05-99d1-4376-b32e-c263170674af": { "arch": "nova-2", "name": "2-general-nova", "version": "2024-01-09.29447" } }, "models": [ "30089e05-99d1-4376-b32e-c263170674af" ], "request_id": "bf0e38e7-ff75-4517-9ece-831282d969d3", "sha256": "7bd73d278c7a2171004a7ba3d7e8bc8213a4eb30f3bb5aa73f3006edac4d4af3", "summary_info": { "input_tokens": 629, "model_uuid": "67875a7f-c9c4-48a0-aa55-5bdb8a91c34a", "output_tokens": 93 }, "transaction_key": "deprecated", "warnings": null }, "results": { "channels": [ { "alternatives": [ { "confidence": 0.99902344, "entities": null, "paragraphs": { "paragraphs": [ { "end": 23.24, "num_words": 72, "sentences": [ { "end": 2.72, "start": 1.76, "text": "The question mark." }, { "end": 9.655, "start": 2.72, "text": "It's one of the most powerful characters in the JavaScript universe, providing syntactic sugar in 3 awesome, yet totally unrelated ways." }, { "end": 11.674999, "start": 9.735, "text": "First up, we have the ternary operator." }, { "end": 14.875, "start": 11.815, "text": "The word ternary literally means composed of 3 parts." }, { "end": 23.24, "start": 14.934999, "text": "Using the question mark as our starting place, We add a condition on the left side, then on the right side, we add a value to assign when the condition is truthy." } ], "speaker": 0, "start": 1.76 }, { "end": 43.274998, "num_words": 72, "sentences": [ { "end": 27.505001, "start": 23.3, "text": "But if the condition is falsy, we add a colon to assign a different value." }, { "end": 30.945, "start": 27.565, "text": "The operator is often used to replace a traditional if statement." }, { "end": 38.239998, "start": 31.085, "text": "The code in a ternary expression is far more concise, But you might argue that it's much less readable than an if statement, and you might be right." }, { "end": 40.26, "start": 38.239998, "text": "That is until you need to assign a variable." }, { "end": 43.274998, "start": 40.48, "text": "A statement, like if, is code that does something." } ], "speaker": 0, "start": 23.3 }, { "end": 64.505, "num_words": 72, "sentences": [ { "end": 44.155, "start": 43.274998, "text": "It's imperative." }, { "end": 52.53, "start": 44.155, "text": "It begins with state, then as the program's executed, it mutates the state, and takes multiple lines of code just to assign a variable based on a simple condition." }, { "end": 59.51, "start": 52.77, "text": "The ternary operator on the other hand creates an expression, which means that it produces a value that we can then assign to a variable." }, { "end": 61.004997, "start": 59.704998, "text": "This code is declarative." }, { "end": 64.505, "start": 61.144997, "text": "It describes the state of the variable as opposed to mutating it." } ], "speaker": 0, "start": 43.274998 }, { "end": 92.075, "num_words": 96, "sentences": [ { "end": 73.670006, "start": 64.505, "text": "That's why we can use const here, but require let in the if Declarative code is awesome because it can also be used in function arguments, and in array, and object literals." }, { "end": 75.725006, "start": 73.89, "text": "But the question Work isn't done there." }, { "end": 79.965004, "start": 75.785, "text": "In 2020, an awesome new feature landed in JavaScript called optional chaining." }, { "end": 86.82, "start": 80.105, "text": "At some point, you've likely written code that calls an object property that does not exist, And when that happens, it triggers an error at runtime." }, { "end": 92.075, "start": 87.12, "text": "You could write some code that asserts a property exists before calling it, but this can get really ugly." } ], "speaker": 0, "start": 64.505 }, { "end": 117.35, "num_words": 85, "sentences": [ { "end": 97.454994, "start": 92.314995, "text": "Nowadays, you can just insert a question mark between the property name and the period between the next property." }, { "end": 102.36, "start": 97.515, "text": "If the parent property is undefined, It'll just return undefined instead of throwing an error." }, { "end": 109.185, "start": 102.420006, "text": "That's a truly life changing feature for the JavaScript developer, but the question mark has one more trick up its sleeve, Nullish coalescing." }, { "end": 114.704994, "start": 109.645, "text": "In many cases, you may want to set a default value for a missing variable or property name." }, { "end": 117.35, "start": 114.765, "text": "You can easily do that with a logical or operator." } ], "speaker": 0, "start": 92.314995 }, { "end": 145.655, "num_words": 102, "sentences": [ { "end": 120.79, "start": 117.43, "text": "If the left side is falsy, then use the value on the right side." }, { "end": 126.17, "start": 120.79, "text": "But because JavaScript has a bunch of weird rules for what is truthy and falsy, you may get weird results." }, { "end": 131.155, "start": 126.335, "text": "Like an empty string or 0 being set to a default value because it resolves to falsie." }, { "end": 142.45999, "start": 131.295, "text": "Instead of logical or, you can add a double question mark, which works just like logical or, except undefined and null are the only values that short circuit to the right side, making the behavior of your code much more predictable." }, { "end": 145.655, "start": 142.755, "text": "This has been the JavaScript question mark in 100 seconds." } ], "speaker": 0, "start": 117.43 }, { "end": 152.56876, "num_words": 30, "sentences": [ { "end": 149.575, "start": 145.715, "text": "If you wanna see more short videos like this, make sure to hit the like button and subscribe." }, { "end": 152.56876, "start": 149.715, "text": "Thanks for watching, and I will see you in the next one." } ], "speaker": 0, "start": 145.715 } ], "transcript": "\nSpeaker 0: The question mark. It's one of the most powerful characters in the JavaScript universe, providing syntactic sugar in 3 awesome, yet totally unrelated ways. First up, we have the ternary operator. The word ternary literally means composed of 3 parts. Using the question mark as our starting place, We add a condition on the left side, then on the right side, we add a value to assign when the condition is truthy.\n\nBut if the condition is falsy, we add a colon to assign a different value. The operator is often used to replace a traditional if statement. The code in a ternary expression is far more concise, But you might argue that it's much less readable than an if statement, and you might be right. That is until you need to assign a variable. A statement, like if, is code that does something.\n\nIt's imperative. It begins with state, then as the program's executed, it mutates the state, and takes multiple lines of code just to assign a variable based on a simple condition. The ternary operator on the other hand creates an expression, which means that it produces a value that we can then assign to a variable. This code is declarative. It describes the state of the variable as opposed to mutating it.\n\nThat's why we can use const here, but require let in the if Declarative code is awesome because it can also be used in function arguments, and in array, and object literals. But the question Work isn't done there. In 2020, an awesome new feature landed in JavaScript called optional chaining. At some point, you've likely written code that calls an object property that does not exist, And when that happens, it triggers an error at runtime. You could write some code that asserts a property exists before calling it, but this can get really ugly.\n\nNowadays, you can just insert a question mark between the property name and the period between the next property. If the parent property is undefined, It'll just return undefined instead of throwing an error. That's a truly life changing feature for the JavaScript developer, but the question mark has one more trick up its sleeve, Nullish coalescing. In many cases, you may want to set a default value for a missing variable or property name. You can easily do that with a logical or operator.\n\nIf the left side is falsy, then use the value on the right side. But because JavaScript has a bunch of weird rules for what is truthy and falsy, you may get weird results. Like an empty string or 0 being set to a default value because it resolves to falsie. Instead of logical or, you can add a double question mark, which works just like logical or, except undefined and null are the only values that short circuit to the right side, making the behavior of your code much more predictable. This has been the JavaScript question mark in 100 seconds.\n\nIf you wanna see more short videos like this, make sure to hit the like button and subscribe. Thanks for watching, and I will see you in the next one." }, "summaries": null, "topics": [ { "end_word": 31, "start_word": 0, "text": "The question mark. It's one of the most powerful characters in the JavaScript universe, providing syntactic sugar in 3 awesome, yet totally unrelated ways. First up, we have the ternary operator.", "topics": [] }, { "end_word": 255, "start_word": 31, "text": "The word ternary literally means composed of 3 parts. Using the question mark as our starting place, We add a condition on the left side, then on the right side, we add a value to assign when the condition is truthy. But if the condition is falsy, we add a colon to assign a different value. The operator is often used to replace a traditional if statement. The code in a ternary expression is far more concise, But you might argue that it's much less readable than an if statement, and you might be right. That is until you need to assign a variable. A statement, like if, is code that does something. It's imperative. It begins with state, then as the program's executed, it mutates the state, and takes multiple lines of code just to assign a variable based on a simple condition. The ternary operator on the other hand creates an expression, which means that it produces a value that we can then assign to a variable. This code is declarative. It describes the state of the variable as opposed to mutating it. That's why we can use const here, but require let in the if Declarative code is awesome because it can also be used in function arguments, and in array, and object literals. But the question Work isn't done there.", "topics": [ { "confidence": 0.60561055, "topic": "programming" }, { "confidence": 0.10889671, "topic": "logic" }, { "confidence": 0.039053526, "topic": "logical reasoning" } ] }, { "end_word": 431, "start_word": 255, "text": "In 2020, an awesome new feature landed in JavaScript called optional chaining. At some point, you've likely written code that calls an object property that does not exist, And when that happens, it triggers an error at runtime. You could write some code that asserts a property exists before calling it, but this can get really ugly. Nowadays, you can just insert a question mark between the property name and the period between the next property. If the parent property is undefined, It'll just return undefined instead of throwing an error. That's a truly life changing feature for the JavaScript developer, but the question mark has one more trick up its sleeve, Nullish coalescing. In many cases, you may want to set a default value for a missing variable or property name. You can easily do that with a logical or operator. If the left side is falsy, then use the value on the right side. But because JavaScript has a bunch of weird rules for what is truthy and falsy, you may get weird results.", "topics": [] }, { "end_word": 529, "start_word": 431, "text": "Like an empty string or 0 being set to a default value because it resolves to falsie. Instead of logical or, you can add a double question mark, which works just like logical or, except undefined and null are the only values that short circuit to the right side, making the behavior of your code much more predictable. This has been the JavaScript question mark in 100 seconds. If you wanna see more short videos like this, make sure to hit the like button and subscribe. Thanks for watching, and I will see you in the next one.", "topics": [ { "confidence": 0.7584522, "topic": "logic" }, { "confidence": 0.22025038, "topic": "logical reasoning" }, { "confidence": 0.15847558, "topic": "youtube" } ] } ], "transcript": "The question mark. It's one of the most powerful characters in the JavaScript universe, providing syntactic sugar in 3 awesome, yet totally unrelated ways. First up, we have the ternary operator. The word ternary literally means composed of 3 parts. Using the question mark as our starting place, We add a condition on the left side, then on the right side, we add a value to assign when the condition is truthy. But if the condition is falsy, we add a colon to assign a different value. The operator is often used to replace a traditional if statement. The code in a ternary expression is far more concise, But you might argue that it's much less readable than an if statement, and you might be right. That is until you need to assign a variable. A statement, like if, is code that does something. It's imperative. It begins with state, then as the program's executed, it mutates the state, and takes multiple lines of code just to assign a variable based on a simple condition. The ternary operator on the other hand creates an expression, which means that it produces a value that we can then assign to a variable. This code is declarative. It describes the state of the variable as opposed to mutating it. That's why we can use const here, but require let in the if Declarative code is awesome because it can also be used in function arguments, and in array, and object literals. But the question Work isn't done there. In 2020, an awesome new feature landed in JavaScript called optional chaining. At some point, you've likely written code that calls an object property that does not exist, And when that happens, it triggers an error at runtime. You could write some code that asserts a property exists before calling it, but this can get really ugly. Nowadays, you can just insert a question mark between the property name and the period between the next property. If the parent property is undefined, It'll just return undefined instead of throwing an error. That's a truly life changing feature for the JavaScript developer, but the question mark has one more trick up its sleeve, Nullish coalescing. In many cases, you may want to set a default value for a missing variable or property name. You can easily do that with a logical or operator. If the left side is falsy, then use the value on the right side. But because JavaScript has a bunch of weird rules for what is truthy and falsy, you may get weird results. Like an empty string or 0 being set to a default value because it resolves to falsie. Instead of logical or, you can add a double question mark, which works just like logical or, except undefined and null are the only values that short circuit to the right side, making the behavior of your code much more predictable. This has been the JavaScript question mark in 100 seconds. If you wanna see more short videos like this, make sure to hit the like button and subscribe. Thanks for watching, and I will see you in the next one.", "translations": null, "words": [ { "confidence": 0.8457031, "end": 2, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.44140625, "start": 1.76, "word": "the" }, { "confidence": 0.99121094, "end": 2.32, "punctuated_word": "question", "speaker": 0, "speaker_confidence": 0.44140625, "start": 2, "word": "question" }, { "confidence": 0.95654297, "end": 2.72, "punctuated_word": "mark.", "speaker": 0, "speaker_confidence": 0.44140625, "start": 2.32, "word": "mark" }, { "confidence": 1, "end": 3.04, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.44140625, "start": 2.72, "word": "it's" }, { "confidence": 0.99121094, "end": 3.1999998, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.44140625, "start": 3.04, "word": "one" }, { "confidence": 1, "end": 3.28, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.44140625, "start": 3.1999998, "word": "of" }, { "confidence": 1, "end": 3.36, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8203125, "start": 3.28, "word": "the" }, { "confidence": 1, "end": 3.6, "punctuated_word": "most", "speaker": 0, "speaker_confidence": 0.8203125, "start": 3.36, "word": "most" }, { "confidence": 1, "end": 4, "punctuated_word": "powerful", "speaker": 0, "speaker_confidence": 0.8203125, "start": 3.6, "word": "powerful" }, { "confidence": 1, "end": 4.4, "punctuated_word": "characters", "speaker": 0, "speaker_confidence": 0.8203125, "start": 4, "word": "characters" }, { "confidence": 1, "end": 4.56, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8203125, "start": 4.4, "word": "in" }, { "confidence": 1, "end": 4.72, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8203125, "start": 4.56, "word": "the" }, { "confidence": 0.9970703, "end": 5.22, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.8203125, "start": 4.72, "word": "javascript" }, { "confidence": 0.7832031, "end": 5.7599998, "punctuated_word": "universe,", "speaker": 0, "speaker_confidence": 0.8203125, "start": 5.2799997, "word": "universe" }, { "confidence": 1, "end": 6.24, "punctuated_word": "providing", "speaker": 0, "speaker_confidence": 0.8203125, "start": 5.7599998, "word": "providing" }, { "confidence": 0.99609375, "end": 6.72, "punctuated_word": "syntactic", "speaker": 0, "speaker_confidence": 0.8203125, "start": 6.24, "word": "syntactic" }, { "confidence": 0.9970703, "end": 7.04, "punctuated_word": "sugar", "speaker": 0, "speaker_confidence": 0.8203125, "start": 6.72, "word": "sugar" }, { "confidence": 0.99902344, "end": 7.3599997, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8203125, "start": 7.04, "word": "in" }, { "confidence": 0.68847656, "end": 7.6, "punctuated_word": "3", "speaker": 0, "speaker_confidence": 0.8203125, "start": 7.3599997, "word": "3" }, { "confidence": 0.89746094, "end": 8, "punctuated_word": "awesome,", "speaker": 0, "speaker_confidence": 0.8203125, "start": 7.6, "word": "awesome" }, { "confidence": 0.99902344, "end": 8.32, "punctuated_word": "yet", "speaker": 0, "speaker_confidence": 0.8203125, "start": 8, "word": "yet" }, { "confidence": 0.96875, "end": 8.72, "punctuated_word": "totally", "speaker": 0, "speaker_confidence": 0.8203125, "start": 8.32, "word": "totally" }, { "confidence": 0.9970703, "end": 9.22, "punctuated_word": "unrelated", "speaker": 0, "speaker_confidence": 0.8203125, "start": 8.72, "word": "unrelated" }, { "confidence": 0.9890137, "end": 9.655, "punctuated_word": "ways.", "speaker": 0, "speaker_confidence": 0.8203125, "start": 9.28, "word": "ways" }, { "confidence": 0.9316406, "end": 10.054999, "punctuated_word": "First", "speaker": 0, "speaker_confidence": 0.66064453, "start": 9.735, "word": "first" }, { "confidence": 0.99316406, "end": 10.134999, "punctuated_word": "up,", "speaker": 0, "speaker_confidence": 0.66064453, "start": 10.054999, "word": "up" }, { "confidence": 1, "end": 10.375, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.66064453, "start": 10.134999, "word": "we" }, { "confidence": 1, "end": 10.535, "punctuated_word": "have", "speaker": 0, "speaker_confidence": 0.66064453, "start": 10.375, "word": "have" }, { "confidence": 1, "end": 10.695, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.66064453, "start": 10.535, "word": "the" }, { "confidence": 1, "end": 11.174999, "punctuated_word": "ternary", "speaker": 0, "speaker_confidence": 0.66064453, "start": 10.695, "word": "ternary" }, { "confidence": 0.9995117, "end": 11.674999, "punctuated_word": "operator.", "speaker": 0, "speaker_confidence": 0.66064453, "start": 11.174999, "word": "operator" }, { "confidence": 1, "end": 11.8949995, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.8569336, "start": 11.815, "word": "the" }, { "confidence": 0.99902344, "end": 12.215, "punctuated_word": "word", "speaker": 0, "speaker_confidence": 0.8569336, "start": 11.8949995, "word": "word" }, { "confidence": 0.9954427, "end": 12.715, "punctuated_word": "ternary", "speaker": 0, "speaker_confidence": 0.8569336, "start": 12.215, "word": "ternary" }, { "confidence": 0.9770508, "end": 13.174999, "punctuated_word": "literally", "speaker": 0, "speaker_confidence": 0.8569336, "start": 12.775, "word": "literally" }, { "confidence": 1, "end": 13.575, "punctuated_word": "means", "speaker": 0, "speaker_confidence": 0.8569336, "start": 13.174999, "word": "means" }, { "confidence": 0.99609375, "end": 13.974999, "punctuated_word": "composed", "speaker": 0, "speaker_confidence": 0.8569336, "start": 13.575, "word": "composed" }, { "confidence": 1, "end": 14.135, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8569336, "start": 13.974999, "word": "of" }, { "confidence": 0.8911133, "end": 14.375, "punctuated_word": "3", "speaker": 0, "speaker_confidence": 0.8569336, "start": 14.135, "word": "3" }, { "confidence": 0.99658203, "end": 14.875, "punctuated_word": "parts.", "speaker": 0, "speaker_confidence": 0.8569336, "start": 14.375, "word": "parts" }, { "confidence": 0.99902344, "end": 15.174999, "punctuated_word": "Using", "speaker": 0, "speaker_confidence": 0.8569336, "start": 14.934999, "word": "using" }, { "confidence": 0.98828125, "end": 15.334999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8569336, "start": 15.174999, "word": "the" }, { "confidence": 1, "end": 15.655, "punctuated_word": "question", "speaker": 0, "speaker_confidence": 0.8569336, "start": 15.334999, "word": "question" }, { "confidence": 0.9980469, "end": 15.8949995, "punctuated_word": "mark", "speaker": 0, "speaker_confidence": 0.8569336, "start": 15.655, "word": "mark" }, { "confidence": 0.99902344, "end": 16.135, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.8569336, "start": 15.8949995, "word": "as" }, { "confidence": 0.9980469, "end": 16.295, "punctuated_word": "our", "speaker": 0, "speaker_confidence": 0.8569336, "start": 16.135, "word": "our" }, { "confidence": 1, "end": 16.615, "punctuated_word": "starting", "speaker": 0, "speaker_confidence": 0.8569336, "start": 16.295, "word": "starting" }, { "confidence": 0.99902344, "end": 17.06, "punctuated_word": "place,", "speaker": 0, "speaker_confidence": 0.8569336, "start": 16.615, "word": "place" }, { "confidence": 1, "end": 17.38, "punctuated_word": "We", "speaker": 0, "speaker_confidence": 0.8569336, "start": 17.22, "word": "we" }, { "confidence": 0.9980469, "end": 17.539999, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.8569336, "start": 17.38, "word": "add" }, { "confidence": 0.99902344, "end": 17.699999, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8569336, "start": 17.539999, "word": "a" }, { "confidence": 1, "end": 18.199999, "punctuated_word": "condition", "speaker": 0, "speaker_confidence": 0.8569336, "start": 17.699999, "word": "condition" }, { "confidence": 1, "end": 18.5, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8569336, "start": 18.34, "word": "on" }, { "confidence": 1, "end": 18.66, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8569336, "start": 18.5, "word": "the" }, { "confidence": 1, "end": 18.9, "punctuated_word": "left", "speaker": 0, "speaker_confidence": 0.8569336, "start": 18.66, "word": "left" }, { "confidence": 0.9645996, "end": 19.38, "punctuated_word": "side,", "speaker": 0, "speaker_confidence": 0.8569336, "start": 18.9, "word": "side" }, { "confidence": 0.9921875, "end": 19.619999, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.8569336, "start": 19.38, "word": "then" }, { "confidence": 0.99609375, "end": 19.699999, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8569336, "start": 19.619999, "word": "on" }, { "confidence": 0.99902344, "end": 19.779999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8569336, "start": 19.699999, "word": "the" }, { "confidence": 1, "end": 20.02, "punctuated_word": "right", "speaker": 0, "speaker_confidence": 0.7363281, "start": 19.779999, "word": "right" }, { "confidence": 0.9316406, "end": 20.42, "punctuated_word": "side,", "speaker": 0, "speaker_confidence": 0.7363281, "start": 20.02, "word": "side" }, { "confidence": 1, "end": 20.58, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.7363281, "start": 20.42, "word": "we" }, { "confidence": 0.9980469, "end": 20.82, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.7363281, "start": 20.58, "word": "add" }, { "confidence": 0.9970703, "end": 20.9, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.7363281, "start": 20.82, "word": "a" }, { "confidence": 1, "end": 21.22, "punctuated_word": "value", "speaker": 0, "speaker_confidence": 0.7363281, "start": 20.9, "word": "value" }, { "confidence": 1, "end": 21.46, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7363281, "start": 21.22, "word": "to" }, { "confidence": 0.97998047, "end": 21.859999, "punctuated_word": "assign", "speaker": 0, "speaker_confidence": 0.7363281, "start": 21.46, "word": "assign" }, { "confidence": 0.98535156, "end": 22.099998, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 0.7363281, "start": 21.859999, "word": "when" }, { "confidence": 0.9980469, "end": 22.259998, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7363281, "start": 22.099998, "word": "the" }, { "confidence": 1, "end": 22.58, "punctuated_word": "condition", "speaker": 0, "speaker_confidence": 0.7363281, "start": 22.259998, "word": "condition" }, { "confidence": 0.99902344, "end": 22.74, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.7363281, "start": 22.58, "word": "is" }, { "confidence": 0.82340497, "end": 23.24, "punctuated_word": "truthy.", "speaker": 0, "speaker_confidence": 0.7363281, "start": 22.74, "word": "truthy" }, { "confidence": 0.9980469, "end": 23.539999, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.7363281, "start": 23.3, "word": "but" }, { "confidence": 0.95166016, "end": 23.619999, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.7363281, "start": 23.539999, "word": "if" }, { "confidence": 0.9970703, "end": 23.779999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 1, "start": 23.619999, "word": "the" }, { "confidence": 1, "end": 24.099998, "punctuated_word": "condition", "speaker": 0, "speaker_confidence": 1, "start": 23.779999, "word": "condition" }, { "confidence": 0.99902344, "end": 24.259998, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 24.099998, "word": "is" }, { "confidence": 0.9163411, "end": 24.759998, "punctuated_word": "falsy,", "speaker": 0, "speaker_confidence": 1, "start": 24.259998, "word": "falsy" }, { "confidence": 1, "end": 24.98, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 1, "start": 24.82, "word": "we" }, { "confidence": 0.9980469, "end": 25.22, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 1, "start": 24.98, "word": "add" }, { "confidence": 0.99902344, "end": 25.3, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 25.22, "word": "a" }, { "confidence": 1, "end": 25.725, "punctuated_word": "colon", "speaker": 0, "speaker_confidence": 1, "start": 25.3, "word": "colon" }, { "confidence": 0.99902344, "end": 26.125, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 25.805, "word": "to" }, { "confidence": 1, "end": 26.445, "punctuated_word": "assign", "speaker": 0, "speaker_confidence": 1, "start": 26.125, "word": "assign" }, { "confidence": 1, "end": 26.685, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 26.445, "word": "a" }, { "confidence": 1, "end": 27.005001, "punctuated_word": "different", "speaker": 0, "speaker_confidence": 1, "start": 26.685, "word": "different" }, { "confidence": 1, "end": 27.505001, "punctuated_word": "value.", "speaker": 0, "speaker_confidence": 1, "start": 27.005001, "word": "value" }, { "confidence": 1, "end": 27.725, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 1, "start": 27.565, "word": "the" }, { "confidence": 1, "end": 28.205, "punctuated_word": "operator", "speaker": 0, "speaker_confidence": 1, "start": 27.725, "word": "operator" }, { "confidence": 1, "end": 28.365, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 28.205, "word": "is" }, { "confidence": 1, "end": 28.685001, "punctuated_word": "often", "speaker": 0, "speaker_confidence": 1, "start": 28.365, "word": "often" }, { "confidence": 0.99902344, "end": 28.925, "punctuated_word": "used", "speaker": 0, "speaker_confidence": 1, "start": 28.685001, "word": "used" }, { "confidence": 1, "end": 29.165, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 1, "start": 28.925, "word": "to" }, { "confidence": 1, "end": 29.485, "punctuated_word": "replace", "speaker": 0, "speaker_confidence": 1, "start": 29.165, "word": "replace" }, { "confidence": 1, "end": 29.725, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 29.485, "word": "a" }, { "confidence": 1, "end": 30.205, "punctuated_word": "traditional", "speaker": 0, "speaker_confidence": 1, "start": 29.725, "word": "traditional" }, { "confidence": 0.99609375, "end": 30.445, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 1, "start": 30.205, "word": "if" }, { "confidence": 0.99658203, "end": 30.945, "punctuated_word": "statement.", "speaker": 0, "speaker_confidence": 1, "start": 30.445, "word": "statement" }, { "confidence": 1, "end": 31.245, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 1, "start": 31.085, "word": "the" }, { "confidence": 1, "end": 31.565, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 1, "start": 31.245, "word": "code" }, { "confidence": 0.9902344, "end": 31.725, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 31.565, "word": "in" }, { "confidence": 1, "end": 31.805, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 1, "start": 31.725, "word": "a" }, { "confidence": 0.9996745, "end": 32.285, "punctuated_word": "ternary", "speaker": 0, "speaker_confidence": 1, "start": 31.805, "word": "ternary" }, { "confidence": 1, "end": 32.785, "punctuated_word": "expression", "speaker": 0, "speaker_confidence": 1, "start": 32.285, "word": "expression" }, { "confidence": 1, "end": 33.085, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 1, "start": 32.845, "word": "is" }, { "confidence": 1, "end": 33.245, "punctuated_word": "far", "speaker": 0, "speaker_confidence": 1, "start": 33.085, "word": "far" }, { "confidence": 1, "end": 33.485, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 1, "start": 33.245, "word": "more" }, { "confidence": 0.9663086, "end": 33.985, "punctuated_word": "concise,", "speaker": 0, "speaker_confidence": 1, "start": 33.485, "word": "concise" }, { "confidence": 0.9970703, "end": 34.24, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 1, "start": 34.08, "word": "but" }, { "confidence": 0.8613281, "end": 34.4, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 1, "start": 34.24, "word": "you" }, { "confidence": 1, "end": 34.48, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 0.7910156, "start": 34.4, "word": "might" }, { "confidence": 1, "end": 34.88, "punctuated_word": "argue", "speaker": 0, "speaker_confidence": 0.7910156, "start": 34.48, "word": "argue" }, { "confidence": 0.9526367, "end": 35.12, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.7910156, "start": 34.88, "word": "that" }, { "confidence": 0.9980469, "end": 35.28, "punctuated_word": "it's", "speaker": 0, "speaker_confidence": 0.7910156, "start": 35.12, "word": "it's" }, { "confidence": 1, "end": 35.52, "punctuated_word": "much", "speaker": 0, "speaker_confidence": 0.7910156, "start": 35.28, "word": "much" }, { "confidence": 1, "end": 35.68, "punctuated_word": "less", "speaker": 0, "speaker_confidence": 0.7910156, "start": 35.52, "word": "less" }, { "confidence": 1, "end": 36.16, "punctuated_word": "readable", "speaker": 0, "speaker_confidence": 0.7910156, "start": 35.68, "word": "readable" }, { "confidence": 0.9951172, "end": 36.32, "punctuated_word": "than", "speaker": 0, "speaker_confidence": 0.7910156, "start": 36.16, "word": "than" }, { "confidence": 0.9873047, "end": 36.56, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.7910156, "start": 36.32, "word": "an" }, { "confidence": 0.97314453, "end": 36.72, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.7910156, "start": 36.56, "word": "if" }, { "confidence": 0.9663086, "end": 37.22, "punctuated_word": "statement,", "speaker": 0, "speaker_confidence": 0.7910156, "start": 36.72, "word": "statement" }, { "confidence": 1, "end": 37.44, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.82910156, "start": 37.28, "word": "and" }, { "confidence": 0.99902344, "end": 37.6, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.82910156, "start": 37.44, "word": "you" }, { "confidence": 1, "end": 37.76, "punctuated_word": "might", "speaker": 0, "speaker_confidence": 0.82910156, "start": 37.6, "word": "might" }, { "confidence": 1, "end": 37.84, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.82910156, "start": 37.76, "word": "be" }, { "confidence": 0.95654297, "end": 38.239998, "punctuated_word": "right.", "speaker": 0, "speaker_confidence": 0.82910156, "start": 37.84, "word": "right" }, { "confidence": 1, "end": 38.4, "punctuated_word": "That", "speaker": 0, "speaker_confidence": 0.82910156, "start": 38.239998, "word": "that" }, { "confidence": 0.9902344, "end": 38.56, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.82910156, "start": 38.4, "word": "is" }, { "confidence": 0.8852539, "end": 38.88, "punctuated_word": "until", "speaker": 0, "speaker_confidence": 0.82910156, "start": 38.56, "word": "until" }, { "confidence": 0.99902344, "end": 39.04, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.82910156, "start": 38.88, "word": "you" }, { "confidence": 1, "end": 39.2, "punctuated_word": "need", "speaker": 0, "speaker_confidence": 0.82910156, "start": 39.04, "word": "need" }, { "confidence": 0.99902344, "end": 39.36, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.82910156, "start": 39.2, "word": "to" }, { "confidence": 0.99902344, "end": 39.68, "punctuated_word": "assign", "speaker": 0, "speaker_confidence": 0.82910156, "start": 39.36, "word": "assign" }, { "confidence": 1, "end": 39.76, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.82910156, "start": 39.68, "word": "a" }, { "confidence": 0.9975586, "end": 40.26, "punctuated_word": "variable.", "speaker": 0, "speaker_confidence": 0.82910156, "start": 39.76, "word": "variable" }, { "confidence": 0.99902344, "end": 40.72, "punctuated_word": "A", "speaker": 0, "speaker_confidence": 0.82910156, "start": 40.48, "word": "a" }, { "confidence": 0.7770996, "end": 41.2, "punctuated_word": "statement,", "speaker": 0, "speaker_confidence": 0.82910156, "start": 40.72, "word": "statement" }, { "confidence": 1, "end": 41.52, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.82910156, "start": 41.2, "word": "like" }, { "confidence": 0.91748047, "end": 41.92, "punctuated_word": "if,", "speaker": 0, "speaker_confidence": 0.82910156, "start": 41.52, "word": "if" }, { "confidence": 0.99902344, "end": 42.16, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.82910156, "start": 41.92, "word": "is" }, { "confidence": 0.9863281, "end": 42.4, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.82910156, "start": 42.16, "word": "code" }, { "confidence": 0.9980469, "end": 42.635, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.82910156, "start": 42.4, "word": "that" }, { "confidence": 1, "end": 42.875, "punctuated_word": "does", "speaker": 0, "speaker_confidence": 0.82910156, "start": 42.715, "word": "does" }, { "confidence": 0.97802734, "end": 43.274998, "punctuated_word": "something.", "speaker": 0, "speaker_confidence": 0.82910156, "start": 42.875, "word": "something" }, { "confidence": 0.9946289, "end": 43.675, "punctuated_word": "It's", "speaker": 0, "speaker_confidence": 0.82910156, "start": 43.274998, "word": "it's" }, { "confidence": 0.9301758, "end": 44.155, "punctuated_word": "imperative.", "speaker": 0, "speaker_confidence": 0.82910156, "start": 43.675, "word": "imperative" }, { "confidence": 0.99902344, "end": 44.394997, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.82910156, "start": 44.155, "word": "it" }, { "confidence": 1, "end": 44.635, "punctuated_word": "begins", "speaker": 0, "speaker_confidence": 0.82910156, "start": 44.394997, "word": "begins" }, { "confidence": 1, "end": 44.875, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.7006836, "start": 44.635, "word": "with" }, { "confidence": 0.89868164, "end": 45.375, "punctuated_word": "state,", "speaker": 0, "speaker_confidence": 0.7006836, "start": 44.875, "word": "state" }, { "confidence": 0.99609375, "end": 45.594997, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.7006836, "start": 45.434998, "word": "then" }, { "confidence": 0.98828125, "end": 45.754997, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.7006836, "start": 45.594997, "word": "as" }, { "confidence": 0.99902344, "end": 45.835, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7006836, "start": 45.754997, "word": "the" }, { "confidence": 0.72143555, "end": 46.335, "punctuated_word": "program's", "speaker": 0, "speaker_confidence": 0.7006836, "start": 45.835, "word": "program's" }, { "confidence": 0.9667969, "end": 46.894997, "punctuated_word": "executed,", "speaker": 0, "speaker_confidence": 0.7006836, "start": 46.394997, "word": "executed" }, { "confidence": 0.9980469, "end": 47.274998, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.7006836, "start": 47.035, "word": "it" }, { "confidence": 1, "end": 47.675, "punctuated_word": "mutates", "speaker": 0, "speaker_confidence": 0.7006836, "start": 47.274998, "word": "mutates" }, { "confidence": 0.99316406, "end": 47.835, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7006836, "start": 47.675, "word": "the" }, { "confidence": 0.83935547, "end": 48.335, "punctuated_word": "state,", "speaker": 0, "speaker_confidence": 0.7006836, "start": 47.835, "word": "state" }, { "confidence": 0.99902344, "end": 48.635, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.79785156, "start": 48.475, "word": "and" }, { "confidence": 0.99902344, "end": 48.875, "punctuated_word": "takes", "speaker": 0, "speaker_confidence": 0.79785156, "start": 48.635, "word": "takes" }, { "confidence": 0.9970703, "end": 49.274998, "punctuated_word": "multiple", "speaker": 0, "speaker_confidence": 0.79785156, "start": 48.875, "word": "multiple" }, { "confidence": 0.9980469, "end": 49.515, "punctuated_word": "lines", "speaker": 0, "speaker_confidence": 0.79785156, "start": 49.274998, "word": "lines" }, { "confidence": 0.9951172, "end": 49.594997, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.79785156, "start": 49.515, "word": "of" }, { "confidence": 0.99902344, "end": 49.914997, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.79785156, "start": 49.594997, "word": "code" }, { "confidence": 0.9536133, "end": 50.155, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.79785156, "start": 49.914997, "word": "just" }, { "confidence": 0.99609375, "end": 50.234997, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.79785156, "start": 50.155, "word": "to" }, { "confidence": 1, "end": 50.635, "punctuated_word": "assign", "speaker": 0, "speaker_confidence": 0.79785156, "start": 50.234997, "word": "assign" }, { "confidence": 0.9941406, "end": 50.795, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.79785156, "start": 50.635, "word": "a" }, { "confidence": 0.99902344, "end": 51.274998, "punctuated_word": "variable", "speaker": 0, "speaker_confidence": 0.79785156, "start": 50.795, "word": "variable" }, { "confidence": 0.99609375, "end": 51.594997, "punctuated_word": "based", "speaker": 0, "speaker_confidence": 0.79785156, "start": 51.274998, "word": "based" }, { "confidence": 0.9892578, "end": 51.754997, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.79785156, "start": 51.594997, "word": "on" }, { "confidence": 0.98095703, "end": 51.835, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8496094, "start": 51.754997, "word": "a" }, { "confidence": 0.9941406, "end": 52.155, "punctuated_word": "simple", "speaker": 0, "speaker_confidence": 0.8496094, "start": 51.835, "word": "simple" }, { "confidence": 0.9890137, "end": 52.53, "punctuated_word": "condition.", "speaker": 0, "speaker_confidence": 0.8496094, "start": 52.155, "word": "condition" }, { "confidence": 0.9316406, "end": 52.93, "punctuated_word": "The", "speaker": 0, "speaker_confidence": 0.8496094, "start": 52.77, "word": "the" }, { "confidence": 0.97786456, "end": 53.41, "punctuated_word": "ternary", "speaker": 0, "speaker_confidence": 0.8496094, "start": 52.93, "word": "ternary" }, { "confidence": 1, "end": 53.89, "punctuated_word": "operator", "speaker": 0, "speaker_confidence": 0.8496094, "start": 53.41, "word": "operator" }, { "confidence": 0.54296875, "end": 54.05, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.8496094, "start": 53.89, "word": "on" }, { "confidence": 0.99902344, "end": 54.129997, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8496094, "start": 54.05, "word": "the" }, { "confidence": 1, "end": 54.37, "punctuated_word": "other", "speaker": 0, "speaker_confidence": 0.8496094, "start": 54.129997, "word": "other" }, { "confidence": 1, "end": 54.69, "punctuated_word": "hand", "speaker": 0, "speaker_confidence": 0.8496094, "start": 54.37, "word": "hand" }, { "confidence": 0.8769531, "end": 55.01, "punctuated_word": "creates", "speaker": 0, "speaker_confidence": 0.8496094, "start": 54.69, "word": "creates" }, { "confidence": 0.9980469, "end": 55.25, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.8496094, "start": 55.01, "word": "an" }, { "confidence": 0.97631836, "end": 55.75, "punctuated_word": "expression,", "speaker": 0, "speaker_confidence": 0.8496094, "start": 55.25, "word": "expression" }, { "confidence": 1, "end": 56.05, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.8496094, "start": 55.809998, "word": "which" }, { "confidence": 1, "end": 56.289997, "punctuated_word": "means", "speaker": 0, "speaker_confidence": 0.8496094, "start": 56.05, "word": "means" }, { "confidence": 0.9970703, "end": 56.449997, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8496094, "start": 56.289997, "word": "that" }, { "confidence": 0.9838867, "end": 56.53, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.55126953, "start": 56.449997, "word": "it" }, { "confidence": 0.99902344, "end": 57.01, "punctuated_word": "produces", "speaker": 0, "speaker_confidence": 0.55126953, "start": 56.53, "word": "produces" }, { "confidence": 0.9892578, "end": 57.09, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.55126953, "start": 57.01, "word": "a" }, { "confidence": 1, "end": 57.57, "punctuated_word": "value", "speaker": 0, "speaker_confidence": 0.55126953, "start": 57.09, "word": "value" }, { "confidence": 0.984375, "end": 57.809998, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.55126953, "start": 57.57, "word": "that" }, { "confidence": 1, "end": 57.89, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.55126953, "start": 57.809998, "word": "we" }, { "confidence": 1, "end": 58.05, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.80908203, "start": 57.89, "word": "can" }, { "confidence": 0.9980469, "end": 58.289997, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.80908203, "start": 58.05, "word": "then" }, { "confidence": 0.9970703, "end": 58.69, "punctuated_word": "assign", "speaker": 0, "speaker_confidence": 0.80908203, "start": 58.289997, "word": "assign" }, { "confidence": 1, "end": 58.85, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.80908203, "start": 58.69, "word": "to" }, { "confidence": 1, "end": 59.01, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.80908203, "start": 58.85, "word": "a" }, { "confidence": 0.82006836, "end": 59.51, "punctuated_word": "variable.", "speaker": 0, "speaker_confidence": 0.80908203, "start": 59.01, "word": "variable" }, { "confidence": 0.78564453, "end": 60.024998, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.80908203, "start": 59.704998, "word": "this" }, { "confidence": 1, "end": 60.344997, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.80908203, "start": 60.024998, "word": "code" }, { "confidence": 1, "end": 60.504997, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.80908203, "start": 60.344997, "word": "is" }, { "confidence": 0.9949951, "end": 61.004997, "punctuated_word": "declarative.", "speaker": 0, "speaker_confidence": 0.80908203, "start": 60.504997, "word": "declarative" }, { "confidence": 0.99609375, "end": 61.385, "punctuated_word": "It", "speaker": 0, "speaker_confidence": 0.80908203, "start": 61.144997, "word": "it" }, { "confidence": 1, "end": 61.864998, "punctuated_word": "describes", "speaker": 0, "speaker_confidence": 0.80908203, "start": 61.385, "word": "describes" }, { "confidence": 0.9970703, "end": 61.945, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.80908203, "start": 61.864998, "word": "the" }, { "confidence": 1, "end": 62.184998, "punctuated_word": "state", "speaker": 0, "speaker_confidence": 0.80908203, "start": 61.945, "word": "state" }, { "confidence": 1, "end": 62.344997, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.80908203, "start": 62.184998, "word": "of" }, { "confidence": 0.97998047, "end": 62.425, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7167969, "start": 62.344997, "word": "the" }, { "confidence": 1, "end": 62.925, "punctuated_word": "variable", "speaker": 0, "speaker_confidence": 0.7167969, "start": 62.425, "word": "variable" }, { "confidence": 0.88183594, "end": 63.225, "punctuated_word": "as", "speaker": 0, "speaker_confidence": 0.7167969, "start": 62.984997, "word": "as" }, { "confidence": 0.98095703, "end": 63.545, "punctuated_word": "opposed", "speaker": 0, "speaker_confidence": 0.7167969, "start": 63.225, "word": "opposed" }, { "confidence": 0.9980469, "end": 63.784996, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.7167969, "start": 63.545, "word": "to" }, { "confidence": 0.99902344, "end": 64.185, "punctuated_word": "mutating", "speaker": 0, "speaker_confidence": 0.7167969, "start": 63.784996, "word": "mutating" }, { "confidence": 0.9682617, "end": 64.505, "punctuated_word": "it.", "speaker": 0, "speaker_confidence": 0.7167969, "start": 64.185, "word": "it" }, { "confidence": 0.99902344, "end": 64.744995, "punctuated_word": "That's", "speaker": 0, "speaker_confidence": 0.7167969, "start": 64.505, "word": "that's" }, { "confidence": 0.9980469, "end": 64.905, "punctuated_word": "why", "speaker": 0, "speaker_confidence": 0.7167969, "start": 64.744995, "word": "why" }, { "confidence": 0.9980469, "end": 64.985, "punctuated_word": "we", "speaker": 0, "speaker_confidence": 0.8183594, "start": 64.905, "word": "we" }, { "confidence": 0.9970703, "end": 65.145, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.8183594, "start": 64.985, "word": "can" }, { "confidence": 0.99609375, "end": 65.384995, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.8183594, "start": 65.145, "word": "use" }, { "confidence": 0.94970703, "end": 65.705, "punctuated_word": "const", "speaker": 0, "speaker_confidence": 0.8183594, "start": 65.384995, "word": "const" }, { "confidence": 0.9543457, "end": 66.025, "punctuated_word": "here,", "speaker": 0, "speaker_confidence": 0.8183594, "start": 65.705, "word": "here" }, { "confidence": 0.99316406, "end": 66.265, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.8183594, "start": 66.025, "word": "but" }, { "confidence": 0.85058594, "end": 66.744995, "punctuated_word": "require", "speaker": 0, "speaker_confidence": 0.8183594, "start": 66.265, "word": "require" }, { "confidence": 0.9223633, "end": 66.985, "punctuated_word": "let", "speaker": 0, "speaker_confidence": 0.8183594, "start": 66.744995, "word": "let" }, { "confidence": 0.97314453, "end": 67.145, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8183594, "start": 66.985, "word": "in" }, { "confidence": 0.84716797, "end": 67.305, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8183594, "start": 67.145, "word": "the" }, { "confidence": 0.9243164, "end": 67.73, "punctuated_word": "if", "speaker": 0, "speaker_confidence": 0.8183594, "start": 67.305, "word": "if" }, { "confidence": 0.9601237, "end": 68.61, "punctuated_word": "Declarative", "speaker": 0, "speaker_confidence": 0.8183594, "start": 68.130005, "word": "declarative" }, { "confidence": 0.9658203, "end": 68.850006, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.8183594, "start": 68.61, "word": "code" }, { "confidence": 1, "end": 69.01, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8183594, "start": 68.850006, "word": "is" }, { "confidence": 1, "end": 69.41, "punctuated_word": "awesome", "speaker": 0, "speaker_confidence": 0.8183594, "start": 69.01, "word": "awesome" }, { "confidence": 0.6074219, "end": 69.65, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.8183594, "start": 69.41, "word": "because" }, { "confidence": 0.99902344, "end": 69.810005, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8183594, "start": 69.65, "word": "it" }, { "confidence": 1, "end": 69.89, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.8774414, "start": 69.810005, "word": "can" }, { "confidence": 0.99902344, "end": 70.21001, "punctuated_word": "also", "speaker": 0, "speaker_confidence": 0.8774414, "start": 69.89, "word": "also" }, { "confidence": 1, "end": 70.37, "punctuated_word": "be", "speaker": 0, "speaker_confidence": 0.8774414, "start": 70.21001, "word": "be" }, { "confidence": 1, "end": 70.61, "punctuated_word": "used", "speaker": 0, "speaker_confidence": 0.8774414, "start": 70.37, "word": "used" }, { "confidence": 0.99609375, "end": 70.850006, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8774414, "start": 70.61, "word": "in" }, { "confidence": 0.9980469, "end": 71.170006, "punctuated_word": "function", "speaker": 0, "speaker_confidence": 0.8774414, "start": 70.850006, "word": "function" }, { "confidence": 0.8503418, "end": 71.670006, "punctuated_word": "arguments,", "speaker": 0, "speaker_confidence": 0.8774414, "start": 71.170006, "word": "arguments" }, { "confidence": 0.9838867, "end": 71.97, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8774414, "start": 71.73, "word": "and" }, { "confidence": 0.72021484, "end": 72.21001, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8774414, "start": 71.97, "word": "in" }, { "confidence": 0.9008789, "end": 72.53001, "punctuated_word": "array,", "speaker": 0, "speaker_confidence": 0.8774414, "start": 72.21001, "word": "array" }, { "confidence": 1, "end": 72.770004, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8774414, "start": 72.53001, "word": "and" }, { "confidence": 0.99609375, "end": 73.170006, "punctuated_word": "object", "speaker": 0, "speaker_confidence": 0.8774414, "start": 72.770004, "word": "object" }, { "confidence": 0.83219403, "end": 73.670006, "punctuated_word": "literals.", "speaker": 0, "speaker_confidence": 0.8774414, "start": 73.170006, "word": "literals" }, { "confidence": 0.93408203, "end": 74.130005, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.8774414, "start": 73.89, "word": "but" }, { "confidence": 0.50146484, "end": 74.29, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8774414, "start": 74.130005, "word": "the" }, { "confidence": 0.8388672, "end": 74.745, "punctuated_word": "question", "speaker": 0, "speaker_confidence": 0.8774414, "start": 74.29, "word": "question" }, { "confidence": 0.48339844, "end": 74.90501, "punctuated_word": "Work", "speaker": 0, "speaker_confidence": 0.8774414, "start": 74.825005, "word": "work" }, { "confidence": 0.99902344, "end": 75.145004, "punctuated_word": "isn't", "speaker": 0, "speaker_confidence": 1, "start": 74.90501, "word": "isn't" }, { "confidence": 1, "end": 75.225006, "punctuated_word": "done", "speaker": 0, "speaker_confidence": 1, "start": 75.145004, "word": "done" }, { "confidence": 1, "end": 75.725006, "punctuated_word": "there.", "speaker": 0, "speaker_confidence": 1, "start": 75.225006, "word": "there" }, { "confidence": 0.99902344, "end": 75.945, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 1, "start": 75.785, "word": "in" }, { "confidence": 0.98168945, "end": 76.445, "punctuated_word": "2020,", "speaker": 0, "speaker_confidence": 1, "start": 75.945, "word": "2020" }, { "confidence": 0.9980469, "end": 76.825005, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 76.665, "word": "an" }, { "confidence": 1, "end": 77.145004, "punctuated_word": "awesome", "speaker": 0, "speaker_confidence": 1, "start": 76.825005, "word": "awesome" }, { "confidence": 0.9980469, "end": 77.305, "punctuated_word": "new", "speaker": 0, "speaker_confidence": 1, "start": 77.145004, "word": "new" }, { "confidence": 1, "end": 77.625, "punctuated_word": "feature", "speaker": 0, "speaker_confidence": 1, "start": 77.305, "word": "feature" }, { "confidence": 1, "end": 77.945, "punctuated_word": "landed", "speaker": 0, "speaker_confidence": 1, "start": 77.625, "word": "landed" }, { "confidence": 1, "end": 78.105, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 1, "start": 77.945, "word": "in" }, { "confidence": 0.99121094, "end": 78.605, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 1, "start": 78.105, "word": "javascript" }, { "confidence": 0.9892578, "end": 79.065, "punctuated_word": "called", "speaker": 0, "speaker_confidence": 1, "start": 78.745, "word": "called" }, { "confidence": 0.98291016, "end": 79.465004, "punctuated_word": "optional", "speaker": 0, "speaker_confidence": 1, "start": 79.065, "word": "optional" }, { "confidence": 0.99088544, "end": 79.965004, "punctuated_word": "chaining.", "speaker": 0, "speaker_confidence": 1, "start": 79.465004, "word": "chaining" }, { "confidence": 1, "end": 80.265, "punctuated_word": "At", "speaker": 0, "speaker_confidence": 1, "start": 80.105, "word": "at" }, { "confidence": 1, "end": 80.425, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 1, "start": 80.265, "word": "some" }, { "confidence": 0.99902344, "end": 80.665, "punctuated_word": "point,", "speaker": 0, "speaker_confidence": 1, "start": 80.425, "word": "point" }, { "confidence": 0.98657227, "end": 80.905, "punctuated_word": "you've", "speaker": 0, "speaker_confidence": 1, "start": 80.665, "word": "you've" }, { "confidence": 1, "end": 81.225006, "punctuated_word": "likely", "speaker": 0, "speaker_confidence": 1, "start": 80.905, "word": "likely" }, { "confidence": 0.99902344, "end": 81.545006, "punctuated_word": "written", "speaker": 0, "speaker_confidence": 1, "start": 81.225006, "word": "written" }, { "confidence": 0.9980469, "end": 81.865005, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 1, "start": 81.545006, "word": "code" }, { "confidence": 0.99902344, "end": 82.105, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 81.865005, "word": "that" }, { "confidence": 0.99316406, "end": 82.345, "punctuated_word": "calls", "speaker": 0, "speaker_confidence": 1, "start": 82.105, "word": "calls" }, { "confidence": 0.9980469, "end": 82.585, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 1, "start": 82.345, "word": "an" }, { "confidence": 0.9970703, "end": 82.985, "punctuated_word": "object", "speaker": 0, "speaker_confidence": 1, "start": 82.585, "word": "object" }, { "confidence": 1, "end": 83.465004, "punctuated_word": "property", "speaker": 0, "speaker_confidence": 1, "start": 82.985, "word": "property" }, { "confidence": 1, "end": 83.625, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 1, "start": 83.465004, "word": "that" }, { "confidence": 1, "end": 83.865005, "punctuated_word": "does", "speaker": 0, "speaker_confidence": 1, "start": 83.625, "word": "does" }, { "confidence": 1, "end": 84.025, "punctuated_word": "not", "speaker": 0, "speaker_confidence": 1, "start": 83.865005, "word": "not" }, { "confidence": 0.8449707, "end": 84.4, "punctuated_word": "exist,", "speaker": 0, "speaker_confidence": 1, "start": 84.025, "word": "exist" }, { "confidence": 0.99902344, "end": 84.560005, "punctuated_word": "And", "speaker": 0, "speaker_confidence": 1, "start": 84.4, "word": "and" }, { "confidence": 0.98535156, "end": 84.72, "punctuated_word": "when", "speaker": 0, "speaker_confidence": 1, "start": 84.560005, "word": "when" }, { "confidence": 0.9980469, "end": 84.8, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8359375, "start": 84.72, "word": "that" }, { "confidence": 0.97094727, "end": 85.28, "punctuated_word": "happens,", "speaker": 0, "speaker_confidence": 0.8359375, "start": 84.8, "word": "happens" }, { "confidence": 1, "end": 85.44, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.8359375, "start": 85.28, "word": "it" }, { "confidence": 1, "end": 85.76, "punctuated_word": "triggers", "speaker": 0, "speaker_confidence": 0.8359375, "start": 85.44, "word": "triggers" }, { "confidence": 0.9980469, "end": 86, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.8359375, "start": 85.76, "word": "an" }, { "confidence": 0.99902344, "end": 86.24, "punctuated_word": "error", "speaker": 0, "speaker_confidence": 0.8359375, "start": 86, "word": "error" }, { "confidence": 0.9819336, "end": 86.32, "punctuated_word": "at", "speaker": 0, "speaker_confidence": 0.8359375, "start": 86.24, "word": "at" }, { "confidence": 0.86743164, "end": 86.82, "punctuated_word": "runtime.", "speaker": 0, "speaker_confidence": 0.8359375, "start": 86.32, "word": "runtime" }, { "confidence": 0.99902344, "end": 87.28, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.8359375, "start": 87.12, "word": "you" }, { "confidence": 1, "end": 87.44, "punctuated_word": "could", "speaker": 0, "speaker_confidence": 0.8359375, "start": 87.28, "word": "could" }, { "confidence": 1, "end": 87.6, "punctuated_word": "write", "speaker": 0, "speaker_confidence": 0.8359375, "start": 87.44, "word": "write" }, { "confidence": 1, "end": 87.76, "punctuated_word": "some", "speaker": 0, "speaker_confidence": 0.8359375, "start": 87.6, "word": "some" }, { "confidence": 0.99902344, "end": 88.08, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.8359375, "start": 87.76, "word": "code" }, { "confidence": 0.9980469, "end": 88.24, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.8359375, "start": 88.08, "word": "that" }, { "confidence": 0.96533203, "end": 88.72, "punctuated_word": "asserts", "speaker": 0, "speaker_confidence": 0.8359375, "start": 88.24, "word": "asserts" }, { "confidence": 0.9404297, "end": 88.8, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8359375, "start": 88.72, "word": "a" }, { "confidence": 1, "end": 89.28, "punctuated_word": "property", "speaker": 0, "speaker_confidence": 0.6855469, "start": 88.8, "word": "property" }, { "confidence": 0.79833984, "end": 89.76, "punctuated_word": "exists", "speaker": 0, "speaker_confidence": 0.6855469, "start": 89.28, "word": "exists" }, { "confidence": 0.9970703, "end": 90, "punctuated_word": "before", "speaker": 0, "speaker_confidence": 0.6855469, "start": 89.76, "word": "before" }, { "confidence": 1, "end": 90.32, "punctuated_word": "calling", "speaker": 0, "speaker_confidence": 0.6855469, "start": 90, "word": "calling" }, { "confidence": 0.9440918, "end": 90.72, "punctuated_word": "it,", "speaker": 0, "speaker_confidence": 0.6855469, "start": 90.32, "word": "it" }, { "confidence": 0.9951172, "end": 90.880005, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.5908203, "start": 90.72, "word": "but" }, { "confidence": 0.99902344, "end": 91.04, "punctuated_word": "this", "speaker": 0, "speaker_confidence": 0.5908203, "start": 90.880005, "word": "this" }, { "confidence": 1, "end": 91.200005, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.5908203, "start": 91.04, "word": "can" }, { "confidence": 0.99902344, "end": 91.44, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.5908203, "start": 91.200005, "word": "get" }, { "confidence": 0.99902344, "end": 91.6, "punctuated_word": "really", "speaker": 0, "speaker_confidence": 0.5908203, "start": 91.44, "word": "really" }, { "confidence": 0.9995117, "end": 92.075, "punctuated_word": "ugly.", "speaker": 0, "speaker_confidence": 0.5908203, "start": 91.6, "word": "ugly" }, { "confidence": 0.9916992, "end": 92.795, "punctuated_word": "Nowadays,", "speaker": 0, "speaker_confidence": 0.93652344, "start": 92.314995, "word": "nowadays" }, { "confidence": 1, "end": 92.954994, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.93652344, "start": 92.795, "word": "you" }, { "confidence": 1, "end": 93.115, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.93652344, "start": 92.954994, "word": "can" }, { "confidence": 0.99902344, "end": 93.274994, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.93652344, "start": 93.115, "word": "just" }, { "confidence": 0.9980469, "end": 93.59499, "punctuated_word": "insert", "speaker": 0, "speaker_confidence": 0.93652344, "start": 93.274994, "word": "insert" }, { "confidence": 1, "end": 93.755, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.93652344, "start": 93.59499, "word": "a" }, { "confidence": 1, "end": 94.075, "punctuated_word": "question", "speaker": 0, "speaker_confidence": 0.93652344, "start": 93.755, "word": "question" }, { "confidence": 0.9980469, "end": 94.395, "punctuated_word": "mark", "speaker": 0, "speaker_confidence": 0.93652344, "start": 94.075, "word": "mark" }, { "confidence": 0.99902344, "end": 94.715, "punctuated_word": "between", "speaker": 0, "speaker_confidence": 0.93652344, "start": 94.395, "word": "between" }, { "confidence": 1, "end": 94.875, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.93652344, "start": 94.715, "word": "the" }, { "confidence": 0.99902344, "end": 95.274994, "punctuated_word": "property", "speaker": 0, "speaker_confidence": 0.93652344, "start": 94.875, "word": "property" }, { "confidence": 1, "end": 95.59499, "punctuated_word": "name", "speaker": 0, "speaker_confidence": 0.93652344, "start": 95.274994, "word": "name" }, { "confidence": 0.8984375, "end": 95.755, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.93652344, "start": 95.59499, "word": "and" }, { "confidence": 0.99609375, "end": 95.91499, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.93652344, "start": 95.755, "word": "the" }, { "confidence": 1, "end": 96.314995, "punctuated_word": "period", "speaker": 0, "speaker_confidence": 0.93652344, "start": 95.91499, "word": "period" }, { "confidence": 0.99902344, "end": 96.555, "punctuated_word": "between", "speaker": 0, "speaker_confidence": 0.93652344, "start": 96.314995, "word": "between" }, { "confidence": 1, "end": 96.715, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.93652344, "start": 96.555, "word": "the" }, { "confidence": 1, "end": 96.954994, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.93652344, "start": 96.715, "word": "next" }, { "confidence": 0.99609375, "end": 97.454994, "punctuated_word": "property.", "speaker": 0, "speaker_confidence": 0.93652344, "start": 96.954994, "word": "property" }, { "confidence": 0.99902344, "end": 97.674995, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.8666992, "start": 97.515, "word": "if" }, { "confidence": 1, "end": 97.835, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8666992, "start": 97.674995, "word": "the" }, { "confidence": 0.99902344, "end": 98.155, "punctuated_word": "parent", "speaker": 0, "speaker_confidence": 0.8666992, "start": 97.835, "word": "parent" }, { "confidence": 0.95410156, "end": 98.555, "punctuated_word": "property", "speaker": 0, "speaker_confidence": 0.8666992, "start": 98.155, "word": "property" }, { "confidence": 0.90722656, "end": 98.634995, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.8666992, "start": 98.555, "word": "is" }, { "confidence": 0.9812012, "end": 99.134995, "punctuated_word": "undefined,", "speaker": 0, "speaker_confidence": 0.8666992, "start": 98.634995, "word": "undefined" }, { "confidence": 0.99853516, "end": 99.54, "punctuated_word": "It'll", "speaker": 0, "speaker_confidence": 0.8666992, "start": 99.3, "word": "it'll" }, { "confidence": 1, "end": 99.78001, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.8666992, "start": 99.54, "word": "just" }, { "confidence": 0.99902344, "end": 100.28001, "punctuated_word": "return", "speaker": 0, "speaker_confidence": 0.8666992, "start": 99.78001, "word": "return" }, { "confidence": 0.9980469, "end": 100.840004, "punctuated_word": "undefined", "speaker": 0, "speaker_confidence": 0.8666992, "start": 100.340004, "word": "undefined" }, { "confidence": 0.8769531, "end": 101.22, "punctuated_word": "instead", "speaker": 0, "speaker_confidence": 0.8666992, "start": 100.98, "word": "instead" }, { "confidence": 1, "end": 101.380005, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.8666992, "start": 101.22, "word": "of" }, { "confidence": 0.99902344, "end": 101.700005, "punctuated_word": "throwing", "speaker": 0, "speaker_confidence": 0.8666992, "start": 101.380005, "word": "throwing" }, { "confidence": 0.9941406, "end": 101.86, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.8666992, "start": 101.700005, "word": "an" }, { "confidence": 0.9916992, "end": 102.36, "punctuated_word": "error.", "speaker": 0, "speaker_confidence": 0.8666992, "start": 101.86, "word": "error" }, { "confidence": 0.9909668, "end": 102.66, "punctuated_word": "That's", "speaker": 0, "speaker_confidence": 0.8666992, "start": 102.420006, "word": "that's" }, { "confidence": 0.99902344, "end": 102.82, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.8666992, "start": 102.66, "word": "a" }, { "confidence": 1, "end": 103.14, "punctuated_word": "truly", "speaker": 0, "speaker_confidence": 0.8666992, "start": 102.82, "word": "truly" }, { "confidence": 0.9980469, "end": 103.380005, "punctuated_word": "life", "speaker": 0, "speaker_confidence": 0.8666992, "start": 103.14, "word": "life" }, { "confidence": 1, "end": 103.78001, "punctuated_word": "changing", "speaker": 0, "speaker_confidence": 0.8666992, "start": 103.380005, "word": "changing" }, { "confidence": 0.9980469, "end": 104.100006, "punctuated_word": "feature", "speaker": 0, "speaker_confidence": 0.8666992, "start": 103.78001, "word": "feature" }, { "confidence": 1, "end": 104.26, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.8666992, "start": 104.100006, "word": "for" }, { "confidence": 1, "end": 104.420006, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8666992, "start": 104.26, "word": "the" }, { "confidence": 0.9873047, "end": 104.9, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.8666992, "start": 104.420006, "word": "javascript" }, { "confidence": 0.9506836, "end": 105.4, "punctuated_word": "developer,", "speaker": 0, "speaker_confidence": 0.8666992, "start": 104.9, "word": "developer" }, { "confidence": 0.9980469, "end": 105.78001, "punctuated_word": "but", "speaker": 0, "speaker_confidence": 0.8666992, "start": 105.54, "word": "but" }, { "confidence": 0.9980469, "end": 105.86, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7270508, "start": 105.78001, "word": "the" }, { "confidence": 1, "end": 106.18, "punctuated_word": "question", "speaker": 0, "speaker_confidence": 0.7270508, "start": 105.86, "word": "question" }, { "confidence": 0.9941406, "end": 106.5, "punctuated_word": "mark", "speaker": 0, "speaker_confidence": 0.7270508, "start": 106.18, "word": "mark" }, { "confidence": 0.9970703, "end": 106.740005, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.7270508, "start": 106.5, "word": "has" }, { "confidence": 0.9741211, "end": 106.98, "punctuated_word": "one", "speaker": 0, "speaker_confidence": 0.7270508, "start": 106.740005, "word": "one" }, { "confidence": 0.99902344, "end": 107.22, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.7270508, "start": 106.98, "word": "more" }, { "confidence": 0.99902344, "end": 107.46001, "punctuated_word": "trick", "speaker": 0, "speaker_confidence": 0.7270508, "start": 107.22, "word": "trick" }, { "confidence": 0.99609375, "end": 107.62, "punctuated_word": "up", "speaker": 0, "speaker_confidence": 0.7270508, "start": 107.46001, "word": "up" }, { "confidence": 0.94189453, "end": 107.700005, "punctuated_word": "its", "speaker": 0, "speaker_confidence": 0.7270508, "start": 107.62, "word": "its" }, { "confidence": 0.8010254, "end": 107.965, "punctuated_word": "sleeve,", "speaker": 0, "speaker_confidence": 0.7270508, "start": 107.700005, "word": "sleeve" }, { "confidence": 0.7697754, "end": 108.685, "punctuated_word": "Nullish", "speaker": 0, "speaker_confidence": 0.98535156, "start": 108.204994, "word": "nullish" }, { "confidence": 0.9900716, "end": 109.185, "punctuated_word": "coalescing.", "speaker": 0, "speaker_confidence": 0.98535156, "start": 108.685, "word": "coalescing" }, { "confidence": 0.9980469, "end": 109.80499, "punctuated_word": "In", "speaker": 0, "speaker_confidence": 0.98535156, "start": 109.645, "word": "in" }, { "confidence": 0.99902344, "end": 110.045, "punctuated_word": "many", "speaker": 0, "speaker_confidence": 0.98535156, "start": 109.80499, "word": "many" }, { "confidence": 0.99902344, "end": 110.524994, "punctuated_word": "cases,", "speaker": 0, "speaker_confidence": 0.98535156, "start": 110.045, "word": "cases" }, { "confidence": 1, "end": 110.765, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.98535156, "start": 110.524994, "word": "you" }, { "confidence": 1, "end": 110.924995, "punctuated_word": "may", "speaker": 0, "speaker_confidence": 0.98535156, "start": 110.765, "word": "may" }, { "confidence": 1, "end": 111.085, "punctuated_word": "want", "speaker": 0, "speaker_confidence": 0.98535156, "start": 110.924995, "word": "want" }, { "confidence": 1, "end": 111.244995, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.98535156, "start": 111.085, "word": "to" }, { "confidence": 1, "end": 111.405, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.98535156, "start": 111.244995, "word": "set" }, { "confidence": 0.9980469, "end": 111.645, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.98535156, "start": 111.405, "word": "a" }, { "confidence": 1, "end": 111.965, "punctuated_word": "default", "speaker": 0, "speaker_confidence": 0.98535156, "start": 111.645, "word": "default" }, { "confidence": 1, "end": 112.445, "punctuated_word": "value", "speaker": 0, "speaker_confidence": 0.98535156, "start": 111.965, "word": "value" }, { "confidence": 1, "end": 112.604996, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.98535156, "start": 112.445, "word": "for" }, { "confidence": 1, "end": 112.765, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.98535156, "start": 112.604996, "word": "a" }, { "confidence": 1, "end": 113.085, "punctuated_word": "missing", "speaker": 0, "speaker_confidence": 0.98535156, "start": 112.765, "word": "missing" }, { "confidence": 1, "end": 113.564995, "punctuated_word": "variable", "speaker": 0, "speaker_confidence": 0.98535156, "start": 113.085, "word": "variable" }, { "confidence": 0.9770508, "end": 113.80499, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.98535156, "start": 113.564995, "word": "or" }, { "confidence": 0.7915039, "end": 114.204994, "punctuated_word": "property", "speaker": 0, "speaker_confidence": 0.98535156, "start": 113.80499, "word": "property" }, { "confidence": 0.99902344, "end": 114.704994, "punctuated_word": "name.", "speaker": 0, "speaker_confidence": 0.98535156, "start": 114.204994, "word": "name" }, { "confidence": 1, "end": 114.924995, "punctuated_word": "You", "speaker": 0, "speaker_confidence": 0.98535156, "start": 114.765, "word": "you" }, { "confidence": 1, "end": 115.085, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.98535156, "start": 114.924995, "word": "can" }, { "confidence": 1, "end": 115.48499, "punctuated_word": "easily", "speaker": 0, "speaker_confidence": 0.98535156, "start": 115.085, "word": "easily" }, { "confidence": 1, "end": 115.564995, "punctuated_word": "do", "speaker": 0, "speaker_confidence": 0.98535156, "start": 115.48499, "word": "do" }, { "confidence": 1, "end": 115.80499, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.98535156, "start": 115.564995, "word": "that" }, { "confidence": 1, "end": 115.965, "punctuated_word": "with", "speaker": 0, "speaker_confidence": 0.98535156, "start": 115.80499, "word": "with" }, { "confidence": 1, "end": 116.125, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.98535156, "start": 115.965, "word": "a" }, { "confidence": 0.99902344, "end": 116.604996, "punctuated_word": "logical", "speaker": 0, "speaker_confidence": 0.98535156, "start": 116.125, "word": "logical" }, { "confidence": 0.7758789, "end": 116.924995, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.98535156, "start": 116.604996, "word": "or" }, { "confidence": 0.99560547, "end": 117.35, "punctuated_word": "operator.", "speaker": 0, "speaker_confidence": 0.98535156, "start": 116.924995, "word": "operator" }, { "confidence": 0.99902344, "end": 117.59, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.98535156, "start": 117.43, "word": "if" }, { "confidence": 0.99902344, "end": 117.75, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.98535156, "start": 117.59, "word": "the" }, { "confidence": 1, "end": 117.83, "punctuated_word": "left", "speaker": 0, "speaker_confidence": 0.9902344, "start": 117.75, "word": "left" }, { "confidence": 0.99902344, "end": 118.07, "punctuated_word": "side", "speaker": 0, "speaker_confidence": 0.9902344, "start": 117.83, "word": "side" }, { "confidence": 0.9980469, "end": 118.31, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9902344, "start": 118.07, "word": "is" }, { "confidence": 0.9057617, "end": 118.81, "punctuated_word": "falsy,", "speaker": 0, "speaker_confidence": 0.9902344, "start": 118.31, "word": "falsy" }, { "confidence": 1, "end": 119.11, "punctuated_word": "then", "speaker": 0, "speaker_confidence": 0.9902344, "start": 118.869995, "word": "then" }, { "confidence": 0.9941406, "end": 119.35, "punctuated_word": "use", "speaker": 0, "speaker_confidence": 0.9902344, "start": 119.11, "word": "use" }, { "confidence": 1, "end": 119.509995, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9902344, "start": 119.35, "word": "the" }, { "confidence": 1, "end": 119.83, "punctuated_word": "value", "speaker": 0, "speaker_confidence": 0.9902344, "start": 119.509995, "word": "value" }, { "confidence": 1, "end": 119.99, "punctuated_word": "on", "speaker": 0, "speaker_confidence": 0.9902344, "start": 119.83, "word": "on" }, { "confidence": 1, "end": 120.15, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9902344, "start": 119.99, "word": "the" }, { "confidence": 1, "end": 120.31, "punctuated_word": "right", "speaker": 0, "speaker_confidence": 0.9902344, "start": 120.15, "word": "right" }, { "confidence": 0.9501953, "end": 120.79, "punctuated_word": "side.", "speaker": 0, "speaker_confidence": 0.9902344, "start": 120.31, "word": "side" }, { "confidence": 0.9941406, "end": 121.03, "punctuated_word": "But", "speaker": 0, "speaker_confidence": 0.9902344, "start": 120.79, "word": "but" }, { "confidence": 0.98828125, "end": 121.35, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.9902344, "start": 121.03, "word": "because" }, { "confidence": 0.9951172, "end": 121.85, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.9902344, "start": 121.35, "word": "javascript" }, { "confidence": 1, "end": 122.229996, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.9902344, "start": 121.99, "word": "has" }, { "confidence": 1, "end": 122.31, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9902344, "start": 122.229996, "word": "a" }, { "confidence": 1, "end": 122.549995, "punctuated_word": "bunch", "speaker": 0, "speaker_confidence": 0.9902344, "start": 122.31, "word": "bunch" }, { "confidence": 0.99902344, "end": 122.63, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9902344, "start": 122.549995, "word": "of" }, { "confidence": 1, "end": 122.95, "punctuated_word": "weird", "speaker": 0, "speaker_confidence": 0.9902344, "start": 122.63, "word": "weird" }, { "confidence": 1, "end": 123.27, "punctuated_word": "rules", "speaker": 0, "speaker_confidence": 0.9902344, "start": 122.95, "word": "rules" }, { "confidence": 1, "end": 123.509995, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.9902344, "start": 123.27, "word": "for" }, { "confidence": 1, "end": 123.67, "punctuated_word": "what", "speaker": 0, "speaker_confidence": 0.9902344, "start": 123.509995, "word": "what" }, { "confidence": 0.99316406, "end": 123.83, "punctuated_word": "is", "speaker": 0, "speaker_confidence": 0.9902344, "start": 123.67, "word": "is" }, { "confidence": 0.86083984, "end": 124.229996, "punctuated_word": "truthy", "speaker": 0, "speaker_confidence": 0.9902344, "start": 123.83, "word": "truthy" }, { "confidence": 0.9941406, "end": 124.39, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9902344, "start": 124.229996, "word": "and" }, { "confidence": 0.99641925, "end": 124.869995, "punctuated_word": "falsy,", "speaker": 0, "speaker_confidence": 0.9902344, "start": 124.39, "word": "falsy" }, { "confidence": 0.99609375, "end": 125.11, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.9902344, "start": 124.869995, "word": "you" }, { "confidence": 0.9980469, "end": 125.27, "punctuated_word": "may", "speaker": 0, "speaker_confidence": 0.9902344, "start": 125.11, "word": "may" }, { "confidence": 1, "end": 125.43, "punctuated_word": "get", "speaker": 0, "speaker_confidence": 0.9902344, "start": 125.27, "word": "get" }, { "confidence": 1, "end": 125.67, "punctuated_word": "weird", "speaker": 0, "speaker_confidence": 0.9902344, "start": 125.43, "word": "weird" }, { "confidence": 0.7741699, "end": 126.17, "punctuated_word": "results.", "speaker": 0, "speaker_confidence": 0.9902344, "start": 125.67, "word": "results" }, { "confidence": 0.9970703, "end": 126.575, "punctuated_word": "Like", "speaker": 0, "speaker_confidence": 0.9902344, "start": 126.335, "word": "like" }, { "confidence": 0.94140625, "end": 126.655, "punctuated_word": "an", "speaker": 0, "speaker_confidence": 0.9902344, "start": 126.575, "word": "an" }, { "confidence": 1, "end": 126.975, "punctuated_word": "empty", "speaker": 0, "speaker_confidence": 0.9902344, "start": 126.655, "word": "empty" }, { "confidence": 1, "end": 127.375, "punctuated_word": "string", "speaker": 0, "speaker_confidence": 0.9902344, "start": 126.975, "word": "string" }, { "confidence": 0.54833984, "end": 127.774994, "punctuated_word": "or", "speaker": 0, "speaker_confidence": 0.9902344, "start": 127.375, "word": "or" }, { "confidence": 0.5727539, "end": 128.095, "punctuated_word": "0", "speaker": 0, "speaker_confidence": 0.9902344, "start": 127.774994, "word": "0" }, { "confidence": 0.9970703, "end": 128.255, "punctuated_word": "being", "speaker": 0, "speaker_confidence": 0.9902344, "start": 128.095, "word": "being" }, { "confidence": 0.9970703, "end": 128.495, "punctuated_word": "set", "speaker": 0, "speaker_confidence": 0.9902344, "start": 128.255, "word": "set" }, { "confidence": 1, "end": 128.655, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9902344, "start": 128.495, "word": "to" }, { "confidence": 0.9970703, "end": 128.815, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9902344, "start": 128.655, "word": "a" }, { "confidence": 1, "end": 129.215, "punctuated_word": "default", "speaker": 0, "speaker_confidence": 0.9902344, "start": 128.815, "word": "default" }, { "confidence": 1, "end": 129.535, "punctuated_word": "value", "speaker": 0, "speaker_confidence": 0.9902344, "start": 129.215, "word": "value" }, { "confidence": 0.8198242, "end": 129.855, "punctuated_word": "because", "speaker": 0, "speaker_confidence": 0.9902344, "start": 129.535, "word": "because" }, { "confidence": 0.99902344, "end": 130.015, "punctuated_word": "it", "speaker": 0, "speaker_confidence": 0.9902344, "start": 129.855, "word": "it" }, { "confidence": 0.99609375, "end": 130.415, "punctuated_word": "resolves", "speaker": 0, "speaker_confidence": 0.9902344, "start": 130.015, "word": "resolves" }, { "confidence": 0.7573242, "end": 130.655, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9902344, "start": 130.415, "word": "to" }, { "confidence": 0.695638, "end": 131.155, "punctuated_word": "falsie.", "speaker": 0, "speaker_confidence": 0.9902344, "start": 130.655, "word": "falsie" }, { "confidence": 0.99902344, "end": 131.61499, "punctuated_word": "Instead", "speaker": 0, "speaker_confidence": 0.9902344, "start": 131.295, "word": "instead" }, { "confidence": 1, "end": 131.775, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.9902344, "start": 131.61499, "word": "of" }, { "confidence": 0.99316406, "end": 132.255, "punctuated_word": "logical", "speaker": 0, "speaker_confidence": 0.9902344, "start": 131.775, "word": "logical" }, { "confidence": 0.9824219, "end": 132.575, "punctuated_word": "or,", "speaker": 0, "speaker_confidence": 0.9902344, "start": 132.255, "word": "or" }, { "confidence": 1, "end": 132.735, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.9902344, "start": 132.575, "word": "you" }, { "confidence": 1, "end": 132.895, "punctuated_word": "can", "speaker": 0, "speaker_confidence": 0.9902344, "start": 132.735, "word": "can" }, { "confidence": 0.99902344, "end": 133.055, "punctuated_word": "add", "speaker": 0, "speaker_confidence": 0.9902344, "start": 132.895, "word": "add" }, { "confidence": 1, "end": 133.215, "punctuated_word": "a", "speaker": 0, "speaker_confidence": 0.9902344, "start": 133.055, "word": "a" }, { "confidence": 1, "end": 133.535, "punctuated_word": "double", "speaker": 0, "speaker_confidence": 0.9902344, "start": 133.215, "word": "double" }, { "confidence": 0.9970703, "end": 133.855, "punctuated_word": "question", "speaker": 0, "speaker_confidence": 0.9902344, "start": 133.535, "word": "question" }, { "confidence": 0.9760742, "end": 134.2, "punctuated_word": "mark,", "speaker": 0, "speaker_confidence": 0.9902344, "start": 133.855, "word": "mark" }, { "confidence": 1, "end": 134.52, "punctuated_word": "which", "speaker": 0, "speaker_confidence": 0.9902344, "start": 134.28, "word": "which" }, { "confidence": 1, "end": 134.84, "punctuated_word": "works", "speaker": 0, "speaker_confidence": 0.9902344, "start": 134.52, "word": "works" }, { "confidence": 0.99902344, "end": 135.16, "punctuated_word": "just", "speaker": 0, "speaker_confidence": 0.9902344, "start": 134.84, "word": "just" }, { "confidence": 0.99902344, "end": 135.4, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.9902344, "start": 135.16, "word": "like" }, { "confidence": 0.97265625, "end": 135.8, "punctuated_word": "logical", "speaker": 0, "speaker_confidence": 0.9902344, "start": 135.4, "word": "logical" }, { "confidence": 0.9445801, "end": 136.28, "punctuated_word": "or,", "speaker": 0, "speaker_confidence": 0.9902344, "start": 135.8, "word": "or" }, { "confidence": 0.99902344, "end": 136.76, "punctuated_word": "except", "speaker": 0, "speaker_confidence": 0.9902344, "start": 136.28, "word": "except" }, { "confidence": 0.98828125, "end": 137.16, "punctuated_word": "undefined", "speaker": 0, "speaker_confidence": 0.9902344, "start": 136.76, "word": "undefined" }, { "confidence": 0.984375, "end": 137.31999, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.9902344, "start": 137.16, "word": "and" }, { "confidence": 0.9550781, "end": 137.64, "punctuated_word": "null", "speaker": 0, "speaker_confidence": 0.9902344, "start": 137.31999, "word": "null" }, { "confidence": 0.99902344, "end": 137.8, "punctuated_word": "are", "speaker": 0, "speaker_confidence": 0.9902344, "start": 137.64, "word": "are" }, { "confidence": 1, "end": 137.95999, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.9902344, "start": 137.8, "word": "the" }, { "confidence": 1, "end": 138.2, "punctuated_word": "only", "speaker": 0, "speaker_confidence": 0.9902344, "start": 137.95999, "word": "only" }, { "confidence": 0.99902344, "end": 138.59999, "punctuated_word": "values", "speaker": 0, "speaker_confidence": 0.9902344, "start": 138.2, "word": "values" }, { "confidence": 1, "end": 138.84, "punctuated_word": "that", "speaker": 0, "speaker_confidence": 0.9902344, "start": 138.59999, "word": "that" }, { "confidence": 0.99609375, "end": 139.16, "punctuated_word": "short", "speaker": 0, "speaker_confidence": 0.9902344, "start": 138.84, "word": "short" }, { "confidence": 1, "end": 139.56, "punctuated_word": "circuit", "speaker": 0, "speaker_confidence": 0.9902344, "start": 139.16, "word": "circuit" }, { "confidence": 1, "end": 139.72, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.9902344, "start": 139.56, "word": "to" }, { "confidence": 1, "end": 139.8, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5966797, "start": 139.72, "word": "the" }, { "confidence": 1, "end": 140.04, "punctuated_word": "right", "speaker": 0, "speaker_confidence": 0.5966797, "start": 139.8, "word": "right" }, { "confidence": 0.9875488, "end": 140.36, "punctuated_word": "side,", "speaker": 0, "speaker_confidence": 0.5966797, "start": 140.04, "word": "side" }, { "confidence": 1, "end": 140.59999, "punctuated_word": "making", "speaker": 0, "speaker_confidence": 0.5966797, "start": 140.36, "word": "making" }, { "confidence": 1, "end": 140.68, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.5966797, "start": 140.59999, "word": "the" }, { "confidence": 1, "end": 141.08, "punctuated_word": "behavior", "speaker": 0, "speaker_confidence": 0.5966797, "start": 140.68, "word": "behavior" }, { "confidence": 1, "end": 141.16, "punctuated_word": "of", "speaker": 0, "speaker_confidence": 0.60546875, "start": 141.08, "word": "of" }, { "confidence": 1, "end": 141.31999, "punctuated_word": "your", "speaker": 0, "speaker_confidence": 0.60546875, "start": 141.16, "word": "your" }, { "confidence": 1, "end": 141.56, "punctuated_word": "code", "speaker": 0, "speaker_confidence": 0.60546875, "start": 141.31999, "word": "code" }, { "confidence": 1, "end": 141.72, "punctuated_word": "much", "speaker": 0, "speaker_confidence": 0.60546875, "start": 141.56, "word": "much" }, { "confidence": 1, "end": 141.95999, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.60546875, "start": 141.72, "word": "more" }, { "confidence": 1, "end": 142.45999, "punctuated_word": "predictable.", "speaker": 0, "speaker_confidence": 0.60546875, "start": 141.95999, "word": "predictable" }, { "confidence": 0.98828125, "end": 142.91501, "punctuated_word": "This", "speaker": 0, "speaker_confidence": 0.60546875, "start": 142.755, "word": "this" }, { "confidence": 0.99902344, "end": 142.995, "punctuated_word": "has", "speaker": 0, "speaker_confidence": 0.60546875, "start": 142.91501, "word": "has" }, { "confidence": 1, "end": 143.075, "punctuated_word": "been", "speaker": 0, "speaker_confidence": 0.7753906, "start": 142.995, "word": "been" }, { "confidence": 0.89208984, "end": 143.315, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.7753906, "start": 143.075, "word": "the" }, { "confidence": 0.9770508, "end": 143.815, "punctuated_word": "JavaScript", "speaker": 0, "speaker_confidence": 0.7753906, "start": 143.315, "word": "javascript" }, { "confidence": 0.9243164, "end": 144.195, "punctuated_word": "question", "speaker": 0, "speaker_confidence": 0.7753906, "start": 143.875, "word": "question" }, { "confidence": 0.93408203, "end": 144.515, "punctuated_word": "mark", "speaker": 0, "speaker_confidence": 0.7753906, "start": 144.195, "word": "mark" }, { "confidence": 0.98828125, "end": 144.755, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.7753906, "start": 144.515, "word": "in" }, { "confidence": 0.9453125, "end": 145.155, "punctuated_word": "100", "speaker": 0, "speaker_confidence": 0.7753906, "start": 144.755, "word": "100" }, { "confidence": 0.99902344, "end": 145.655, "punctuated_word": "seconds.", "speaker": 0, "speaker_confidence": 0.7753906, "start": 145.155, "word": "seconds" }, { "confidence": 0.99902344, "end": 145.795, "punctuated_word": "If", "speaker": 0, "speaker_confidence": 0.8798828, "start": 145.715, "word": "if" }, { "confidence": 1, "end": 145.955, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.8798828, "start": 145.795, "word": "you" }, { "confidence": 0.94970703, "end": 146.195, "punctuated_word": "wanna", "speaker": 0, "speaker_confidence": 0.8798828, "start": 145.955, "word": "wanna" }, { "confidence": 0.99609375, "end": 146.275, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.8798828, "start": 146.195, "word": "see" }, { "confidence": 1, "end": 146.435, "punctuated_word": "more", "speaker": 0, "speaker_confidence": 0.8798828, "start": 146.275, "word": "more" }, { "confidence": 1, "end": 146.675, "punctuated_word": "short", "speaker": 0, "speaker_confidence": 0.8798828, "start": 146.435, "word": "short" }, { "confidence": 1, "end": 146.995, "punctuated_word": "videos", "speaker": 0, "speaker_confidence": 0.8798828, "start": 146.675, "word": "videos" }, { "confidence": 1, "end": 147.155, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.8798828, "start": 146.995, "word": "like" }, { "confidence": 0.99853516, "end": 147.475, "punctuated_word": "this,", "speaker": 0, "speaker_confidence": 0.8798828, "start": 147.155, "word": "this" }, { "confidence": 1, "end": 147.635, "punctuated_word": "make", "speaker": 0, "speaker_confidence": 0.8798828, "start": 147.475, "word": "make" }, { "confidence": 1, "end": 147.795, "punctuated_word": "sure", "speaker": 0, "speaker_confidence": 0.8798828, "start": 147.635, "word": "sure" }, { "confidence": 1, "end": 147.955, "punctuated_word": "to", "speaker": 0, "speaker_confidence": 0.8798828, "start": 147.795, "word": "to" }, { "confidence": 1, "end": 148.195, "punctuated_word": "hit", "speaker": 0, "speaker_confidence": 0.8798828, "start": 147.955, "word": "hit" }, { "confidence": 1, "end": 148.275, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8798828, "start": 148.195, "word": "the" }, { "confidence": 0.9770508, "end": 148.515, "punctuated_word": "like", "speaker": 0, "speaker_confidence": 0.8798828, "start": 148.275, "word": "like" }, { "confidence": 1, "end": 148.755, "punctuated_word": "button", "speaker": 0, "speaker_confidence": 0.8798828, "start": 148.515, "word": "button" }, { "confidence": 0.98828125, "end": 149.075, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8798828, "start": 148.755, "word": "and" }, { "confidence": 1, "end": 149.575, "punctuated_word": "subscribe.", "speaker": 0, "speaker_confidence": 0.8798828, "start": 149.075, "word": "subscribe" }, { "confidence": 1, "end": 149.955, "punctuated_word": "Thanks", "speaker": 0, "speaker_confidence": 0.8798828, "start": 149.715, "word": "thanks" }, { "confidence": 1, "end": 150.195, "punctuated_word": "for", "speaker": 0, "speaker_confidence": 0.8798828, "start": 149.955, "word": "for" }, { "confidence": 0.9941406, "end": 150.595, "punctuated_word": "watching,", "speaker": 0, "speaker_confidence": 0.8798828, "start": 150.195, "word": "watching" }, { "confidence": 1, "end": 150.835, "punctuated_word": "and", "speaker": 0, "speaker_confidence": 0.8798828, "start": 150.595, "word": "and" }, { "confidence": 1, "end": 150.995, "punctuated_word": "I", "speaker": 0, "speaker_confidence": 0.8798828, "start": 150.835, "word": "i" }, { "confidence": 1, "end": 151.235, "punctuated_word": "will", "speaker": 0, "speaker_confidence": 0.8798828, "start": 150.995, "word": "will" }, { "confidence": 1, "end": 151.395, "punctuated_word": "see", "speaker": 0, "speaker_confidence": 0.8798828, "start": 151.235, "word": "see" }, { "confidence": 1, "end": 151.635, "punctuated_word": "you", "speaker": 0, "speaker_confidence": 0.8798828, "start": 151.395, "word": "you" }, { "confidence": 1, "end": 151.795, "punctuated_word": "in", "speaker": 0, "speaker_confidence": 0.8798828, "start": 151.635, "word": "in" }, { "confidence": 1, "end": 151.955, "punctuated_word": "the", "speaker": 0, "speaker_confidence": 0.8798828, "start": 151.795, "word": "the" }, { "confidence": 1, "end": 152.195, "punctuated_word": "next", "speaker": 0, "speaker_confidence": 0.8798828, "start": 151.955, "word": "next" }, { "confidence": 0.99316406, "end": 152.56876, "punctuated_word": "one.", "speaker": 0, "speaker_confidence": 0.8798828, "start": 152.195, "word": "one" } ] } ], "detected_language": "", "language_confidence": 0, "search": null } ], "summary": { "result": "success", "short": "The speaker discusses the power of the question mark in JavaScript, including its use in variables and parameters, and its potential for error messages. They also mention a new feature called optional chaining, which works by defaulting a property name and triggering an error at receiver. The speaker concludes that while the question mark has one more trick to its sleeve, it is too soon to use it in JavaScript, as it can cause issues such as false results and dangerous actions." }, "utterances": null } }
downloads\_in_NaN_Seconds.wav
https://www.youtube.com/watch?v=O0gmXbN7lVE
? in NaN Seconds
116,968