Web Debugging in Visual Studio Code

Full Transcript — Download SRT & Markdown

00:12
Speaker A
Hey, just kidding. Hey everybody, how's it going?
00:17
Speaker A
That was a joke, I hope you got that. Welcome to the VS Code live stream.
00:21
Speaker A
Um, if you joined us last week, it was interesting because everything went wrong and we uh sputtered and crashed in a burning ball of flames and we had to cancel the stream.
00:31
Speaker A
And so we're back, but listen, listen, we fired everybody that was involved with that, um, I'm on probation now, it's probably my last stream, so we got to get this one right.
00:41
Speaker A
But thank you for being with us. Today, we are going to be doing uh debugging, web debugging in VS Code with a couple engineers here at Microsoft.
00:53
Speaker A
Before we get started, a couple notes.
00:55
Speaker A
First of all, we're streaming weekly now, we stream uh Thursdays.
01:00
Speaker A
Sometime we sometimes we have release parties, sometimes we have guests on, sometimes we bring in folks from Microsoft to give in-depth talks like we're doing today.
01:05
Speaker A
So you want to check that out, there's an aka there for checking out our live streams.
01:10
Speaker A
And uh occasionally we crash and burn.
01:13
Speaker A
And you're going to want to be there for that.
01:16
Speaker A
Because we deleted the video, you can't go back and watch it.
01:20
Speaker A
It was a huge, it was a giant cluster and now you can't, you can't see it.
01:25
Speaker A
But you would have if you had been following the streams.
01:29
Speaker A
So you're going to want to do that.
01:31
Speaker A
Also on our YouTube channel, go ahead and like and subscribe there.
01:36
Speaker A
We would love to, we would love to see you there.
01:38
Speaker A
Comments on our videos.
01:40
Speaker A
Making a lot of shorts these days.
01:42
Speaker A
Anybody doing shorts out there?
01:43
Speaker A
They kind of get forced into your YouTube app.
01:46
Speaker A
You don't have a choice.
01:47
Speaker A
You have to watch the shorts.
01:48
Speaker A
And we're also on TikTok, uh these short videos seem to be really good for doing VS Code tips.
01:52
Speaker A
So a great place for us to do those, we're doing them there, which you can check out down in the link.
01:57
Speaker A
Okay, all of that stuff aside, we're still, are we still live?
02:00
Speaker A
We're still live.
02:02
Speaker A
This is a thousand times better than once last week.
02:04
Speaker A
So please join me in welcoming Connor and Brandon to the stream.
02:09
Speaker A
Hey fellas.
02:10
Speaker A
Uh Connor is a software engineer at Microsoft and so is Brandon.
02:14
Speaker A
Connor is on the VS Code team.
02:16
Speaker A
And Brandon, are you on the Edge team?
02:18
Speaker B
Yes, Edge Dev Tools team.
02:19
Speaker A
Oh, all right.
02:21
Speaker A
Did I go by too fast and we want to put locations up again?
02:23
Speaker A
Let's do it slowly.
02:24
Speaker A
Connor.
02:25
Speaker C
Yes.
02:27
Speaker A
And Brandon.
02:29
Speaker A
There you go.
02:30
Speaker A
Perfect.
02:31
Speaker A
Nailed it.
02:32
Speaker A
All right, what are we going to be talking about?
02:35
Speaker A
And uh what are you going to show us today?
02:36
Speaker C
Cool, yeah, so um, I'll talk about the debugger to VS Code, which is pretty new.
02:40
Speaker C
I'll try and do it well so I can get you off probation and back into the good graces of of Sacha.
02:45
Speaker C
So um.
02:47
Speaker C
Yeah, so uh uh last July, we released a new debugger for VS Code.
02:52
Speaker C
Um, and with the debugger, it came like a bunch of new features including the notion of of multi-target debugging, which means we can debug things like service workers, web workers, and Node.js worker threads.
03:00
Speaker C
As well as um, performance and an increased focus on making easier to like onboard for for users who never use debugging to actually get debugging and debugging using VS Code.
03:07
Speaker C
And so um, and also we have um, lots of cool new notifications such as with the Edge Dev Tools, which Brandon will be showing later on today.
03:12
Speaker C
Yeah.
03:14
Speaker C
So um, first off, I'll share my screen and then we can get started.
03:19
Speaker C
So like here we have um, a looks like a pretty simple Express app.
03:23
Speaker C
So um, serving files from like this directory and also has this API endpoint that does looks like spell checking.
03:28
Speaker C
Um, and so we can look at it, we can see that it uses this like array of workers.
03:32
Speaker C
Um, and it uses the the Node.js worker threads.
03:35
Speaker C
And so worker threads are really useful if you have expensive computation that you don't want to do on main thread because even though uh like IO inside of Node.js is asynchronous, as you probably know.
03:43
Speaker C
Um, the actual like running JavaScript code is not, so you can only run like one JavaScript statement at a time.
03:49
Speaker C
Um, so if you have really expensive things like spell checking, you want to do that on on a worker thread.
03:54
Speaker C
You have multiple threads doing it.
03:56
Speaker C
Um, so yeah, we create one of these worker threads, then we send a message to it.
04:02
Speaker C
Well, we take one off, we send a message to it, and then we wait till it responds.
04:07
Speaker C
Um, and then we we get that back in in the in the API response.
04:10
Speaker C
And so first of all, let's like uh, I just set a breakpoint here.
04:14
Speaker C
I'm just walk through it to make sure that our that our assumptions are correct.
04:17
Speaker C
So if I want to debug this, there's there's a few ways to actually do that.
04:22
Speaker C
So like traditionally, you probably created a launch.json file that would like let you configure how you want to launch your program.
04:29
Speaker C
But it's pretty hard to figure out how to do that if you're new if you're new to VS Code.
04:33
Speaker C
Um, and there are a few easier easier ways that you can do it now.
04:37
Speaker C
So uh first off, if you've been using um, or if you've been writing JavaScript code in VS Code for a while, you've probably noticed the debug codelens here.
04:43
Speaker A
Hey Connor, real quick.
04:45
Speaker A
Can you just bump that font size up?
04:47
Speaker A
Maybe one, one step.
04:49
Speaker C
Uh, sure.
04:50
Speaker C
I will actually.
04:54
Speaker C
Do this.
04:55
Speaker C
So I don't have to zoom in anymore.
04:58
Speaker A
Oh, beautiful.
04:59
Speaker C
There we go.
05:00
Speaker C
Is that better?
05:01
Speaker A
Thank you so much.
05:02
Speaker A
Sorry.
05:03
Speaker C
Yeah.
05:03
Speaker C
Uh, no worries.
05:05
Speaker C
Yeah, so like, uh, like you've probably seen the debug codelens here.
05:10
Speaker C
And then this basically basically lets you debug any of your Node.js scripts with one click.
05:14
Speaker C
So if I click on this, you'll see that we launched in debug mode here.
05:18
Speaker C
My toolbar uh color changed to indicate that we're now debugging.
05:22
Speaker C
Um, and if I had if I had multiple if I had multiple scripts here, then you would have gotten like a quick pick asking you which one you wanted to actually debug.
05:29
Speaker C
And so that's cool.
05:30
Speaker C
Uh, the other way to do things is to use the debug terminal.
05:35
Speaker C
And this debug terminal, you might have heard us referred to it as the magic terminal.
05:41
Speaker C
Where all all Node.js programs that you that you run in there are going to be debugged.
05:46
Speaker C
So um, if I go over here, I can create that by hitting the little drop down next to the plus button.
05:52
Speaker C
And then selecting the JavaScript debug terminal.
05:57
Speaker C
And now like any Node.js program I run, so even if I just run node and open the repl, then that will be debugged.
06:03
Speaker C
So if I type node.
06:06
Speaker C
And and now I'm I'm in the repl, if I even type just debugger.
06:12
Speaker C
Then you'll see that we actually pause there, um, and.
06:17
Speaker C
You can you can run any any code here and it'll be debugged.
06:20
Speaker C
And we can also of course, just run node index.js to actually run our program.
06:25
Speaker C
I'll move this guy out of the way.
06:29
Speaker C
And so now, uh, you see that this like a a breakpoint is bound, which means that when we actually call this endpoint, it'll it'll be hit.
06:34
Speaker C
So to call it, I'm going to use um.
06:40
Speaker C
Some of our some of our some of our VS Code's new native notebooks as well.
06:45
Speaker C
So we have this this rest book extension, which basically lets you have a notebook that contains HTTP calls.
06:52
Speaker C
In this case, we're making a post request to localhost and then we're we're including the body with the word performance, which is misspelled.
06:57
Speaker C
And if I'm and if I go ahead and execute that, then we'll hit the breakpoint right there.
07:03
Speaker C
Um, and I can step through it and yep, we're creating a new worker thread.
07:07
Speaker C
We're we're popping it off.
07:10
Speaker C
We're sending a message there.
07:11
Speaker C
And then if I put a breakpoint there.
07:15
Speaker C
Then we're sending back looks like a a JSON a JSON snippet containing correct is false.
07:20
Speaker C
And then word is the correct word right there.
07:23
Speaker C
So now if I want to actually see what's happening in the worker thread, I don't really have to do anything extra.
07:27
Speaker C
So looks like this is pulling in worker.js.
07:31
Speaker C
So I can just go in there and then um.
07:35
Speaker C
Just like any other program or any other part of my program, um, I can set a breakpoint right here.
07:40
Speaker C
And then if we run this again.
07:43
Speaker C
Then you see that we're just paused and you can see actually in the call stack view here that we're paused not in the main process here, but a worker thread.
07:50
Speaker C
Um, and we're just calling worker one right now.
07:52
Speaker C
So we can step through this, we can step into our spell check function.
07:56
Speaker C
And then looks like it's.
07:59
Speaker C
Yeah, so it looks like this is going through a list of like all all English words and then it's it's looking at the the edit distance between them and getting the most similar words.
08:06
Speaker C
So the edit distance is just um, a number that indicates the number of of kind of mutations or changes that you have to make to a certain string to get to another string.
08:13
Speaker C
So if you have like one deletion or one insertion, that's like one uh like one distance unit away from the original string.
08:18
Speaker C
So we just go through every single word that we know about and then we get the most similar word and return it.
08:24
Speaker C
And so that's cool.
08:26
Speaker C
But this is actually kind of slow, like you see that um.
08:30
Speaker C
It takes like a second or so to actually do that.
08:34
Speaker C
Um, so if I wanted to to figure out why it's slow, I can use our new performance tooling.
08:41
Speaker C
So again, there's a few ways to actually do that.
08:46
Speaker C
So uh like you can uh uh I'll hit the record button here to actually take a profile.
08:52
Speaker C
Um, or or you can use the the take performance profile command right there.
08:57
Speaker C
And I'm actually going to restart this program just so that I can have a single worker real quick.
09:02
Speaker C
So if I make this or make a request.
09:05
Speaker C
Now we have one worker.
09:06
Speaker C
And so now I can go ahead and take a performance profile.
09:11
Speaker C
If I use the the command here, it's going to ask me which process I want to take a profile of.
09:16
Speaker C
Let's choose the worker.
09:18
Speaker C
Let's take a CPU profile.
09:20
Speaker C
And now we can choose when we want to stop it, we can stop it, we can run it that we want to stop it.
09:25
Speaker C
Or we can run it for a specific duration or until we hit a breakpoint.
09:29
Speaker C
I'll just do it until we until we stop it.
09:31
Speaker C
And then make a few requests.
09:34
Speaker C
So I'm going to make one.
09:36
Speaker C
Two.
09:38
Speaker C
Three requests.
09:40
Speaker C
And then you can stop it just by hitting that big little record button up there.
09:44
Speaker C
And now this will open the table view.
09:49
Speaker C
Uh, that kind of shows like performance of of every function that was called.
09:54
Speaker C
And so you have two columns here, you have the the self time, which is the amount of time that was spent in this single function.
10:00
Speaker C
As well as the total time, which is the time spent in this function or or any function that it called.
10:06
Speaker C
It it's kind of nice, like you can like look through uh uh these entries.
10:10
Speaker C
And then if you if you click on um, the locations here, that then like it'll bring you it'll bring you to your source.
10:15
Speaker C
And then it'll also annotate um, all your functions with with the time with the timing information.
10:20
Speaker C
So you can see we spent 40 milliseconds in this function itself and then four seconds or so.
10:26
Speaker C
Um, mostly it looks like calling into get edit distance.
10:32
Speaker C
So uh like this is nice, but there's actually a better way to actually view what's happening.
10:36
Speaker C
And that's through the flame graph.
10:39
Speaker C
And so to get to that, you can hit the little flame icon right here.
10:42
Speaker C
And then if you don't have the extension installed, it's actually a separate extension, but if you don't have it installed, then it'll have you install it right there.
10:50
Speaker C
And now I can open the profile again.
10:53
Speaker C
Now if I hit the flame icon here, it'll open the flame graph view.
10:57
Speaker C
And this is a chronological view showing like at every moment in the program, this is the function that was running.
11:03
Speaker C
And so we can like zoom in here, we can see that um.
11:08
Speaker C
Uh like at around five seconds or so, um, it was calling into the the edit distance function there, which is not surprising.
11:16
Speaker C
Um, also something very useful in in flame chart is that um, if you have if you have servers.
11:22
Speaker C
Then most often what happens is that a single call isn't that slow, but then when you have hundreds of hundreds of calls that are like each individually taking a lot of time.
11:30
Speaker C
Um, or or like sorry, or or all together taking a lot of time.
11:35
Speaker C
And then it's hard to like see at like each each individual call stack, you know, what's.
11:40
Speaker C
Um, it's hard to get a sense of like what's taking time if you just look at the chronological view.
11:44
Speaker C
So so you can use the call the left heavy view.
11:48
Speaker C
And and if you click on this button, then what happens is that it groups all of this all of the same call stacks together.
11:53
Speaker C
So instead of showing like a thousand different calls, it'll show only the unique stacks.
11:59
Speaker C
And then and then like you can see that, yeah, like as we thought, in this case, uh, basically all the time is spent in the slow in the slow check function here.
12:06
Speaker C
Um, and it's very easy to see instead of having to look at individual.
12:11
Speaker C
Often very small and and very tall call stacks.
12:17
Speaker C
Yeah, so anyway, so it looks like time is being spent in there.
12:20
Speaker C
So let's actually try and like go into this edit distance function.
12:25
Speaker C
And see what's happening inside of there.
12:28
Speaker C
So I'll set a breakpoint again.
12:30
Speaker C
And then make another request.
12:32
Speaker C
And now we're paused there.
12:33
Speaker C
And let's step in here.
12:35
Speaker C
Yeah, so it looks like this is a minified program, it's like all on one line.
12:40
Speaker C
But the new the new debugger actually recognized that and was able to say, hey, we can actually demify it for you.
12:45
Speaker C
So let's accept um, its offer there.
12:48
Speaker C
In this case, we basically like pre-printed um, this file, so instead of instead of showing a single line.
12:54
Speaker C
It just uh uh formatted it better so that we can step through it more easily.
13:00
Speaker C
Um, uh uh just like we would like a better program, you can also set breakpoints on line.
13:05
Speaker C
Um, and and so on and so forth.
13:08
Speaker C
Looks like we didn't hit that breakpoint in that case.
13:10
Speaker C
But um.
13:13
Speaker C
Yeah, and that's like a lot easier than having to like step through a single line, which is very awkward to do.
13:20
Speaker C
So yeah, it looks like that was like mostly like a lot of math, so this is probably pretty efficient.
13:25
Speaker C
Like I'm not I'm probably not smart enough to actually figure out what's going wrong here or if there is a way to make it faster.
13:30
Speaker C
So it looks like the probably like the solution if you wanted to fix this is to just like use a better data structure.
13:35
Speaker C
Instead of having to go through everywhere, maybe you can maybe we can use a tree or something.
13:40
Speaker C
But um.
13:42
Speaker C
Yeah, and so I think that pretty much covers like.
13:47
Speaker C
Uh, like what's happening actually in our in our program.
13:52
Speaker C
Um, like one more thing that I wanted to mention that if you.
14:00
Speaker C
Yeah, that you get with the the flame chart extension is that you get this real-time performance view here.
14:06
Speaker C
And this is um, it it does show you.
14:11
Speaker C
Yeah, just like shows you basically the current resource usage of your program.
14:16
Speaker C
So if I select the worker and then make a few calls.
14:21
Speaker C
You see that we actually have a CPU usage spike there as it's trying to.
14:27
Speaker C
Basically spending a whole CPU core uh just doing the spell checking work.
14:32
Speaker C
Um, and this is like very useful.
14:35
Speaker C
Just kind of to to have a like a gauge of like how long or how much resources like your program is taking.
14:42
Speaker C
Um, if I'm used to like just having to open seeing it takes like 70 megabytes of of RAM.
14:50
Speaker C
And I see all of a sudden I made a change and it's taking like 500 megabytes or something.
14:55
Speaker C
Then I can know that I probably just made a change that that might have introduced a leak or something just very inefficient.
15:01
Speaker C
And so like this is like very useful just to see that.
15:05
Speaker C
And also um, yeah, the same record button is present inside the inside the performance view here as well.
15:11
Speaker C
So you can see that very easily.
15:13
Speaker C
Um, and take a performance profile from that same view.
15:18
Speaker C
Yeah, and so that pretty much covers this.
15:20
Speaker C
So now, um, it seems like the like API is okay at least.
15:24
Speaker C
And so let's actually try debugging the front end.
15:27
Speaker C
And so once again, there's a few ways to actually like open up Chrome or open up a a browser.
15:33
Speaker C
In this case, Edge.
15:35
Speaker C
Um, to to debug it.
15:40
Speaker C
Um, again, traditionally, you would have had to use a launch config and like configure like your web root and so on and so forth.
15:46
Speaker C
Uh, but today there's actually something but there's actually two two simpler ways to do that today.
15:53
Speaker C
Um, and and so first of all, is that if you are using the the debug terminal.
15:59
Speaker C
Then if you if you hover over on links here, you might notice instead of instead of having the tool tip to just open a URL.
16:05
Speaker C
It's the tool tip to debug the URL.
16:07
Speaker C
So what happens is that all links all links inside the the inside the debug terminal, if you click on them, will automatically be debugged.
16:13
Speaker C
So if I click on this, then it'll it'll open a browser in debug mode.
16:17
Speaker C
And if I open my like index.html file, if I set a breakpoint there.
16:23
Speaker C
You'll see that it is verified.
16:26
Speaker C
Um.
16:28
Speaker C
Uh, something you have to note in like one common one common confusion is that if you just have um, like the the debug terminal open and you open um, a browser just like in a different URL.
16:37
Speaker C
You're just like normally, then it won't it won't be debugged because the the debug terminal only only debugs Node.js programs.
16:42
Speaker C
So you have to actually open a browser open a browser in debug mode to debug like your website.
16:49
Speaker C
And so this is one option.
16:50
Speaker C
Another option is using the debug open link command.
16:55
Speaker C
Um, and this like similarly to um, the like link here.
17:00
Speaker C
Uh, let's see like put in like any URL.
17:04
Speaker C
So in this case, we can put in like localhost.
17:07
Speaker C
And then if we hit that, then it'll be debugged.
17:11
Speaker C
Like this command also offers to to save that URL inside of your launch.json.
17:16
Speaker C
Just so that you can access it easier in the future.
17:19
Speaker C
So if I if I hit yes here.
17:21
Speaker C
Then you'll see that it creates this launch.json here.
17:26
Speaker C
And then um, if I want to debug this again, I can just click this little play button.
17:31
Speaker C
Um, or use um, the launch.json or use the launch configuration.
17:36
Speaker C
Just through the command palette here.
17:39
Speaker C
Yeah.
17:40
Speaker C
And and so anyway, since this is the JavaScript debugger.
17:45
Speaker C
So um, all the features that I just showed you, basically all all the program features all work inside.
17:51
Speaker C
Um, uh websites too.
17:53
Speaker C
So if I set a breakpoint here, uh, we can hit it and step through.
17:58
Speaker C
Um, and also the the performance view also works for websites as well.
18:03
Speaker C
So you can see CPU usage, memory usage.
18:06
Speaker C
Uh, you can also see a few different things on websites.
18:10
Speaker C
So you can uh click this little gear icon here and then you can see the number of DOM nodes and the number of of re-layouts or or recals that happen.
18:17
Speaker C
Which is really useful if you have like more complex apps that have uh uh like more more complex layout.
18:24
Speaker C
Um, it's really useful to get a handle on on like what is actually like taking resources in the browser.
18:28
Speaker C
And and probably burning cycles of your of your uh layout engine or your style engine.
18:33
Speaker C
Yeah.
18:34
Speaker C
So uh, that's about that.
18:36
Speaker C
And now I'll turn it over to Brandon to to show us how to actually use.
18:41
Speaker C
The Edge Dev Tools in VS Code, um, during debug sessions.
18:48
Speaker C
And so Brandon.
18:49
Speaker C
Want to share your screen?
18:52
Speaker B
Yeah, thanks, Connor.
18:56
Speaker B
Um, so like they said before, my name's Brandon, I'm from the Edge Dev Tools team.
19:02
Speaker B
And uh, we've been working really hard with the VS Code team to integrate some of the features that you know and love from your browser Dev Tools directly into VS Code.
19:12
Speaker B
Um, so Connor has already shown uh what you can do with the built-in JavaScript debugger for setting breakpoints.
19:19
Speaker B
Working with the console and even some performance characteristics.
19:22
Speaker B
So we went and tackled some of the most popular tools that don't already uh integrate well with uh VS Code.
19:28
Speaker B
So specifically DOM and CSS debugging.
19:31
Speaker B
And your network debugging.
19:33
Speaker B
Um, and so in order to demonstrate that, I'm working on the same simple project that Connor has here.
19:38
Speaker B
And if I go ahead and add my launch Edge configuration, let's see if I just pick Edge launch.
19:45
Speaker B
Really easy to configure your launch.json.
19:48
Speaker B
So go ahead and save that.
19:50
Speaker B
And then if I come over here.
19:53
Speaker B
I if I launch Edge, um, you'll see we have the app running up like what we had before.
19:58
Speaker B
And we have a new inspect integration icon, which will allow us to go ahead.
20:03
Speaker B
And if you don't have the extension installed, install the Dev Tools extension.
20:09
Speaker B
And now you can see here, uh, we've got the latest extension.
20:13
Speaker B
We can see the most recent contributions to it.
20:17
Speaker B
Um, but since I already have my debugging session open, I can go ahead and attach the extension to the current debug target.
20:23
Speaker B
So we'll give this a minute while it loads.
20:26
Speaker B
And as you can see here, uh, we have a few of the tools integrated directly into VS Code.
20:32
Speaker B
So you'll see a modified welcome tool, very similar to what you would see for the first time launching uh the Dev Tools in Edge browser.
20:39
Speaker B
Except it's tailored a bit to our extension.
20:43
Speaker B
So we have, you know, links to our documentation, our GitHub page where you can submit feedback and how to get a hold of us.
20:48
Speaker B
And then on the right hand side, some of the latest features that we've brought into the extension.
20:53
Speaker B
Uh, notably new CSS and Flexbox debugging and a few bug fixes for switching between targets.
20:59
Speaker B
Um, so now that we're up and running, I can go ahead and dismiss the welcome tab.
21:05
Speaker B
And we can see that we have our elements page if I bring back up the browser.
21:11
Speaker B
Um, and move this over here.
21:14
Speaker B
Let's see if I can get this all on the same screen.
21:18
Speaker B
Now we can see that we have already uh attached directly to our page.
21:22
Speaker B
We have our elements debugging that we know and love.
21:25
Speaker B
Um, and so if I were to use this to debug an issue with my page, let's say that I'm building the UI.
21:33
Speaker B
And over here, I have a table that I want to show the previous uh submissions to our spell checker.
21:39
Speaker B
Um, so if I go ahead and put test in here.
21:43
Speaker B
Um, but maybe I wanted this title to span across this entire table and I'm not quite sure what's going on.
21:50
Speaker B
So if I come over here to my elements tool, I select the previous submission.
21:55
Speaker B
You can see that we already start getting um the highlighting and it opens um our DOM tree directly to that element.
22:01
Speaker B
Um, and down here, we have all of our styles, computed styles, event listeners.
22:06
Speaker B
Um, the properties of the current element and the accessibility if you're working on improving the accessibility of your page.
22:13
Speaker B
Um, and then.
22:15
Speaker B
Uh, over here, now that we've selected on this uh element directly, we can see the styles applied to it.
22:20
Speaker B
Um, what's great instead of normally in the browser, you might make changes here to kind of mess around and see what opens up on the page.
22:27
Speaker B
But here, we can link directly into your source code.
22:31
Speaker B
Um, so you can go ahead and edit CSS directly.
22:35
Speaker B
So if I go ahead and click on this.
22:38
Speaker B
It'll take me directly to the style from my local project where we made the change.
22:42
Speaker B
And what's nice about this is we get all of the nice autocomplete and MDN references that we had in VS Code automatically.
22:49
Speaker B
Uh, so if I go back to my Dev Tools page.
22:52
Speaker B
I can also see that this is inside of a grid and if I turn this on, I get the nice good highlighting.
22:59
Speaker B
Now, sorry about the very, very small screen here.
23:05
Speaker B
Um, but if you try this out yourselves, you'll be able to see that these are highlighting uh both the grid outlines and the line numbers.
23:14
Speaker B
Um, so in combination with the CSS styles, I can see here that for my MDN reference.
23:20
Speaker B
Um, maybe I thought that the previous submission ought to do grid column, I was supposed to say my start column to my end column.
23:29
Speaker B
Uh, but from MDN, I can understand that this is actually supposed to be the start line to the end line.
23:34
Speaker B
And it takes the line numbers.
23:35
Speaker B
And so very quickly, I can see, oh, this needs to go from line one to three instead of two.
23:40
Speaker B
Make the change.
23:42
Speaker B
Save.
23:43
Speaker B
Reload the page.
23:45
Speaker B
And there you go.
23:46
Speaker B
And so this cuts out a lot of the work that you might be doing as a dev, uh, making changes in your CSS in the Dev Tools in the browser.
23:56
Speaker B
Uh, it brings them directly back into um, your code.
24:02
Speaker B
And so that you can iterate faster.
24:07
Speaker B
Uh, this works great.
24:08
Speaker B
If you have um hot module reloading or any uh kind of like a gulp server running in the background too, because you'll see these changes automatically as you're saving and editing.
24:17
Speaker B
Um, one of the other nice things that I want to show while we're here.
24:21
Speaker B
Um, so over here, we have the new sidebar.
24:25
Speaker B
I can go ahead and if I launch another instance of Edge.
24:31
Speaker B
And so now I have multiple targets.
24:34
Speaker B
I can go ahead and switch directly between those.
24:41
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
24:47
Speaker B
Um, so say you have multiple targets that you're working on.
24:52
Speaker B
Or you want to be able to take the styles from one page and apply them to another.
24:58
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
25:04
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
25:07
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
25:15
Speaker B
And so now I have multiple targets, I can go ahead and switch directly between those.
25:21
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
25:27
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
25:33
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
25:39
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
25:42
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
25:47
Speaker B
And so now I have multiple targets.
25:50
Speaker B
I can go ahead and switch directly between those.
25:56
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
26:02
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
26:08
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
26:14
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
26:17
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
26:23
Speaker B
And so now I have multiple targets.
26:26
Speaker B
I can go ahead and switch directly between those.
26:32
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
26:38
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
26:44
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
26:50
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
26:53
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
26:58
Speaker B
And so now I have multiple targets.
27:01
Speaker B
I can go ahead and switch directly between those.
27:07
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
27:13
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
27:19
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
27:25
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
27:28
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
27:33
Speaker B
And so now I have multiple targets.
27:36
Speaker B
I can go ahead and switch directly between those.
27:42
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
27:48
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
27:54
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
28:00
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
28:03
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
28:08
Speaker B
And so now I have multiple targets.
28:11
Speaker B
I can go ahead and switch directly between those.
28:17
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
28:23
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
28:29
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
28:35
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
28:38
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
28:43
Speaker B
And so now I have multiple targets.
28:46
Speaker B
I can go ahead and switch directly between those.
28:52
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
28:58
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
29:04
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
29:10
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
29:13
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
29:18
Speaker B
And so now I have multiple targets.
29:21
Speaker B
I can go ahead and switch directly between those.
29:27
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
29:33
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
29:39
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
29:45
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
29:48
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
29:53
Speaker B
And so now I have multiple targets.
29:56
Speaker B
I can go ahead and switch directly between those.
30:02
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
30:08
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
30:14
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
30:20
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
30:23
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
30:28
Speaker B
And so now I have multiple targets.
30:31
Speaker B
I can go ahead and switch directly between those.
30:37
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
30:43
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
30:49
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
30:55
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
30:58
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
31:03
Speaker B
And so now I have multiple targets.
31:06
Speaker B
I can go ahead and switch directly between those.
31:12
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
31:18
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
31:24
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
31:30
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
31:33
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
31:38
Speaker B
And so now I have multiple targets.
31:41
Speaker B
I can go ahead and switch directly between those.
31:47
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
31:53
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
31:59
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
32:05
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
32:08
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
32:13
Speaker B
And so now I have multiple targets.
32:16
Speaker B
I can go ahead and switch directly between those.
32:22
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
32:28
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
32:34
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
32:40
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
32:43
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
32:48
Speaker B
And so now I have multiple targets.
32:51
Speaker B
I can go ahead and switch directly between those.
32:57
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
33:03
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
33:09
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
33:15
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
33:18
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
33:23
Speaker B
And so now I have multiple targets.
33:26
Speaker B
I can go ahead and switch directly between those.
33:32
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
33:38
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
33:44
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
33:50
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
33:53
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
33:58
Speaker B
And so now I have multiple targets.
34:01
Speaker B
I can go ahead and switch directly between those.
34:07
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
34:13
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
34:19
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
34:25
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
34:28
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
34:33
Speaker B
And so now I have multiple targets.
34:36
Speaker B
I can go ahead and switch directly between those.
34:42
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
34:48
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
34:54
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
35:00
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
35:03
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
35:08
Speaker B
And so now I have multiple targets.
35:11
Speaker B
I can go ahead and switch directly between those.
35:17
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
35:23
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
35:29
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
35:35
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
35:38
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
35:43
Speaker B
And so now I have multiple targets.
35:46
Speaker B
I can go ahead and switch directly between those.
35:52
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
35:58
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
36:04
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
36:10
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
36:13
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
36:18
Speaker B
And so now I have multiple targets.
36:21
Speaker B
I can go ahead and switch directly between those.
36:27
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
36:33
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
36:39
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
36:45
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
36:48
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
36:53
Speaker B
And so now I have multiple targets.
36:56
Speaker B
I can go ahead and switch directly between those.
37:02
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
37:08
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
37:14
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
37:20
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
37:23
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
37:28
Speaker B
And so now I have multiple targets.
37:31
Speaker B
I can go ahead and switch directly between those.
37:37
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
37:43
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
37:49
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
37:55
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
37:58
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
38:03
Speaker B
And so now I have multiple targets.
38:06
Speaker B
I can go ahead and switch directly between those.
38:12
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
38:18
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
38:24
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
38:30
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
38:33
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
38:38
Speaker B
And so now I have multiple targets.
38:41
Speaker B
I can go ahead and switch directly between those.
38:47
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
38:53
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
38:59
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
39:05
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
39:08
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
39:13
Speaker B
And so now I have multiple targets.
39:16
Speaker B
I can go ahead and switch directly between those.
39:22
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
39:28
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
39:34
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
39:40
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
39:43
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
39:48
Speaker B
And so now I have multiple targets.
39:51
Speaker B
I can go ahead and switch directly between those.
39:57
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
40:03
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
40:09
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
40:15
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
40:18
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
40:23
Speaker B
And so now I have multiple targets.
40:26
Speaker B
I can go ahead and switch directly between those.
40:32
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
40:38
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
40:44
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
40:50
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
40:53
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
40:58
Speaker B
And so now I have multiple targets.
41:01
Speaker B
I can go ahead and switch directly between those.
41:07
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
41:13
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
41:19
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
41:25
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
41:28
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
41:33
Speaker B
And so now I have multiple targets.
41:36
Speaker B
I can go ahead and switch directly between those.
41:42
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
41:48
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
41:54
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
42:00
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
42:02
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
42:07
Speaker B
And so now I have multiple targets.
42:10
Speaker B
I can go ahead and switch directly between those.
42:16
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
42:22
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
42:28
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
42:34
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
42:37
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
42:42
Speaker B
And so now I have multiple targets.
42:45
Speaker B
I can go ahead and switch directly between those.
42:51
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
42:57
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
43:03
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
43:09
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
43:12
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
43:17
Speaker B
And so now I have multiple targets.
43:20
Speaker B
I can go ahead and switch directly between those.
43:26
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
43:32
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
43:38
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
43:44
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
43:47
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
43:52
Speaker B
And so now I have multiple targets.
43:55
Speaker B
I can go ahead and switch directly between those.
44:01
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
44:07
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
44:13
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
44:19
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
44:22
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
44:27
Speaker B
And so now I have multiple targets.
44:30
Speaker B
I can go ahead and switch directly between those.
44:36
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
44:42
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
44:48
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
44:54
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
44:57
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
45:02
Speaker B
And so now I have multiple targets.
45:05
Speaker B
I can go ahead and switch directly between those.
45:11
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
45:17
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
45:23
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
45:29
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
45:32
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
45:37
Speaker B
And so now I have multiple targets.
45:40
Speaker B
I can go ahead and switch directly between those.
45:46
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
45:52
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
45:58
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
46:04
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
46:07
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
46:12
Speaker B
And so now I have multiple targets.
46:15
Speaker B
I can go ahead and switch directly between those.
46:21
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
46:27
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
46:33
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
46:39
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
46:42
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
46:47
Speaker B
And so now I have multiple targets.
46:50
Speaker B
I can go ahead and switch directly between those.
46:56
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
47:02
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
47:08
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
47:14
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
47:17
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
47:22
Speaker B
And so now I have multiple targets.
47:25
Speaker B
I can go ahead and switch directly between those.
47:31
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
47:37
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
47:43
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
47:49
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
47:52
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
47:57
Speaker B
And so now I have multiple targets.
48:00
Speaker B
I can go ahead and switch directly between those.
48:06
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
48:12
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
48:18
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
48:24
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
48:27
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
48:32
Speaker B
And so now I have multiple targets.
48:35
Speaker B
I can go ahead and switch directly between those.
48:41
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
48:47
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
48:53
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
48:59
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
49:02
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
49:07
Speaker B
And so now I have multiple targets.
49:10
Speaker B
I can go ahead and switch directly between those.
49:16
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
49:22
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
49:28
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
49:34
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
49:37
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
49:42
Speaker B
And so now I have multiple targets.
49:45
Speaker B
I can go ahead and switch directly between those.
49:51
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
49:57
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
50:03
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
50:09
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
50:12
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
50:17
Speaker B
And so now I have multiple targets.
50:20
Speaker B
I can go ahead and switch directly between those.
50:26
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
50:32
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
50:38
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
50:44
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
50:47
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
50:52
Speaker B
And so now I have multiple targets.
50:55
Speaker B
I can go ahead and switch directly between those.
51:01
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
51:07
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
51:13
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
51:19
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
51:22
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
51:27
Speaker B
And so now I have multiple targets.
51:30
Speaker B
I can go ahead and switch directly between those.
51:36
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
51:42
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
51:48
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
51:54
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
51:57
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
52:02
Speaker B
And so now I have multiple targets.
52:05
Speaker B
I can go ahead and switch directly between those.
52:11
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
52:17
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
52:23
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
52:29
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
52:32
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
52:37
Speaker B
And so now I have multiple targets.
52:40
Speaker B
I can go ahead and switch directly between those.
52:46
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
52:52
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
52:58
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
53:04
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
53:07
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
53:12
Speaker B
And so now I have multiple targets.
53:15
Speaker B
I can go ahead and switch directly between those.
53:21
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
53:27
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
53:33
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
53:39
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
53:42
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
53:47
Speaker B
And so now I have multiple targets.
53:50
Speaker B
I can go ahead and switch directly between those.
53:56
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
54:02
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
54:08
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
54:14
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
54:17
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
54:22
Speaker B
And so now I have multiple targets.
54:25
Speaker B
I can go ahead and switch directly between those.
54:31
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
54:37
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
54:43
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
54:49
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
54:52
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
54:57
Speaker B
And so now I have multiple targets.
55:00
Speaker B
I can go ahead and switch directly between those.
55:06
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
55:12
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
55:18
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
55:24
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
55:27
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
55:32
Speaker B
And so now I have multiple targets.
55:35
Speaker B
I can go ahead and switch directly between those.
55:41
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
55:47
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
55:53
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
55:59
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
56:02
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
56:07
Speaker B
And so now I have multiple targets.
56:10
Speaker B
I can go ahead and switch directly between those.
56:16
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
56:22
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
56:28
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
56:34
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
56:37
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
56:42
Speaker B
And so now I have multiple targets.
56:45
Speaker B
I can go ahead and switch directly between those.
56:51
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
56:57
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
57:03
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
57:09
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
57:12
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
57:17
Speaker B
And so now I have multiple targets.
57:20
Speaker B
I can go ahead and switch directly between those.
57:26
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
57:32
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
57:38
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
57:44
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
57:47
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
57:52
Speaker B
And so now I have multiple targets.
57:55
Speaker B
I can go ahead and switch directly between those.
58:01
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
58:07
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
58:13
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
58:19
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
58:22
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
58:27
Speaker B
And so now I have multiple targets.
58:30
Speaker B
I can go ahead and switch directly between those.
58:36
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
58:42
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
58:48
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
58:54
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
58:57
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
59:02
Speaker B
And so now I have multiple targets.
59:05
Speaker B
I can go ahead and switch directly between those.
59:11
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
59:17
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
59:23
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
59:29
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
59:32
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
59:37
Speaker B
And so now I have multiple targets.
59:40
Speaker B
I can go ahead and switch directly between those.
59:46
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
59:52
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
59:58
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
60:04
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
60:07
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
60:12
Speaker B
And so now I have multiple targets.
60:15
Speaker B
I can go ahead and switch directly between those.
60:21
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
60:27
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
60:33
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
60:39
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
60:42
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
60:47
Speaker B
And so now I have multiple targets.
60:50
Speaker B
I can go ahead and switch directly between those.
60:56
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
61:02
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
61:08
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
61:14
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
61:17
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
61:22
Speaker B
And so now I have multiple targets.
61:25
Speaker B
I can go ahead and switch directly between those.
61:31
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
61:37
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
61:43
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
61:49
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
61:52
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
61:57
Speaker B
And so now I have multiple targets.
62:00
Speaker B
I can go ahead and switch directly between those.
62:06
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
62:12
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
62:18
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
62:24
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
62:27
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
62:32
Speaker B
And so now I have multiple targets.
62:35
Speaker B
I can go ahead and switch directly between those.
62:41
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
62:47
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
62:53
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
62:59
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
63:02
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
63:07
Speaker B
And so now I have multiple targets.
63:10
Speaker B
I can go ahead and switch directly between those.
63:16
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
63:22
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
63:28
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
63:34
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
63:37
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
63:42
Speaker B
And so now I have multiple targets.
63:45
Speaker B
I can go ahead and switch directly between those.
63:51
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
63:57
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
64:03
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
64:09
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
64:12
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
64:17
Speaker B
And so now I have multiple targets.
64:20
Speaker B
I can go ahead and switch directly between those.
64:26
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
64:32
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
64:38
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
64:44
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
64:47
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
64:52
Speaker B
And so now I have multiple targets.
64:55
Speaker B
I can go ahead and switch directly between those.
65:01
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
65:07
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
65:13
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
65:19
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
65:22
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
65:27
Speaker B
And so now I have multiple targets.
65:30
Speaker B
I can go ahead and switch directly between those.
65:36
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
65:42
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
65:48
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
65:54
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
65:57
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
66:02
Speaker B
And so now I have multiple targets.
66:05
Speaker B
I can go ahead and switch directly between those.
66:11
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
66:17
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
66:23
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
66:29
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
66:32
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
66:37
Speaker B
And so now I have multiple targets.
66:40
Speaker B
I can go ahead and switch directly between those.
66:46
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
66:52
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
66:58
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
67:04
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
67:07
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
67:12
Speaker B
And so now I have multiple targets.
67:15
Speaker B
I can go ahead and switch directly between those.
67:21
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
67:27
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
67:33
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
67:39
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
67:42
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
67:47
Speaker B
And so now I have multiple targets.
67:50
Speaker B
I can go ahead and switch directly between those.
67:56
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
68:02
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
68:08
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
68:14
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
68:17
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
68:22
Speaker B
And so now I have multiple targets.
68:25
Speaker B
I can go ahead and switch directly between those.
68:31
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
68:37
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
68:43
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
68:49
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
68:52
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
68:57
Speaker B
And so now I have multiple targets.
69:00
Speaker B
I can go ahead and switch directly between those.
69:06
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
69:12
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
69:18
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
69:24
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
69:27
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
69:32
Speaker B
And so now I have multiple targets.
69:35
Speaker B
I can go ahead and switch directly between those.
69:41
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
69:47
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
69:53
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
69:59
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
70:02
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
70:07
Speaker B
And so now I have multiple targets.
70:10
Speaker B
I can go ahead and switch directly between those.
70:16
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
70:22
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
70:28
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
70:34
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
70:37
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
70:42
Speaker B
And so now I have multiple targets.
70:45
Speaker B
I can go ahead and switch directly between those.
70:51
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
70:57
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
71:03
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
71:09
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
71:12
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
71:17
Speaker B
And so now I have multiple targets.
71:20
Speaker B
I can go ahead and switch directly between those.
71:26
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
71:32
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
71:38
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
71:44
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
71:47
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
71:52
Speaker B
And so now I have multiple targets.
71:55
Speaker B
I can go ahead and switch directly between those.
72:01
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
72:07
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
72:13
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
72:19
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
72:22
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
72:27
Speaker B
And so now I have multiple targets.
72:30
Speaker B
I can go ahead and switch directly between those.
72:36
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
72:42
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
72:48
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
72:54
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
72:57
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
73:02
Speaker B
And so now I have multiple targets.
73:05
Speaker B
I can go ahead and switch directly between those.
73:11
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
73:17
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
73:23
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
73:29
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
73:32
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
73:37
Speaker B
And so now I have multiple targets.
73:40
Speaker B
I can go ahead and switch directly between those.
73:46
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
73:52
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
73:58
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
74:04
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
74:07
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
74:12
Speaker B
And so now I have multiple targets.
74:15
Speaker B
I can go ahead and switch directly between those.
74:21
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
74:27
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
74:33
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
74:39
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
74:42
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
74:47
Speaker B
And so now I have multiple targets.
74:50
Speaker B
I can go ahead and switch directly between those.
74:56
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
75:02
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
75:08
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
75:14
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
75:17
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
75:22
Speaker B
And so now I have multiple targets.
75:25
Speaker B
I can go ahead and switch directly between those.
75:31
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
75:37
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
75:43
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
75:49
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
75:52
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
75:57
Speaker B
And so now I have multiple targets.
76:00
Speaker B
I can go ahead and switch directly between those.
76:06
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
76:12
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
76:18
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
76:24
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
76:27
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
76:32
Speaker B
And so now I have multiple targets.
76:35
Speaker B
I can go ahead and switch directly between those.
76:41
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
76:47
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
76:53
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
76:59
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
77:02
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
77:07
Speaker B
And so now I have multiple targets.
77:10
Speaker B
I can go ahead and switch directly between those.
77:16
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
77:22
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
77:28
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
77:34
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
77:37
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
77:42
Speaker B
And so now I have multiple targets.
77:45
Speaker B
I can go ahead and switch directly between those.
77:51
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
77:57
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
78:03
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
78:09
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
78:12
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
78:17
Speaker B
And so now I have multiple targets.
78:20
Speaker B
I can go ahead and switch directly between those.
78:26
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
78:32
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
78:38
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
78:44
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
78:47
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
78:52
Speaker B
And so now I have multiple targets.
78:55
Speaker B
I can go ahead and switch directly between those.
79:01
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
79:07
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
79:13
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
79:19
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
79:22
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
79:27
Speaker B
And so now I have multiple targets.
79:30
Speaker B
I can go ahead and switch directly between those.
79:36
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
79:42
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
79:48
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
79:54
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
79:57
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
80:02
Speaker B
And so now I have multiple targets.
80:05
Speaker B
I can go ahead and switch directly between those.
80:11
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
80:17
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
80:23
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
80:29
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
80:32
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
80:37
Speaker B
And so now I have multiple targets.
80:40
Speaker B
I can go ahead and switch directly between those.
80:46
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
80:52
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
80:58
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
81:04
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
81:07
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
81:12
Speaker B
And so now I have multiple targets.
81:15
Speaker B
I can go ahead and switch directly between those.
81:21
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
81:27
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
81:33
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
81:39
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
81:42
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
81:47
Speaker B
And so now I have multiple targets.
81:50
Speaker B
I can go ahead and switch directly between those.
81:56
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
82:02
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
82:08
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
82:14
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
82:17
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
82:22
Speaker B
And so now I have multiple targets.
82:25
Speaker B
I can go ahead and switch directly between those.
82:31
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
82:37
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
82:43
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
82:49
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
82:52
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
82:57
Speaker B
And so now I have multiple targets.
83:00
Speaker B
I can go ahead and switch directly between those.
83:06
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
83:12
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
83:18
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
83:24
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
83:27
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
83:32
Speaker B
And so now I have multiple targets.
83:35
Speaker B
I can go ahead and switch directly between those.
83:41
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
83:47
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
83:53
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
83:59
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
84:02
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
84:07
Speaker B
And so now I have multiple targets.
84:10
Speaker B
I can go ahead and switch directly between those.
84:16
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
84:22
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.
84:28
Speaker B
You can very quickly uh, you know, switch between your targets, get the information you need and bring them right back to your source code.
84:34
Speaker B
Um, and the last thing I'll go ahead and show while we're here.
84:37
Speaker B
Um, so over here, we have the new sidebar, I can go ahead and if I launch another instance of Edge.
84:42
Speaker B
And so now I have multiple targets.
84:45
Speaker B
I can go ahead and switch directly between those.
84:51
Speaker B
Um, automatically by hitting the new attach button, the tools will reload.
84:57
Speaker B
Um, so say you have multiple targets that you're working on or you want to be able to take the styles from one page and apply them to another.

Get More with the Söz AI App

Transcribe recordings, audio files, and YouTube videos — with AI summaries, speaker detection, and unlimited transcriptions.

Or transcribe another YouTube video here →